diff --git a/devcon/package.json b/devcon/package.json index 42689662e..343a4148f 100644 --- a/devcon/package.json +++ b/devcon/package.json @@ -15,7 +15,8 @@ "lint": "next lint", "scripts:db-cleanup": "ts-node src/scripts/db-cleanup", "scripts:pretalx-import": "ts-node src/scripts/pretalx-import", - "scripts:twitter-import": "ts-node src/scripts/twitter-import" + "scripts:twitter-import": "ts-node src/scripts/twitter-import", + "ai": "ts-node src/pages/api/ai/open-ai" }, "dependencies": { "@elastic/elasticsearch": "^8.1.0", @@ -51,6 +52,7 @@ "next-pwa": "^5.5.4", "node-fetch": "2", "nodemailer": "^6.7.2", + "openai": "^4.38.5", "panzoom": "^9.4.3", "qrcode.react": "^1.0.1", "query-string": "^7.1.0", diff --git a/devcon/src/pages/api/ai/embeddings.ts b/devcon/src/pages/api/ai/embeddings.ts new file mode 100644 index 000000000..e69de29bb diff --git a/devcon/src/pages/api/ai/load-content.ts b/devcon/src/pages/api/ai/load-content.ts new file mode 100644 index 000000000..629ff85d4 --- /dev/null +++ b/devcon/src/pages/api/ai/load-content.ts @@ -0,0 +1,77 @@ +import fs from 'fs'; +import path from 'path'; +import matter from 'gray-matter'; // For parsing front matter in MDX files + +// Function to read and parse MDX files from a folder +function loadAndParseMDXFiles(relativeFolderPath: string): void { + const folderPath = path.resolve(__dirname, relativeFolderPath); + + fs.readdir(folderPath, (err, files) => { + if (err) { + console.error('Error reading folder:', err); + return; + } + + const sectionsByFile: Record = {}; + + files.forEach((file) => { + const filePath = path.join(folderPath, file); + + fs.readFile(filePath, 'utf8', (err, data) => { + if (err) { + console.error('Error reading file:', err); + return; + } + + const { content, data: frontMatter } = matter(data); + + // Extract the sections or content from the frontmatter data + // These sections can be used for creating OpenAI embeddings + const sections = extractSections(frontMatter); + + // Store the sections in the sectionsByFile object with the filename as the key + sectionsByFile[file] = sections; + + // Write the sectionsByFile object to a JSON file in the current folder + const outputPath = path.join(__dirname, 'sections.json'); + fs.writeFile(outputPath, JSON.stringify(sectionsByFile, null, 2), (err) => { + if (err) { + console.error('Error writing file:', err); + return; + } + console.log('Sections written to sections.json'); + }); + }); + }); + }); +} + +// Function to extract sections from frontmatter data +function extractSections(frontMatter: any): string[] { + const sections: string[] = []; + + // Recursive function to extract fields from the frontmatter data + function extractFields(obj: any): void { + Object.keys(obj).forEach((key) => { + const value = obj[key]; + + // Check if the value is an object and not an array or a primitive value + if (typeof value === 'object' && value !== null && !Array.isArray(value)) { + extractFields(value); + } else { + // Add the value to the sections array + sections.push(value); + } + }); + } + + extractFields(frontMatter); + + return sections; +} + + +export default () => { + // Call the function with the folder path containing MDX files + return loadAndParseMDXFiles('../../../../cms/pages'); +} \ No newline at end of file diff --git a/devcon/src/pages/api/ai/open-ai.ts b/devcon/src/pages/api/ai/open-ai.ts new file mode 100644 index 000000000..df99f5080 --- /dev/null +++ b/devcon/src/pages/api/ai/open-ai.ts @@ -0,0 +1,176 @@ +import OpenAI from "openai"; +import fs from 'fs'; +import path from 'path' +// import LoadContent from './load-content'; +require('dotenv').config() + +// LoadContent(); + +import sections from './sections.json'; + +const openai = new OpenAI({ + apiKey: process.env.OPEN_AI_KEY +}); + +// Function to load embeddings from file +function loadEmbeddings() { + const filePath = path.resolve(__dirname, 'openai_embeddings.json'); + const data = fs.readFileSync(filePath, 'utf8'); + const parsedData = JSON.parse(data); + return parsedData; +} + +/** + * Calculate the cosine similarity between two vectors. + * + * @param vecA The first vector of type number[]. + * @param vecB The second vector of type number[]. + * @returns The cosine similarity as a number between 0 and 1. + */ +function cosineSimilarity(vecA: number[], vecB: number[]): number { + const dotProduct = vecA.reduce((acc: number, curr: number, idx: number) => acc + curr * vecB[idx], 0); + const magnitudeA = Math.sqrt(vecA.reduce((acc: number, val: number) => acc + val * val, 0)); + const magnitudeB = Math.sqrt(vecB.reduce((acc: number, val: number) => acc + val * val, 0)); + return dotProduct / (magnitudeA * magnitudeB); +} + + +// // Function to find the most relevant section +// async function findMostRelevantSection(query: any) { +// const embeddings = loadEmbeddings(); +// const queryEmbedding = await createOpenAIEmbedding(query); + +// let highestSimilarity = -1; +// let mostRelevantSection = null; + +// embeddings.forEach((section: any, index: any) => { +// const similarity = cosineSimilarity(queryEmbedding, section.embedding); // Directly use `section.embedding` since it's an array +// if (similarity > highestSimilarity) { +// highestSimilarity = similarity; +// mostRelevantSection = section; // `Section ${index + 1}`; // You may want to replace this with a more descriptive identifier +// } +// }); + +// return mostRelevantSection; +// } + +// Function to create a single OpenAI embedding +async function createOpenAIEmbedding(text: any) { + const response = await openai.embeddings.create({ + model: "text-embedding-3-small", + input: text, + encoding_format: "float", + }); + + return response.data[0].embedding; +} + +// Function to create OpenAI embeddings +// async function createOpenAIEmbeddings(sections: string): Promise { +// try { +// const embedding = await openai.embeddings.create({ +// model: "text-embedding-3-small", +// input: sections, +// encoding_format: "float", +// }); + +// fs.writeFileSync(path.resolve(__dirname, 'openai_embeddings.json'), JSON.stringify(embedding)); + +// console.log('OpenAI Embeddings:', embedding); +// } catch (error) { +// console.error('Error creating OpenAI embeddings:', error); +// } +// } + +async function generateResponseUsingCompletionsAPI(relevantText: string, query: string) { + const prompt = `Based on the following information: "${relevantText}", how would you answer the question: "${query}"?`; + const completion = await openai.chat.completions.create({ + model: "gpt-3.5-turbo", + messages: [ + {"role": "system", "content": "You are a helpful assistant."}, + {"role": "user", "content": "Who won the world series in 2020?"} + + ], + max_tokens: 150, + temperature: 0.5 + }); + + return completion.choices[0]; +} + +const api = (() => { + const _interface = { + createEmbeddingsFromContent: async () => { + const formattedSections = Object.entries(sections).map(([key, value]) => { + return `Page ${key}: ${value}`; + }) + + try { + const allPromises = formattedSections.map(async (section) => { + const embedding = await createOpenAIEmbedding(section); + + return { + embedding: embedding, + text: section + } + }) + + await Promise.allSettled(allPromises).then((results) => { + //@ts-ignore + fs.writeFileSync(path.resolve(__dirname, 'openai_embeddings.json'), JSON.stringify(results.map(({ value }) => value))); + }); + } catch (error) { + console.error('Error creating OpenAI embeddings:', error); + } + }, + getRelevantTextByQuery: async (query: string) => { + const embeddings = loadEmbeddings(); + const queryEmbedding = await createOpenAIEmbedding(query); + + let highestSimilarity = -1; + let mostRelevantSection = ''; + + embeddings.forEach((section: any, index: any) => { + const similarity = cosineSimilarity(queryEmbedding, section.embedding); // Directly use `section.embedding` since it's an array + + if (similarity > highestSimilarity) { + highestSimilarity = similarity; + mostRelevantSection = section.text; // `Section ${index + 1}`; // You may want to replace this with a more descriptive identifier + } + }); + + return mostRelevantSection; + }, + generateResponseUsingCompletionsAPI: async (relevantText: string, query: string) => { + const prompt = `Based on the following information: "${relevantText}", how would you answer the question: "${query}"?`; + const completion = await openai.chat.completions.create({ + model: "gpt-3.5-turbo", + messages: [ + {"role": "system", "content": prompt}, + ] + }) + + return completion.choices[0]; + } + } + + return _interface +})(); + +// api.createEmbeddingsFromContent(); + +const main = async () => { + const query = 'Where was Devcon 0 held?'; + // Compare embedding of query with each section, return most similar + const mostRelevantSection = await api.getRelevantTextByQuery(query) + // Take result of most relevant section and generate response + const relevantText = await api.generateResponseUsingCompletionsAPI(mostRelevantSection, query) + + console.log('The query was: ', query); + console.log('The answer was: ', relevantText); + +} + +main(); + +// https://cookbook.openai.com/examples/question_answering_using_embeddings \ No newline at end of file diff --git a/devcon/src/pages/api/ai/openai_embeddings.json b/devcon/src/pages/api/ai/openai_embeddings.json new file mode 100644 index 000000000..75205b599 --- /dev/null +++ b/devcon/src/pages/api/ai/openai_embeddings.json @@ -0,0 +1,987 @@ +[ + { + "embedding": [ + 0.052076798, 0.014295867, 0.035297744, 0.046072252, 0.0024726659, -0.017999604, -0.025336934, 0.026038399, + 0.0062255063, 0.010255425, 0.041105878, -0.023807738, -0.0022815166, 0.008291322, 0.026964333, 0.024382941, + 0.013889017, -0.021520961, 0.0059484276, 0.051964562, 0.0019483204, 0.026950303, 0.0039352216, 0.032548, + 0.023442976, -0.012745628, -0.03740214, 0.011139272, 0.009813502, -0.05101057, 0.027188802, -0.036027268, + -0.019949678, -0.01728411, 0.01731217, 0.050112695, -0.050337166, 0.056033064, -0.018266162, 0.010921817, + -0.025477227, -0.030976716, -0.022699423, 0.028507557, -0.014316911, 0.006783171, -0.05791299, -0.011342697, + 0.051796213, 0.0057520173, -0.031397596, 0.00067253003, 0.046184488, 0.008761304, 0.028016532, -0.0038720896, + -0.010963906, -0.037261847, -0.054181196, -0.00017722964, 0.033277523, -0.038720895, 0.04085335, -0.003854553, + -0.0035546764, 0.049719874, -0.05157174, 0.008115956, 0.024831878, 0.010851671, 0.018616894, 0.025042318, + -0.03860866, -0.013846929, 0.014800922, -0.028732026, -0.0072531532, 0.015390153, -0.05914757, 0.032828584, + 0.0010048493, 0.0043736375, -0.06397365, -0.039169833, -0.015362094, -0.036869027, -0.0545179, 0.011490005, + -0.041526757, 0.010129162, -0.04943929, -0.01750858, -0.021282462, 0.04640896, -0.0055135186, 0.018055722, + -0.022727482, 0.045062143, -0.05813746, 0.033838697, 0.044809617, -0.03515745, -0.03375452, -0.021296492, + 0.069585375, 0.026375102, 0.007617915, 0.0001978352, 0.049523465, -0.00203425, -0.06767739, -0.03577474, + 0.022110192, 0.02234869, 0.00015607607, -0.04023606, -0.01870107, -0.007561798, -0.022699423, -0.009315462, + -0.035241626, -0.008908612, -0.02338686, 0.042957745, -0.0010346615, -0.03462434, -0.001700177, -0.049916286, + -0.026711807, -0.01668085, -0.0033354685, -0.014899127, 0.07688062, -0.024467116, -0.035746682, 0.0423124, + -0.039057598, 0.031818476, -0.04349086, -0.01169343, 0.027104627, 0.001507274, 0.021871693, 0.008172073, + 0.04531467, 0.005685378, 0.008087897, 0.02681001, -0.035886973, 0.0276658, -0.04859753, -0.011805664, 0.004938317, + 0.0011565413, -0.012514144, -0.03970295, 0.021506932, 0.02682404, 0.014106471, -0.0066113123, -0.032828584, + 0.005225918, -0.065993875, -0.020356528, -0.0039352216, 0.014141545, -0.008536835, 0.0257999, -0.06358083, + -0.006179911, -0.08322187, -0.026964333, -0.0056467974, 0.03108895, 0.01989356, -0.013503211, -0.016231911, + -0.021394698, 0.0032162194, 0.016358174, -0.010536011, 0.010283484, -0.015081508, -0.018715099, -0.036448147, + -0.02561752, 0.025252758, 0.034652397, 0.02724492, -0.024172502, 0.007807311, 0.04977599, 0.04528661, + -0.0048260824, 0.00012407171, -0.049719874, 0.05774464, 0.012002074, 0.05106669, -0.009785444, -0.02988243, + -0.0053802403, 0.010507953, 0.016021471, -0.010550041, 0.044164266, -0.02215228, 0.006039618, -0.008592952, + -0.048457235, 0.010872715, 0.00073610037, 0.03372646, 0.018196015, 0.003759855, -0.04531467, -0.014281837, + 0.056846764, 0.020202206, 0.019683123, -0.0039913384, -0.02826906, 0.06565717, 0.049130645, 0.01393812, + 0.041386463, 0.00067822944, -0.014772863, 0.013741709, 0.015362094, 0.0025270295, 0.009210242, -0.045426905, + -0.03942236, -0.00009025888, -0.0030601432, -0.004983912, -0.04452903, -0.0057239584, -0.03313723, 0.020791437, + 0.0016177548, -0.031790417, -0.025743784, 0.013229639, 0.005481953, -0.01066929, -0.004377145, -0.02257316, + 0.037486315, 0.035634447, 0.035746682, -0.0013739956, -0.023162391, -0.019346418, -0.037121553, -0.038636718, + 0.013397991, -0.050533574, 0.015951326, -0.030583896, 0.039731007, -0.042761337, 0.02480382, -0.020468764, + 0.01989356, -0.0007935328, 0.008803392, -0.012268632, -0.014758834, 0.015811032, 0.0047524287, 0.010346616, + 0.033277523, -0.012605335, -0.028381294, -0.014204676, 0.037093494, 0.01728411, 0.02379371, -0.0014108225, + -0.046268664, 0.018364366, 0.031201186, -0.029629903, 0.04567943, -0.023050155, -0.017382314, 0.010052, + -0.0035125886, 0.007295241, -0.00036673492, 0.015334035, -0.009322477, 0.023541182, 0.0042263297, -0.005808134, + -0.035662506, -0.0054258355, 0.014702717, 0.011188375, -0.01686323, 0.039310127, -0.006962045, -0.009224271, + -0.0029899967, -0.015684769, -0.016554585, -0.010311543, -0.03675679, 0.018364366, -0.013103375, -0.049046468, + -0.015979383, -0.0025059856, 0.039899357, 0.015951326, 0.037935253, -0.010185279, -0.036083385, -0.01332083, + 0.02296598, 0.007898501, -0.043378625, 0.042228222, -0.0007900255, 0.0043561007, -0.011903869, 0.027090598, + -0.02319045, 0.022306602, 0.015277918, 0.005141742, -0.00905592, -0.019234184, -0.026655689, 0.019655064, + 0.027497448, 0.013678577, 0.020805467, -0.032407705, 0.012647423, 0.004959361, -0.040825292, 0.039085656, + 0.021829607, -0.034904923, 0.0045384816, 0.05830581, 0.056229472, 0.012984126, -0.013720665, 0.0026322491, + -0.03249188, -0.0055345627, 0.0069374936, 0.018518688, -0.05042134, -0.037458256, 0.0017773382, -0.0135312695, + -0.035858914, 0.026136605, -0.0042263297, 0.015263889, 0.028297119, -0.052189033, -0.030724188, 0.025491256, + -0.052918557, -0.005439865, 0.025659608, -0.036307853, 0.042929687, -0.031537887, 0.038720895, 0.041723166, + 0.04610031, 0.023414917, 0.06851915, 0.02682404, -0.011707459, -0.021184258, -0.0044157254, -0.015614622, + 0.036279794, 0.020272354, -0.043855622, -0.013152478, -0.015151654, 0.049242876, -0.05067387, -0.02578587, + -0.012303704, -0.0019588424, 0.01710173, 0.017368285, 0.012998155, 0.03619562, -0.020595027, 0.00452796, + -0.028563675, -0.03594309, -0.00884548, -0.031650122, 0.018869422, 0.013587386, 0.013853944, 0.018883452, + 0.010346616, 0.020370558, -0.03538192, 0.033866756, 0.0065341513, -0.00012900389, -0.05737988, 0.0064324387, + 0.0002641456, 0.037654668, 0.021212317, 0.037935253, -0.02320448, -0.028241001, -0.05732376, -0.004499901, + 0.060718853, -0.020342499, -0.017059641, 0.049523465, -0.015572534, -0.03434375, 0.021450814, 0.056173358, + 0.025631549, -0.027539534, -0.00004923959, 0.06077497, 0.015362094, 0.023092244, -0.018911509, -0.0116092535, + 0.0073513584, 0.030191075, 0.024018178, -0.0423124, -0.012500115, 0.011777606, -0.014997332, -0.02135261, + -0.0015765437, 0.02239078, 0.014955244, 0.032688294, 0.008733246, -0.030752247, -0.01748052, 0.0634686, + 0.012030133, 0.007028684, -0.027371183, 0.001809781, 0.05157174, 0.042536866, 0.035858914, -0.023162391, + -0.041358404, -0.06313189, 0.032688294, -0.0031004774, 0.01045885, 0.007358373, 0.020426676, -0.00021361816, + 0.028002502, -0.04329445, -0.044248443, 0.03675679, -0.006221999, -0.0038089575, -0.016905319, 0.009687238, + -0.009238301, 0.012928009, 0.030948658, 0.09192004, 0.081145525, -0.035634447, -0.03167818, -0.04447291, + 0.015965354, 0.03249188, -0.004314013, -0.010753466, -0.016708909, 0.016765025, -0.009596048, -0.044416796, + 0.02257316, -0.013643504, -0.020552939, -0.02298001, 0.0046086283, 0.0040018605, 0.029265141, 0.09640942, + 0.08243623, -0.016372204, -0.007828355, -0.013145464, 0.013566342, -0.04270522, -0.040292177, 0.020566968, + -0.035858914, 0.02683807, 0.051543683, -0.05036522, -0.039113715, -0.014309896, -0.017396344, -0.039085656, + 0.016386233, -0.014092442, -0.0063657993, 0.02298001, -0.0096311215, -0.04551108, -0.04612837, -0.022727482, + 0.0058326856, 0.011945957, -0.006628849, 0.0038405235, 0.024691585, 0.0028233987, -0.020679202, 0.004552511, + -0.011384785, 0.030724188, 0.029714078, 0.027932355, 0.002399012, -0.032548, -0.03437181, -0.03249188, + -0.023008069, 0.0042123003, -0.006148345, -0.02239078, 0.009708283, 0.0052013667, 0.03395093, -0.018771216, + -0.035746682, 0.029994665, 0.049551524, 0.0072882264, -0.04960764, 0.035297744, 0.0018203029, 0.01087973, + -0.031229245, 0.0027006422, -0.003812465, 0.0134541085, 0.032379646, 0.018757187, 0.027090598, -0.022432866, + 0.00914711, -0.042003755, 0.0015546229, -0.029966606, -0.02093173, 0.025968252, -0.026795981, -0.0068673473, + -0.028521586, -0.027118657, -0.032884702, 0.0056362753, -0.00337931, -0.001783476, 0.012458027, -0.04531467, + 0.015909238, 0.008375498, -0.017859312, 0.029040672, -0.016596673, -0.031958766, 0.04051665, -0.0020991354, + 0.049719874, 0.034848806, -0.006523629, 0.02519664, 0.012535188, -0.037261847, -0.016344147, 0.000025017109, + 0.0043280423, -0.026992392, -0.0667234, -0.014008266, 0.026066458, -0.02276957, -0.054377604, -0.019584917, + 0.008557879, 0.007582842, 0.023919974, 0.029545726, -0.0048892144, -0.017410373, -0.013040244, -0.023541182, + 0.0058291783, 0.019135978, -0.03723379, -0.012577277, -0.061448377, -0.019388506, -0.0032793512, 0.012086251, + 0.0341754, 0.0051101763, -0.06874362, 0.018883452, 0.024312794, 0.0033284537, 0.017550666, 0.018069752, + 0.018995686, -0.018560776, 0.01606356, -0.02338686, -0.0108657, -0.013390976, -0.042761337, 0.01118136, + -0.012878907, -0.018125867, -0.009546946, 0.012240573, -0.01811184, 0.010781525, 0.03984324, 0.022096163, + -0.009890663, -0.036869027, 0.01990759, 0.020847555, 0.043041922, 0.036448147, -0.007119875, 0.006106257, + 0.0028917915, -0.029545726, 0.003791421, -0.007540754, -0.004124617, -0.009827532, -0.030106898, -0.018630924, + 0.038243897, -0.023414917, -0.007477622, -0.02558946, 0.0227836, -0.028297119, 0.03212712, 0.049046468, + -0.009546946, 0.03251994, 0.01989356, -0.016933378, -0.015334035, 0.013208595, 0.058193576, 0.009098007, + 0.045370787, 0.0030776798, -0.04469738, -0.018181985, -0.025519315, 0.013103375, 0.011314638, 0.014548394, + -0.00071681006, 0.027104627, -0.01767693, 0.027792063, -0.024831878, 0.004184242, -0.032744408, 0.038580604, + -0.025224699, 0.010514968, -0.0540409, -0.00070321915, -0.007863428, 0.0028146303, 0.0026164663, -0.020356528, + 0.0027304543, 0.025336934, 0.003630084, -0.012282661, -0.02133858, -0.009841561, -0.002988243, -0.012591305, + 0.0017370039, 0.009497843, -0.045819726, -0.01749455, 0.008726231, 0.009953795, -0.03577474, -0.0017361271, + -0.047447126, -0.020763379, -0.002383229, 0.043350566, 0.0033986003, 0.00034810224, -0.019164037, -0.02011803, + -0.017971545, -0.03642009, 0.046324782, 0.03636397, 0.0030496211, -0.02216631, -0.0038264943, 0.026978362, + 0.036279794, -0.04085335, -0.027567593, 0.0074916515, 0.0012380866, 0.009645151, -0.02031444, 0.03925401, + -0.043715328, 0.003994846, 0.02319045, -0.010921817, 0.040404413, -0.024649497, 0.013047258, 0.008368484, + -0.0015099045, 0.03378258, 0.01749455, -0.0057660462, -0.016007442, -0.029938547, 0.008571908, 0.03128536, + 0.008024765, -0.025631549, 0.015782973, 0.016021471, 0.009736341, 0.0003272775, -0.028760085, -0.007435534, + 0.022881804, 0.029293198, 0.001355582, -0.033249464, 0.0020202205, 0.077273436, -0.001783476, -0.026795981, + -0.0046752677, 0.007144426, 0.042424634, -0.005818656, 0.0072110654, -0.021661254, -0.012928009, 0.0029531696, + 0.005120698, -0.00875429, -0.035325803, -0.010150205, -0.03167818, -0.042115986, 0.013033229, -0.018083781, + -0.007968648, -0.00447535, -0.028381294, 0.0018676518, -0.061504494, -0.0071303966, 0.0018904496, 0.06453483, + 0.007056743, -0.0070356987, 0.06616223, 0.016119678, 0.0066148196, -0.00018391549, 0.025224699, -0.020805467, + 0.0077932817, -0.009953795, 0.012822789, -0.01624594, -0.037794963, 0.0058046267, -0.014246765, -0.0003605971, + -0.010451836, -0.011216433, 0.014800922, 0.008592952, 0.012233558, -0.022853745, -0.023667445, 0.004703326, + 0.028170854, -0.0040720073, 0.028984554, -0.004647209, -0.031902652, -0.005548592, 0.0024814343, 0.014120501, + -0.022124222, 0.00058528525, 0.015488358, -0.013362918, 0.030331368, -0.016540557, -0.00056467974, 0.03757049, + 0.0037037379, -0.025771841, -0.006723547, 0.009182183, -0.0072882264, 0.049242876, 0.021282462, 0.014702717, + 0.016288029, -0.0089507, 0.025870048, 0.03049972, -0.00096539187, -0.028521586, -0.013376947, 0.0015099045, + 0.0150955375, -0.016147736, 0.018055722, 0.023934003, -0.053086907, 0.0048260824, 0.019121949, 0.008214161, + -0.03740214, 0.0011390046, -0.0068954057, 0.044136208, 0.033642285, 0.001001342, -0.02578587, -0.016105648, + 0.0026813517, 0.0015028898, 0.023555212, 0.007039206, 0.024579352, 0.029461551, -0.025982281, 0.021226346, + 0.0105781, -0.0033407295, -0.011665371, -0.023414917, -0.020188177, 0.029405434, 0.0047383993, -0.009413667, + -0.04225628, -0.013797826, -0.032379646, -0.025364993, 0.010886745, 0.0032249875, -0.012850848, 0.0004506916, + 0.01402931, 0.015712827, -0.0024270706, 0.0010697349, -0.02013206, -0.016526528, 0.011791635, -0.024214588, + -0.017536636, 0.04573555, 0.0015756668, -0.006257072, -0.0018027663, 0.015221802, 0.006723547, 0.029742137, + 0.024649497, 0.0046437015, -0.0045595258, -0.014408101, 0.009406652, -0.012093266, -0.058530282, 0.05732376, + 0.0070777866, 0.013910061, -0.0150955375, 0.02988243, 0.009617092, -0.016442351, 0.04593196, 0.02011803, + -0.031229245, 0.018869422, 0.0011381278, 0.0139942365, 0.02578587, 0.028732026, -0.035213567, 0.040151887, + 0.004184242, 0.020454735, 0.024368912, 0.014604512, 0.0043105055, 0.016428322, -0.064647056, 0.042789396, + -0.0257999, -0.00180452, 0.053451672, 0.0074706073, -0.02744133, -0.020005796, -0.007863428, 0.022334661, + -0.01332083, -0.01910792, 0.008487732, 0.016526528, -0.004927795, 0.0039071627, 0.015993413, -0.024046237, + -0.049467348, -0.0068954057, -0.0049172733, -0.010893759, -0.0102484105, -0.018799275, 0.02682404, 0.04635284, + -0.005246962, 0.0010679812, 0.0048821997, 0.06077497, 0.0138329, 0.02399012, 0.0043315496, 0.011917898, + -0.00711286, 0.036083385, 0.023541182, -0.015782973, -0.0037844062, -0.027483419, 0.034259576, 0.018224074, + -0.0026357565, -0.016905319, 0.024214588, 0.03599921, -0.00985559, 0.029714078, -0.006274609, 0.010087074, + -0.017817223, 0.011307624, -0.0034810225, 0.006488556, 0.016736967, 0.043799505, -0.016302058, 0.013489181, + -0.0056923926, -0.0015756668, 0.01118136, 0.026361072, 0.01647041, 0.053086907, -0.01971118, 0.009399638, + -0.009778429, 0.044444855, 0.013440079, -0.018153926, -0.000040334267, -0.009806488, -0.01749455, 0.0013222625, + 0.019346418, -0.013643504, 0.0064464677, -0.0012696525, -0.0160355, -0.009722312, -0.049355112, -0.0062956526, + -0.03740214, 0.0055345627, 0.017971545, 0.01669488, 0.028956495, -0.011412843, 0.02826906, -0.012170427, + -0.0017256051, -0.009413667, 0.0047910092, -0.005194352, 0.0009031368, 0.032884702, -0.009904693, -0.021619167, + -0.018476602, -0.015390153, -0.0058326856, 0.0033074098, -0.010767495, -0.03844031, 0.011272551, 0.041246172, + -0.005657319, -0.0070707723, 0.0129420385, 0.0032811048, -0.010409748, 0.0005922999, 0.021436786, 0.016947405, + -0.018644953, -0.0341754, 0.007498666, 0.00284795, -0.034399867, -0.012037148, -0.009154125, 0.01289995, + 0.056425884, -0.008186102, -0.011412843, 0.027006421, -0.04225628, 0.010690334, -0.007098831, -0.032996938, + -0.00803178, -0.028086679, -0.014099456, -0.017171875, -0.025014259, 0.018322278, -0.0012950806, 0.020595027, + -0.019416565, -0.056846764, 0.0018308249, 0.017242022, -0.0013845175, 0.035718624, 0.0012661453, 0.040348295, + -0.009098007, 0.0014266054, -0.007260168, 0.00037002304, 0.018055722, -0.00052127655, -0.029601844, -0.026501367, + 0.009624107, 0.022923892, -0.0058046267, 0.0012249341, 0.026908217, -0.021198288, 0.010816598, 0.00875429, + 0.006264087, 0.011714473, 0.00017657202, 0.011167331, 0.029349316, 0.028956495, 0.026515396, 0.013657534, + 0.0006585007, 0.00073171617, -0.02236272, 0.014800922, -0.030359427, 0.025322905, 0.018813305, 0.034399867, + -0.009301432, -0.0036756792, -0.0003215781, 0.026557483, -0.0007571443, -0.0011670633, -0.0145063065, + -0.001241594, -0.03681291, -0.024495175, -0.009645151, 0.020244295, -0.031425655, -0.010599144, 0.0070427135, + -0.01687726, 0.0051908446, -0.011005994, -0.01769096, 0.012836819, 0.013545299, -0.0061764037, 0.028184883, + -0.0121213235, -0.022545101, -0.00019904083, 0.081426114, -0.014800922, -0.007337329, 0.00681123, 0.036111444, + 0.049242876, 0.019332388, -0.004103573, -0.03846837, -0.011812679, -0.019542828, 0.04739101, 0.0017036843, + 0.028184883, -0.022474954, -0.02216631, 0.0014818459, 0.004401696, 0.035690565, -0.012675482, 0.014927186, + 0.018532718, 0.0073303143, -0.017536636, 0.023863856, -0.028760085, 0.0038510456, -0.022601219, 0.013033229, + -0.019164037, -0.014955244, -0.016540557, 0.009848575, 0.024944114, 0.05025299, -0.012451013, 0.00031741313, + 0.016302058, 0.02578587, -0.060326032, 0.0002446361, -0.037486315, 0.012563247, -0.02480382, -0.0060220812, + 0.003770377, 0.008326395, -0.00094610156, 0.042480752, -0.027806092, 0.029517667, 0.030555837, 0.014422131, + 0.005292557, -0.0033126709, -0.010732422, 0.019612975, 0.042536866, 0.04208793, 0.02008997, -0.02031444, + 0.030247193, 0.0008373744, 0.01585312, 0.042480752, 0.005808134, 0.00019947925, -0.032800525, -0.016021471, + 0.035858914, 0.0009732834, 0.009652165, 0.030780306, -0.004745414, 0.015081508, -0.034399867, 0.0056643337, + 0.0042123003, 0.008115956, -0.005464416, -0.006986596, -0.0062816236, 0.007870443, 0.004563033, -0.024944114, + 0.010234382, 0.028395323, -0.030219134, -0.01158821, 0.042340457, 0.022839716, 0.01321561, -0.03678485, + -0.0012038902, -0.01606356, -0.0011661864, 0.022278544, -0.01606356, -0.029040672, 0.009329491, -0.0025147537, + 0.0025112464, -0.027735945, 0.01607759, -0.0034705005, 0.00011804349, 0.03271635, -0.017733047, -0.05869863, + 0.0067445906, -0.0070427135, 0.023316713, -0.0044613206, -0.0016887782, -0.016905319, 0.021422757, -0.005257484, + 0.020889642, -0.01137777, -0.01728411, -0.017747076, 0.022671364, -0.028647851, 0.011020022, -0.014092442, + 0.009603063, -0.009301432, -0.016147736, 0.018644953, 0.011419858, -0.00013141517, 0.03846837, 0.0085298205, + 0.0219699, -0.025252758, -0.005846715, 0.05286244, -0.018153926, -0.016358174, 0.014758834, -0.03928207, + 0.023428947, -0.0009794212, -0.001809781, 0.0030741724, 0.010795554, -0.0053206156, 0.008094911, -0.03338976, + 0.027820121, -0.006081706, -0.0071233823, 0.032435764, 0.03353005, 0.022222428, -0.0104798945, 0.022460924, + -0.017213963, 0.01562865, 0.016989494, 0.0071374113, -0.013769767, 0.011868796, -0.040572762, 0.015334035, + 0.00047699653, -0.016989494, 0.011770591, -0.017171875, 0.017171875, -0.006407887, -0.04062888, -0.008375498, + 0.016442351, 0.0005971225, -0.001355582, -0.022895833, -0.009133081, 0.02805862, 0.010044985, -0.029770195, + 0.027890269, 0.03086448, 0.0068708546, 0.025449168, 0.0017352502, -0.015067479, -0.013776782, 0.010437806, + -0.031986825, 0.021520961, 0.0068322737, 0.024551293, 0.044977967, 0.015460299, 0.03633591, 0.012226543, + -0.042059872, -0.0048892144, 0.013839914, -0.01607759, -0.019584917, -0.015067479, 0.03501716, -0.01564268, + 0.0070006256, 0.01665279, -0.014997332, 0.016091619, 0.009813502, -0.018995686, 0.02011803, -0.023765652, + -0.017789165, 0.0064850487, 0.021072023, -0.025856018, 0.024284735, 0.015797002, 0.026290927, 0.008207146, + -0.028170854, -0.0018886959, -0.03437181, -0.047952183, -0.006492063, 0.02051085, 0.028156824, -0.0071374113, + -0.0068778694, 0.011672386, -0.0014441421, -0.005548592, 0.047475185, 0.007575827, -0.019837445, 0.0211562, + 0.022040045, -0.04862559, -0.003917685, -0.0010057262, 0.012079236, -0.00014599251, -0.030555837, -0.00782134, + 0.026501367, 0.008810407, 0.02662763, -0.035466094, -0.02804459, -0.017648872, -0.00003110013, -0.015768943, + 0.00041189176, -0.025238728, 0.0068918983, -0.015516417, 0.007337329, 0.028241001, 0.048232768, -0.020679202, + 0.004808546, 0.02032847, 0.03510133, -0.011651342, 0.0016019718, -0.0052750204, -0.00019816401, -0.018743157, + -0.001783476, 0.021997958, 0.029826313, 0.015221802, -0.040684998, -0.01930433, -0.0028233987, 0.030050782, + -0.014674658, 0.0063693067, -0.033978987, -0.01311039, -0.019837445, -0.03512939, 0.04329445, -0.02825503, + -0.0068322737, -0.016975464, -0.0017790919, 0.036055326, -0.026964333, 0.011426873, -0.011027037, -0.021086052, + -0.007046221, 0.022951951, 0.020356528, 0.035915032, -0.04553914, 0.0038510456, 0.014127515, 0.026529426, + 0.008536835, 0.010087074, -0.004692804, 0.030247193, 0.033445876, 0.0057450025, -0.0016212622, -0.03378258, + -0.021478873, 0.03049972, 0.020174148, 0.0044858716, 0.032295473, -0.010108118, 0.013390976, 0.0067621274, + -0.009546946, -0.03437181, 0.027932355, 0.0266136, 0.023288654, 0.01077451, 0.006478034, 0.049691815, 0.008108941, + -0.0046892967, -0.01423975, 0.012472057, -0.02868994, 0.0041526756, 0.0067305616, 0.03296888, -0.009890663, + 0.015614622, -0.028170854, 0.027413271, 0.023414917, 0.013839914, -0.006898913, -0.0009767907, 0.020889642, + 0.023008069, 0.0150955375, 0.0029707064, 0.008045809, -0.006769142, 0.070427135, 0.01811184, 0.02340089, + 0.0028970526, 0.01036766, 0.022082133, -0.030836424, -0.013636489, 0.009399638, 0.0119670015, -0.03378258, + -0.017452462, 0.009420682, -0.0030583895, -0.0015213033, -0.001971118, 0.024102354, 0.017143816, 0.0038615675, + -0.013327844, -0.001173201, 0.008796377, 0.024130413, 0.01770499, 0.036869027, 0.013503211, -0.0041526756, + 0.005204874, -0.040123828, -0.021661254, 0.027525505, 0.013987222, -0.051319215, 0.03925401, 0.005559114, + 0.009245316, 0.020595027, 0.023442976, 0.008775333, -0.032660235, 0.0106061585, -0.024621438 + ], + "text": "Page dips.mdx: ## **Contribute**\n\n#### Devcon Improvement Proposals (DIPs) provide a mechanism for collecting collaborative community input on what should be included at the upcoming Devcon.\n\nWhile we are excited to have a more formal process to hear ideas from the community (roughly inspired by the more decentralized PEP, BIP and EIP processes), this is an experiment, and it should be understood that approval of proposals ultimately lies solely with the Devcon team. DIPs focus on collaboration in the ecosystem between different projects.\n\nThe Devcon team also publishes Requests For Proposals (RFPs), which are specific ideas we'd love to see take place for the next Devcon edition. They are available on our forum.\n,dips" + }, + { + "embedding": [ + 0.015073842, 0.030438686, 0.0033483282, 0.016703447, -0.013829814, 0.005659966, -0.04248612, 0.012985912, + -0.02528797, 0.016179645, 0.009646677, -0.05889857, 0.009784902, 0.04257342, 0.0357058, 0.025302522, -0.024109418, + -0.006452943, 0.025506223, 0.009668502, 0.016936248, 0.0052052774, -0.031020688, 0.008075273, -0.030351385, + -0.0174455, 0.022261564, 0.047229435, 0.0083080735, -0.029914884, 0.022974515, -0.04591993, 0.030176785, + 0.012440285, -0.044261225, -0.03166089, 0.0006761222, 0.020370057, -0.024254918, 0.018565852, -0.0349201, + -0.03823751, 0.0068748943, -0.0054780906, -0.0047542257, -0.02128671, 0.0065329685, 0.022465263, 0.036433302, + 0.02474962, 0.021504961, -0.004204962, 0.020049958, 0.078686625, 0.019526156, -0.02441497, -0.0353857, + -0.022159712, 0.0041285744, 0.033930697, 0.007500546, -0.006929457, -0.0080316225, 0.025928173, 0.006536606, + 0.008009798, -0.039867114, 0.022552563, 0.024793271, -0.005117977, -0.025709923, 0.019919006, -0.009384776, + -0.010512405, 0.016048696, -0.022086963, 0.03151539, 0.03948881, -0.01807115, -0.0705968, 0.011705508, + -0.012978637, -0.05034314, -0.048131537, 0.014797391, 0.015684944, -0.029885784, 0.040798314, -0.02124306, + -0.051536247, -0.043417323, 0.02093751, -0.044086624, 0.06547519, -0.00875185, 0.006623906, 0.0007620584, + 0.011705508, -0.02106846, 0.0060637295, 0.05255475, -0.040070813, -0.011872834, 0.008628175, 0.03858671, + -0.02485147, -0.04597813, -0.011938308, -0.010847055, -0.039517913, -0.012032884, -0.013524263, 0.019788057, + 0.030467786, -0.0032664842, 0.014564591, -0.0013095037, -0.047578633, 0.025520772, -0.0012322066, -0.034891, + 0.026059123, 0.015714044, -0.033697896, 0.024109418, 0.009239276, 0.004797876, -0.00045605286, -0.061168373, + -0.043591924, 0.026088223, -0.014419091, 0.00889735, -0.036898904, -0.07571841, 0.02812523, -0.012054709, + -0.04638553, -0.03128259, 0.020413708, 0.0051652645, 0.007515096, -0.0071949954, 0.009144701, 0.005459903, + 0.014782841, -0.0013595194, 0.010403279, -0.010083178, -0.054533552, -0.018202102, -0.02514247, -0.034891, + -0.0035974977, -0.0115672825, -0.011654583, 0.036346003, -0.017169049, -0.015743144, 0.0102141285, 0.0028281643, + 0.016354246, -0.018653153, -0.059218667, -0.0178238, 0.04877174, -0.0054235277, -0.019526156, -0.02797973, + 0.047142133, -0.03841211, -0.0026390138, -0.029231032, -0.04536703, -0.030671487, -0.018085701, 0.023891168, + -0.061051972, -0.032824893, -0.006536606, 0.0045614378, 0.04871354, 0.045396127, 0.004405025, -0.047811434, + -0.04996484, -0.00018119348, -0.020297308, -0.007522371, 0.026815725, 0.0039466987, 0.010839781, 0.06745399, + -0.0015541263, 0.009064675, -0.033319592, 0.011989234, -0.009690328, 0.005139802, 0.0017878363, 0.01789655, + 0.014375441, 0.046356432, -0.002435313, -0.0349492, 0.007871572, -0.050081242, 0.03966341, -0.0132114375, + -0.0088246, 0.037422705, 0.0017114485, 0.05729806, 0.0175037, -0.032853995, 0.009406602, -0.044232126, + 0.029114632, -0.021985112, 0.015641294, -0.0343963, 0.026219174, 0.07472901, 0.048568036, -0.023134565, + 0.025535323, 0.023614718, 0.012818586, 0.006551156, 0.023745667, 0.034279898, 0.025127921, 0.0047287634, + -0.003655698, 0.004870626, 0.0036793416, -0.020661058, 0.009464801, -0.023760216, -0.008293523, -0.015306643, + 0.026859377, -0.0047651385, -0.023862068, -0.00439775, 0.016994448, -0.0072313705, -0.036898904, 0.055464756, + 0.023454666, 0.026713876, -0.006452943, 0.004670563, -0.045512527, -0.03166089, 0.04239882, -0.01757645, + 0.036520604, -0.031049788, -0.02848898, -0.022392513, 0.016587047, -0.013895289, 0.01737275, -0.037859205, + -0.0017832894, -0.032824893, 0.03931421, -0.027936079, 0.02172321, -0.0049215513, 0.011530908, 0.041613117, + -0.00080388976, -0.00044923252, -0.029449284, 0.013837089, 0.027135827, -0.03195189, 0.009733978, -0.027528677, + -0.020326408, 0.016237846, 0.0014277227, 0.026000923, 0.02447317, 0.027543228, 0.033435993, -0.023061816, + 0.011989234, -0.006452943, -0.015132043, 0.036549702, 0.005310765, 0.006023717, 0.036346003, -0.008366274, + -0.0037466355, 0.0065693436, -0.013044111, 0.029405633, -0.001953343, 0.0344545, 0.009661227, -0.0029136457, + 0.012607611, 0.031020688, 0.010083178, -0.043068122, -0.02157771, 0.037335407, -0.02480782, -0.008700925, + -0.019191504, -0.036229603, -0.040681913, 0.042515222, 0.033290494, 0.030176785, -0.014695542, 0.036928006, + 0.007784272, -0.005725441, -0.059364166, -0.022319764, -0.029943984, -0.023702016, 0.025040621, -0.010781581, + 0.0012904068, 0.025069721, -0.023803867, -0.030758787, -0.013553363, -0.0051980023, 0.040798314, 0.016834397, + 0.07397241, -0.05956787, 0.020079058, -0.028896382, -0.06012077, -0.055813957, -0.020180907, -0.008366274, + -0.041787717, 0.016965348, -0.015437594, 0.0063911057, -0.005139802, -0.019700756, 0.057792764, -0.012294785, + -0.02460412, -0.019176954, -0.062215976, 0.014528216, -0.018434903, -0.04667653, 0.054824553, -0.010272329, + 0.010832505, 0.0024771446, -0.005554478, -0.02815433, 0.039838012, -0.02864903, -0.049033638, 0.014208115, + -0.017110849, -0.04577443, -0.019948106, 0.0026572014, -0.0027972455, -0.022945415, 0.0040158113, -0.0141644655, + 0.02502607, 0.010155928, 0.023090916, 0.0707714, -0.00010645401, -0.014615516, -0.022145163, 0.054562654, + -0.037713706, -0.00436865, 0.020108156, -0.065649785, 0.025360722, 0.06076097, -0.015844995, -0.014295415, + -0.04216602, 0.02827073, 0.04976114, 0.05034314, 0.023527417, 0.011952858, -0.039692514, 0.037277207, 0.009828553, + -0.022043312, 0.048800837, -0.023658367, -0.012578511, -0.0351529, 0.0076169465, -0.0153939435, -0.032562993, + -0.022334313, -0.0357931, 0.03128259, 0.06396198, -0.00089346344, -0.019206055, 0.040914714, -0.003983074, + -0.0075732963, -0.005139802, 0.0045359754, 0.0018105707, -0.023003615, 0.0058054663, -0.00054880936, 0.032562993, + -0.0009566652, -0.014877417, 0.04594903, -0.064427584, 0.005459903, 0.02127216, -0.0069330945, 0.041438516, + 0.008097098, 0.0035120163, -0.0026044573, -0.020675609, 0.0021061185, -0.013320562, 0.006878532, -0.018755004, + 0.0174455, 0.007864297, -0.025709923, 0.011378132, 0.018318502, -0.0033992534, 0.04263162, -0.046472833, + -0.019729856, -0.009151976, -0.0040885615, 0.018507652, -0.019366104, 0.037364505, 0.051012445, 0.015277543, + -0.0028609019, -0.0016095983, 0.02130126, 0.04935374, 0.008439024, 0.044930525, -0.020137256, -0.014222665, + 0.0062928926, 0.027630528, 0.027746929, 0.020748358, -0.0346291, 0.0056417785, 0.0350074, -0.03218469, + -0.02489512, -0.039517913, -0.03881951, -0.0030555087, 0.010396005, -0.016252397, -0.03890681, -0.034658197, + 0.0014349978, 0.0069039944, 0.018202102, 0.15818805, 0.01818755, 0.015321193, 0.008409924, -0.009573927, + -0.032766692, 0.018391252, 0.040449113, -0.019438855, -0.06326358, 0.012549411, 0.005739991, -0.08555424, + 0.015321193, -0.06815239, 0.0062819803, -0.017183598, -0.025651723, 0.03913961, 0.04202052, 0.019628005, + 0.029711183, -0.0059000417, 0.0351238, 0.029463833, 0.015641294, -0.012760386, -0.029914884, -0.020108156, + -0.02112666, 0.033232294, -0.0045396127, 0.02472052, 0.0065547936, 0.020893859, -0.0060637295, -0.0012713098, + 0.011669133, -0.011574558, -0.02514247, -0.030205885, -0.008613625, -0.08642724, 0.00010105458, -0.018755004, + -0.011625483, -0.0174455, 0.0071549825, -0.0079079475, 0.006172855, 0.00525984, 0.0058272914, -0.008577249, + 0.039954413, -0.041554917, 0.039838012, 0.00035511193, 0.014520941, -0.0043540997, 0.0041285744, 0.017998401, + -0.020471908, 0.011421782, 0.026059123, 0.0007015848, 0.0011312657, 0.005536291, -0.023672916, -0.027645078, + 0.03192279, 0.051245246, 0.0015859545, -0.04225332, 0.015583094, -0.0014395447, -0.0045941756, -0.0013449694, + 0.033115894, -0.0016532484, 0.0063183554, -0.030933388, 0.026088223, -0.032853995, -0.01792565, -0.017183598, + -0.02127216, 0.015699495, 0.0044414, 0.058316566, -0.021781411, 0.008024348, 0.003335597, -0.0059036794, + 0.029827584, -0.003892136, -0.021999663, -0.04225332, -0.016135996, 0.010345079, -0.03134079, -0.0014759199, + 0.013793439, 0.014360891, -0.004284987, -0.00022302485, -0.012549411, 0.0103523545, -0.029434733, 0.00090528536, + 0.016994448, -0.0015086574, 0.0052125524, -0.008613625, 0.03139899, 0.023527417, 0.003870311, -0.05188545, + -0.013931665, -0.011188982, 0.019104203, -0.026786625, -0.00004953266, -0.008257149, -0.015757695, 0.0073914207, + 0.014673716, 0.04871354, -0.047840536, -0.057996463, -0.0062419674, -0.019162403, -0.023483766, 0.009224726, + 0.0013386038, 0.0017159955, -0.0072677457, -0.013073212, 0.04888814, -0.0030609649, 0.0044013876, 0.0176783, + -0.011887384, -0.013451513, -0.021985112, 0.020704709, -0.008155298, -0.014862867, 0.016048696, -0.016339697, + 0.008671825, 0.0358222, -0.014004415, 0.0018578584, 0.007427796, -0.038615808, 0.058200166, -0.0019042366, + 0.014091715, 0.008293523, 0.032795794, -0.030496886, 0.019060554, -0.008264423, -0.023250965, 0.0024826007, + -0.001878774, 0.04309722, -0.016717996, 0.00525984, 0.034367196, -0.051041543, -0.021708662, 0.018391252, + -0.018682253, 0.047171235, -0.03913961, 0.0073914207, -0.008402648, -0.020180907, -0.009013751, 0.037277207, + 0.004190412, -0.0031355338, -0.00020756543, 0.01757645, 0.0348619, 0.0063983807, 0.012694911, 0.027630528, + 0.0007752444, -0.018202102, 0.024516819, -0.025564423, -0.01792565, 0.035996802, -0.016572496, 0.008497224, + -0.043417323, -0.014346341, 0.033814296, 0.034105297, -0.014520941, 0.007755172, -0.008453574, 0.02861993, + 0.0051761772, -0.009537552, 0.047113035, -0.022887215, 0.013684314, -0.009559377, 0.008831875, -0.021737762, + -0.01409899, -0.039867114, -0.010374179, -0.015670395, 0.034338098, 0.0026553825, -0.017038098, -0.029274683, + -0.021839611, 0.036753405, 0.032213792, -0.020864759, 0.0019042366, -0.0048015136, 0.0002207514, -0.00026235543, + -0.0011685502, 0.035182, -0.018085701, -0.009566652, 0.024167618, 0.018362151, 0.030642387, 0.013378763, + -0.011210807, -0.0349492, -0.00090664945, -0.037160806, -0.013524263, 0.017008997, 0.017969301, -0.012171109, + 0.010141378, 0.016805297, 0.0051361644, 0.02076291, -0.023120016, -0.0012658535, 0.00705677, 0.029056432, + -0.027194027, -0.022159712, -0.005452628, 0.014018965, -0.023469217, -0.02124306, 0.005830929, -0.0042813495, + -0.0070604077, 0.0025371634, -0.018405803, 0.013458788, -0.050954245, 0.013342388, 0.012091084, -0.008519049, + 0.011509082, -0.018696804, 0.027048526, 0.045512527, -0.01789655, 0.0141644655, 0.027208576, 0.028867282, + -0.008286248, -0.02789243, 0.014550041, -0.0044377623, 0.012527585, -0.0045869006, -0.025680823, -0.028896382, + -0.023440117, -0.0022679877, -0.04920824, 0.003304678, 0.050896045, 0.026306475, 0.0027208577, -0.033872496, + -0.018391252, 0.02821253, -0.004834251, -0.031369887, 0.020180907, -0.033290494, 0.0076460466, 0.010374179, + 0.037888307, 0.0012394816, 0.024240369, -0.010024979, 0.0061292048, -0.015990496, -0.010992556, -0.026364675, + -0.008628175, -0.027252227, 0.016703447, -0.070073, -0.015423044, 0.030205885, -0.02453137, 0.017038098, + 0.013153237, 0.051216144, -0.0111671565, 0.06384558, -0.02812523, 0.05307855, 0.020049958, 0.005718166, + 0.020355508, -0.014448191, -0.026815725, 0.0069330945, 0.01241846, 0.030060384, -0.019482505, -0.002784514, + 0.010745205, -0.030729687, 0.017081749, 0.023600167, 0.00025530776, -0.008817325, 0.017183598, 0.0356185, + -0.048393436, 0.059887968, 0.018842304, -0.019220604, 0.041147515, -0.01428814, -0.007507821, -0.033814296, + -0.015917744, 0.033290494, -0.0021042996, 0.031107988, -0.07793002, -0.033174094, 0.033057693, -0.019453404, + -0.0067985067, -0.0034647286, -0.023745667, -0.003892136, -0.049033638, -0.027703278, -0.05907317, 0.009646677, + -0.033726994, 0.004270437, 0.002962752, -0.03128259, -0.0048997262, 0.014659166, -0.038150206, -0.020646509, + 0.015350293, -0.008919175, -0.051332545, -0.010839781, -0.02786333, 0.0076460466, 0.0041394867, -0.032824893, + 0.037044406, 0.0025117008, 0.022159712, 0.013036837, -0.0026462888, 0.030264085, 0.0175037, -0.002444407, + -0.05278755, 0.05642506, 0.0007820647, -0.009923128, -0.0084317485, 0.013640664, -0.02815433, -0.027063077, + 0.019220604, -0.0061037424, -0.026277374, 0.027077626, 0.005532653, 0.022116063, -0.018740453, 0.0054126154, + -0.00019005992, -0.02812523, -0.006187405, -0.052525647, -0.014790117, 0.013873464, -0.018114801, -0.0075660213, + 0.002546257, 0.005594491, -0.02864903, -0.014644616, 0.006158305, -0.037219007, -0.031311687, -0.025986373, + 0.026393775, 0.013480613, 0.027877878, 0.010803405, -0.0010730656, -0.033901595, 0.019904457, 0.018958703, + 0.054970056, -0.013684314, -0.015524894, 0.0102141285, 0.004055824, -0.04976114, -0.0072240955, -0.014768292, + -0.0121201845, 0.015714044, 0.040856514, -0.016281497, 0.019249704, -0.02477872, 0.040798314, -0.06786139, + 0.002873633, 0.032941293, -0.007842472, 0.027455928, 0.04170042, -0.03835391, -0.0034665472, 0.011792809, + -0.0053144027, 0.022465263, -0.02483692, 0.0016532484, 0.022625314, -0.015248443, 0.034279898, -0.009173801, + -0.022363413, 0.014317241, 0.0027808766, -0.001173097, -0.033523295, 0.029798483, 0.020210007, -0.015001092, + -0.030555086, -0.014448191, 0.03887771, -0.022698063, -0.010585155, 0.027703278, -0.064311184, 0.030118585, + -0.009661227, -0.013386038, -0.015786795, 0.0027917891, 0.064311184, 0.0015786794, 0.045454327, 0.07437981, + -0.038092006, 0.023716567, 0.044523127, 0.0088828, 0.011174432, -0.0043359124, 0.04859714, -0.038208406, + -0.009995879, 0.056716062, -0.0028772706, 0.028896382, 0.009777628, 0.0087955, -0.037626408, 0.014739192, + 0.0717608, 0.043359123, 0.011269007, 0.022101512, 0.04286442, 0.036811605, 0.013968039, -0.0037029854, + 0.0085845245, -0.019409755, -0.0101995785, 0.0011394501, 0.02828528, -0.016426997, -0.018755004, -0.0351238, + -0.010308704, -0.034367196, -0.007093145, -0.023978468, 0.04298082, -0.058374766, 0.012425735, 0.0072022704, + -0.0039103236, -0.0021188497, -0.036229603, -0.03858671, 0.022858115, 0.004768776, -0.0058818543, 0.00312644, + -0.025375271, -0.005976429, -0.00439775, -0.022494363, -0.0050306767, -0.04877174, -0.008315348, -0.0023007253, + 0.0063401805, -0.0035029224, 0.012898612, 0.028779982, 0.0019042366, 0.062332377, -0.00071158796, 0.0018151177, + -0.019453404, -0.0010539686, -0.02829983, -0.014077165, 0.00267357, 0.02473507, -0.030933388, 0.010243229, + -0.01751825, -0.013851639, 0.027470477, -0.0037793731, 0.0054162527, 0.013618838, -0.023411017, 0.0021333997, + -0.0069039944, 0.032504793, -0.03247569, 0.02143221, 0.021926912, 0.009268376, 0.020311857, 0.0024189444, + 0.009981329, 0.025462572, 0.016863497, 0.01234571, 0.003964886, -0.0011094406, -0.031049788, 0.019686205, + -0.021839611, -0.037393607, 0.002004268, -0.009777628, 0.020413708, -0.015364843, 0.0060600922, 0.015524894, + 0.009566652, 0.018173002, 0.02082111, -0.03192279, 0.022363413, 0.0121201845, 0.017038098, -0.018173002, + -0.0027099452, -0.010941631, -0.043708324, 0.028940031, -0.0021424936, -0.00090210256, 0.020253656, 0.0017905644, + -0.0053362274, 0.04236972, -0.009617577, -0.03201009, -0.0044668624, 0.012483935, -0.020195456, 0.035182, + 0.017154498, -0.025448022, -0.017081749, -0.0007284114, -0.047433134, 0.012760386, -0.0078933975, 0.041671317, + 0.017591, 0.02485147, -0.04021631, 0.017081749, -0.015481244, 0.0352693, 0.026481075, -0.047549535, 0.02803793, + 0.008315348, 0.0042813495, 0.044610426, -0.027310427, 0.0070385826, -0.035443902, -0.041118417, -0.0151174925, + -0.022668963, -0.002800883, 0.0074023334, -0.010876155, 0.00528894, -0.009784902, 0.005725441, -0.002198875, + -0.003968524, 0.008017072, -0.04577443, 0.008664549, -0.010323254, -0.023672916, -0.022086963, 0.007878847, + 0.008635449, -0.013138687, -0.02469142, 0.024240369, 0.036637004, -0.022261564, -0.0016414265, -0.019104203, + 0.08433204, 0.012825862, 0.0153793935, -0.022392513, 0.0072895708, 0.024196718, 0.016019596, 0.009573927, + -0.018900504, 0.015423044, -0.0088246, 0.01786745, -0.004612363, 0.010468755, -0.02432767, -0.012411185, + -0.022086963, -0.0019642555, -0.0040303613, 0.023949368, 0.002117031, -0.0062055923, 0.04618183, -0.016761648, + 0.011429057, -0.030467786, 0.050605044, 0.008628175, -0.02115576, -0.006612994, 0.011654583, -0.007857022, + -0.013880739, 0.014062615, -0.0056272284, -0.026335575, 0.025840873, -0.008322624, 0.013007737, -0.02121396, + 0.0021606812, 0.0038048357, -0.013313288, 0.025651723, 0.022203363, 0.014433641, -0.0047069383, 0.011603658, + 0.010730655, -0.041031115, 0.0024043943, -0.0051216143, -0.002538982, -0.012978637, 0.0010958, 0.004033999, + -0.015073842, 0.058374766, 0.0104760295, 0.03163179, 0.027266776, 0.016237846, -0.020806558, -0.026364675, + 0.044435825, 0.0070167575, 0.019744406, -0.016776197, -0.01073793, 0.029492933, -0.03911051, -0.0026790262, + 0.016659796, 0.0025735386, 0.012585785, 0.025549872, 0.010963456, -0.023178216, 0.004725126, 0.06041177, + 0.010643355, -0.009246551, 0.0015286637, 0.007951598, 0.03203919, -0.0041467617, -0.00019187867, -0.010803405, + 0.01780925, -0.0041285744, 0.015670395, 0.010330529, -0.0013240537, 0.02797973, -0.009835828, -0.009377502, + -0.027339527, -0.019075103, 0.010206854, 0.009719428, -0.02106846, -0.0037011667, -0.018740453, 0.00623833, + 0.028925482, 0.021795962, -0.01054878, -0.027310427, -0.009937678, -0.0018142082, 0.0042158742, -0.0015468512, + 0.014986542, -0.025578972, -0.0025535321, -0.03259209, -0.000092017646, 0.04263162, 0.0176492, 0.0043795626, + -0.015612194, -0.007464171, -0.019337004, -0.008286248, -0.04315542, -0.0009243823, -0.010774305, -0.014899242, + -0.0015495794, 0.02124306, -0.019846257, 0.02099571, 0.0027663265, -0.010061353, 0.0025189759, -0.012804036, + 0.02172321, 0.019453404, -0.005132527, -0.006707569, -0.007900672, -0.0027154014, 0.009792178, -0.0092611015, + -0.0020460996, 0.0081698485, -0.016266946, -0.0042886245, -0.0010721561, 0.048364338, -0.016776197, 0.0349783, + 0.0349492, -0.017721951, 0.0035738538, 0.009232001, 0.008009798, -0.010919806, -0.005787279, 0.009908578, + -0.010134104, -0.01406989, -0.027106727, 0.023454666, 0.0097994525, 0.0047542257, -0.0084317485, 0.036666103, + -0.029289233, -0.04236972, -0.0022261562, -0.0027572329, -0.0065147807, 0.004826976, -0.011007106, 0.020646509, + -0.024123969, 0.051099744, -0.014535491, 0.010250504, 0.013175062, 0.012600335, -0.0011376314, -0.011654583, + 0.0069258194, -0.008228049, -0.014295415, -0.010883431, -0.017110849, -0.03139899, 0.0072240955, -0.051856346, + 0.004637826, 0.0018896866, 0.0045359754, 0.027441377, 0.0055981283, 0.0100759035, -0.0045650755, -0.0038375733, + 0.018842304, 0.025360722, -0.016921697, 0.02821253, -0.019729856, 0.00355021, -0.02808158, 0.0357931, + -0.0012513036, 0.025389822, -0.02783423, 0.017998401, 0.016135996, 0.02426947, -0.009610302, 0.0360841, + 0.0106288055, 0.008999201, 0.0020751995, 0.026073674, 0.0018405803, -0.005565391, -0.013029561, -0.020210007, + 0.019133303, 0.003090065, 0.012636711, 0.010745205, 0.026277374, -0.013109587, -0.00028963675, 0.025302522, + -0.011494532, 0.010912531, 0.020049958, -0.020428257, -0.0072822957, -0.00087663997, -0.016179645, 0.010090454, + 0.006216505, -0.0010639718, -0.02861993, -0.013800714, -0.014404541, -0.016747097, 0.029376533, -0.018507652, + -0.012294785, 0.022538014, -0.020428257, -0.0037902857, 0.014913792, -0.009304752, 0.008664549, -0.022727164, + 0.0015150231, 0.0029009145, 0.043941125, -0.0049979393, 0.0034756411, -0.02457502, 0.022552563, 0.00067066593, + -0.0027899705, -0.007973422, -0.018900504, -0.0016468827, 0.004041274, 0.03235929, 0.005077964, -0.037946507, + 0.025215222, 0.030758787, -0.01725635, -0.023047265, -0.005267115, -0.025637172, -0.02450227, 0.011509082, + 0.01234571, 0.017154498, 0.037189905, 0.0047505884, 0.02172321, 0.005496278, -0.009777628, 0.020617409, + -0.004859714, -0.036666103, 0.010163204, 0.024284018, -0.02166501, -0.018813204, 0.015073842, 0.013095037, + 0.03308679, 0.010468755, 0.012949537, -0.034221698, -0.026451975, -0.030089485, 0.016354246, 0.0051798145, + 0.011705508, -0.009944953, 0.0014950167, -0.022072412, 0.007922498, 0.016325146, 0.05718166, -0.00022382055, + 0.0018524021, 0.012134735, 0.0028481705, 0.024429519, -0.033697896, 0.013822539, 0.019118754, 0.0361423, + 0.02076291, 0.009457527, 0.006485681, 0.019467955, 0.032737594, 0.019817157, 0.0064965934, 0.00533259, + -0.015277543, -0.028896382, -0.02840168, -0.01408444, -0.0016095983, -0.013931665, -0.011596383, 0.018915053, + -0.008402648, 0.05741446, -0.038499407, -0.0043868376, 0.008009798, -0.0067512193, -0.009435702, -0.010090454, + -0.004645101, 0.0042740745, 0.012804036, -0.020064507, 0.0345709, -0.011690958, -0.006442031, 0.020719258, + -0.020020857, 0.007122245, 0.020268207, -0.04952834, 0.021795962, -0.0007493271, 0.022101512, 0.026451975, + -0.025127921, -0.003313772, -0.043009922, 0.028328931, 0.016499747, 0.05278755, -0.006463856, -0.026772076, + 0.0058272914, 0.015306643, -0.029856684, 0.01810025, 0.04530883, -0.040565513, 0.020631958, -0.02085021, + 0.032970395, -0.033319592, 0.010854331, -0.06093557, 0.018027501, 0.0002027912, 0.021679562, -0.04283532, + 0.0016914423, -0.029667534, 0.004463225, -0.0035520287, -0.0024935133 + ], + "text": "Page faq.mdx: [object Object],faq_general" + }, + { + "embedding": [ + 0.02553167, -0.013367403, 0.0063374504, 0.030218305, -0.0007690104, -0.0015721213, -0.012122297, 0.0442922, + -0.021250743, -0.0033558407, -0.03578631, -0.024202624, -0.008736728, -0.058310136, 0.04532746, 0.029882547, + -0.044683922, 0.010247643, 0.0005010153, 0.06552896, 0.027700113, 0.004483781, 0.009324306, 0.039395716, + 0.019893717, -0.0012319905, -0.032037, 0.05842206, 0.03223286, -0.049132727, 0.050195962, -0.038220562, + 0.010933151, -0.01937609, 0.021264734, 0.0444321, -0.0030358206, -0.0010160205, -0.027951933, 0.029938506, + -0.013353413, -0.05489659, -0.045943018, 0.036961466, -0.0005303068, -0.027406324, -0.052350417, -0.004613188, + 0.019991647, 0.02547571, -0.031281542, -0.020019628, 0.058981657, 0.027770063, -0.042501487, -0.049216665, + -0.006050656, 0.012395102, -0.033687815, -0.019837758, 0.04792959, -0.006736164, 0.03578631, 0.037772883, + -0.011031081, 0.035926208, -0.00044549268, 0.014759404, 0.00033641473, 0.0064108972, 0.0002175001, 0.07207625, + 0.007757431, -0.034135494, -0.02873537, 0.013514298, -0.007421672, 0.03875218, -0.016704008, -0.016983807, + 0.014689454, -0.017795224, -0.03595419, 0.026510967, -0.032372758, -0.03489095, -0.046474636, -0.023461157, + 0.00395566, 0.06552896, -0.020900995, 0.0033313583, 0.0069425157, 0.04163411, 0.044124324, 0.01621436, + -0.0068830587, 0.028567491, -0.012500026, 0.01934811, 0.043788563, -0.014717434, -0.0050958414, -0.046110895, + 0.052993953, 0.059541255, 0.0010483724, -0.013514298, 0.026105259, 0.0054525854, -0.09222179, -0.036653686, + -0.0153469825, 0.01261894, 0.023293277, -0.018536692, 0.026678847, -0.034387313, -0.018606642, -0.023852875, + -0.03861228, 0.00035368357, -0.011478759, 0.04756585, -0.0056029777, -0.017711286, 0.026832737, -0.043033104, + -0.04258543, -0.02243989, 0.021726402, 0.014605515, 0.055568106, -0.043928463, -0.033072256, 0.023391208, + -0.08276458, 0.0031862126, -0.06804715, -0.018130984, -0.02252383, 0.0053826356, 0.009163422, 0.0082540745, + 0.021054884, 0.023237318, -0.027616173, 0.0028207249, -0.032344777, -0.012975684, -0.012402096, -0.04532746, + -0.000068091744, 0.003292886, 0.02260777, -0.029882547, 0.0056309574, 0.05721892, -0.0053581535, 0.0103805475, + -0.033380035, -0.0011069553, -0.014521575, 0.0072607873, -0.03153336, 0.016857898, -0.042333607, 0.0011419302, + -0.08186922, -0.02568556, -0.042977147, -0.051287178, -0.012528006, 0.03836046, 0.040319055, -0.037241265, + -0.003990635, -0.01604648, 0.0036443835, 0.046026956, -0.010436507, -0.014619504, -0.027951933, 0.016871888, + -0.024062725, -0.003271901, 0.016032489, 0.024692273, -0.023796916, 0.009324306, -0.0045852084, 0.028357642, + 0.0760494, 0.021740392, 0.017067747, -0.013206519, 0.03433135, -0.0034590168, 0.037213285, -0.056295585, + -0.033072256, 0.027742084, 0.01943205, -0.024314543, -0.0046586553, -0.0015598801, 0.0017163928, 0.0033575895, + 0.05663134, -0.039367735, 0.016508149, -0.031449422, 0.013577253, 0.030777903, 0.014885314, -0.024776213, + -0.020313416, 0.053385675, 0.0058547966, 0.010485472, -0.021628473, 0.0520986, 0.02581147, 0.021880291, + 0.027504254, 0.0014943022, -0.011702598, 0.0073027574, 0.018326843, -0.0042389566, 0.04479584, 0.022258021, + -0.011884468, -0.058310136, 0.00048309067, -0.05092344, -0.021460593, -0.042221688, -0.0058233193, -0.015360972, + 0.006816606, 0.024524393, 0.017319566, 0.017669315, -0.02232797, 0.011457774, -0.0069565056, -0.003847238, + 0.006015681, 0.04787363, 0.04138229, 0.010422518, -0.00025072624, 0.018298863, -0.00055610074, -0.04241755, + -0.0057813493, -0.0193621, -0.015249052, 0.001153297, 0.006442375, 0.03581429, -0.03477903, 0.0044872784, + -0.029490829, 0.010149714, -0.024720253, 0.055763967, -0.020327406, -0.056351542, 0.037577022, -0.04166209, + -0.0020163024, -0.0052812085, -0.010639362, -0.06345844, -0.002992102, 0.079183154, 0.021992212, 0.014703444, + 0.018033054, -0.01578067, -0.04479584, -0.013087604, -0.009163422, 0.050839502, -0.014157835, -0.008673773, + 0.0030568053, 0.03595419, 0.035002872, -0.020061597, -0.005211259, -0.015472892, 0.0019078803, 0.01614441, + 0.043648664, -0.014815364, -0.014843344, -0.00055610074, 0.046334736, -0.048209388, 0.021628473, 0.0070264554, + -0.024398483, 0.024902122, -0.0381646, -0.04510362, -0.016801938, -0.004413831, -0.017067747, 0.00968105, + 0.009778979, -0.03567439, -0.0026738304, -0.0048580123, 0.029406888, 0.022887569, -0.004948947, -0.013213513, + -0.020131547, -0.016578099, -0.014199805, -0.021012915, 0.0079393005, -0.017669315, -0.018690582, -0.010583402, + -0.0019690862, -0.033715796, 0.002642353, -0.012500026, 0.030386185, 0.015640771, -0.013325433, 0.0067641437, + 0.013542278, 0.0088836225, 0.039451677, 0.039255816, -0.015472892, -0.018284872, 0.010429513, -0.03276448, + 0.033100236, 0.027993903, -0.03903198, -0.02895921, 0.037129343, 0.039143898, -0.03889208, -0.0044592987, + -0.04809747, -0.0061380933, -0.021754382, -0.03525469, 0.019641899, 0.0045642233, -0.039311778, 0.027867993, + -0.009744004, -0.012283182, 0.033352055, 0.009974839, 0.009051502, 0.0029728657, -0.06648027, 0.019543968, + 0.052014656, -0.06676007, 0.0318971, -0.026804756, -0.017137697, 0.0059772087, -0.020677155, 0.03184114, + 0.039675515, 0.018075023, 0.027364355, 0.04446008, 0.020956954, -0.042529467, 0.026832737, -0.013933997, + 0.012968689, 0.08030235, -0.026902687, -0.017627345, 0.02870739, -0.024734242, 0.027014606, 0.008778698, + 0.010877191, 0.02904315, -0.004739098, 0.008715743, 0.021866301, 0.008694758, 0.03463913, 0.024160655, 0.07319545, + -0.05705104, -0.011709593, -0.043620683, 0.001085096, 0.01575269, 0.0024220112, 0.0014602017, 0.018760532, + 0.020495286, -0.026972637, -0.06060449, -0.009757995, -0.010877191, -0.031029724, -0.015500871, -0.01271687, + 0.040654812, 0.026972637, 0.053189814, 0.04432018, -0.009757995, -0.055456188, -0.042193707, -0.018186944, + 0.069390185, 0.0045747156, -0.023307268, -0.031281542, -0.06390612, -0.024398483, -0.046922315, 0.044264223, + 0.010968125, -0.017851185, 0.027462285, 0.038976017, -0.01912427, 0.007442657, 0.002971117, -0.01607446, + 0.017389515, 0.01652214, -0.008407963, -0.04736999, 0.031001743, 0.02262176, 0.0321769, -0.01892841, 0.020551246, + 0.014290741, 0.010422518, -0.00063698017, 0.021964232, -0.017025776, -0.017151687, 0.0050223945, -0.0056869173, + 0.046250794, -0.036457825, -0.027056575, -0.04048693, -0.037381165, 0.052910015, -0.016242338, -0.019963667, + -0.010324588, 0.038836118, 0.02243989, 0.007001973, 0.020607205, 0.0038157606, -0.027462285, 0.048964847, + 0.00323168, -0.0091214515, 0.018144973, 0.021992212, 0.021782363, -0.05145506, -0.007295762, 0.025797479, + 0.017669315, 0.008289049, 0.049916163, 0.013409373, -0.036625706, -0.021278724, -0.048964847, 0.0061800634, + 0.0072817723, 0.029966487, -0.017235626, -0.016578099, -0.0052742134, -0.052882034, -0.06362632, -0.024272574, + -0.023936816, -0.031113664, -0.023824895, -0.0112479245, -0.007288767, 0.015095163, 0.061891567, 0.05442093, + 0.004018615, 0.011024086, 0.011639643, 0.016620068, -0.04227765, -0.03200902, 0.03136548, 0.013954981, + 0.0029116597, 0.037073385, -0.0043019117, -0.030973764, -0.018424772, 0.000066015105, -0.030917803, -0.012541995, + -0.0020862522, -0.010807241, 0.01901235, -0.01600451, -0.023209337, -0.06552896, -0.012479041, 0.0113248695, + -0.01590658, -0.010961131, 0.00067282945, 0.008435944, 0.011555704, -0.011555704, 0.0075335912, -0.035870247, + 0.009128447, 0.00810718, 0.0011296889, 0.01614441, 0.010989111, -0.03768894, -0.049832225, -0.007624526, + -0.01596254, 0.04418028, -0.012528006, 0.017067747, 0.037325203, 0.008673773, 0.029183049, -0.053945273, + -0.0068970486, 0.027895972, -0.00392768, -0.052154556, 0.013591243, 0.0257695, 0.013199524, -0.040822692, + 0.019963667, -0.0057883444, 0.024426464, 0.05500851, 0.0008560105, 0.017347546, -0.023503127, -0.0025689057, + -0.006907541, -0.019725839, 0.0018833978, -0.005914254, 0.009939864, -0.04846121, -0.020621195, -0.009086477, + -0.013465333, -0.034667112, -0.027042586, -0.0121922465, -0.015319002, 0.0022366443, -0.0381646, 0.026874706, + 0.029350929, -0.036038127, 0.02568556, -0.014815364, -0.020789076, -0.0027822526, -0.023461157, 0.016508149, + 0.06267501, 0.021614483, -0.0043963436, 0.016885877, -0.043228965, 0.0011445533, 0.03158932, -0.013975967, + -0.030022446, -0.038948037, -0.030302245, -0.018872451, -0.008226095, -0.049608383, -0.014969253, -0.01915225, + -0.013248488, -0.016424209, 0.006837591, -0.012479041, 0.0060681435, 0.03626197, -0.05120324, -0.0035272178, + 0.0054665753, -0.03181316, 0.010926156, -0.069054425, 0.053637493, 0.003389067, 0.04860111, 0.018746542, + 0.0093942555, -0.05998893, 0.018270884, 0.03226084, 0.0013640207, 0.033324078, 0.017109716, -0.01600451, + -0.02582546, -0.0035726852, -0.047062214, 0.0037283234, 0.013996951, -0.036485806, 0.031281542, -0.0034415293, + -0.004955942, 0.0016149656, 0.003654876, 0.002491961, 0.010667342, 0.032960337, 0.021250743, -0.007274777, + -0.0110031, -0.02557364, 0.056547403, 0.0055540125, 0.00049358315, -0.014745414, -0.020495286, -0.01916624, + -0.017725274, -0.0020163024, 0.022929538, -0.017025776, -0.022202061, -0.026902687, -0.030498104, 0.018284872, + 0.0075126067, 0.0073377322, -0.026720816, 0.00036679916, -0.039619558, 0.030917803, 0.004445309, 0.0073377322, + 0.052742135, 0.0007786285, -0.008310034, -0.03813662, -0.013437353, 0.047062214, -0.033352055, 0.020117557, + -0.013703162, -0.013003664, -0.000718734, -0.0019848251, 0.04753787, -0.003299881, 0.027014606, -0.01280081, + 0.011415805, -0.00785536, 0.055092447, -0.010303603, 0.01590658, -0.033771753, 0.030693965, -0.010982116, + -0.009988829, -0.0837159, -0.016871888, 0.011898458, -0.025000053, -0.0046761427, -0.030721944, -0.009310316, + 0.021334684, -0.0039591575, -0.0018116994, -0.05165092, -0.016983807, -0.0068760635, -0.04725807, -0.010842216, + -0.03584227, -0.015444912, -0.0015091666, -0.0053931284, -0.03256862, -0.014815364, -0.008470919, -0.009114456, + -0.008953572, -0.010226658, 0.040319055, 0.016550118, 0.03905996, 0.0008345883, -0.014969253, 0.006599762, + -0.0073027574, 0.03522671, 0.0015240308, -0.017893154, -0.019823767, -0.0037318207, -0.020970944, -0.0011463021, + -0.053021934, -0.021670442, -0.005141309, -0.033799734, -0.048517168, -0.018340833, 0.029183049, -0.029490829, + 0.013961976, 0.024370505, -0.0009399502, 0.045411397, -0.009820949, 0.01278682, 0.017179666, 0.011436789, + 0.023643026, 0.015486882, -0.0018921415, 0.012185252, -0.01278682, 0.01944604, 0.0074496516, 0.017893154, + -0.012024367, 0.02565758, 0.02838562, 0.03805268, -0.029462848, -0.0054595806, -0.028441582, 0.024426464, + 0.024132675, 0.010296607, -0.03228882, 0.0030550568, 0.057134982, 0.024412474, -0.03836046, 0.0027979913, + -0.018760532, 0.047761712, 0.0030165843, -0.009422235, 0.005449088, 0.0027140516, 0.021754382, -0.0013272971, + -0.0056309574, -0.0064388774, -0.0024202624, -0.017851185, -0.0074146767, -0.0047076205, -0.00711739, 0.017025776, + -0.005935239, 0.00800925, -0.0016997796, -0.046138875, -0.029099109, 0.03528267, 0.03933976, 0.010751282, + 0.005749872, 0.021306703, -0.012709876, 0.05791842, -0.034219433, 0.010912166, -0.033072256, -0.03494691, + -0.01576668, 0.0059037614, 0.008331019, -0.021166803, 0.025209902, 0.0063479426, 0.028357642, 0.0010955884, + 0.010009814, 0.04202583, -0.02543374, -0.00009415896, 0.015179102, -0.017739264, 0.0005530405, 0.01929215, + 0.014059906, 0.000041587333, -0.013192529, -0.027252436, -0.020369377, 0.000046423702, 0.014815364, -0.020579226, + -0.009862919, 0.01270288, -0.038948037, 0.0071138926, -0.036821567, -0.004627178, 0.03447125, 0.030582044, + 0.001970835, 0.011303885, 0.015486882, -0.0074146767, 0.033911653, 0.0040256097, 0.0062675006, -0.004469791, + -0.013192529, 0.044544023, 0.04479584, -0.012339141, -0.033939634, -0.0013579001, -0.0033645844, 0.013339424, + 0.0014033675, -0.046082918, 0.010688326, -0.038836118, 0.03564641, 0.018284872, 0.005421108, -0.04118643, + 0.0070229582, -0.017473456, 0.00480555, 0.030442145, -0.014367685, -0.011143, 0.027532235, 0.00025990716, + 0.029434867, 0.04166209, -0.023447167, 0.043956444, 0.007876345, -0.044991698, 0.036094088, -0.0113248695, + -0.055596087, 0.036625706, -0.013857052, -0.008743723, 0.013206519, 0.006029671, -0.0023310764, -0.010100748, + 0.010989111, 0.013815082, 0.0032404237, -0.014843344, 0.031141642, 0.011149995, -0.012632931, -0.029630728, + 0.018886441, -0.013982961, -0.020229477, -0.010107744, 0.027881984, 0.020831045, -0.00819112, -0.015724711, + -0.007029953, 0.015444912, 0.046558574, -0.00814915, 0.0079393005, 0.04860111, 0.035450548, 0.0041165445, + -0.01271687, 0.03861228, -0.015165113, -0.027210465, 0.014661474, -0.0012844529, 0.02838562, 0.0027647652, + 0.0035447052, 0.0037073384, 0.0089255925, -0.026944656, -0.03511479, 0.0221461, 0.033435997, -0.029882547, + 0.0064528673, -0.0011209452, 0.018830482, 0.020047607, 0.044208262, 0.017585374, 0.0040815696, -0.008205109, + -0.019935688, 0.03525469, 0.005942234, 0.017529415, 0.011842498, -0.058757816, 0.02255181, -0.02879133, + 0.015430922, 0.009023522, -0.00080923154, -0.021558523, -0.028273702, -0.009191401, 0.01877452, -0.028273702, + -0.0068760635, 0.022048172, -0.0017172671, 0.012535001, 0.026930666, 0.017669315, -0.009883904, -0.017095726, + -0.028875269, -0.020663165, -0.0033820719, 0.010212668, -0.026664857, -0.0072467974, -0.0049909167, 0.00027520867, + 0.039955314, 0.01419281, 0.03810864, 0.015179102, 0.031113664, 0.018494722, 0.04815343, -0.00055129174, + 0.022062162, 0.010555422, -0.00054998015, 0.018690582, 0.007386697, 0.008310034, 0.015249052, 0.00799526, + 0.0054805656, 0.018606642, 0.039843395, -0.024804192, 0.011359844, -0.050251924, -0.00015028274, 0.0070894104, + 0.0017837194, -0.014143846, -0.015249052, 0.020509277, -0.018200934, 0.017417496, 0.01891442, -0.005256726, + 0.0026720816, 0.007904326, 0.012807805, -0.016913857, 0.036569744, 0.010037794, -0.00781339, -0.02252383, + 0.03598217, 0.020649176, 0.011793533, 0.04490776, -0.0155428415, -0.019907707, -0.01596254, -0.017879164, + -0.0012459805, 0.0074636415, 0.0024744736, -0.00030165844, 0.029994465, -0.002143961, -0.0040675797, -0.02547571, + 0.0018659104, -0.010072769, -0.0068620737, -0.017221637, 0.008268064, 0.0030900317, -0.04815343, 0.024244593, + 0.0074986164, 0.0071488675, -0.010954136, 0.021712413, 0.00550155, 0.026091268, 0.006288485, -0.04535544, + 0.009114456, -0.013451343, 0.023936816, -0.0035919212, 0.020481296, 0.011289895, 0.052378397, 0.014339705, + -0.002458735, -0.0011428045, 0.015808651, 0.01906831, 0.016662039, 0.005333671, 0.014171826, -0.009030517, + 0.014591524, -0.014003946, 0.014801374, -0.003114514, -0.008967562, -0.046502616, 0.019641899, 0.014507584, + 0.0055645052, 0.0045187557, 0.031225583, -0.06099621, 0.0047530876, -0.00045817107, -0.023684995, 0.0011690357, + 0.0031844638, 0.03142144, -0.026147228, -0.01943205, -0.044516042, 0.027574204, 0.020900995, -0.00826107, + 0.0023503127, -0.0112479245, -0.021642463, 0.009415241, 0.009988829, -0.022887569, 0.018284872, -0.018200934, + 0.008960567, -0.0052042636, 0.013822077, 0.0074706366, -0.00785536, -0.028301682, 0.023866866, 0.04210977, + -0.018214922, -0.008799682, -0.0072118226, 0.0076175313, -0.013542278, 0.043340884, -0.0221461, 0.00983494, + -0.0162983, -0.02831567, 0.043900482, 0.027350364, -0.0013788851, -0.010058778, 0.026231168, 0.0081351595, + -0.0093173105, -0.0019323627, 0.018970381, -0.03810864, -0.003948665, -0.00016099379, 0.01884447, -0.030582044, + -0.011765554, -0.0038857104, 0.003334856, 0.0064493697, 0.005536525, -0.0044662934, 0.004704123, -0.017963104, + 0.009142436, -0.0059457314, -0.017991085, 0.013234499, 0.010037794, -0.037660964, 0.0020250462, 0.02585344, + -0.018592652, -0.009422235, 0.001355277, 0.005620465, 0.010751282, 0.021390643, 0.023461157, 0.0028014889, + 0.021138825, 0.09104664, -0.02260777, 0.017613355, 0.034723073, 0.027266424, 0.008806678, -0.003128504, + 0.02884729, -0.032037, 0.00792531, -0.045691196, -0.0050468766, -0.0054595806, -0.008282054, -0.01909629, + -0.029378908, -0.005312686, 0.0031792175, 0.018438762, -0.0013718901, 0.009023522, 0.028357642, 0.030721944, + -0.016899867, 0.01902634, -0.021712413, -0.014409655, -0.004627178, 0.01884447, 0.0052042636, -0.02578349, + 0.00949918, 0.017515425, 0.034443274, 0.01118497, -0.026762787, -0.008869632, 0.008554858, 0.0031232578, + -0.023461157, -0.026455007, -0.027462285, 0.021656452, -0.0224259, -0.031141642, 0.021376653, 0.04107451, + 0.0071768477, -0.012101312, 0.00036658059, -0.003840243, 0.018368812, 0.020075588, 0.0038857104, -0.024622323, + -0.029742647, 0.033268116, 0.056183666, 0.025937378, -0.030554065, -0.02846956, 0.017739264, 0.0036443835, + 0.010345573, 0.008603823, -0.006229028, -0.017445475, -0.04784565, -0.009352285, -0.014689454, -0.010905171, + -0.021740392, 0.04146623, 0.013982961, -0.005365148, 0.0085688485, -0.0014706942, 0.0062150382, -0.024496414, + 0.03903198, -0.005340666, -0.003504484, -0.026720816, 0.0047111176, -0.05450487, 0.0127448505, 0.06043661, + -0.01621436, -0.0018466742, 0.012325152, -0.00806521, -0.025070002, 0.010660347, -0.027448295, 0.0031267551, + -0.016648049, -0.00048046757, -0.004291419, -0.008827662, -0.0035482026, 0.034163475, 0.020663165, -0.009016527, + 0.005704405, -0.006750154, 0.010170698, 0.015193093, -0.0050119017, -0.014829353, -0.024594342, 0.011653634, + 0.014941273, -0.009058497, 0.003861228, -0.029099109, -0.009142436, -0.00078999536, -0.024510404, -0.030246286, + 0.002731539, -0.0015109152, -0.029546788, -0.014339705, -0.017865174, -0.012569976, 0.012339141, -0.031141642, + 0.0010457493, 0.00010011563, -0.014395665, 0.04510362, 0.0259094, 0.0061380933, 0.038976017, -0.008722737, + 0.020439327, 0.022775648, 0.006487842, -0.018228913, 0.06345844, 0.013094599, 0.0438725, -0.0051378114, + 0.02582546, 0.021628473, -0.004997912, -0.03158932, 0.009030517, -0.032344777, -0.0064248876, -0.0010527442, + -0.01275884, 0.021908272, 0.029882547, -0.0014313475, -0.0052602235, 0.005018897, -0.009030517, -0.0053581535, + -0.008421954, -0.007050938, -0.01884447, -0.036793586, -0.033100236, 0.02546172, 0.010485472, 0.0024045238, + 0.011786538, 0.01934811, 0.033380035, 0.015249052, -0.04840525, -0.026818747, 0.037632983, 0.012583965, + -0.009114456, -0.020956954, -0.02241191, 0.008750718, -0.0027630164, -0.028343651, 0.0075056115, 0.0015388952, + 0.00048134194, 0.03528267, 0.0024884634, -0.02568556, -0.014731424, 0.017025776, -0.018019063, 0.042837247, + 0.01590658, 0.024622323, 0.038836118, 0.013003664, 0.030554065, -0.006386415, -0.03212094, 0.034667112, + 0.011730579, 0.020677155, -0.03525469, -0.0010046537, 0.019851748, 0.013961976, 0.023615045, 0.0013447845, + -0.0022751167, 0.005928244, 0.005512043, -0.03528267, -0.007372707, 0.023852875, -0.0037702932, -0.003450273, + 0.0017391264, 0.01920821, 0.037605003, 0.02582546, 0.0025111972, 0.0017706038, -0.0031267551, 0.018256893, + -0.05142708, -0.0068690684, 0.03172922, 0.0032334286, -0.005029389, -0.039115917, 0.01652214, 0.04770575, + 0.018592652, -0.0028224736, 0.015528851, -0.028329661, -0.026748797, 0.0033173684, 0.01115699, -0.053161833, + 0.020243466, 0.008582838, 0.008897612, 0.0005539148, 0.0045152586, -0.006827099, 0.030050427, 0.015095163, + 0.049048785, -0.01923619, -0.017879164, -0.015235063, 0.0044802837, -0.0070404457, -0.024104694, -0.020537255, + 0.0139270015, -0.0068201036, -0.02547571, 0.0044068363, -0.023698986, -0.0066627166, -0.0035517002, -0.0026073782, + 0.00072266866, -0.009744004, 0.0128148, 0.03782884, 0.005512043, -0.0318971, 0.018788511, 0.0013920007, + 0.021012915, 0.014829353, -0.02238393, -0.021362664, 0.013591243, 0.012898739, 0.021572514, 0.012709876, + -0.0131015945, -0.059429333, -0.01571072, -0.040542893, -0.0007099903, -0.036150046, 0.008282054, -0.01877452, + 0.0016735485, 0.027658144, -0.01611643, 0.008484908, 0.0007659501, -0.0021352172, -0.028567491, 0.009862919, + 0.032680538, 0.037213285, -0.010429513, 0.007736446, -0.00040898763, 0.010968125, -0.040682793, 0.009247361, + -0.0023100916, 0.020033617, 0.027700113, 0.035590447, -0.016396228, 0.012003383, -0.0045607258, 0.017599365, + -0.0046306755, 0.0062395204, 0.027826022, -0.013381394, 0.0036863536, 0.008960567, -0.0022943527, -0.02523788, + 0.026413038, 0.0011882719, 0.01423478, 0.02852552, -0.018788511, 0.0008796185, -0.004655158, -0.006813109, + -0.0192222, 0.016102439, 0.01273086, 0.017641336, 0.016032489, 0.02281762, -0.04163411, 0.043340884, -0.04076673, + 0.01966988, 0.018816492, 0.02873537, 0.0016971566, 0.0041585146, 0.033072256, 0.022999488, 0.019823767, + -0.012297171, 0.025965359, 0.02269171, 0.033855695, -0.001167287, 0.02250984, 0.011646639, -0.0064318823, + -0.00643538, -0.0074566468, -0.04272533, 0.0008000506, -0.004798555, -0.0034187955, 0.0121153025, 0.007253792, + -0.005340666, 0.0014313475, 0.010422518, 0.032037, -0.018326843, 0.036793586, -0.0052182535, -0.03156134, + 0.017557396, 0.042781286, -0.007015963, -0.02516793, 0.026119249, -0.020173516, -0.029155068, -0.037017424, + -0.020998925, 0.034135494, -0.033547916, -0.024118684, 0.026762787, 0.016396228, 0.046698473, -0.0049874196, + 0.003422293, -0.015360972, 0.0036094086, -0.01885846, -0.036821567 + ], + "text": "Page index.mdx: Test,Connecting the builders of Ethereum,Devconnect is a week-long gathering of independent Ethereum events to learn, share, and **make progress together.**\n,Devconnect IST Photo Gallery,View Full Archive →,aefaef\n\naefafea\n\n,## Discover Ethereum and its community at Devcon!\n\n**Devcon is the Ethereum conference for developers, thinkers, and makers. Join Devcon and empower yourself to use and build decentralized systems.**\n\nDevcon is more than just a conference with talks and presentations to learn about Ethereum. It’s a cultural hub and a place for inspiration for passionate builders, engineers, designers, researchers, community organizers, and artists.\n\nWhether you're a seasoned Ethereum expert or just starting, Devcon is for you. It’s an intensive introduction for new Ethereum explorers, a global family reunion for those already a part of our ecosystem, and a source of energy and creativity for all.\n,## **Devcon 7 — Southeast Asia**\n\n## Devcon’s goal is to make Ethereum more accessible to communities around the world and to contribute to the ongoing evolution of the global Ethereum ecosystem.\n,Our intention is to bring the Devcon experience to the entire Southeast Asia region. On the Road to Devcon (RTD), you can explore Ethereum communities in SEA and join meetups, conferences, and workshops.\n,Ethereum can have real use cases in SEA. Vietnam, the Philippines, Indonesia, and Thailand are among the top 10 countries leading in the Global Crypto Adoption Index.\n,/road-to-devcon,Explore RTD Events →,## **Road to Devcon Grants**\n\n## Are you based in SEA, driven by a community-oriented spirit, and passionate about Ethereum's potential to create a positive impact?\n\nCheck out the Road to Devcon grants round and apply. 
This initiative was born from our commitment to support the rise of new Ethereum events, grassroots communities, and educational endeavors across Southeast Asia before Devcon 7.\n,https://esp.ethereum.foundation/devcon-grants,Apply for RTD Grants →,## **Devcon VI Bogotá**\n\n## Tracing our roots back to ÐΞVcon 0, a meetup of early Ethereum devs in Berlin, Devcon has grown into a global beacon for the Ethereum community, uniting voices, ideas, and innovations from across the world.\n\nAt Devcon VI, we turned our spotlight to Latin America. The Road to Devcon VI was paved with \\~14 events across the region, hosted by the passionate local communities of builders in Latam.\n,https://blog.ethereum.org/en/2022/11/17/devcon-vi-wrap,Devcon VI Recap →,Devcon is geared toward Ethereum's builders, creators, and thinkers who wish to improve this world. Programming at Devcon takes a holistic approach and aims to engage all attendees through talks, panels, workshops, lightning talks, and freeform learning sessions.\n,## **Devcon Archive**\n,https://archive.devcon.org,View Full Archive →,Devcon is a 4-day conference, all in one venue, happening between **12-15 November**. But as usual, **Devcon Week will span the entire week of November 9-17**, with events before and after Devcon, and side events during the nights, organized by the local and global Ethereum community.\n,,index" + }, + { + "embedding": [ + 0.029327886, -0.008724478, 0.015516498, 0.0142376665, 0.012021024, -0.008831047, -0.015047593, 0.027693823, + 0.0105290525, 0.010941121, 0.0060353777, -0.0699095, -0.0026518009, -0.019765064, 0.028787935, 0.052176356, + -0.019537715, 0.0038258398, -0.010273286, 0.052403703, 0.005186375, 0.0038755722, 0.01980769, 0.023871535, + -0.002426229, 0.00599275, -0.035920978, 0.05027232, 0.027480684, -0.0037086136, 0.042002536, -0.023942582, + 0.023629978, -0.0014635525, -0.021200197, 0.041519422, -0.009193383, 0.017036889, -0.017477375, 0.03398852, + -0.004088711, -0.0838914, -0.013150658, 0.03833655, -0.011239515, -0.01416662, -0.041604675, -0.024596207, + 0.02495144, 0.039729055, 0.00049288326, -0.020532362, 0.08451661, 0.018472021, -0.021754358, -0.073206045, + -0.011751047, 0.013640878, -0.012731486, -0.00685241, 0.077298306, -0.022905307, 0.06564672, 0.04720312, + -0.0052609737, 0.0058932854, 0.0013250123, 0.006266278, 0.0075451103, 0.0336475, 0.030606719, 0.068033874, + -0.011040585, -0.005442142, -0.015559126, -0.02490881, -0.020134503, 0.051039618, -0.032937035, -0.0105361575, + 0.013342484, -0.0039679324, -0.04285509, 0.0014164844, -0.0017379686, -0.02759436, -0.04004166, 0.022720587, + -0.01716477, 0.0819021, -0.03646093, -0.00092892954, 0.025235623, 0.07275135, 0.02964049, 0.014791827, + -0.0012681753, 0.030152023, -0.008951826, 0.031032996, 0.034897912, -0.038308132, 0.0055877864, -0.026756013, + 0.03097616, 0.027978009, -0.0047423365, -0.02324633, 0.020106085, -0.0010541485, -0.10298862, -0.020546572, + 0.013790075, 0.0048702196, 0.014422386, 0.0076587843, 0.015971195, -0.03225499, 0.004330268, -0.0041491003, + -0.06252069, -0.010429588, -0.0047920686, 0.03603465, 0.0046641855, -0.036375675, -0.005786716, -0.045554847, + -0.050215483, -0.040155333, 0.036944043, -0.016667448, 0.037512414, -0.041263655, -0.036119908, 0.018898299, + -0.06360059, -0.0054492466, -0.059394654, -0.025562437, 0.0045291977, -0.03285178, 0.033192802, 0.022535866, + 0.007143699, 0.04399183, -0.013520099, -0.000558157, -0.00895893, -0.015999613, -0.021640684, -0.04004166, + 0.019892946, 0.0110690035, 0.013299855, -0.025107741, 0.0074669598, 0.052545797, -0.0043551344, 0.039217524, + -0.028105892, 0.018841462, -0.03606307, -0.0059074946, -0.034045357, 0.012596498, -0.025860831, -0.0033391733, + -0.071898796, -0.034471635, -0.041519422, -0.04419076, 0.012333627, 0.02851796, 0.0023409736, -0.02983942, + 0.000021591395, -0.025235623, -0.011310561, 0.029029492, -0.0013436619, -0.0061099767, -0.017662095, 0.007303553, + -0.050385993, -0.017548421, 0.03245392, 0.03040779, -0.004539855, 0.008340828, -0.008085062, 0.00689859, + 0.03478424, 0.042030953, 0.00934258, -0.014486328, 0.028006427, -0.026329735, 0.048766136, -0.017676303, + -0.020233968, 0.04606638, 0.02077392, 0.03117509, 0.015459661, 0.0198219, -0.023899954, 0.0003907543, 0.029015284, + -0.018415185, 0.02890161, -0.02738122, 0.022166425, 0.020631827, 0.023672607, -0.051096454, -0.030947741, + 0.03398852, -0.006834648, 0.038933337, 0.009278638, 0.051295385, 0.03415903, 0.031800296, 0.007779563, + 0.012489929, -0.008511339, -0.010692459, 0.0073959134, -0.017235817, 0.008816838, 0.009136546, -0.026670758, + -0.016269589, 0.017861024, -0.009442045, -0.022294309, -0.014749199, 0.0045149885, -0.014138201, 0.009299953, + -0.019111438, 0.022606913, 0.002060341, -0.0068488573, 0.030549882, -0.024596207, -0.024326231, 0.008653432, + 0.035750467, 0.05027232, 0.04157626, 0.011374502, 0.012468615, -0.00027996657, -0.0066179573, -0.02495144, + 0.000022881884, -0.024851974, -0.028205356, 0.00094136264, 0.033476986, -0.028191147, 0.044844385, -0.07979914, + 0.022805842, -0.04137733, 0.023729444, 0.0027033093, -0.03228341, 0.014450805, -0.011964186, 0.011957082, + 0.014173725, -0.040553194, -0.06956848, -0.010642727, 0.06786337, -0.013264333, 0.042201467, 0.038961757, + -0.030123604, -0.04438969, -0.0022344042, 0.0068168864, 0.045014895, -0.009498882, 0.042371977, -0.005736984, + -0.008156108, 0.004007008, -0.030436208, 0.02870268, -0.0038791245, 0.030123604, 0.029867839, 0.027906962, + -0.012269685, -0.0026446963, -0.010621413, 0.03452847, -0.06763602, 0.044105504, 0.024653045, -0.015971195, + 0.060304046, -0.014635525, -0.026358154, -0.007665889, 0.007061996, -0.04342346, -0.007552215, -0.025590856, + -0.023502095, -0.01810258, 0.0064509986, 0.05078385, 0.06257752, -0.0014733213, -0.02174015, -0.036347255, + -0.0092928475, -0.0071188333, -0.0023143312, 0.005491874, -0.016567983, -0.0058115823, -0.015132849, 0.042741418, + -0.008063748, -0.0026944287, -0.011573432, 0.009008663, 0.0123833595, 0.0079855975, 0.015559126, 0.020660246, + 0.03282336, -0.0032041853, 0.0066996603, -0.0040602926, -0.04248565, 0.004188176, -0.056581225, 0.040865798, + -0.0007393249, -0.029526817, -0.050187062, 0.00093781034, -0.0076800985, -0.054620348, 0.0031349151, -0.04970395, + -0.0006696108, 0.010180926, -0.03719981, 0.011623165, 0.0035505358, -0.04623689, -0.0012504138, 0.02641499, + -0.0014040513, 0.05706434, 0.0025132606, 0.028645843, 0.004110025, -0.10111301, 0.01909723, 0.032198153, + -0.049760785, 0.008291096, -0.03262443, -0.0011349637, 0.009164965, -0.023942582, 0.025065113, 0.029896257, + 0.039388034, 0.058428425, 0.02907212, 0.025562437, -0.0008703164, 0.015800683, -0.014820245, 0.010045938, + 0.041689932, -0.021995915, -0.027139664, -0.012546766, -0.012873578, -0.002253942, -0.0037370322, -0.02341684, + 0.010358541, -0.006596643, 0.036944043, 0.021413336, 0.0070229205, 0.016269589, 0.05743378, 0.045242243, + -0.042627744, -0.0062307552, -0.04703261, -0.04132049, 0.017591048, 0.010635622, 0.008177422, 0.011530804, + 0.008028225, 0.0033551585, -0.031516112, 0.000057558555, -0.03461373, -0.06081558, -0.01028039, -0.010749295, + 0.029526817, 0.03140244, 0.04964711, 0.046805263, -0.02607397, -0.06513519, 0.0044013145, -0.011829198, 0.047942, + -0.0339601, -0.021114942, -0.0032450368, -0.05416565, -0.032709688, -0.011857617, 0.038649153, 0.008937617, + -0.01548808, 0.02343105, 0.010791924, -0.0025416792, -0.0011429563, -0.023260538, -0.025150368, 0.00656112, + 0.012404673, -0.012560975, -0.04811251, 0.011310561, 0.0011260828, 0.008710269, 0.0019910708, -0.00080593076, + 0.019310368, -0.019239321, -0.01793207, -0.020006621, -0.033476986, 0.031771876, 0.01312224, 0.00439421, + 0.053881466, -0.025576646, -0.04245723, -0.009243116, -0.032965455, 0.031999227, -0.024240976, -0.015076011, + -0.012163116, 0.02759436, 0.028375868, 0.010600098, 0.03603465, 0.014273189, -0.035437863, 0.013065403, + 0.0047778594, -0.01869937, 0.020091876, 0.021015476, 0.0061170813, -0.058883123, -0.038450222, 0.021086523, + 0.03717139, 0.026159225, 0.011608955, 0.04299718, -0.07366074, -0.011161364, 0.0046961564, -0.006287592, + 0.007672994, 0.03927436, -0.039217524, -0.01776156, -0.0053426772, -0.041292075, -0.017988907, -0.040666867, + -0.021455964, -0.012042337, -0.041633096, -0.022351146, 0.007950074, 0.047174703, 0.03324964, 0.067749694, + -0.039189104, -0.0020301463, 0.036688276, -0.0017592824, -0.00048666674, -0.057348523, 0.018557277, -0.008049538, + -0.0071579083, 0.03273811, 0.0053213635, -0.014692362, -0.029498398, 0.028276403, -0.0060069594, -0.009086814, + -0.0027477134, 0.014521851, -0.0072964486, 0.0018631876, -0.011395817, -0.05990619, -0.00255056, -0.0051757186, + -0.007275135, 0.028958447, 0.01133898, -0.008340828, 0.0121489065, -0.032198153, 0.0066215093, -0.02664234, + 0.018031536, 0.012724381, 0.03097616, 0.025264041, 0.016710075, -0.02964049, -0.040382683, -0.0034013386, + -0.002287689, 0.026869686, -0.013086717, 0.023161074, 0.005154405, -0.0011021048, -0.0006007847, -0.051892173, + -0.00001992625, 0.042968765, -0.003108273, -0.03970064, 0.014948129, 0.019907156, 0.022294309, -0.020930221, + 0.049760785, 0.01415241, 0.009093919, 0.019026183, 0.0042272513, 0.026841268, -0.0057938206, -0.01369061, + -0.010209344, -0.027082825, 0.01908302, 0.021200197, -0.0038009738, -0.04853879, 0.01831572, -0.0036269105, + -0.008156108, -0.011751047, -0.029555235, 0.0026446963, -0.026883896, 0.025718737, -0.043593973, 0.0064616553, + 0.013676401, -0.009015768, 0.016596401, -0.035210516, -0.019921364, 0.0035363266, -0.026301317, 0.025391925, + 0.040638447, 0.027878543, 0.0271965, 0.029086329, -0.015388615, 0.0046428717, 0.026031341, 0.014663943, + -0.04231514, -0.036716696, 0.007207641, 0.012901997, -0.007758249, -0.051721662, -0.028319031, -0.040837377, + -0.005353334, 0.017477375, -0.031146672, -0.025235623, -0.013569832, 0.0063763997, -0.031430855, -0.02493723, + 0.017363701, -0.012695963, -0.005282288, -0.06411213, 0.03870599, 0.0018862776, 0.056950666, 0.030464627, + 0.028219566, -0.06456682, 0.015900148, 0.041007888, 0.018727789, 0.011545014, -0.0076019475, 0.006774259, + -0.015388615, 0.015303359, -0.044077087, 0.012774114, 0.00072511565, -0.049931295, 0.04833986, 0.005488322, + 0.0013827374, 0.008106376, 0.007758249, -0.016937423, 0.0052680788, 0.047174703, 0.023530515, 0.017065307, + -0.009768858, -0.009534406, 0.03228341, 0.031629786, 0.014315817, -0.0007228955, -0.00096889306, 0.0048915334, + -0.026187643, 0.020148713, 0.004799173, 0.018457813, -0.034812655, 0.0011127617, -0.014088469, 0.021868031, + 0.025164578, -0.012156012, -0.027523313, 0.016766911, -0.028375868, 0.049959715, 0.021939078, -0.0070371297, + 0.05706434, 0.009555719, -0.010578785, -0.02870268, -0.01983611, 0.038819663, -0.017804187, 0.038620736, + -0.020106085, -0.01189314, 0.0020212654, -0.024624625, 0.02870268, 0.02039027, 0.030095186, 0.013782971, + 0.014649734, -0.035778884, 0.030947741, 0.015814893, 0.035608374, -0.03978589, 0.020319223, -0.0042627743, + 0.012632021, -0.061099764, 0.001139404, 0.006823991, -0.028546378, 0.008717373, -0.014514746, -0.0049235043, + 0.00934258, 0.001651825, -0.019352995, -0.075195335, -0.02418414, -0.010784819, -0.03415903, -0.008610804, + -0.04291193, -0.013420634, -0.034727402, -0.007978492, -0.023090027, -0.02890161, 0.0036624335, 0.006379952, + 0.0015008518, -0.024681464, 0.031430855, -0.013171973, 0.01926774, 0.018173628, -0.034727402, -0.016539564, + 0.009498882, 0.041064724, 0.005509636, 0.00007198982, -0.029029492, 0.014891291, -0.0034546233, 0.0062449644, + -0.033761173, -0.020191342, 0.0020656693, -0.026272899, -0.036944043, -0.0156728, 0.052091103, -0.028986866, + 0.0036304628, 0.027168082, 0.0076516797, 0.023146864, -0.017548421, 0.012887788, -0.0012095622, 0.006010512, + 0.012340732, 0.021924868, -0.0027583702, 0.039217524, -0.030919323, 0.036517765, 0.006642823, 0.0020301463, + -0.013150658, 0.021356499, 0.0033977863, 0.022621121, -0.008845257, -0.027295964, -0.010735086, -0.0149339195, + 0.02664234, 0.018798834, -0.024994066, -0.011957082, 0.07081889, 0.055302393, -0.000014361886, -0.010053042, + -0.02830482, 0.045924287, 0.0100672515, -0.0132146, -0.0012379807, 0.006752945, 0.017264236, -0.017122144, + -0.0055345017, -0.002140268, 0.0033391733, -0.01926774, -0.002756594, -0.032226574, 0.02174015, 0.008568176, + -0.010585889, -0.026287109, -0.0049270564, -0.07002317, -0.04004166, 0.05609811, 0.036887206, -0.010116984, + 0.007097519, 0.03378959, -0.012639126, 0.035466284, -0.039501708, 0.017264236, -0.054705605, 0.007047787, + 0.0045363023, 0.006866619, -0.011083213, -0.020063458, 0.017434746, -0.028006427, 0.012781219, -0.030549882, + 0.020191342, 0.02360156, -0.022947935, -0.023288956, -0.011878931, -0.012269685, 0.012326523, 0.03128876, + 0.0077937725, 0.017008469, -0.017079515, -0.0434803, -0.012191534, -0.00028285282, 0.023885746, -0.015431243, + -0.013569832, 0.028191147, -0.061668135, 0.024979858, -0.02361577, 0.012532556, 0.006525597, 0.038109202, + -0.0070797578, -0.011367398, 0.023516305, 0.0011695987, 0.0077511445, 0.005214794, -0.008049538, 0.011850513, + -0.010699564, 0.037086137, 0.027892753, -0.025150368, -0.024525162, 0.0039217523, 0.006319563, 0.0385639, + -0.0013303409, -0.02037606, -0.0063728476, -0.068090715, 0.031601366, 0.020432899, 0.0075877383, -0.0247383, + -0.00580803, -0.020432899, 0.043963414, 0.028006427, -0.03344857, 0.004543407, 0.015772264, 0.009008663, + 0.03324964, 0.05967884, -0.041491, 0.01943825, 0.0145431645, -0.03791027, 0.0013703043, -0.019708226, -0.03492633, + 0.001435134, -0.011587641, 0.007871923, 0.0038862291, 0.0006007847, 0.016255379, -0.03157295, -0.008980244, + 0.013115136, -0.0012290999, -0.01369061, 0.012838055, 0.020290805, -0.0036588812, -0.019239321, 0.0012868249, + -0.015999613, 0.01888409, -0.031317182, 0.043366622, 0.0037867646, -0.021654893, -0.0113034565, 0.0048702196, + 0.0037512414, 0.026542874, -0.0037690029, 0.025562437, 0.03620516, 0.043395042, 0.016610611, -0.0010950002, + 0.016127495, -0.0073603904, -0.0030088082, 0.0003816515, -0.007950074, 0.021796986, -0.0016873481, 0.015303359, + 0.005957227, 0.03791027, -0.044503365, -0.0065327017, 0.019182485, 0.041491, -0.02834745, 0.031231927, 0.01010988, + 0.0131577635, -0.00048755482, 0.05098278, 0.018130999, 0.00012211072, 0.021129152, -0.030862486, 0.005637519, + 0.016369054, 0.018997764, 0.013669296, -0.054677185, 0.021654893, -0.033107545, 0.0031953047, 0.052602634, + 0.027807498, -0.0041419957, -0.04706103, 0.0026304869, -0.004078054, -0.02021976, 0.0121489065, 0.001423589, + 0.03003835, 0.0016571535, 0.019608762, 0.018813044, -0.02813431, -0.0053036017, -0.02605976, -0.004873772, + -0.024084674, 0.012390464, -0.01663903, 0.0055202926, -0.0046109008, 0.027082825, 0.0014804259, 0.011971291, + 0.048254605, 0.007900341, 0.027210709, 0.020305015, 0.059167307, -0.0060389303, 0.019949785, 0.005932361, + -0.022791633, -0.023487886, 0.012553871, 0.022450611, 0.0029768373, 0.008070853, 0.0076587843, 0.025931876, + 0.03174346, 0.009740439, 0.0043231635, -0.025349298, 0.0006793797, -0.003541655, -0.0061170813, -0.007403018, + -0.013108031, 0.029413143, 0.0062485165, 0.013790075, -0.003610925, 0.0023374213, -0.0010035281, -0.0020923116, + 0.01679533, -0.01682375, 0.045384336, 0.001150061, -0.001526606, -0.013065403, 0.015317569, 0.01810258, + 0.0036730906, -0.017804187, -0.001628735, -0.031857133, 0.020916013, -0.0039217523, -0.035381027, -0.008248468, + 0.006937665, -0.022649541, 0.017434746, 0.00016573755, 0.003474161, -0.029725745, 0.004145548, 0.00021424881, + -0.005218346, 0.008120585, 0.015033384, 0.0019875185, -0.06041772, 0.037455577, 0.015175477, 0.015076011, + 0.002459976, -0.003337397, 0.018130999, 0.006319563, -0.006596643, -0.027807498, 0.009903845, -0.022635331, + 0.03299387, -0.004134891, 0.018969346, 0.023260538, 0.047316793, 0.005637519, 0.0055416063, -0.007108176, + 0.011580537, 0.0028880297, 0.0072822394, 0.015956985, 0.004365791, 0.009804381, 0.011793676, -0.008752896, + -0.026358154, -0.0030194651, -0.023743654, -0.033533823, 0.00665348, 0.0102235535, -0.001071022, -0.006159709, + 0.04478755, -0.019694017, -0.012553871, 0.028773727, -0.014045841, 0.018031536, -0.0016571535, 0.02624448, + -0.009257325, 0.009719125, -0.03248234, 0.031771876, 0.0105361575, -0.0140813645, -0.002072774, -0.020717083, + -0.026145015, 0.014962338, -0.012141802, -0.044247597, 0.009939369, -0.023843117, 0.0079855975, -0.021626474, + 0.0031704383, -0.0018933823, 0.017960489, -0.028645843, -0.011260829, -0.006173918, -0.04930609, 0.013761656, + -0.0140032135, 0.0030318983, -0.008568176, 0.028830564, 0.0022077619, 0.023971, 0.014266085, -0.044418108, + 0.010394065, 0.02493723, 0.022891099, 0.0024510953, 0.04572536, 0.0052218987, -0.0026571292, -0.0006198784, + 0.023473676, -0.024042048, 0.020802338, -0.008347933, 0.016909005, -0.020432899, -0.017505793, 0.013917958, + -0.0011864721, 0.017591048, -0.0077511445, -0.009825694, -0.004639319, 0.002971509, 0.008532654, 0.023118446, + 0.015814893, -0.012191534, 0.008553967, -0.018770415, -0.02910054, 0.0028454019, -0.03398852, -0.005204137, + -0.006344429, -0.010415378, 0.019779272, 0.00992516, 0.030890904, 0.009207592, 0.007942969, 0.0828115, + -0.0033995626, 0.004543407, 0.016667448, 0.027622778, 0.020532362, 0.008532654, 0.020290805, -0.03248234, + -0.0010692459, -0.017306864, 0.011644478, -0.008461607, -0.0045718253, 0.0070406822, -0.026784431, -0.027892753, + 0.004944818, 0.024525162, 0.012468615, 0.011857617, 0.038478643, 0.030720394, -0.010116984, 0.023075819, + -0.0023747205, 0.008149004, -0.014820245, 0.00024777374, 0.00038675795, -0.031487692, 0.008262677, -0.006845305, + 0.02266375, 0.035977814, -0.01983611, -0.023843117, 0.02360156, 0.009577033, -0.020106085, -0.03853548, + -0.012944625, 0.01415241, -0.01510443, -0.012589393, 0.004007008, 0.021598056, 0.009420731, -0.039331198, + -0.01264623, 0.010116984, 0.017448956, 0.0054527987, -0.0006731631, -0.032397084, -0.020120295, 0.024482533, + 0.07331972, 0.04481597, 0.0052574216, -0.004909295, 0.042173047, 0.025647692, -0.019551925, 0.01047932, + -0.0021118494, -0.000558157, -0.046805263, 0.009974892, 0.012887788, -0.012056546, -0.011630269, 0.025576646, + 0.041519422, -0.002015937, -0.0027512657, -0.014102678, 0.028972656, 0.0034688325, 0.04515699, -0.028219566, + -0.014493433, -0.01663903, 0.0013338932, -0.03498317, 0.011253724, 0.03754083, -0.03097616, 0.023345795, + 0.01662482, 0.022649541, -0.005307154, -0.030919323, -0.022521658, 0.009740439, -0.01737791, 0.013022776, + -0.0031704383, -0.016170124, 0.014031632, 0.029754164, 0.016539564, -0.03791027, -0.0047316793, 0.01908302, + 0.013228809, -0.013015671, 0.0042236988, -0.046720006, 0.009122337, 0.019551925, 0.00722185, -0.016909005, + -0.004689052, -0.01359825, -0.037881855, -0.03529577, -0.024297813, 0.0025434552, -0.004713918, 0.01001752, + -0.009505986, -0.023558933, -0.028674262, -0.003925305, 0.0033729202, 0.0030549883, -0.004248565, -0.0019537716, + -0.014948129, 0.02435465, 0.021043895, 0.00076863146, 0.018827254, 0.005786716, 0.0006593979, 0.01868516, + 0.020091876, -0.020361852, 0.046748426, -0.009108128, 0.020077666, -0.015260732, 0.031771876, 0.030123604, + 0.027509103, -0.028091682, -0.004863115, -0.04498648, 0.036688276, -0.017292654, -0.018543068, 0.040098496, + 0.055387646, 0.020532362, -0.007417227, 0.0119997095, -0.044503365, -0.010408274, -0.011637374, -0.0052609737, + -0.024439907, -0.037853435, -0.03378959, 0.026287109, 0.019352995, -0.02570453, 0.0033800248, 0.0016953408, + 0.033874847, 0.026386572, -0.032368667, -0.0336475, 0.020546572, 0.014379758, 0.006014064, -0.00054305966, + -0.02115757, -0.0031615575, -0.012873578, -0.029384725, -0.014507642, 0.03245392, -0.010287495, 0.033761173, + -0.004703261, -0.03262443, -0.03248234, -0.0029359858, -0.022990562, 0.030691976, 0.008269782, 0.02419835, + 0.031658202, -0.009356789, 0.0111471545, -0.046293728, -0.024567788, 0.052915238, 0.020603409, 0.013576936, + -0.03228341, -0.02983942, 0.01330696, 0.01406005, 0.016113287, -0.017718932, -0.003861363, -0.0010505962, + 0.028375868, -0.046720006, -0.0008414539, -0.0011340756, -0.011658688, 0.0036180296, 0.016354844, 0.0007881692, + 0.035977814, 0.019722436, 0.010848761, -0.00782219, -0.043707646, 0.02530667, -0.033675916, 0.003747689, + 0.040553194, 0.01794628, -0.009093919, -0.00030882913, 0.021171778, 0.05456351, 0.009456255, -0.0053604385, + -0.010287495, -0.0036002682, -0.042627744, -0.0039039908, -0.016198542, -0.032965455, 0.012354941, 0.037057716, + 0.004461704, 0.003392458, -0.0051330905, -0.014663943, 0.019480878, 0.0032432608, 0.020916013, -0.0075593195, + -0.023971, -0.016496936, 0.0034457427, -0.01396769, -0.016610611, -0.035750467, 0.012390464, -0.008305306, + 0.0011944649, -0.0058897333, -0.015743846, -0.025178786, -0.024155721, -0.010720877, 0.02416993, -0.020816548, + 0.004152653, 0.02341684, 0.0078364, -0.050499666, 0.0076232613, -0.017534211, -0.0004657969, 0.010635622, + -0.0010310585, -0.050840687, 0.017448956, 0.008639223, -0.0018365453, 0.012887788, -0.013811389, -0.027523313, + -0.026116597, -0.036261998, 0.009328371, -0.00831241, 0.025036694, -0.013541413, -0.0047281273, 0.03853548, + -0.038848083, -0.0013614235, -0.008120585, -0.018784625, -0.01983611, 0.012205743, 0.027636986, 0.010941121, + -0.004124234, 0.016369054, 0.0072005363, 0.0001503072, -0.030095186, 0.011310561, -0.016837958, 0.015445452, + 0.024454115, 0.019296158, -0.041888863, 0.000854331, -0.017420538, 0.007935865, 0.0016012046, 0.0039714845, + 0.020887595, -0.011388712, 0.017505793, -0.0014324698, -0.025008276, -0.02759436, 0.020503944, -0.0069305603, + 0.009328371, 0.01369061, -0.02056078, -0.013264333, -0.0002573206, -0.006184575, -0.006980293, -0.003985694, + -0.0072360593, 0.014592897, 0.019765064, 0.027992217, -0.017093726, 0.03455689, -0.01962297, 0.01645431, + 0.024496743, 0.015942777, 0.0037263753, 0.009854113, 0.01473499, 0.019793482, 0.021683311, -0.023587352, + 0.014962338, 0.010507738, 0.045640104, 0.011346084, 0.028276403, 0.009719125, -0.00003940846, -0.038279712, + -0.017804187, -0.035551537, 0.0063763997, -0.006834648, 0.006582434, -0.0018134553, 0.025434554, -0.00015796688, + 0.0014688809, 0.0045043314, 0.01926774, -0.037682924, 0.019537715, 0.01985032, -0.036745116, 0.006767154, + 0.050925944, 0.021299662, -0.0115379095, 0.017065307, -0.011090318, -0.0012237715, -0.052233193, -0.015885938, + 0.02378628, -0.016852168, -0.01388954, 0.0354947, 0.012916206, 0.047799908, 0.003506132, 0.005410171, + 0.0022681511, -0.014045841, -0.019978203, -0.036915626 + ], + "text": "Page past_events.mdx: ## **Devcon Editions**\n\n## Everything began in Berlin Kreuzberg in 2014 when the co-founders and earliest builders of Ethereum came together for a meet-up they named Devcon 0. Since then, Devcon has rotated the world. The journey went from Berlin to London, Shanghai, Cancún, Prague, Osaka and Bogotá. Each location brings something unique to the developer conference.\n\nYou might want to check out some details about Devcon’s history. Read on below for summaries of past editions, or head to the **[Devcon Archive](https://archive.devcon.org/archive)** to watch round-up videos, talks, and presentations.\n,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],past_events" + }, + { + "embedding": [ + 0.035970073, -0.041728757, -0.0015590409, 0.045924786, 0.022166595, -0.01610406, -0.016190873, 0.08721947, + -0.042047076, 0.041497253, -0.01671176, -0.019866014, 0.0051546013, -0.061001543, 0.06181181, 0.01457034, + -0.05628463, -0.008891235, 0.013709431, 0.07437095, 0.022354692, -0.0040079285, 0.034783613, 0.038053617, + 0.004423914, 0.011922502, -0.012841287, 0.062159065, 0.043175664, -0.031513605, 0.035536002, -0.04062911, + -0.009006987, -0.03220812, 0.020893317, 0.038429815, -0.008334177, 0.020314556, -0.01747862, 0.0082907695, + -0.027476737, -0.061406676, -0.013969874, 0.053275064, -0.016190873, -0.016132997, -0.053101435, 0.018216541, + 0.025320848, 0.0016829321, -0.04415956, 0.0012497647, 0.058946934, 0.05000506, -0.05029444, -0.054693032, + -0.0021287599, 0.010989248, -0.06314296, -0.009491701, 0.062159065, -0.0032971362, 0.019518757, 0.020806503, + 0.013311531, 0.04890541, -0.01685645, 0.01672623, 0.005548883, 0.024336953, 0.016653884, 0.031687234, + 0.00057378854, -0.021226106, -0.009658095, -0.000732496, -0.02466974, 0.054316837, -0.023381995, -0.024597395, + 0.007654131, -0.04708231, -0.046850804, -0.018911056, -0.029545814, -0.058049854, -0.04690868, -0.05136515, + 0.009361479, 0.028315943, -0.020343494, 0.006066152, -0.036433082, 0.047718946, 0.014418415, 0.026116647, + -0.014686092, 0.04604054, 0.002029285, -0.00974491, 0.015380607, -0.04604054, -0.0065653343, -0.034378476, + 0.040050346, 0.064300485, -0.028229129, 0.00022585293, 0.011083297, -0.010287499, -0.10903881, -0.023136022, + 0.023381995, 0.0211827, 0.03345246, -0.026970321, 0.04112106, -0.03709866, -0.0063229776, -0.0419892, + -0.064879246, -0.014165206, -0.0014387668, 0.022745356, -0.021573363, 0.0030999952, 0.027057135, -0.058512863, + -0.040715925, -0.005136515, 0.038719196, 0.013868591, 0.035478126, -0.047718946, -0.029864132, 0.021992965, + -0.05457728, 0.0023385612, -0.037156537, 0.0012434345, 0.0017796939, -0.0048398995, -0.022325754, 0.0057225116, + -0.008370349, -0.0062072254, -0.027780589, 0.016277688, -0.059265256, -0.042307522, -0.015814679, -0.04800833, + -0.009498935, 0.017189238, 0.053072497, -0.049542047, -0.0075456128, 0.045490712, -0.01479461, -0.0023729252, + -0.016986672, -0.021674646, -0.016928796, 0.0056791045, -0.026796693, -0.0032899017, -0.023801597, 0.0076758345, + -0.07466033, 0.014353304, -0.060191274, -0.05090214, -0.043320354, 0.04366761, 0.03466786, -0.023642438, + -0.00379451, -0.028938113, 0.0052920575, 0.001825814, -0.0041453848, -0.019504288, -0.043754425, -0.018650614, + -0.05764472, 0.010634757, 0.051249396, 0.012450623, -0.023266243, -0.0063374466, -0.029314307, 0.04968674, + 0.044535756, -0.0030837175, 0.018607207, 0.006507458, 0.040455483, -0.004583074, 0.047255937, -0.035536002, + -0.005642932, 0.0021197167, 0.03646202, -0.01870849, -0.014136268, 0.0018032062, -0.004999059, -0.022166595, + 0.057731535, 0.004340717, 0.03698291, -0.025523415, -0.004054953, 0.017985037, 0.0068004564, -0.03683822, + 0.0022499382, 0.066326156, 0.032584313, 0.00904316, -0.01869402, 0.026579656, 0.016581539, 0.016017245, + 0.028315943, 0.051220458, 0.0055090934, -0.009455528, 0.020300087, 0.015698927, 0.030269265, 0.02132739, + -0.03330777, -0.07396582, -0.0009983649, -0.032671127, 0.005574204, -0.044391066, 0.02958922, -0.0337129, + -0.0061602006, 0.025074875, 0.013774541, 0.0041309157, -0.016132997, 0.007028344, -0.017189238, 0.014143502, + 0.0122263525, 0.017087955, 0.03275794, 0.019460881, 0.010077698, 0.01915703, -0.00035652658, -0.014758438, + -0.008392053, -0.013043854, -0.0012235396, -0.007697538, 0.021804867, 0.043030974, -0.017420745, 0.012993213, + -0.03275794, -0.002217383, -0.021139292, 0.021689115, -0.019374067, -0.006749815, 0.022050843, -0.028995989, + -0.013861356, 0.006615976, -0.03446529, -0.03909539, 0.009375948, 0.050670635, 0.010150043, -0.0105190035, + 0.015033349, -0.014432884, -0.0052775885, -0.031224223, -0.0030710571, 0.04922373, 0.025610229, -0.027809527, + 0.022195533, 0.01457034, 0.0065255444, -0.025841735, 0.02161677, -0.028750015, 0.0075456128, 0.011010952, + 0.04355186, -0.03206343, -0.015887024, 0.0074587986, 0.03261325, -0.0013673258, -0.006720877, 0.016321095, + 0.006851098, 0.011813984, -0.010236857, -0.06545801, -0.02161677, -0.023787128, 0.013456223, 0.039818842, + 0.0056827217, -0.05425896, 0.013998812, 0.016841982, 0.023063676, 0.028561916, 0.010692633, -0.023671376, + -0.032584313, -0.012291463, -0.0019750262, -0.0016992098, 0.03695397, -0.039905656, 0.00942659, -0.011314802, + 0.007885636, -0.012834053, 0.02006858, -0.026420496, 0.0116909975, 0.005765919, 0.005498241, 0.0070753684, + 0.024264608, -0.0057044253, 0.026203461, 0.05535861, -0.03145573, -0.029864132, 0.021804867, -0.040079284, + 0.02345434, 0.06117517, -0.030471833, -0.0371276, 0.028894706, 0.077669896, -0.027491206, 0.013275359, + -0.02529191, 0.0008817081, -0.026246868, -0.037503794, 0.0148090795, -0.027360985, -0.016538132, 0.02040137, + -0.027303109, -0.019185968, 0.03403122, 0.0018104407, -0.011654825, 0.008218424, -0.07037749, -0.008558447, + 0.022267878, -0.08328389, 0.024105448, -0.029618159, -0.008746545, -0.003740251, -0.031079533, 0.036433082, + 0.063721724, 0.012942571, 0.028098907, 0.03880601, 0.017768001, -0.01976473, -0.008666965, -0.018911056, + 0.012002083, 0.08588832, 0.006098707, -0.036519896, 0.006749815, -0.019909421, 0.033018388, 0.009412121, + -0.018505923, 0.027737182, -0.004083891, 0.023845004, -0.010967544, 0.009549577, 0.039471585, 0.0223981, + 0.024351422, -0.032526437, -0.010707102, -0.009636392, -0.0019551313, 0.050410192, -0.00062804745, 0.008175016, + -0.014396711, -0.0049375654, -0.0028268918, -0.053246126, 0.00019284539, -0.012884695, -0.016335564, -0.019591102, + -0.025798328, 0.014324366, -0.0046662707, 0.04569328, 0.022861108, -0.017059017, -0.046243105, -0.036404144, + -0.005545266, 0.06592102, 0.029806256, -0.007560082, -0.00896358, -0.062159065, 0.0042104954, -0.009694268, + 0.058078792, 0.0042104954, -0.010041525, 0.024134386, 0.04951311, -0.052464798, 0.022788763, -0.010012587, + 0.022759825, -0.0039789905, 0.00082292757, -0.011401616, -0.05104683, 0.033770777, 0.015409545, -0.023700314, + -0.036722466, 0.02346881, 0.0023222836, 0.026680939, -0.012617017, 0.04065805, -0.0037981272, -0.02882236, + 0.014157971, -0.003347778, 0.018158665, -0.032700066, -0.016697291, -0.012284229, -0.030124575, 0.066499785, + -0.027838465, -0.025320848, -0.007422626, 0.0015671797, 0.015279324, -0.018361233, 0.016668353, 0.009549577, + -0.025190627, 0.026131116, -0.010150043, -0.036722466, 0.014989942, 0.0017516601, 0.0034870426, -0.022340223, + -0.018433578, 0.055908434, 0.0343206, -0.022412568, 0.062274817, 0.048558153, -0.03738804, -0.017565435, + -0.048413463, 0.020517122, 0.013658789, 0.03203449, -0.029835194, -0.01824548, -0.002286111, -0.06105942, + -0.035622817, 0.0042394334, -0.027896341, -0.026319213, -0.008869532, -0.025465539, -0.012320401, 0.039818842, + 0.060654283, 0.045317084, 0.0019026808, 0.0116765285, -0.0039500524, 0.018259948, -0.085367434, -0.039876718, + 0.005382489, -0.00039269924, 0.013311531, 0.044448942, -0.013810714, -0.010670929, -0.0009065768, -0.01778247, + -0.033770777, 0.0069813197, -0.005219712, -0.0030710571, 0.022412568, -0.0013573783, -0.017681187, -0.045577526, + -0.030066699, 0.01580021, -0.01564105, -0.006196373, 0.01187186, 0.03246856, 0.00942659, -0.008218424, + -0.011249691, -0.012219118, 0.004105595, 0.031542543, -0.013861356, 0.028373819, 0.029487936, -0.03284476, + -0.05385383, 0.010084933, -0.03802468, 0.0005950399, 0.015496359, -0.007950746, 0.052030727, 0.015235917, + 0.026594125, -0.060422778, -0.015351669, 0.018968932, -0.025118282, -0.058368172, 0.007393688, 0.020473715, + -0.0003271363, -0.023396464, 0.014165206, -0.017724594, 0.0035322583, 0.0447962, -0.033394583, 0.029864132, + -0.010844558, -0.014331601, -0.010916903, -0.022976862, 0.0010679972, -0.05275418, -0.0060625346, -0.035362374, + 0.0078060557, -0.004315396, -0.0026170905, -0.017145831, -0.013072792, -0.018592738, -0.030124575, 0.021110354, + -0.07778565, 0.0033513953, 0.01289193, -0.03848769, 0.020155396, 0.009621923, -0.013781776, 0.012399981, + -0.0012886503, 0.04534602, 0.02960369, 0.013832418, -0.025841735, 0.015395076, -0.031484667, -0.010432189, + 0.010142809, -0.008146078, -0.0016359077, -0.05090214, -0.0072272937, -0.027360985, -0.017666718, -0.055937372, + -0.012971509, -0.022181064, 0.0028232746, 0.008088202, 0.020111987, -0.013796245, 0.00865973, 0.019417474, + -0.03510193, 0.011271395, 0.014165206, -0.021240575, 0.006590655, -0.069162086, 0.041613005, -0.013304297, + 0.030848028, 0.026579656, 0.0033495866, -0.040686987, 0.027983155, 0.023845004, 0.010620288, 0.017970568, + 0.017116893, -0.031513605, -0.008225659, 0.008789952, -0.032555375, 0.005519945, 0.0030728658, -0.030095637, + 0.032092366, 0.007494971, -0.0047494676, 0.015163571, -0.0047169123, -0.00013146494, -0.0020419455, 0.061522428, + 0.0441885, 0.0019135327, -0.0045541353, -0.018288888, 0.04491195, -0.014599278, 0.009520639, -0.00007432347, + -0.03261325, -0.03232387, -0.00421773, 0.009166148, 0.004478173, -0.014273724, -0.047227, -0.0072381455, + -0.007849463, 0.046127353, 0.024886778, 0.021052476, -0.022050843, -0.00010490066, -0.04508558, 0.025885142, + 0.0070319613, -0.005002676, 0.031484667, 0.006930678, -0.010475596, -0.045114517, -0.0048833066, 0.038053617, + -0.008015857, -0.00032284082, 0.0018321442, -0.017550966, -0.0055235624, -0.011734405, 0.05897587, -0.009267431, + 0.030471833, -0.0028088056, -0.00058011874, 0.0053607854, 0.033944406, -0.009600218, 0.0050062933, -0.0028793423, + 0.014273724, -0.008515039, -0.003917497, -0.09422249, -0.0005710756, 0.019576633, -0.013586444, -0.01931619, + -0.03863238, -0.014447353, 0.017464152, 0.00873931, 0.025624698, -0.036114763, -0.01792716, -0.021428673, + -0.026912445, -0.013137903, -0.042683717, -0.007849463, 0.0029155149, -0.0016015436, -0.022976862, -0.00797245, + -0.019287253, 0.006341064, -0.020806503, -0.014989942, 0.03400228, 0.0061602006, 0.03863238, -0.022991331, + -0.012580845, -0.007769883, -0.0046626534, 0.04462257, 0.019721324, 0.0048398995, -0.046272043, 0.0008111715, + -0.004423914, 0.0019189586, -0.008269066, -0.00865973, -0.0043226304, -0.03799574, -0.032931574, -0.0041019777, + 0.017116893, -0.017739063, 0.016610477, 0.024959123, -0.0055633523, 0.030385017, 0.005888906, 0.013868591, + 0.025827266, 0.005190774, 0.012132304, 0.016306626, 0.00066422013, -0.011951441, -0.016523663, 0.028272536, + -0.0010752317, 0.006876419, -0.01685645, 0.023685845, 0.026000895, 0.028909175, -0.0009983649, -0.0033097966, + -0.013832418, 0.03738804, 0.02346881, 0.009838958, -0.04065805, -0.0025501712, 0.05938101, 0.015235917, + -0.033539273, 0.011951441, 0.0031379766, 0.023483278, -0.018115258, -0.0015545193, -0.012342105, -0.013094496, + 0.02685457, 0.004192409, -0.023078145, -0.015206978, 0.005921461, -0.0042683715, -0.014816314, -0.009419356, + 0.019287253, 0.028113376, -0.0075817853, 0.0069632335, -0.008153313, -0.06053853, -0.027172888, 0.0324975, + 0.030095637, 0.013289828, 0.004492642, 0.045866907, -0.024597395, 0.052088603, -0.035044055, 0.01449076, + -0.036867157, -0.015206978, -0.0022155743, 0.02207978, -0.0014432884, -0.022803232, 0.015872555, -0.0009174286, + 0.009600218, -0.008464398, -0.012696597, 0.013969874, -0.009303603, -0.00091335917, 0.016118528, -0.01233487, + -0.00070898375, 0.027462268, 0.006460434, 0.034783613, 0.004536049, -0.015047818, -0.014649919, -0.0065544825, + 0.022021905, -0.026449434, -0.021689115, 0.011466727, -0.027635897, 0.021341858, -0.035159808, -0.0021341858, + 0.024944654, 0.016176404, -0.00405857, 0.00819672, 0.0006452295, -0.008370349, 0.035767507, -0.007900105, + 0.013629851, 0.0046915915, -0.0040911254, 0.02575492, 0.03588326, -0.017739063, -0.009296369, 0.013391112, + -0.01342005, 0.014425649, 0.012949806, -0.030124575, 0.010461127, -0.0324975, 0.04065805, 0.009694268, + 0.009267431, -0.039645214, 0.018202072, 0.011329271, -0.0010517195, 0.028561916, -0.0102657955, -0.015887024, + 0.015742334, -0.007082603, 0.028851299, 0.051625594, -0.01701561, 0.03602795, -0.00354311, -0.033249892, + 0.02806997, 0.00015000341, -0.036114763, 0.00686195, -0.0142447855, -0.011611418, 0.0079652155, -0.0018068234, + 0.00087809085, -0.025118282, -0.013448988, 0.0038089792, -0.0036353504, -0.03814043, 0.028142314, 0.028287005, + -0.028489571, -0.014100095, 0.017970568, -0.02592855, -0.012682128, -0.007784352, 0.017550966, 0.02409098, + 0.017594373, -0.021081416, -0.0076758345, 0.016263219, 0.04152619, -0.011799515, 0.015004411, 0.01565552, + 0.044448942, 0.0012271568, 0.011517369, 0.0432046, -0.03970309, -0.0082618315, -0.0019153414, -0.013130669, + 0.03646202, 0.004449235, 0.0017444256, 0.00085955235, -0.003892176, -0.024322484, -0.02835935, 0.044738322, + -0.01088073, -0.0023457957, 0.017059017, -0.004583074, 0.024742085, 0.017536497, 0.04604054, -0.03220812, + 0.0022517468, -0.020907786, -0.010200685, 0.033915468, 0.011936971, 0.021399735, 0.013470692, -0.05810773, + 0.025349787, -0.0035358756, 0.0041164467, 0.037532732, -0.0067859874, -0.04308885, -0.0036244986, -0.011560776, + 0.044535756, -0.024785493, -0.004872455, 0.008471632, 0.003018607, 0.024322484, 0.037677422, 0.013629851, + -0.020111987, -0.021964027, -0.029864132, -0.010526238, -0.0092819, 0.00014683831, -0.037185475, -0.0042575197, + 0.019460881, -0.019735793, 0.01111947, 0.016538132, 0.0133983465, 0.023873942, 0.041439377, 0.029806256, + 0.056950204, -0.005483772, 0.04968674, 0.012031021, -0.0016277689, 0.021081416, -0.015858086, 0.0068004564, + -0.009325307, 0.014338835, -0.0059938068, -0.0032030873, 0.02605877, -0.022021905, 0.029227493, -0.027086074, + -0.006138497, 0.020039642, 0.0036679057, -0.00974491, -0.012870225, 0.04112106, -0.0036480108, 0.013586444, + 0.022123188, 0.0038596208, 0.0091372095, 0.013195779, 0.00889847, 0.0046337154, 0.043899115, 0.0022390864, + -0.02436589, -0.017854815, 0.03666459, 0.03171617, -0.00070174923, 0.027245233, -0.035825383, -0.022369161, + -0.0029010458, -0.034146972, -0.019996235, 0.019388536, -0.0076758345, -0.011184581, 0.01992389, -0.024742085, + -0.006427878, -0.012059959, 0.0076107234, -0.015626581, -0.0048833066, -0.030008823, -0.0049448, 0.003928349, + -0.027505675, 0.015409545, -0.001568084, 0.0023873942, -0.0012389129, 0.00045690566, 0.00942659, 0.025581291, + -0.007437095, -0.029184086, 0.0070608994, 0.013217483, 0.002217383, -0.029314307, 0.0021251426, -0.008102671, + 0.04948417, 0.022354692, 0.0058129434, 0.0012985978, 0.011546307, 0.0318898, 0.019099154, 0.0105624115, + 0.010164512, -0.0072815525, 0.015626581, 0.008413756, -0.0066919387, -0.009896834, -0.020878848, -0.025957488, + 0.019301722, 0.019591102, 0.016046183, 0.018187603, 0.012725535, -0.061001543, 0.018939994, 0.00942659, + -0.020343494, 0.0065689515, -0.01778247, 0.013029385, -0.016740698, -0.0070355786, -0.042162832, 0.020054111, + 0.032902636, 0.008420991, 0.0022047225, 0.0062216944, -0.010461127, 0.013673258, 0.0008545786, 0.0027943365, + 0.02131292, 0.00043384562, 0.012443389, -0.0018140579, 0.0031144645, 0.014266489, -0.0018646996, -0.0016548983, + 0.009824489, 0.031137409, -0.015843617, -0.029979885, -0.0011367252, 0.0035467274, -0.030211389, 0.036201578, + -0.005776771, 0.021949558, -0.01747862, -0.03235281, 0.02098013, 0.032410685, 0.0041381503, -0.0009658095, + 0.039442647, 0.0073900707, 0.0007487737, -0.022282347, 0.02056053, -0.04366761, -0.010902434, 0.006312126, + 0.018737428, -0.037445918, 0.013289828, -0.007654131, 0.021718053, 0.015279324, 0.018665083, -0.0111267045, + -0.012378277, -0.026623063, 0.014389477, -0.016682822, -0.016697291, -0.0017209133, 0.0028341264, -0.022499382, + -0.015033349, 0.014309897, -0.022513852, -0.031021656, 0.0039392007, 0.0102657955, -0.0013239187, 0.020719688, + 0.005451217, 0.021587832, 0.012248056, 0.08791398, 0.00018753254, -0.0037908927, 0.033481397, 0.024915716, + -0.0139626395, -0.0007171226, 0.03449423, -0.033510335, 0.017464152, -0.050091874, -0.008298004, -0.025074875, + -0.01187186, -0.026015364, -0.03617264, -0.012696597, 0.004235816, 0.018925525, -0.002275259, 0.013781776, + 0.03999247, 0.019345129, -0.011256926, 0.01733393, -0.02637709, -0.00010614409, 0.00850057, 0.0059540165, + -0.009303603, -0.030442894, 0.0035521532, 0.019084685, 0.014845252, 0.012812349, -0.014816314, 0.017883753, + -0.0023457957, -0.005082256, -0.024481643, -0.029922009, -0.02867767, -0.0036932267, -0.017276052, -0.01792716, + 0.02882236, 0.03559388, -0.00070672296, -0.025393194, 0.0079796845, -0.010345375, -0.0041670883, 0.024279077, + 0.011430554, -0.030876966, -0.031831924, 0.0361437, 0.05486666, 0.022933453, -0.013629851, -0.004818196, + 0.0122263525, 0.024582926, 0.008377584, 0.002354839, -0.00031944964, -0.033192016, -0.056313567, -0.01073604, + 0.014454587, -0.021197168, -0.013991578, 0.03646202, 0.026348151, -0.0004996346, -0.0033658643, 0.00083830097, + -0.0023729252, -0.0058418815, 0.04062911, -0.013354939, -0.013817948, -0.012530203, 0.021558894, -0.059438884, + 0.017507559, 0.049773555, -0.012465092, -0.008225659, 0.030182451, -0.011141174, -0.016986672, 0.0012922676, + -0.013022151, 0.003863238, -0.017116893, -0.0065110754, -0.0019605572, -0.023208367, 0.009672564, 0.033192016, + 0.025118282, 0.0007885636, 0.00070898375, -0.021153761, 0.004807344, 0.007914574, -0.016161935, -0.014548636, + -0.009976414, -0.006261484, -0.0010508152, -0.0008202146, 0.0004512537, -0.017608842, 0.017753532, 0.013629851, + -0.014678857, -0.0043877414, -0.014006047, 0.00089436857, -0.014649919, -0.007191121, 0.0030855262, -0.004105595, + 0.013890294, -0.00080258044, 0.015496359, 0.030500771, 0.006138497, 0.028460633, 0.04615629, 0.0016042566, + 0.03970309, -0.01402775, 0.020213272, 0.016813044, -0.00082744914, -0.0016621328, 0.07379219, -0.012964275, + 0.026029833, 0.011719936, 0.017999506, 0.0037293993, 0.00094139297, -0.008746545, 0.026116647, -0.039066453, + -0.0062216944, -0.012407215, 0.0011005526, 0.01885318, 0.029386653, 0.0034508698, -0.01580021, 0.004684357, + -0.032555375, -0.034118034, -0.00694153, -0.016538132, -0.018274419, -0.019374067, -0.02025668, 0.026000895, + -0.0047349986, -0.010287499, 0.020213272, 0.014917597, 0.03330777, 0.025335317, -0.047429565, -0.034060158, + 0.00460116, 0.0027057135, 0.016465787, -0.028619794, -0.03400228, -0.0005471112, 0.0056971908, -0.017811408, + 0.006370002, 0.0019497053, 0.0024145239, 0.0432046, 0.014613747, -0.017912691, -0.009911303, 0.031137409, + 0.0031831923, 0.041034244, -0.0067027905, 0.016986672, 0.033655025, 0.016668353, 0.032150242, -0.022325754, + -0.041149996, 0.015612111, 0.028851299, 0.019128092, -0.0211827, -0.009050394, 0.00920232, 0.006312126, + 0.0071223928, -0.02008305, 0.0105624115, 0.0045686048, -0.009303603, -0.05903375, -0.0010309203, 0.03924008, + 0.004044101, 0.006865567, 0.0033640557, 0.00478564, 0.02346881, 0.011994848, 0.0011927928, 0.0039934595, + -0.023787128, 0.0063048913, -0.037330166, -0.012783411, 0.043928053, -0.0021613152, 0.0072670835, -0.037764236, + 0.018462516, 0.06702067, 0.014020516, 0.008833359, 0.020502653, -0.0058165607, -0.011010952, 0.0049701207, + 0.000592327, -0.037822112, 0.0075383782, -0.0011548116, 0.0013284403, 0.005545266, 0.007798821, -0.023410933, + 0.031368915, 0.010511769, 0.012783411, -0.020184334, 0.0033513953, 0.0015301027, 0.0035268324, -0.013072792, + -0.023193898, -0.03709866, -0.0018755514, -0.003548536, -0.031918738, 0.015192509, -0.013796245, 0.001796876, + -0.023888411, 0.0034038455, 0.01356474, -0.00957128, -0.0077771177, 0.027115012, 0.014150737, 0.0034165059, + 0.024510581, 0.010070463, 0.013441754, 0.011517369, -0.015293793, -0.023627969, 0.0012434345, 0.014360539, + 0.017768001, 0.0011728979, -0.01378901, -0.06291146, -0.0011692806, -0.02821466, 0.009354245, -0.031166347, + 0.00031198902, -0.028229129, -0.015395076, 0.010338141, -0.022962393, -0.0009522448, 0.009614688, -0.03460998, + -0.019229377, 0.012993213, 0.038342997, 0.04291522, -0.01700114, -0.0034599132, 0.004109212, 0.000066467226, + -0.0018755514, 0.0019623658, 0.010649226, 0.0058129434, 0.023512216, 0.016972203, -0.02453952, 0.004572222, + -0.014678857, 0.025668105, 0.0043226304, 0.03220812, 0.016509194, -0.008934642, 0.0052812058, 0.00070807943, + -0.02407651, -0.039008576, 0.00881889, -0.0072562317, 0.010424955, 0.029950947, -0.027042666, 0.017579904, + -0.024409298, -0.024597395, -0.020473715, 0.017869284, -0.017232645, 0.012385512, 0.011076063, 0.03709866, + -0.04508558, 0.04659036, -0.03463892, 0.018375702, 0.0091516785, 0.03570963, 0.0076758345, -0.0021866362, + 0.033365645, -0.010793916, 0.031253163, -0.0063048913, 0.00966533, 0.011481197, 0.022817701, 0.00013960378, + 0.021544425, -0.0049230964, 0.004948417, 0.0066557657, -0.004572222, -0.039760966, -0.0007406348, 0.022470444, + -0.0051871566, -0.017189238, 0.01080115, -0.009961945, 0.0021595065, 0.011220753, 0.038603444, 0.012002083, + 0.028330412, -0.01623428, -0.037011847, 0.026449434, 0.016769636, -0.020314556, -0.012862991, 0.019041277, + 0.004423914, -0.031397853, -0.053361878, -0.0071296273, 0.008023092, -0.019388536, -0.03680928, 0.03588326, + 0.025335317, 0.0337129, -0.004832665, 0.020010704, -0.024192262, -0.0010824662, -0.022976862, -0.038892824 + ], + "text": "Page road_to_devcon.mdx: #### Hey there, I'm Deva, the Devcon unicorn. Since the dawn of Devcon I have been a guiding light to the wonderstruck wanderers of Ethereum's vast universe, supporting them to find their tribe and community.\n\nAnd now, the Road to Devcon calls again, inviting a diverse array of mavericks, just like you.\n,## Why Devcon is for You\n\nDevcon is the Ethereum conference for developers, thinkers, and makers. You’ll meet the smartest and kindest people in the Ethereum ecosystem IRL, and gain insight into a unique culture that is challenging to fully understand just online.\n\nAt Devcon, we explore Ethereum together through fiery dialogues, workshops, and peer-to-peer interactions. It’s where you are welcomed by a tribe that nurtures your growth, and where you build new relationships and networks.\n,## What is the Road to Devcon?\n\nThe Road to Devcon (RTD) is a series of Ethereum events and educational initiatives leading up to Devcon, organized by the active local communities in Southeast Asia.\n\nExplorers like you are shaping the road together, diving into workshops and talks, empowered by Ethereum’s promises and the motivation to bring this innovation to local communities, creating opportunities to learn and connect.\n,## Become a leader: Organize an event or start a community\n\nIf you're in SEA, community-driven, and passionate about Ethereum's positive impact, we're here to support you! This is your call to adventure, to be part of something bigger, something wilder.\n\nImagine organizing events within your community to showcase Ethereum, or starting a new grassroots community through meetups and other educational initiatives focused on Ethereum.\n\nIf a fire is ignited within you, now is the time to apply for the RTD grants and be a part of building our empowered, decentralized future. 🦄✨\n\n\n,The Road to Devcon (RTD) is a series of Ethereum events and educational initiatives leading up to Devcon, organized by the local communities in and near Southeast Asia.\n,road_to_devcon" + } +] diff --git a/devcon/src/pages/api/ai/sections.json b/devcon/src/pages/api/ai/sections.json new file mode 100644 index 000000000..e499612f4 --- /dev/null +++ b/devcon/src/pages/api/ai/sections.json @@ -0,0 +1,105 @@ +{ + "dips.mdx": [ + "## **Contribute**\n\n#### Devcon Improvement Proposals (DIPs) provide a mechanism for collecting collaborative community input on what should be included at the upcoming Devcon.\n\nWhile we are excited to have a more formal process to hear ideas from the community (roughly inspired by the more decentralized PEP, BIP and EIP processes), this is an experiment, and it should be understood that approval of proposals ultimately lies solely with the Devcon team. DIPs focus on collaboration in the ecosystem between different projects.\n\nThe Devcon team also publishes Requests For Proposals (RFPs), which are specific ideas we'd love to see take place for the next Devcon edition. They are available on our forum.\n", + "dips" + ], + "faq.mdx": [ + [ + { + "question": "What is the difference between Devcon and Devconnect?", + "answer": "Devcon and Devconnect are the only two events organized by the Ethereum Foundation (yes, all the other amazing ETH events are community-run!). Both events are Ethereum-focused but serve different purposes.\n\nDevcon is a global Ethereum family reunion, a place to celebrate success and align on updates and direction. It is our principal event, all in one place with one big venue, and talks and workshops open to all. [Devcon SEA will take place in Bangkok, Thailand between 12-15 November 2024! ](https://devcon.org/)\n\nDevconnect on the other hand, is a week to make progress, dive deep into specific topics among fellow experts, to co-work and collaborate. It is structurally entirely different from Devcon, and consists of many individual events, organized by you the community, that each cover one topic in depth.\n" + } + ], + "faq_general" + ], + "index.mdx": [ + "Test", + "Connecting the builders of Ethereum", + "Devconnect is a week-long gathering of independent Ethereum events to learn, share, and **make progress together.**\n", + "Devconnect IST Photo Gallery", + "View Full Archive →", + "aefaef\n\naefafea\n\n", + "## Discover Ethereum and its community at Devcon!\n\n**Devcon is the Ethereum conference for developers, thinkers, and makers. Join Devcon and empower yourself to use and build decentralized systems.**\n\nDevcon is more than just a conference with talks and presentations to learn about Ethereum. It’s a cultural hub and a place for inspiration for passionate builders, engineers, designers, researchers, community organizers, and artists.\n\nWhether you're a seasoned Ethereum expert or just starting, Devcon is for you. It’s an intensive introduction for new Ethereum explorers, a global family reunion for those already a part of our ecosystem, and a source of energy and creativity for all.\n", + "## **Devcon 7 — Southeast Asia**\n\n## Devcon’s goal is to make Ethereum more accessible to communities around the world and to contribute to the ongoing evolution of the global Ethereum ecosystem.\n", + "Our intention is to bring the Devcon experience to the entire Southeast Asia region. On the Road to Devcon (RTD), you can explore Ethereum communities in SEA and join meetups, conferences, and workshops.\n", + "Ethereum can have real use cases in SEA. Vietnam, the Philippines, Indonesia, and Thailand are among the top 10 countries leading in the Global Crypto Adoption Index.\n", + "/road-to-devcon", + "Explore RTD Events →", + "## **Road to Devcon Grants**\n\n## Are you based in SEA, driven by a community-oriented spirit, and passionate about Ethereum's potential to create a positive impact?\n\nCheck out the Road to Devcon grants round and apply. 
This initiative was born from our commitment to support the rise of new Ethereum events, grassroots communities, and educational endeavors across Southeast Asia before Devcon 7.\n", + "https://esp.ethereum.foundation/devcon-grants", + "Apply for RTD Grants →", + "## **Devcon VI Bogotá**\n\n## Tracing our roots back to ÐΞVcon 0, a meetup of early Ethereum devs in Berlin, Devcon has grown into a global beacon for the Ethereum community, uniting voices, ideas, and innovations from across the world.\n\nAt Devcon VI, we turned our spotlight to Latin America. The Road to Devcon VI was paved with \\~14 events across the region, hosted by the passionate local communities of builders in Latam.\n", + "https://blog.ethereum.org/en/2022/11/17/devcon-vi-wrap", + "Devcon VI Recap →", + "Devcon is geared toward Ethereum's builders, creators, and thinkers who wish to improve this world. Programming at Devcon takes a holistic approach and aims to engage all attendees through talks, panels, workshops, lightning talks, and freeform learning sessions.\n", + "## **Devcon Archive**\n", + "https://archive.devcon.org", + "View Full Archive →", + "Devcon is a 4-day conference, all in one venue, happening between **12-15 November**. But as usual, **Devcon Week will span the entire week of November 9-17**, with events before and after Devcon, and side events during the nights, organized by the local and global Ethereum community.\n", + "", + "index" + ], + "past_events.mdx": [ + "## **Devcon Editions**\n\n## Everything began in Berlin Kreuzberg in 2014 when the co-founders and earliest builders of Ethereum came together for a meet-up they named Devcon 0. Since then, Devcon has rotated the world. The journey went from Berlin to London, Shanghai, Cancún, Prague, Osaka and Bogotá. Each location brings something unique to the developer conference.\n\nYou might want to check out some details about Devcon’s history. Read on below for summaries of past editions, or head to the **[Devcon Archive](https://archive.devcon.org/archive)** to watch round-up videos, talks, and presentations.\n", + [ + { + "title": "Devcon VI", + "description": "After a three-year-long pause, we emerged from the pandemic stronger than before and reunited in Bogotá for the largest and some would say, “best Devcon yet.” One of its most powerful aspects was the impact on the regional community and the involvement of the flourishing Latin American Ethereum community, which had organized 14 community events around the region leading up to Devcon.\n", + "button": "Watch", + "button_link": "https://archive.devcon.org/archive/watch/?order=desc&sort=eventId", + "image": "/cms-assets/past-events/Bogota.png" + }, + { + "title": "Devcon V", + "description": "Devcon 5 brought the Ethereum ecosystem together in Japan in October of 2019 for an event that featured more content and attendees than ever before. In addition to the conference talks, Devcon featured the event's first community run outdoor stage and experiential Park area, a powerful open from the City of Osaka, a celebrity appearance by the world’s most well-known dog, Kabosu (the original “Doge”) and so much more.\n", + "button": "Watch", + "button_link": "https://archive.devcon.org/archive/watch/?edition=5", + "image": "/cms-assets/past-events/Osaka.png" + }, + { + "title": "Devcon iv", + "description": "Devcon 4 brought Ethereum's ecosystem and family back to Europe with a 2018 event at the Prague Convention Center in the Czech Republic (Czechia). With 3,000 strong in attendance, Devcon was filled with talks, experiences, teams from a matured application ecosystem, and more enterprise support than ever before.\n", + "button": "Watch", + "button_link": "https://archive.devcon.org/archive/watch/?order=desc&sort=eventId", + "image": "/cms-assets/past-events/Prague.png" + }, + { + "title": "devcon three", + "description": "Devcon 3 was a celebration held around \"Dio de Los Muertos\" and Halloween in Cancun, Mexico in November of 2017. It was the largest ever Ethereum gathering at the time, with just under 2000 attending in a year of unprecedented growth in terms of network use, adoption and progress.\n", + "button": "Watch", + "button_link": "https://archive.devcon.org/archive/watch/?order=desc&sort=eventId", + "image": "/cms-assets/past-events/Cancun.png" + }, + { + "title": "devcon two", + "description": "Devcon 2 came alongside one of the most (in)famous moments in Ethereum's early history, as a set of Denial of Service attacks were launched against the network just hours before the event was set to begin. With many of the most formidable builders in the ecosystem gathered together in Shanghai, they helped to coordinate emergency upgrades backstage to restore full functionality to the network, moments before stepping forward to speak to the future of the network on stage.\n", + "button": "Watch", + "button_link": "https://archive.devcon.org/archive/watch/?order=desc&sort=eventId", + "image": "/cms-assets/past-events/Shanghai.png" + }, + { + "title": "DΞVCON 1", + "description": "Only a few months after Ethereum came to life, DΞVCON 1 was held in London in November of 2015. Presenters remained hard at work on each piece of the original Ethereum roadmap, early dApp teams took the stage, and supporters teased the early industry adoption that was to arrive soon.\n", + "button": "Watch", + "button_link": "https://archive.devcon.org/archive/watch/?order=desc&sort=eventId", + "image": "/cms-assets/past-events/London.png" + }, + { + "title": "DEV CON 0", + "description": "It all began in Berlin. Long prior to the launch of Ethereum, the earliest builders and co-founders gathered in the Kreuzberg neighborhood in late November of 2014 to outline their work and designs for the future of Ethereum at a meetup called \"ÐΞVcon-0\". A great resource to learn about the historical context and the early ethos of the project.\n", + "button": "Watch", + "button_link": "https://archive.devcon.org/archive/watch/?order=desc&sort=eventId", + "image": "/cms-assets/past-events/Berlin.png" + } + ], + "past_events" + ], + "road_to_devcon.mdx": [ + "#### Hey there, I'm Deva, the Devcon unicorn. Since the dawn of Devcon I have been a guiding light to the wonderstruck wanderers of Ethereum's vast universe, supporting them to find their tribe and community.\n\nAnd now, the Road to Devcon calls again, inviting a diverse array of mavericks, just like you.\n", + "## Why Devcon is for You\n\nDevcon is the Ethereum conference for developers, thinkers, and makers. You’ll meet the smartest and kindest people in the Ethereum ecosystem IRL, and gain insight into a unique culture that is challenging to fully understand just online.\n\nAt Devcon, we explore Ethereum together through fiery dialogues, workshops, and peer-to-peer interactions. It’s where you are welcomed by a tribe that nurtures your growth, and where you build new relationships and networks.\n", + "## What is the Road to Devcon?\n\nThe Road to Devcon (RTD) is a series of Ethereum events and educational initiatives leading up to Devcon, organized by the active local communities in Southeast Asia.\n\nExplorers like you are shaping the road together, diving into workshops and talks, empowered by Ethereum’s promises and the motivation to bring this innovation to local communities, creating opportunities to learn and connect.\n", + "## Become a leader: Organize an event or start a community\n\nIf you're in SEA, community-driven, and passionate about Ethereum's positive impact, we're here to support you! This is your call to adventure, to be part of something bigger, something wilder.\n\nImagine organizing events within your community to showcase Ethereum, or starting a new grassroots community through meetups and other educational initiatives focused on Ethereum.\n\nIf a fire is ignited within you, now is the time to apply for the RTD grants and be a part of building our empowered, decentralized future. 🦄✨\n\n\n", + "The Road to Devcon (RTD) is a series of Ethereum events and educational initiatives leading up to Devcon, organized by the local communities in and near Southeast Asia.\n", + "road_to_devcon" + ] +} \ No newline at end of file diff --git a/devcon/yarn.lock b/devcon/yarn.lock index dafaf6fac..87e73ef45 100644 --- a/devcon/yarn.lock +++ b/devcon/yarn.lock @@ -5242,6 +5242,14 @@ "@types/node" "*" form-data "^4.0.0" +"@types/node-fetch@^2.6.4": + version "2.6.11" + resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.11.tgz#9b39b78665dae0e82a08f02f4967d62c66f95d24" + integrity sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g== + dependencies: + "@types/node" "*" + form-data "^4.0.0" + "@types/node@*": version "20.6.3" resolved "https://registry.yarnpkg.com/@types/node/-/node-20.6.3.tgz#5b763b321cd3b80f6b8dde7a37e1a77ff9358dd9" @@ -5252,6 +5260,13 @@ resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190" integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw== +"@types/node@^18.11.18": + version "18.19.31" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.31.tgz#b7d4a00f7cb826b60a543cebdbda5d189aaecdcd" + integrity sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA== + dependencies: + undici-types "~5.26.4" + "@types/node@^20.10.5": version "20.10.5" resolved "https://registry.yarnpkg.com/@types/node/-/node-20.10.5.tgz#47ad460b514096b7ed63a1dae26fad0914ed3ab2" @@ -6216,6 +6231,13 @@ agent-base@6: dependencies: debug "4" +agentkeepalive@^4.2.1: + version "4.5.0" + resolved "https://registry.yarnpkg.com/agentkeepalive/-/agentkeepalive-4.5.0.tgz#2673ad1389b3c418c5a20c5d7364f93ca04be923" + integrity sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew== + dependencies: + humanize-ms "^1.2.1" + ajv-keywords@^3.5.2: version "3.5.2" resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" @@ -9178,6 +9200,11 @@ forever-agent@~0.6.1: resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" integrity sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw== +form-data-encoder@1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-1.7.2.tgz#1f1ae3dccf58ed4690b86d87e4f57c654fbab040" + integrity sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A== + form-data@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" @@ -9196,6 +9223,14 @@ form-data@~2.3.2: combined-stream "^1.0.6" mime-types "^2.1.12" +formdata-node@^4.3.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2" + integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ== + dependencies: + node-domexception "1.0.0" + web-streams-polyfill "4.0.0-beta.3" + forwarded@0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" @@ -9856,6 +9891,13 @@ human-signals@^2.1.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== +humanize-ms@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/humanize-ms/-/humanize-ms-1.2.1.tgz#c46e3159a293f6b896da29316d8b6fe8bb79bbed" + integrity sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ== + dependencies: + ms "^2.0.0" + iconv-lite@0.4.24: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" @@ -12257,7 +12299,7 @@ ms@2.1.2: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@2.1.3, ms@^2.1.1, ms@^2.1.3: +ms@2.1.3, ms@^2.0.0, ms@^2.1.1, ms@^2.1.3: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== @@ -12419,6 +12461,11 @@ node-addon-api@^7.0.0: resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.0.0.tgz#8136add2f510997b3b94814f4af1cce0b0e3962e" integrity sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA== +node-domexception@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5" + integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ== + node-fetch-native@^1.2.0, node-fetch-native@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.4.0.tgz#fbe8ac033cb6aa44bd106b5e4fd2b6277ba70fa1" @@ -12645,6 +12692,20 @@ open@^8.4.0: is-docker "^2.1.1" is-wsl "^2.2.0" +openai@^4.38.5: + version "4.38.5" + resolved "https://registry.yarnpkg.com/openai/-/openai-4.38.5.tgz#87de78eed9f7e63331fb6b1307d8c9dd986b39d0" + integrity sha512-Ym5GJL98ZhLJJ7enBx53jjG3vwN/fsB+Ozh46nnRZZS9W1NiYqbwkJ+sXd3dkCIiWIgcyyOPL2Zr8SQAzbpj3g== + dependencies: + "@types/node" "^18.11.18" + "@types/node-fetch" "^2.6.4" + abort-controller "^3.0.0" + agentkeepalive "^4.2.1" + form-data-encoder "1.7.2" + formdata-node "^4.3.2" + node-fetch "^2.6.7" + web-streams-polyfill "^3.2.1" + optionator@^0.9.1: version "0.9.3" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" @@ -15944,6 +16005,16 @@ watchpack@2.4.0: glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" +web-streams-polyfill@4.0.0-beta.3: + version "4.0.0-beta.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38" + integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug== + +web-streams-polyfill@^3.2.1: + version "3.3.3" + resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-3.3.3.tgz#2073b91a2fdb1fbfbd401e7de0ac9f8214cecb4b" + integrity sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw== + web3-provider-engine@16.0.1: version "16.0.1" resolved "https://registry.yarnpkg.com/web3-provider-engine/-/web3-provider-engine-16.0.1.tgz#2600a39ede364cdc0a1fc773bf40a94f2177e605"