[
  {
    "path": ".eslintrc.js",
    "content": "module.exports = {\n  root: true,\n  parser: '@typescript-eslint/parser',\n  plugins: ['@typescript-eslint'],\n  extends: [\n    'eslint:recommended',\n    'plugin:@typescript-eslint/eslint-recommended',\n    'plugin:@typescript-eslint/recommended',\n  ],\n};\n"
  },
  {
    "path": ".gitignore",
    "content": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\nlerna-debug.log*\n.pnpm-debug.log*\n\n# Diagnostic reports (https://nodejs.org/api/report.html)\nreport.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json\n\n# Runtime data\npids\n*.pid\n*.seed\n*.pid.lock\n\n# Directory for instrumented libs generated by jscoverage/JSCover\nlib-cov\n\n# Coverage directory used by tools like istanbul\ncoverage\n*.lcov\n\n# nyc test coverage\n.nyc_output\n\n# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)\n.grunt\n\n# Bower dependency directory (https://bower.io/)\nbower_components\n\n# node-waf configuration\n.lock-wscript\n\n# Compiled binary addons (https://nodejs.org/api/addons.html)\nbuild/Release\n\n# Dependency directories\nnode_modules/\njspm_packages/\n\n# Snowpack dependency directory (https://snowpack.dev/)\nweb_modules/\n\n# TypeScript cache\n*.tsbuildinfo\n\n# Optional npm cache directory\n.npm\n\n# Optional eslint cache\n.eslintcache\n\n# Optional stylelint cache\n.stylelintcache\n\n# Microbundle cache\n.rpt2_cache/\n.rts2_cache_cjs/\n.rts2_cache_es/\n.rts2_cache_umd/\n\n# Optional REPL history\n.node_repl_history\n\n# Output of 'npm pack'\n*.tgz\n\n# Yarn Integrity file\n.yarn-integrity\n\n# dotenv environment variable files\n.env\n.env.development.local\n.env.test.local\n.env.production.local\n.env.local\n\n# parcel-bundler cache (https://parceljs.org/)\n.cache\n.parcel-cache\n\n# Next.js build output\n.next\nout\n\n# Nuxt.js build / generate output\n.nuxt\ndist\n\n# Gatsby files\n.cache/\n# Comment in the public line in if your project uses Gatsby and not Next.js\n# https://nextjs.org/blog/next-9-1#public-directory-support\n# public\n\n# vuepress build output\n.vuepress/dist\n\n# vuepress v2.x temp and cache directory\n.temp\n.cache\n\n# Docusaurus cache and generated files\n.docusaurus\n\n# Serverless directories\n.serverless/\n\n# FuseBox cache\n.fusebox/\n\n# DynamoDB Local files\n.dynamodb/\n\n# TernJS port file\n.tern-port\n\n# Stores VSCode versions used for testing VSCode extensions\n.vscode-test\n\n# yarn v2\n.yarn/cache\n.yarn/unplugged\n.yarn/build-state.yml\n.yarn/install-state.gz\n.pnp.*\n"
  },
  {
    "path": ".npmignore",
    "content": "src/\n*.test.ts\n"
  },
  {
    "path": ".nvmrc",
    "content": "v16.15.0"
  },
  {
    "path": ".prettierrc",
    "content": "{\n  \"semi\": true,\n  \"trailingComma\": \"all\",\n  \"singleQuote\": true,\n  \"printWidth\": 80,\n  \"tabWidth\": 2\n}\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2023 Aaron Decker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# vector-2-trend\n\nTake (text) vectors and get out trending topics using clustering algorithms.\n\n```\nnpm i vector-2-trend\n```\n\nGood use cases:\n\n- surfacing topics in user feedback\n- categorizing survey responses\n\n![example text topic trends](docs/screenshots/example-user-feedback-trends.png)\n\n## Summary\n\nYou have some semantic vectors for text and would like to show trending topics, yes? Of course you do, it's a common use case. It's a few steps to do this however. Generally it involves clustering, and then summarizing the clusters somehow. This module helps you do that (I developed this code while working on an experiment called saymore.ai).\n\nFor clustering we use `kmeans` but will be adding more algorithms.\n\nFor classification, we use GPT-3.5-turbo using openai API (just use the API key).\n\n## Interface\n\n### The format of the Vectors:\n\n```typescript\nimport { DataPoint } from 'vector-2-trend'\n\ninterface DataPoint {\n    id: number | string\n    text: string,\n    vector: number[]\n}\n\nconst vectors: DataPoint[] = [{\n    id: 'abc-123',\n    text: 'some text',\n    vector: [0, 1, 2, 3 ... n]\n}]\n```\n\n### Clustering the vectors:\n\n```typescript\nimport Vector2Trend, {\n  ClusteringArgument,\n  ClusteringResult,\n} from 'vector-2-trend';\n\ntype ClusteringArgument = {\n  records: DataPoint[];\n  n: number;\n  pcaDimensions: number;\n  // we will add more in the future\n  clusteringAlgorithm: 'kmeans';\n};\n\nconst clusteringResult: ClusteringResult = Vector2Trend.cluster({\n  vectors: vectors,\n  // Dimensionality of the vectors - any number, but make sure they are uniform\n  // 1536 is the dimensionality of the text-embedding-ada-002 model by openAI \n  // which is cheap and performant (3k pages per dollar in 2023)\n  n: 1536,\n  // tune this based on your own data\n  // if you make this the same number as N PCA will essentially be skipped\n  // but with high dimensional data I would recommend a number that is reasonable\n  // for performance considerations.\n  pcaDimensions: 10,\n  // algorithm\n  clusteringAlgorithm: 'kmeans',\n});\n```\n\n### Classifying the vectors:\n\n```typescript\nimport { ClassifiedClusterResponse } from 'vector-2-trend';\n\nconst classificationResult: ClassifiedClusterResponse[] = Vector2Trend.classify(\n  {\n    openAiApiKey: string,\n    clusteringResult: ClusteringResult,\n    nTopics: 10, // optional, defaults to 10. How many topics to try to categorize in GPT.\n    temperature: 0.1, // optional, defaults to 0.1\n    elementsPerGroup: 10, // optional defaults to 10 in case you have very large clusters & hit token limit\n  },\n);\n```\n\n### Using the results:\n\n```typescript\n\n// the type returned\nexport type ClassifiedClusterResponse = {\n  // this is the density score\n  score: number;\n\n  // these are the same as from the cluster ranking result\n  clusterId: number;\n  count: number;\n  records: DataPoint[];\n\n  // generated from GPT\n  name: string;\n};\n\n\nconst classificationResults: ClassifiedClusterResponse[] =  [] /// see above - call Vector2Trend.classify\n\nconsole.log(classificationResults.map(x => ({ topic: x.name, score: x.score })))\n\n```\n\nWould look something like this:\n![demo output](./docs/screenshots//demo-output.png)\n\n\n### Debugging / Logging\n\nIf something is going wrong with classification you can toggle on debug logging\n\n```typescript\nVector2Trend.enableLogging();\n```\n\n## Developing\n\nI will take PRs, just please make sure to add tests where you change functionality.\n\nJest tests are configured. \n\n```\nnpm run test\n```\n\n### Demo script\n\nYou can run the demo script locally, just change the openAI Api key.\n```\nnpm run demo\n```\n\nThe demo output should look like this:\n![demo output](./docs/screenshots//demo-output.png)\n\n## Your feedback\n\nI am looking for your feedback to see what this could evolve into! Some things I have considered:\n\n- adding in features to do initial vectorization\n- graphical output features\n- many more ways to tweak and use the clustering algorithm.\n- more & better tests\n"
  },
  {
    "path": "jest.config.js",
    "content": "module.exports = {\n  roots: ['<rootDir>/src'],\n  transform: {\n    '^.+\\\\.tsx?$': 'ts-jest',\n  },\n  testRegex: '(/__tests__/.*|(\\\\.|/)(test|spec))\\\\.tsx?$',\n  moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],\n};\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"vector-2-trend\",\n  \"version\": \"1.0.0\",\n  \"description\": \"take semantic text vectors, run clustering, classification and output trends\",\n  \"main\": \"dist/index.js\",\n  \"types\": \"dist/index.d.ts\",\n  \"scripts\": {\n    \"test\": \"jest\",\n    \"build\": \"tsc\",\n    \"prepublishOnly\": \"npm run build\",\n    \"demo\": \"node scripts/demo.js\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git+https://github.com/a-r-d/vector-2-trend.git\"\n  },\n  \"keywords\": [\n    \"semantic\",\n    \"vectors\",\n    \"clustering\",\n    \"machine\",\n    \"learning\",\n    \"trends\"\n  ],\n  \"author\": \"Aaron Decker\",\n  \"license\": \"MIT\",\n  \"bugs\": {\n    \"url\": \"https://github.com/a-r-d/vector-2-trend/issues\"\n  },\n  \"homepage\": \"https://github.com/a-r-d/vector-2-trend#readme\",\n  \"devDependencies\": {\n    \"@types/jest\": \"^29.5.3\",\n    \"@types/lodash\": \"^4.14.195\",\n    \"@types/node\": \"^16.15.0\",\n    \"@typescript-eslint/eslint-plugin\": \"^6.1.0\",\n    \"@typescript-eslint/parser\": \"^6.1.0\",\n    \"eslint\": \"^8.45.0\",\n    \"jest\": \"^29.6.1\",\n    \"prettier\": \"^3.0.0\",\n    \"ts-jest\": \"^29.1.1\",\n    \"typescript\": \"^4.9.3\"\n  },\n  \"dependencies\": {\n    \"lodash\": \"^4.17.21\",\n    \"ml-kmeans\": \"^6.0.0\",\n    \"ml-pca\": \"^4.1.1\",\n    \"openai\": \"^3.3.0\",\n    \"tslog\": \"^4.8.2\"\n  }\n}\n"
  },
  {
    "path": "scripts/demo.js",
    "content": "const Vector2Trends = require('../dist/index');\nconst fs = require('fs');\n\nconst testData = fs.readFileSync('./src/sample-data.json', 'utf8');\nconst testDataPoints = JSON.parse(testData);\n\nconst clusters = Vector2Trends.default.cluster({\n  records: testDataPoints,\n  n: 1536,\n  pcaDimensions: 20,\n  clusteringAlgorithm: 'kmeans',\n});\n\nconsole.log(clusters);\n\nconst classify = async () => {\n  const calssifications = await Vector2Trends.default.classify({\n    clusteringResult: clusters,\n    // TODO: change this to your own API key\n    openAiApiKey: 'sk-xxxxxxxxxxxxxxxxxxx',\n  });\n\n  console.log(calssifications);\n\n  // topics:\n  console.log(calssifications.map(x => ({ topic: x.name, score: x.score })))\n  return calssifications;\n};\n\nclassify();\n"
  },
  {
    "path": "src/index.ts",
    "content": "import { Vector2Trend } from \"./vector2Trend\";\n\nexport default Vector2Trend;\n\nexport * from \"./types\";\n"
  },
  {
    "path": "src/sample-data.json",
    "content": "[{\"id\":\"c71a0b10-4330-4533-b78d-9dba3c194996\",\"text\":\"I'm Lancelot of Inner Circle ⭕️ \\\"The bad boys of Reggae\\\" are you interested in doing an endorsement?\",\"vector\":[-0.017546259,-0.016090808,-0.019473383,-0.02586119,-0.0149048865,0.03250505,-0.0077421856,-0.025497328,-0.017681023,0.010484631,0.013227076,0.014958792,0.005464676,-0.014379308,0.019122997,0.010686777,0.032073807,-0.016333384,0.016481625,0.025160419,0.00038133972,-0.007964546,-0.0025335613,-0.016737675,0.01668377,-0.010969781,0.026750633,-0.00014760857,0.015956044,-0.0053501264,0.015484371,0.021157932,0.010329653,-0.0032326488,-0.018489607,-0.01862437,0.013570724,-0.011663815,0.044175606,0.015619135,0.007607422,0.0052086245,0.009878193,-0.038434662,0.0028906856,0.018799564,0.023031149,-0.022936815,-0.0065899543,0.038542476,0.008988752,-0.00244428,0.00373296,-0.018570464,-0.004073239,0.017088061,0.021629605,-0.0053467574,0.0006531837,0.0005996993,0.012364588,-0.012095059,-0.01645467,-0.017681023,-0.019365571,0.008321671,-0.007230083,-0.0018984864,-0.013004716,-0.010828279,0.00078584196,-0.0006704504,-0.0030271339,0.002299409,0.002452703,-0.023233294,-0.047302127,-0.005110921,-0.008725963,-0.005110921,0.015807806,-0.0071559628,-0.032639816,0.014473642,0.018166173,0.026642822,-0.0016710723,0.019042138,-0.005724096,-0.0001950918,-0.0013274243,0.029189859,0.0002910058,0.004076608,-0.031588655,0.0066068,-0.018004457,0.013355101,0.0017822525,-0.009413258,0.010457678,-0.02202042,-0.01653553,-0.009130253,-0.0069066496,-0.008530554,-0.019325143,-0.004076608,0.0373296,0.016077332,-0.018206602,0.028300418,0.008389052,-0.022613382,-0.0057274657,-0.0019810293,-0.004908775,-0.02003939,-0.02056497,-0.0103027,0.01813922,-0.011414502,0.016670294,-0.030187113,0.010909137,0.012041154,-0.017721452,-0.013294458,-0.009709738,-0.0023499455,0.01063961,0.011205617,0.0055994396,0.008072358,0.004005857,0.02045716,-0.0001461346,0.019203855,-0.03123827,-0.02530866,0.03703312,0.026979731,0.0035173376,0.00048346547,-0.002422381,0.002232027,0.011731197,-0.02373192,-0.0034381638,-0.02258643,0.0009660887,-0.021966515,0.033044107,-0.017964028,-0.0062395683,0.01526875,-0.020349348,0.023799304,-0.0143119255,-0.0062766285,-0.007412014,0.00038218198,0.0064989887,-0.007418752,0.017707976,0.03183123,0.03239724,0.00060685864,-0.0003868145,0.0009012335,0.014567977,0.01246566,-0.01959467,0.01003991,-0.027976984,0.0066943965,-0.010181412,-0.0032191726,0.0052793757,-0.015349608,-0.02216866,0.041480325,0.01406935,0.021953039,-0.020821022,-0.00083090365,-0.01925776,-0.018866945,-0.009002228,-0.031076554,0.002766029,0.020470636,-0.005882444,-0.020645829,-0.6201295,-0.009986005,0.016131239,-0.00020519909,0.006377701,0.023152437,0.0016020058,0.0011092753,-0.028003937,0.009487378,-0.028542994,0.019217331,-0.005680298,0.0057678944,0.0026666406,-0.035254236,-0.0028233037,0.009345876,0.00515135,-0.008853988,-0.025578188,0.014190638,0.0085372925,-0.0235163,-0.007620898,0.016508577,0.0025554604,-0.013665059,0.0054848907,-0.0051412424,-0.0006009627,0.0016719146,0.0075467783,0.003172005,0.058649246,-0.018260507,0.005730835,0.024324883,0.00021625393,0.032424193,-0.026777586,-0.01892085,0.01925776,-0.016818535,0.0023651063,-0.00470326,0.030214066,0.014028922,-0.02105012,-0.0016205359,0.02138703,-0.004881822,-0.010275747,-0.019500336,0.010134245,-0.02978282,0.028839473,0.0060037314,0.003631887,0.031399988,0.00081953296,0.009952313,-0.037572175,-0.0072166068,0.017115014,0.009736692,-0.022748146,0.0412108,0.01112476,-0.0135842,0.007398538,-0.001080638,-0.0186648,0.0116368625,-0.0019961903,0.03131913,0.000084016865,-0.0368714,-0.0019355464,-0.000053115924,-0.014352355,-0.0014520809,-0.00095682364,-0.021292696,0.011387549,0.0010932721,-0.024527028,-0.009123515,0.02503913,-0.0050368006,0.012344372,0.024163166,0.000032532847,-0.02851604,0.026319388,0.00533665,-0.024230547,0.002112424,0.0068325293,-0.023907116,0.011259523,-0.00940652,0.01590214,0.00028405702,0.02482351,0.0037767582,-0.010545275,-0.01668377,0.017074585,-0.029189859,-0.0038643547,0.005919504,0.000663291,-0.014298449,0.0011168558,-0.031399988,0.011057378,0.009723215,0.016710723,-0.05422899,0.007823044,0.0095480215,0.030591404,-0.037814748,-0.01590214,0.02604986,-0.007236821,-0.0110371625,0.004474161,0.0007748924,-0.0032326488,-0.027276212,0.030429687,-0.02258643,0.019837245,0.012580209,0.023583682,-0.00027795054,0.012849737,-0.027424453,-0.00884725,-0.03317887,0.010370081,0.012485875,-0.014608406,-0.023341106,-0.0106193945,0.0005950668,-0.01355051,0.017519306,-0.008577722,0.010882185,-0.02489089,0.009783858,0.016737675,-0.019217331,-0.018341366,-0.016562482,-0.03075312,-0.0047942256,0.0013535349,0.01526875,-0.023435442,-0.021670034,0.0032579172,-0.009911885,0.0065933233,0.018839993,-0.015982999,-0.024836985,0.014945316,-0.0118726995,-0.000816585,0.000528106,0.0012162442,0.00746592,0.014379308,-0.002981651,0.015592183,-0.0049289893,0.0069133877,-0.028246513,-0.016818535,-0.00059085543,0.028920332,-0.0033168762,-0.000254788,0.026359817,-0.0034465867,0.01881304,-0.037006166,0.008159954,-0.011987248,-0.010835017,-0.0010031487,0.018718705,0.007917379,0.016912868,0.031265225,0.010289223,0.007897164,0.013537033,0.023758875,-0.01571347,-0.0008953376,-0.016508577,0.015821282,-0.010585704,0.044876378,0.026211577,0.0056331307,0.007162701,0.0033842584,0.0036824234,0.030160159,0.006640491,0.0028502564,0.0044775303,0.013355101,-0.008416005,0.009143731,0.018368319,0.0015986367,-0.02127922,0.012640853,0.023421966,0.008375576,0.011731197,-0.028947284,-0.012007463,-0.012364588,0.00851034,0.014824028,0.010457678,-0.00880682,-0.011212356,0.0013644844,-0.029917585,0.04431037,-0.03094179,-0.011198879,0.01824703,0.0024830247,0.008159954,0.034876894,-0.0036958999,0.013530295,0.011434716,-0.012182656,0.01727673,-0.010498107,0.015309178,-0.03161561,-0.0012912066,0.018031409,-0.041857667,-0.013321411,0.020187631,-0.008213859,0.020497588,0.00023815306,0.021225313,0.017303685,-0.026225055,0.01761364,0.018947804,0.002354999,0.003116415,0.009703,0.011704245,0.016764628,-0.003374151,0.018947804,-0.023300678,0.005643238,0.005976779,0.017532783,-0.012674544,-0.022465141,0.0036217796,0.010572228,-0.020066343,0.019352095,0.011960296,-0.0030524023,-0.04743689,0.0010149406,0.023192866,-0.022195613,0.03199295,0.043124445,0.020888403,0.012034416,-0.023880161,-0.01982377,-0.0031029386,0.014001968,-0.013826775,0.014163685,-0.0033977346,0.015875187,0.023624111,0.004918882,-0.023152437,0.018125745,0.00025710423,-0.011077592,0.008207121,0.0048616077,-0.015133985,-0.0022522416,0.010120768,-0.022680763,-0.02235733,0.00011360175,0.013092312,-0.014042398,-0.017222825,0.017047632,-0.0039620586,0.0015674726,-0.013644844,-0.03385269,0.013274244,0.14134037,-0.010754159,-0.0021915978,-0.0026363188,0.0035207067,0.0017536152,0.0017418233,-0.04635878,0.0041338825,0.0020955785,0.017748404,-0.007843259,-0.041453373,0.011299953,-0.010693515,0.0017856216,-0.020996215,-0.0020433576,0.016575959,0.005879075,-0.0023448917,-0.0148509815,0.010888923,0.026171148,0.013907634,0.004251801,0.02373192,0.012863214,-0.008725963,-0.02094231,-0.0047942256,0.0060306843,-0.0068426365,-0.009453687,-0.0086585805,0.010437463,-0.008166692,0.01716892,0.015659565,-0.013793085,0.05050951,0.02579381,0.014096303,-0.0075333016,0.023826256,-0.01112476,-0.0135842,0.00097282685,-0.0027896126,-0.0038003419,0.018826516,-0.013072098,0.008395791,-0.039324105,-0.034203075,-0.008732701,-0.01063961,-0.011380811,0.0093324,0.02187218,-0.00593298,-0.007189654,0.019203855,-0.015659565,-0.023866685,-0.02881252,-0.017411495,-0.019918103,0.01571347,-0.007829783,0.0027289689,-0.004743689,-0.033313636,0.007573731,0.013206862,-0.012095059,0.010592442,-0.00056516606,0.024836985,0.01351008,0.015160938,-0.026858443,-0.024365311,-0.02765355,-0.030483592,0.020470636,-0.009271756,0.026723681,-0.011657077,0.005916135,0.01914995,0.00402944,0.02056497,-0.01571347,-0.016171668,0.016009951,-0.015470895,-0.011441454,0.0068898043,0.0045617577,-0.011064116,-0.018934326,-0.0026262114,0.012431969,0.005161457,0.02041673,0.005734204,0.010174674,-0.035362046,-0.008840512,-0.009096563,-0.009521069,0.013321411,0.0033792045,0.016562482,0.032990202,-0.0003634414,0.022788575,-0.012330896,0.001814259,-0.018610895,-0.024756128,0.027761362,0.02079407,-0.02840823,0.0058992896,0.009662571,-0.026359817,0.015538277,-0.010835017,-0.02045716,0.017707976,-0.0033505673,-0.0077354475,-0.048838437,-0.0022623488,-0.0049930024,-0.009116777,-0.022829004,-0.020551493,-0.0368714,-0.013732441,-0.007162701,-0.025659045,-0.0041439896,-0.031453893,-0.007021199,0.020767117,-0.015915615,0.024756128,-0.026440676,-0.005879075,-0.011448192,-0.0051783025,0.010733944,-0.006098066,-0.023785828,-0.004908775,0.015780851,0.011710983,0.015214844,-0.026629345,0.0095480215,-0.0032141188,-0.0004746216,-0.0038003419,0.018974757,-0.024365311,-0.007957808,0.0020618876,-0.0035914578,0.016158191,-0.0015944253,0.019311666,-0.016441194,0.0034449021,0.001483245,-0.021845227,-0.0110371625,-0.011144974,-0.011374073,0.007418752,-0.010558751,-0.02444617,-0.01750583,-0.003631887,0.030699216,0.031642564,-0.008429482,-0.0037666508,0.0043090754,-0.0014773492,0.030860933,-0.013294458,0.017910121,0.025025655,-0.033610117,0.0065259417,0.016090808,0.013665059,0.01784274,-0.0042012646,-0.0015447311,-0.0043697194,0.008712485,0.022613382,0.0103027,-0.015807806,-0.0034027884,-0.02765355,-0.019540764,-0.0071020573,-0.046790022,-0.032747626,0.001212875,0.0025251384,-0.017128492,0.0005398978,-0.010383558,-0.02045716,0.009918623,0.0009820919,0.016656818,0.012580209,0.007580469,0.026184624,0.0078836875,-0.021629605,0.02750531,0.014392784,-0.021400506,0.0066303834,0.023772351,-0.035389,-0.0005858018,0.0068763276,-0.003101254,-0.021670034,-0.016279478,0.005063753,-0.01351008,-0.0031467369,-0.0052187317,0.01693982,-0.02463484,0.019325143,0.0035038611,-0.012546519,-0.036224537,-0.03228943,-0.023058102,0.020618876,-0.02803089,0.023260249,0.01142124,-0.014675788,0.003813818,-0.026844967,-0.0069470787,0.008786606,0.0077084946,0.014379308,-0.0060071005,0.012364588,0.011212356,-0.011650339,0.021575699,0.012546519,0.012789094,0.025591664,-0.009844502,0.019796817,0.008638365,-0.027074067,-0.010181412,0.029809773,0.0031585288,0.005916135,0.0030810395,-0.008550769,0.014190638,-0.021333124,-0.023597158,0.01302493,-0.011394287,-0.017047632,0.0037161144,-0.0065225726,0.027316641,-0.024244025,-0.027424453,-0.03986316,0.014015445,0.0077084946,0.0041069295,0.0014074404,0.003404473,0.0057678944,0.00201472,-0.0011042217,0.00032027482,-0.0016735991,-0.007209868,0.0122298235,0.022707716,-0.021333124,0.017586688,-0.0054882597,-0.017101537,-0.029648056,-0.023826256,0.020349348,-0.00846991,-0.005670191,-0.0023010934,0.0043360284,0.0117514115,0.0078095677,-0.038650285,0.004083346,-0.018651323,0.010289223,0.036440156,-0.02765355,0.009083087,-0.023839733,0.016292956,-0.0004076608,-0.0150261745,-0.011650339,-0.010430725,0.04819157,0.012593686,-0.028866427,-0.0015068288,0.009783858,-0.0074524432,0.025766857,-0.0062901047,-0.00065781624,0.047544703,0.023381535,0.009810812,0.035442904,0.010167936,-0.021144455,0.006967293,0.007903903,-0.028300418,-0.01309905,-0.048811484,0.021104027,0.014244543,-0.020821022,-0.026211577,0.003490385,-0.024769604,-0.020025915,-0.0013526926,0.031669516,0.0046122945,-0.0106800385,0.014567977,0.016468149,0.026009431,-0.0046864143,-0.0020164049,-0.005724096,0.0051378733,-0.020295443,0.0015026174,-0.0072974646,-0.040267453,0.0077758767,0.029243765,0.038650285,0.02571295,0.01489141,-0.0024914476,0.0008852303,-0.018826516,-0.017519306,0.020025915,0.019432953,0.017303685,-0.026157672,0.013739179,-0.031103507,0.017775357,0.015956044,0.0235163,0.025497328,0.0060104695,0.005360234,0.015241796,-0.006849375,0.010006219,0.022559475,0.012458922,-0.0044775303,-0.01190639,0.028839473,-0.0053905556,-0.042342816,0.006125019,-0.01634686,0.0030894622,-0.021319648,-0.0062833666,-0.025389519,-0.000285531,-0.002772767,0.014325402,-0.004568496,0.0053433883,0.0006822422,0.013745917,0.004713367,0.026723681,0.007027937,-0.023085056,-0.022370806,0.0034836465,0.026292436,-0.02224952,0.007014461,0.003101254,-0.008456434,-0.00031753743,0.0077691386,-0.020740163,-0.01586171,0.012357849,-0.017371066,0.025982479,0.011340382,0.2376157,-0.005730835,-0.018866945,0.015848234,0.0043730885,0.020106774,0.03210076,0.0021292695,0.0020248275,0.012236562,0.007587207,0.016144715,-0.024810033,-0.005707251,0.013793085,-0.0013409008,-0.029082049,-0.03859638,0.0073513705,-0.024257502,-0.002247188,-0.0037531746,0.0024644947,-0.03773389,0.0023752137,0.003008604,-0.019042138,-0.007823044,0.017101537,0.01105064,-0.0125263035,0.009750168,0.015039651,-0.009136992,0.009467163,-0.008685533,-0.0037969728,0.0050300625,-0.0064551905,-0.005501736,0.031076554,-0.009723215,-0.022545999,-0.02889338,0.0074996105,0.013766131,-0.012829523,0.0004939939,-0.015012698,0.01377287,-0.029216813,-0.009534545,0.047544703,0.041965477,0.0045887106,-0.005063753,0.013260767,0.013543772,-0.02851604,-0.017950552,-0.012997977,0.022734668,0.029189859,-0.02161613,-0.012202871,0.023556728,-0.018866945,-0.03511947,0.0073446324,-0.03269372,0.010626133,-0.028489087,-0.004875084,0.008496864,-0.03579329,-0.023300678,0.013732441,0.0271684,0.02176437,0.032990202,0.024863938,0.00851034,0.00024510184,0.008732701,-0.02900119,-0.0017367697,-0.0036925308,-0.0110978065,-0.007371585,0.0080049755,0.008254289,-0.007823044,0.001237301,-0.008234074,-0.0028873165,-0.017061109,-0.010733944,0.010895661,0.00092650176,-0.02929767,0.004568496,0.04449904,0.01605038,0.016252525,-0.016899392,0.007924117,0.0012389856,-0.0014554501,0.019325143,-0.027626598,0.0056162854,-0.003948582,0.0049357275,0.007681542,-0.011333643,0.008678795,0.020497588,0.010477893,0.01526875,-0.00698077,-0.00906961,-0.007964546,-0.00817343,0.008611413,0.011670553,-0.014365831,-0.019769864,-0.01406935,-0.0058655986,-0.048353285,0.009399782,0.00015929513,0.01309905,-0.028623851,-0.010295961,0.015511325,0.0072502973,-0.004009226,0.012984501,-0.018799564,0.0020500957,0.015012698,0.007438967,-0.013671797,-0.0029698594,-0.025955526,-0.004875084,-0.013442699,-0.0049727876,-0.0047874874,-0.023570206,0.012816046,-0.0022674026,-0.009130253,0.034876894,0.012748664,-0.018368319,-0.017492354,0.0071424865,-0.008530554,-0.05404032,-0.00522547,0.019096043,-0.00087091164,-0.00051168166,0.0044808993,-0.17174311,0.026359817,0.015214844,-0.023866685,0.02497175,-0.006778624,0.0062395683,0.02661587,-0.02724926,0.009884932,0.007061628,0.000045535457,-0.053878605,-0.03094179,-0.0019338619,-0.009359352,0.008779868,0.008712485,0.026076814,0.014702741,0.020335872,-0.004464054,0.0066573364,0.0057645254,0.013826775,-0.022707716,-0.0066505983,0.0068358984,-0.02489089,-0.0023752137,-0.02224952,-0.014621883,0.0015262011,-0.010269009,0.0064113922,0.0034128956,0.005926242,-0.0023263618,0.0015405198,-0.014487118,0.023489347,0.029459387,0.010518322,0.0039384747,-0.0071357484,0.038569428,0.03511947,-0.021710463,-0.007627636,0.0008911262,-0.0045381743,-0.023704968,0.050455604,0.012910381,0.021858703,0.04115689,0.0018395272,0.02604986,0.00746592,-0.006091328,-0.025146943,-0.03557767,0.015619135,-0.03045664,0.0067651477,-0.023637587,-0.0045583886,0.019406,-0.011441454,0.038838953,0.0073917997,-0.011043902,-0.008227335,-0.0014268127,0.02071321,0.010053387,-0.042747106,-0.0147296935,-0.009527807,-0.011529051,0.0066842893,0.05064427,-0.0005744311,0.024392264,-0.0042046336,0.00068687473,0.012735188,-0.0036184106,-0.018503083,-0.016063856,-0.001814259,-0.023502823,-0.0073109413,-0.023839733,0.00012560416,0.024850462,0.015255272,0.0052827448,-0.01556523,-0.017586688,0.015780851,-0.011448192,-0.024203595,0.02400145,0.017977504,-0.004079977,-0.012142227,0.0024021664,0.021144455,0.006802208,-0.0010738998,-0.0034701703,0.017317161,0.038838953,-0.009426734,0.022680763,-0.01306536,-0.016724199,0.024904368,-0.0121085355,0.044768564,-0.0023718446,-0.0023432071,-0.0003598617,0.02071321,-0.0060138386,-0.08889026,-0.008725963,0.016589435,-0.02586119,-0.009514331,0.025834238,0.0015489425,0.014837504,-0.009696262,0.026386771,-0.012216347,-0.021373553,-0.018017933,0.009244803,0.015699994,-0.0049997405,-0.017398018,-0.0058689676,-0.031453893,0.02109055,-0.021589177,-0.037706938,-0.0077758767,-0.0023280464,-0.012371326,-0.0055927015,-0.025322136,0.0106733,0.0041237753,0.021238789,0.0023566836,-0.01817965,-0.011252785,0.0049357275,-0.018907374,-0.015821282,-0.016036903,0.010012957,0.019338619,-0.02889338,0.016036903,0.022613382,0.014621883,-0.016778104,0.0026919087,0.009736692,-0.021400506,0.03549681,0.032828484,0.0014040713,-0.006778624,-0.010518322,-0.008624889,0.0010494739,0.023273725,-0.013692012,0.0009905146,0.037410457,-0.0005992782,0.014325402,0.011104545,-0.013456175,-0.024311407,-0.011205617,0.008213859,0.0069403406,-0.01369875,-0.00091049855,0.02086145,-0.02003939,-0.0065933233,0.01906909,-0.024419218,0.030483592,-0.021036644,0.0083620995,-0.020807546,-0.02489089,0.0051041823,0.0027239153,-0.005127766,-0.012054631,-0.010060125,-0.011299953,0.021400506,0.01071373,0.005707251,-0.0009812496,-0.003564505,-0.0064214994,0.0014352355,0.0033084536,0.018610895,-0.017317161,-0.02105012,0.00073699007,0.0048279166,0.011003472,0.021939563,0.012492613,0.0019658683,-0.0011337013,-0.06899911,0.031373035,-0.010127506,0.00021214785,0.018017933,-0.0006746618,0.024661792,-0.024163166,0.0072772503,-0.0049727876,0.010370081,0.022559475,-0.012175918,0.007984761,0.0041608354,-0.020174155,0.009696262,0.005019955,0.034930803,0.0064652977,-0.009035919,0.0077219713,0.008220597,0.0010738998,0.023071578,0.033906594,-0.0027087543,0.012714974,-0.023880161,-0.023206342,0.030699216,-0.02803089,-0.0029041618,0.02929767,0.0022219196,-0.02258643,0.015929092,0.020174155,-0.014662311,-0.026925826,-0.007620898,-0.017492354,0.0060677445,0.014797076,0.009460425,0.009534545,-0.018408747,0.001237301,0.03619758,-0.007095319,0.013307935,0.0051479805,-0.02758617,-0.012479137,-0.023637587,-0.02661587,0.024756128,0.014675788,0.0015632611,-0.04280101,0.024284454,0.007223345,0.008860726,-0.017721452,0.029621104,0.00074625504,-0.005606178,-0.019136474,0.020807546,-0.023934068,-0.023044625,-0.00023667909,-0.0011951873,0.0026161042,-0.013348363,0.0047773803,0.02161613,0.0035442903,-0.03250505,0.028677756,0.0023735291,-0.03986316,-0.0023347845,-0.003101254,0.008341885,0.019176902,-0.014487118,0.0016415927,-0.022721192,0.02900119,-0.009049395,0.03811123,-0.019365571,0.022074325,-0.02463484,-0.0056230235,-0.020052867,-0.004922251,-0.0077287094,0.034661274,0.019055614,0.011475146,-0.008112786,0.009918623,-0.0075265635,0.021602653,-0.007674804,-0.012903643,-0.003011973,0.016926344,0.02012025,-0.011852484,0.0050132168,0.011367334,-0.000571062,-0.015767375,-0.0027559216,-0.016912868,-0.015066603,0.025928574,0.009035919,-0.0021056859,0.032639816,-0.014487118,-0.013813299,0.018651323,-0.0006675024,-0.017384542,0.0012718342,0.009709738,-0.023866685,-0.044984188,-0.034256984,-0.012250038,-0.0025891513,-0.015214844,0.00043924607,0.014217591,-0.013011454,0.07266469,-0.005110921,-0.038919814,0.01146167,-0.021144455,0.022775099,-0.010012957,-0.009318924,-0.042235006,-0.01742497,0.00936609,-0.017101537,0.0010376819,-0.04083346,-0.013570724,0.02052454,0.018637847,0.0373296,-0.0007125641,-0.021454412,0.008247551,0.0006401285,0.0009559814,0.006020577,-0.01287669,-0.01668377,0.022599906,0.018449178,-0.02299072,-0.02489089,0.018678276,0.0029243764,-0.030618357,-0.0058453837,0.006579847,-0.024109261,-0.0103027,-0.009002228,0.009130253,0.04377131,-0.0026262114,0.00746592,-0.02900119,-0.019042138,0.02396102,0.004534805,-0.023031149,0.006805577,-0.009413258]},{\"id\":\"4e1c5179-b2ff-45c2-96ad-091b5ce764fb\",\"text\":\"I want to post and get paid how does this work\",\"vector\":[-0.012837825,-0.003189936,-0.011985441,-0.025610583,-0.03219542,0.0041382955,-0.037088495,-0.00771701,-0.010371765,-0.026313312,0.010397793,0.015980586,-0.017763438,-0.028577663,0.011354285,-0.02088668,0.023996908,-0.0045189406,-0.019051775,0.008745077,-0.025649624,0.013638156,-0.0062302165,0.013703223,-0.0004648262,-0.008341658,0.02523319,0.016227843,0.018973693,-0.0051338286,-0.0032826574,-0.003539674,-0.007183456,-0.027692745,-0.016540168,-0.0008385579,0.013703223,0.012401872,-0.006568568,-0.0016836225,0.015629223,0.013091588,-0.006266004,-0.028109176,-0.008992334,-0.0033347113,0.00012739004,-0.025545515,0.0007283497,-0.00049247994,-0.006526274,-0.017984668,-0.057155326,-0.014588142,0.007964266,0.01070361,0.01769837,0.016839478,-0.010625529,-0.0027572368,0.011959413,-0.0011045214,-0.022578435,0.0066564092,-0.011790237,-0.024881827,0.009753624,-0.00046523288,-0.012824812,0.00044530595,0.021172976,-0.0054331394,0.017333992,-0.00473041,0.0147573175,-0.0055144737,0.0037316233,-0.0021862693,0.004030934,0.016982628,0.026313312,-0.014510061,-0.0020821611,0.012057015,0.02808315,-0.0004371725,0.019871626,0.02126407,-0.016709343,-0.021524342,0.016384006,0.0045872615,0.01721687,0.008634462,0.0034030322,0.013442953,0.0016950093,0.024946894,0.007814611,-0.009649516,0.007372152,0.016227843,-0.04330895,-0.012831318,-0.02092572,0.01677441,-0.015290871,-0.023944853,0.035891254,-0.0037999442,0.010606009,0.021810638,0.005950426,-0.027042069,0.0014989934,-0.012174136,-0.026326325,-0.0037836772,-0.005836558,-0.018049736,0.02797904,-0.0045287004,0.01665729,0.024140056,0.013085081,0.0021049348,-0.011608048,-0.021797625,0.015277858,-0.0018170109,-0.014158696,0.023515407,-0.0022171764,0.0021260818,-0.0032127097,0.017008655,-0.007242017,0.0049418793,-0.034147445,0.005618582,0.019871626,0.028135203,-0.010339231,-0.00054168724,-0.016644277,0.008250563,0.013293298,-0.008953293,0.007502287,-0.013807331,0.004818251,-0.012902892,0.006536034,0.0011988693,-0.00073973654,0.031102283,0.011425859,0.019598342,0.0059113856,-0.037010416,0.001942266,0.017112762,-0.0068711317,-0.012993987,0.0029199058,0.044584278,0.03138858,-0.012941933,-0.0284215,0.011432366,-0.016748384,-0.010690596,-0.022981854,0.011855305,0.0021358419,0.03183104,0.0021358419,-0.0012143229,0.0021472287,-0.016943587,0.004798731,0.016787425,-0.009818692,0.045260977,0.003972373,-0.017828505,0.014223764,-0.029358473,-0.0042912043,-0.005208656,-0.014223764,0.016761398,0.0072290036,0.016449073,-0.6413056,-0.00673449,0.03786931,0.011399833,-0.0025425141,-0.00088166515,-0.02278665,-0.0037023427,-0.015069641,0.013664183,-0.016943587,0.0007202163,-0.001174469,0.003185056,0.013807331,-0.01677441,0.029462582,-0.029462582,-0.022227071,0.004203363,-0.02237022,-0.0066954494,-0.01144538,0.034251552,-0.0036307685,-0.00073119643,0.008888226,-0.004099255,-0.00066084217,0.03781725,-0.012102562,0.022318166,0.017542208,0.016266884,0.04820203,0.008562888,-0.004265177,0.0023375512,-0.020457234,0.032924175,-0.033002254,-0.024127042,-0.008966306,-0.0117577035,0.010176563,-0.024920866,0.021029828,-0.016084695,0.034069363,0.024868812,-0.009356712,0.045130845,0.0044766464,-0.006129362,0.008178989,-0.007723517,0.01769837,0.010033414,-0.0033770052,0.017190844,-0.009812185,-0.0035852212,-0.03906655,-0.03128447,-0.021771599,-0.0041740825,-0.006217203,0.021381192,-0.0062920307,-0.0051923892,0.010449846,-0.0028418247,-0.009831705,0.023658557,-0.009799171,0.025727704,0.0020057068,-0.007424206,-0.0064872336,0.0064709666,-0.002630355,0.0010532808,-0.012434406,-0.006415659,0.026391393,0.020288058,-0.016201816,-0.010573475,0.017841518,0.01896068,0.010475873,0.051663626,0.013612129,-0.0035591943,-0.008712543,0.0020040802,-0.003780424,0.019390127,0.007391672,0.008068374,-0.011159083,-0.007573861,-0.017360019,-0.0030793212,0.051637597,-0.0063668587,-0.01992368,-0.0037511436,0.018362058,-0.034563877,-0.0012924039,-0.005670636,-0.018388085,0.007131402,-0.01200496,-0.03932682,0.02092572,-0.0075673545,0.005293244,-0.010606009,0.009831705,0.020691477,0.021771599,-0.0033184444,-0.01573333,0.0048572915,0.016449073,-0.015629223,0.0056641293,0.013807331,0.006405899,-0.012375846,0.008582409,0.00061366824,-0.0027995307,-0.014510061,0.00090362545,0.007905706,0.021979814,-0.029410526,-0.01170565,-0.0066596624,-0.007105375,0.0152258035,-0.017555222,-0.017373033,-0.012850839,0.00005332488,-0.008432752,0.017386045,-0.014314858,-0.040419955,-0.023216097,-0.001472153,-0.029488608,-0.014132669,0.0078015975,-0.009187536,-0.03539674,-0.007326605,-0.012870359,0.0021439753,-0.014327872,-0.000396912,-0.031232418,0.0045905146,-0.005309511,0.0010874412,0.004515687,-0.014327872,0.005804024,0.0117577035,-0.017984668,0.00015687376,0.007508794,-0.00648398,0.015043614,-0.009948826,-0.009695063,-0.0013420179,0.0014835398,-0.008419739,0.0097731445,-0.0043237377,0.014444993,-0.0020707743,-0.01952026,0.046276033,-0.026326325,0.014484034,-0.0107491575,0.012629609,-0.006760517,0.02104284,0.0044245925,0.0030288938,0.028005067,0.0016063548,0.0088687055,0.017451113,-0.0061326153,-0.0004928866,0.023203084,-0.018192884,-0.0014038321,-0.03219542,0.003643782,-0.031076256,0.024048962,0.026833853,0.010690596,-0.02106887,0.012837825,0.0009727597,-0.00086377154,0.011237164,-0.025818799,0.003952853,-0.016318938,0.031857066,-0.018986708,-0.010677583,0.008693023,-0.01996272,0.0057649836,0.02808315,-0.0004257857,0.002521367,-0.011601542,-0.03268993,-0.023177058,0.01322823,0.0032143362,0.020301072,0.028551634,-0.015577168,0.011354285,0.0091940425,0.034251552,-0.0034192991,-0.0018235177,0.024738677,0.03216939,-0.019338071,0.01832302,0.03297623,0.0058821053,-0.006249737,-0.012434406,0.010098482,-0.009857732,0.0067865443,-0.011933386,0.009102948,0.014197737,-0.01829699,-0.02278665,-0.017633302,0.0018723183,0.012980973,0.031674877,0.0041220286,0.0015144469,-0.019286018,0.024101015,0.012909399,-0.005914639,-0.020405179,-0.012434406,-0.0284215,-0.012024481,-0.029879013,0.0010313204,-0.017373033,0.02289076,0.0022464567,0.0006315618,-0.010937853,0.019012734,0.031414606,-0.022214057,0.003225723,0.012057015,0.020457234,-0.018388085,-0.007189963,0.0044733933,-0.010671076,0.017659329,-0.005836558,0.0056348485,0.0015738211,0.010118002,-0.018609315,-0.0006169216,-0.0072224964,0.050986923,0.0054461528,0.007795091,-0.00773653,0.029748878,0.021381192,-0.012200163,-0.037140552,0.010339231,0.00875809,0.015342926,-0.036958363,0.0074957805,-0.013338845,0.021823652,0.0077039963,-0.0029963602,0.005107802,0.016605236,-0.0062562437,-0.014471021,0.0061065885,0.02633934,-0.00051647355,-0.021602422,0.0150826555,-0.027536582,0.011536474,0.099006765,0.0095909545,0.008257071,0.022942813,-0.040055577,-0.0022952573,-0.0060220007,-0.021628449,0.015941547,0.003952853,0.028109176,-0.0052834842,-0.017529195,0.01292892,0.02036614,-0.003116735,0.007788584,-0.03242966,0.017802479,-0.033626903,0.010495394,-0.009551914,0.011822771,0.024842786,0.032663904,0.028968068,0.019103829,0.0054917,-0.007586875,-0.0072355103,-0.008107415,-0.008126935,-0.004766197,0.012499474,0.023307191,0.025311273,0.0026238484,0.02300788,0.025441406,0.021316126,0.005885359,0.025701677,0.0038975454,-0.022630488,0.008686516,-0.008595422,-0.00025112001,0.01521279,0.020639423,0.0031411354,0.027692745,-0.0052997507,-0.028187256,-0.011861812,-0.0035526876,0.00871905,-0.015316898,-0.009102948,-0.007189963,-0.004697876,-0.021732558,-0.02463457,0.021979814,-0.0026775291,-0.024179097,-0.024322245,-0.004779211,0.0089598,-0.0036633024,-0.001973173,-0.01491348,-0.015355939,-0.022135977,-0.020821612,0.020431207,-0.011107028,0.027484527,-0.0051858826,0.023684584,0.011172096,-0.023307191,-0.04679657,-0.0018934653,-0.016722357,0.001046774,0.011035454,0.002506727,0.010645049,-0.008250563,0.024218136,-0.006568568,0.013638156,0.02849958,-0.034329634,0.016930573,0.007899199,0.005885359,0.015603195,0.0016868759,0.014770331,-0.0085433675,-0.00070964283,0.00003642257,-0.025441406,-0.006311551,0.03190912,0.03331458,0.032143362,-0.021511327,-0.011315244,0.026469475,0.007899199,0.030842012,0.006054534,0.017360019,0.051767733,-0.01316967,0.017776452,0.0040179202,0.007769064,-0.011302231,-0.04062817,0.028473554,0.012414886,-0.021914747,0.005586048,-0.0069557196,-0.015238817,0.001795864,0.0006295284,0.014002534,0.021992827,-0.0133128185,-0.020756545,-0.016904546,-0.008517341,0.0052021495,-0.015668264,0.0013623516,-0.015811412,0.0008239177,-0.033236496,-0.02463457,-0.004115522,0.02192776,-0.038650118,0.0015307138,0.0016982628,-0.02359349,0.03922271,0.022175016,0.009083428,-0.027146177,-0.021329138,0.01469225,-0.03599536,-0.014705263,-0.008432752,0.01342994,-0.0049614,-0.0074111926,0.020340113,0.021940773,0.034641955,0.008530354,-0.015759358,0.02066545,-0.015069641,0.0008662116,0.024244165,0.0037869306,0.021628449,0.01144538,0.01292892,0.0034192991,0.010215604,-0.010527927,0.01799768,-0.039821334,-0.025129084,0.017008655,0.01587648,-0.0062627504,-0.0048052375,-0.029020121,-0.0137813045,0.016566195,-0.005852825,0.034824144,0.008588915,0.006552301,-0.0020902946,0.024127042,-0.0013721117,0.024881827,-0.0022578435,-0.002646622,-0.02808315,0.003985387,0.020912707,0.030113256,0.021342153,-0.009864239,0.026352353,-0.032143362,0.01124367,-0.018349046,-0.011133055,-0.029254364,0.0078211175,-0.022851719,-0.023645543,-0.02259145,-0.010801211,-0.0068255845,0.0076194084,-0.007131402,0.016019627,-0.00024929,-0.036385767,-0.016384006,-0.017581249,-0.009324178,0.0067214766,0.003982133,0.028577663,0.029046148,-0.0075348206,0.0107101165,-0.016735371,0.0017633303,0.0065718214,0.042580195,-0.01747714,-0.024777718,0.018713424,0.00013440513,-0.010091975,-0.00623347,0.023437327,0.0200408,-0.0229298,-0.012818305,0.0074957805,-0.0029312926,0.017672343,-0.010404299,0.004431099,-0.011133055,-0.000570561,-0.008100908,0.01573333,0.00084343797,0.019637384,0.012486461,0.003555941,-0.010326218,-0.02411403,-0.021329138,0.027614662,-0.0043400046,0.010950866,-0.025805784,0.015421006,0.021094896,-0.02014491,-0.017073723,-0.025909893,-0.022773638,0.01873945,-0.01687852,0.0024009922,-0.015004574,0.0036828227,-0.015863465,-0.0018658116,-0.00845878,-0.026014002,0.010293684,-0.011087508,0.0164751,-0.009629996,-0.038676143,0.006145629,-0.004811744,0.00048963324,0.006610862,0.019884638,0.015147722,-0.008816651,0.006318058,-0.006929693,0.003461593,0.019507248,0.006597848,0.027484527,0.013508021,0.026196191,-0.007866665,0.0032566302,0.0053192712,-0.006122855,-0.024530461,0.007573861,-0.010924839,-0.039769277,0.018986708,-0.005540501,-0.003686076,-0.025987973,0.0020057068,-0.005569781,-0.008823158,-0.006187923,0.010254644,0.042059656,0.009070415,0.018010695,0.0006571821,-0.0134559665,0.00942178,-0.0103847785,0.021979814,-0.0045059267,-0.005576288,-0.034251552,0.029696824,-0.0100204,0.001616115,-0.024439367,0.021159964,0.021563381,-0.011562501,-0.017360019,-0.006767024,-0.013677197,-0.01521279,0.03870217,-0.021107908,-0.018270964,-0.013911439,0.019689437,0.015824424,0.021290097,-0.016891534,-0.00022082296,-0.033106364,0.0029670796,0.0019813066,-0.014705263,-0.011172096,0.043621276,0.0047694505,-0.043100737,-0.0048540384,-0.0072680437,-0.055853974,-0.024283204,-0.012336805,0.008693023,0.0040699746,0.006415659,0.0012728837,0.021172976,0.013599115,-0.0014054588,-0.016449073,-0.01870041,-0.01595456,-0.016813451,-0.007502287,-0.0016885026,-0.044792492,0.0018137576,0.030451607,0.019910667,0.015134709,0.008087895,-0.004681609,0.01491348,0.008666996,-0.016644277,0.008224537,-0.0074176993,0.027042069,-0.034902226,0.005774744,0.013091588,-0.016540168,-0.010794705,0.00065514876,0.015681276,-0.012753237,0.0214853,-0.005455913,-0.0037413833,-0.014731291,0.011152576,0.030373527,-0.0009996,0.0010370138,0.017789464,0.023398286,-0.036411792,-0.010937853,0.017685357,-0.016852492,-0.016162775,0.018062748,-0.017581249,-0.009246097,0.010716624,-0.0036210085,-0.006812571,-0.0059276526,-0.014588142,-0.00034363792,0.025779758,0.0050394805,0.014549102,-0.032221444,-0.0067279832,-0.022851719,-0.010612516,-0.017151803,-0.025090043,-0.009369725,-0.014731291,0.008693023,0.0099162925,0.0099228,-0.02816123,0.03235158,0.010287178,0.008022827,0.006399392,0.23111989,-0.014340885,0.0011931759,0.02441334,0.023151029,0.034225523,0.012030988,0.011985441,0.002308271,-0.01200496,0.0112892175,0.0139244525,-0.023281164,0.0025425141,0.0065555545,-0.030842012,-0.01617579,-0.01565525,-0.0066271285,-0.012076535,0.022916786,0.005888612,-0.008706036,-0.007983787,0.028265338,-0.00024501994,0.0042424034,-0.0032826574,0.013534048,0.007983787,-0.018023707,-0.0017194097,0.0043074708,-0.018778492,-0.017932612,-0.007905706,0.014900466,-0.015837438,0.023801705,0.036906306,0.033861145,-0.00522167,-0.0025864346,-0.024387313,0.0031720425,0.01591552,-0.0063733654,-0.003215963,-0.010300191,0.014614169,-0.033626903,-0.016566195,0.01200496,0.014197737,-0.017542208,-0.0082180295,0.010065948,0.003946346,-0.018778492,0.027718771,0.0040732278,0.030711878,0.0021179484,0.020157922,-0.0019829331,-0.001665729,0.0055014603,0.00035238138,0.040419955,-0.0040894947,0.00019245758,-0.005553514,-0.013846372,-0.0018381579,-0.005172869,-0.0077495435,0.031336527,0.03599536,0.031961173,0.014275817,0.00046726625,-0.013898426,0.004369285,-0.027510555,0.0031183618,-0.02667769,0.011516954,-0.004213123,-0.016462088,-0.014822385,-0.00016988727,-0.002793024,-0.044948656,-0.033470742,-0.029410526,-0.022292139,0.017789464,0.03505839,-0.006767024,-0.005143589,-0.00747626,0.059341595,0.015316898,0.0030044934,-0.0057812505,-0.002636862,-0.0144319795,0.016305925,0.014679236,-0.0063928855,0.0053680716,-0.034069363,0.019585328,0.0012492967,-0.013521034,0.0124279,-0.000052003197,-0.03461593,0.012616595,-0.0010402673,-0.01814083,-0.028265338,-0.012440913,-0.015707303,0.022122962,-0.009636502,-0.0047239033,-0.005351805,-0.0020236005,-0.028005067,0.013937467,0.016410032,-0.015525115,-0.012525501,-0.033054307,0.006549048,-0.0024823265,-0.00996184,-0.0060317605,0.0072550303,-0.022201044,0.0036014882,-0.001041894,-0.020535314,0.016357979,-0.030061202,0.0134559665,-0.013241244,0.0006311551,0.008933773,-0.010924839,-0.02515511,0.020496273,-0.01587648,0.032039255,-0.0050817747,-0.012870359,-0.027354393,0.0045189406,-0.010508407,-0.008231044,-0.0012891506,0.040393926,-0.026170162,-0.031700905,-0.017008655,-0.16386609,0.010300191,0.019689437,0.023957867,0.007743037,0.02575373,0.0134950075,0.0021797626,-0.020600382,-0.0030549208,0.020977775,-0.013364872,-0.0015551142,-0.014640196,-0.011308738,-0.0050459877,-0.02226611,0.022955827,-0.0032208432,0.017268924,0.036984388,-0.00090931886,-0.0005148469,-0.040341873,0.0052672173,0.00029565062,-0.008510834,0.014861425,-0.023983894,-0.033783067,-0.015030601,-0.0028044109,0.009343699,0.005774744,0.014614169,0.006412406,-0.008165976,-0.022214057,0.00775605,-0.00044977936,0.02266953,0.012063521,-0.012935426,0.007690983,-0.0035852212,-0.0038031975,0.011673116,0.008406726,-0.002892252,-0.006649902,0.008894732,-0.010931347,0.011341272,0.00085970486,0.020730518,0.009532394,-0.007105375,0.007580368,-0.010788198,0.0019178657,-0.009089935,-0.032637876,-0.0022269364,-0.013833358,-0.019299032,-0.018101789,-0.012785771,0.00773653,-0.031414606,0.010228617,-0.017151803,-0.013612129,0.016787425,0.003310311,0.011120042,0.00547218,-0.032559797,-0.00397888,-0.0059797065,0.03209131,0.010280671,0.032637876,-0.009662529,0.035292633,0.003289164,-0.0051761228,0.020014774,0.025987973,-0.021823652,-0.02860369,0.002207416,-0.0067409966,-0.015160736,-0.008966306,0.018114801,0.002067521,0.021524342,0.026118109,0.015590182,-0.0159936,0.021355165,0.01244742,-0.0374789,0.013351859,0.029957093,0.0058398116,0.008562888,0.027042069,0.022318166,-0.0042424034,-0.033470742,0.024582516,0.010573475,0.04336101,0.034485795,0.012492967,-0.00068158243,-0.010905319,0.0076649557,-0.0069101723,0.040029548,-0.02248734,-0.022864733,0.0027181963,-0.0041220286,-0.0035624476,-0.09827801,-0.012974467,-0.003956106,-0.0038292245,-0.0052834842,0.0139634935,0.013716237,0.02237022,0.006181416,0.02140722,-0.030685851,-0.026274271,0.008224537,-0.013703223,-0.003409539,-0.014353898,-0.007638929,-0.019064788,0.009089935,0.026508514,0.00094429264,-0.02400992,-0.012024481,-0.022396246,-0.023775678,-0.004629555,-0.023554448,0.007866665,0.008946787,-0.0028532115,-0.0047727036,-0.026990015,-0.007964266,-0.0027425967,0.007521807,-0.013534048,-0.03802547,-0.006604355,0.024309231,-0.034251552,0.011321751,-0.012492967,0.000108479784,-0.013013507,-0.0084002195,0.007853651,-0.02106887,-0.006129362,0.020600382,-0.016019627,-0.012948439,-0.0026807825,-0.028707797,-0.011165589,0.024946894,0.0030874547,-0.02808315,0.051143084,-0.033783067,0.010111495,0.009877252,0.010651556,-0.0067475038,0.009343699,0.010729637,0.0060805613,0.0002978873,-0.0129159065,0.025831813,0.01465321,-0.011347778,0.0076324223,-0.017190844,0.010846758,-0.0016478354,-0.013377885,-0.014080615,-0.000148842,0.010976894,0.0055014603,-0.02226611,-0.02074353,-0.02519415,-0.034329634,0.02585784,-0.024777718,0.0070142807,0.01246694,-0.005143589,-0.02319007,0.0056446088,0.018375073,0.014874439,0.027926987,-0.0069882534,-0.018244937,-0.023203084,0.013364872,-0.011796745,-0.00060268806,-0.023138016,-0.007007774,-0.04367333,0.0058593317,-0.0039495993,-0.016370993,0.010235123,-0.0029556928,0.00773653,-0.020353125,-0.016553182,-0.008029334,-0.0011647089,0.02259145,-0.00499068,-0.021433247,-0.002710063,0.013338845,0.006370112,0.0074827666,0.006051281,-0.02166749,-0.010007387,-0.012740224,0.012681663,-0.017229883,0.011738184,0.041461036,0.004213123,0.020249018,-0.016891534,-0.0050297207,-0.005605568,-0.021654475,-0.010950866,0.030295445,-0.00025234005,-0.002256217,-0.00198944,0.037713144,-0.015616209,0.006070801,-0.020509288,-0.01844014,0.007918719,-0.0122652305,-0.004626302,-0.022122962,-0.005078521,-0.006682436,0.016605236,0.009714583,0.028473554,0.020314084,-0.014106642,-0.022695556,-0.008244057,-0.01424979,0.0010573475,-0.012675156,-0.0014119656,-0.040940493,0.03659398,0.016826466,-0.00068808923,-0.020717504,-0.0060773077,0.009851225,-0.012148109,-0.008367686,0.0068581183,-0.04028982,-0.0041578156,0.008341658,0.01844014,-0.002752357,0.028343419,0.015017588,0.0034160458,-0.015004574,-0.02300788,0.023580475,0.008387205,0.005016707,-0.018153843,0.008393712,0.029540662,0.041382954,-0.01395048,0.029748878,-0.0144319795,0.0035169004,-0.024790732,-0.012876865,-0.005146842,-0.006249737,0.026781797,0.0042912043,0.009571435,-0.014900466,-0.008022827,0.0134559665,0.03880628,0.0010109869,0.002568541,0.009141989,-0.01591552,0.01587648,-0.01896068,-0.04159117,0.0070142807,0.011822771,0.0017194097,-0.009532394,0.00063603517,0.00032493102,-0.0064449394,0.014705263,0.027042069,-0.027718771,-0.03628166,0.031258445,-0.00421963,-0.023268152,-0.015290871,-0.027406447,0.019767517,0.008523847,-0.009018361,-0.012623102,0.013573089,0.009037881,-0.028369445,0.00066084217,-0.011328259,-0.023541436,0.022005841,-0.013534048,-0.030711878,0.013052548,0.01421075,0.079798825,0.023801705,-0.0029508127,-0.000045293105,-0.002171629,0.0040732278,0.026508514,-0.012252217,0.01547306,0.0022301897,0.0035591943,0.011061481,-0.0068581183,-0.026586596,0.014991561,0.0046685957,0.002667769,0.000824731,-0.015564155,-0.0084002195,0.034329634,0.017034682,-0.00032757438,-0.01068409,-0.024764705,-0.016943587,-0.0044603795,-0.01369021,-0.012323791,-0.04255417,0.0080358405,0.008406726,0.015902506,-0.01346898,-0.00040809545,0.0049256124,0.0038812787,0.0019666662,-0.003764157,0.020613397,0.009909786,0.029280392,-0.01144538,-0.018036721,-0.023957867,0.0003265577,-0.0090118535,0.0036242618,-0.02972285]},{\"id\":\"9a862e6b-d1be-4565-8205-c70cb739acf3\",\"text\":\"Create an app to use 😊\",\"vector\":[0.005144945,0.013932388,0.0040460904,-0.027172906,0.013070941,0.014610694,-0.0061725774,-0.0063625025,0.0068271416,-0.0057486366,0.0070340247,-0.023889909,-0.002318108,-0.010805402,-0.0039952174,0.017635934,0.017242517,-0.0053043463,-0.012100965,0.0069119297,-0.012555429,0.0027437445,0.0057622027,-0.001802596,-0.022709658,0.011938171,0.010371286,-0.020376287,-0.004914321,-0.019548755,0.043194473,-0.0014702264,-0.0013252387,-0.01831424,-0.007909038,0.007291781,-0.0065999096,-0.0076377164,0.022153446,0.0032846928,0.018259976,0.020566214,-0.0028556648,0.007169686,-0.01911464,0.019318132,-0.016564213,-0.009143554,0.0060606566,-0.0017415485,-0.003920604,0.013369395,-0.027200038,-0.009659066,0.000050766903,0.0216515,-0.020905366,0.008553429,-0.00591143,-0.0066066924,-0.01740531,0.0073867436,-0.006308238,0.004687089,-0.00022172101,0.008865449,-0.0070815063,0.016170796,0.02002357,-0.011022459,0.020552646,-0.00915712,0.016862666,-0.02224841,-0.003985043,0.0050465907,-0.0061352705,-0.0032066877,0.013037026,-0.011253083,0.0011064854,-0.024853101,-0.0024724223,0.03196174,0.0038290326,-0.0032948675,-0.001337957,0.023903474,-0.03562459,-0.009299564,0.016645608,0.006006392,-0.015085507,-0.0009216472,-0.006057265,0.022587562,0.0035034462,0.026684526,0.016550647,-0.03565172,0.008037916,0.015126206,-0.032070268,-0.010432334,-0.0116939815,-0.02102746,0.026277542,-0.006094572,0.021407312,-0.0013252387,0.0034017004,0.025585672,0.0018229452,-0.04864805,-0.014787053,0.0008063353,0.009211385,-0.021081725,-0.016116532,0.0020908758,0.015953738,0.036954068,0.032911368,-0.01807005,0.00080718315,0.009889689,-0.02740353,-0.017500274,-0.025612803,-0.039504495,0.048024006,0.002998109,0.0006058113,0.021244518,-0.014637826,0.019874342,-0.020729007,0.028543083,-0.004683697,0.0062132753,0.018219277,0.039748684,-0.0022604521,0.0014464858,-0.0035441446,0.02231624,-0.000980151,-0.03464783,0.0052399077,-0.023998437,0.0065354705,-0.023496492,-0.0010759616,-0.018965414,0.001867035,0.033236954,0.01691693,0.031391963,-0.019887907,0.0097065475,0.012256974,0.024527516,0.007088289,-0.01671344,0.009102856,0.0216515,0.012684307,0.0056367163,0.00034657156,0.0065693855,-0.009007893,0.0102288425,-0.033888128,-0.0041681854,-0.02315734,-0.0062437993,0.005250082,0.012582561,-0.00034381595,-0.00820071,-0.020878233,0.0056468905,0.0014871841,0.03551606,-0.009482707,-0.0061691855,0.0067525283,0.0036289326,-0.0013413485,-0.0023808512,0.0011081811,0.017595237,0.020918932,-0.029655503,-0.6472659,-0.0142715415,0.018205712,-0.025734898,0.011531188,0.02218058,-0.0005858861,-0.03798509,-0.022099182,0.01309129,-0.018029353,0.0016143663,0.014963413,-0.018694092,-0.0040121754,-0.028543083,0.015858775,-0.03771377,-0.0137153305,0.011612585,-0.008723005,-0.0077801603,-0.020864667,-0.009577669,-0.00473457,-0.012338371,0.018612694,0.004636216,-0.008085398,0.027566323,-0.012175578,0.028977197,0.021325914,-0.015546755,0.049624808,-0.011938171,-0.025897691,0.031636152,0.0016186057,0.015085507,-0.032233063,-0.0031032462,-0.007583452,0.009455575,-0.009353829,-0.0075020553,0.021190254,-0.015885908,0.013484707,0.0017016982,0.015112639,-0.0014982065,0.012745354,0.026589563,-0.009102856,-0.0067864433,0.022411203,0.0029591064,0.011097073,0.032477252,-0.006131879,0.01220271,-0.023333699,-0.021719333,-0.0058402075,0.013762812,0.0007970086,-0.01942666,-0.016971195,-0.032748573,0.008058266,-0.01373568,-0.010900364,-0.004368285,-0.003318608,0.028868668,0.02384921,-0.016591344,0.005924996,0.010371286,0.016794836,0.0031235954,0.0015974087,-0.014095182,0.018748356,-0.0014388548,-0.028217496,-0.01640142,0.0062912805,0.0054060924,0.023062376,0.0065829516,-0.0025334698,-0.01946736,0.010703656,0.024771705,-0.014352937,0.004768485,0.021542972,-0.0040833973,0.0032524734,0.019168904,0.007970086,0.018761922,0.015546755,0.0045107296,-0.0048464905,0.028434554,0.053884562,-0.01733748,-0.013654283,-0.024703875,-0.0050669396,0.015709547,0.02287245,-0.032260194,0.004063048,-0.0132608665,0.02938418,-0.008390635,-0.00015728202,-0.0345393,0.007827641,0.0028200538,-0.01262326,0.021488708,-0.0027742682,-0.0070068925,-0.012399418,-0.009855774,0.015194036,0.01229089,0.011395527,-0.0008135423,0.019508056,0.016564213,0.016971195,0.0041037463,-0.015953738,-0.0033966133,-0.00044301807,-0.0029387572,-0.013884907,0.0137831615,0.009889689,-0.012772487,-0.0027437445,-0.02053908,0.0067491364,-0.0042088837,-0.013620368,-0.0060776146,-0.017988654,0.012067049,-0.0024486817,-0.0006138662,0.0002488532,-0.022709658,-0.017703766,-0.020010002,0.007861557,0.02416123,-0.0050262413,-0.00922495,-0.016577778,0.0010318718,-0.0075020553,0.028570214,0.0069797602,-0.031039245,-0.009231733,-0.0061352705,-0.0126707405,0.030822188,0.01373568,0.009367394,-0.021149555,-0.013186253,0.023550756,-0.007834425,0.008126096,-0.004042699,-0.018409202,0.005813075,0.012786053,0.0023079333,-0.0084177675,0.030767923,-0.026643828,0.016672742,0.007970086,0.016075833,0.0028980589,0.017988654,-0.011931388,0.027701983,-0.021298783,0.013213385,0.015763812,0.011415876,-0.0028454904,0.002960802,0.037903693,-0.008404201,0.0044971635,-0.017703766,0.013640718,-0.0072714314,-0.0024096791,0.01140231,-0.0027437445,-0.003391526,-0.0075224047,-0.0015974087,-0.002847186,0.0045683854,-0.0006270083,0.020213494,-0.019223168,-0.00034042442,0.010615476,0.00020614118,0.009530188,-0.009835425,-0.028977197,0.023564322,-0.007902255,0.016048701,0.0031371615,-0.03882619,-0.03174468,0.006504947,-0.012297673,-0.00562315,0.012039917,-0.0042868885,-0.017649502,-0.011951737,0.0130166765,0.007040808,0.022546865,-0.004965194,0.014746355,-0.008682306,0.043438666,0.01744601,0.01813788,0.0013667849,-0.005758811,0.02176003,-0.016306456,-0.0073121297,-0.024418987,0.004507338,-0.0043954174,-0.013165903,-0.009509839,0.011531188,0.009943954,0.056380726,0.006783052,0.02002357,-0.03255865,-0.011103855,0.008885798,-0.0028353157,0.006189535,-0.045283653,-0.012209494,-0.026209712,-0.018531298,-0.0036289326,-0.0005142401,-0.004476814,-0.0008483054,-0.0008851883,-0.007474923,0.016903365,0.017812295,0.015288998,-0.004236016,-0.007027242,0.026942281,-0.003140553,0.021366613,-0.01309129,-0.030035354,0.0076173674,-0.0037883346,-0.0018890799,0.015465358,-0.0031778598,0.008017567,0.012324805,-0.016862666,0.0024198538,0.030442337,-0.004985543,0.012962412,0.013674633,0.005901255,0.022750355,-0.020823969,-0.030795055,0.020634044,0.008797619,-0.00915712,-0.016998328,0.013342263,-0.008031134,-0.01269109,0.0038866887,0.00025712006,-0.019168904,0.011653283,-0.0046192585,-0.01653708,-0.0048600566,0.025789162,0.01737818,-0.015126206,-0.038419206,-0.016130097,0.0092453,0.059907913,-0.005816467,0.0002331674,-0.00083897874,-0.019806512,0.012372287,-0.021570105,-0.04045412,-0.0034203539,-0.005609584,-0.027037244,0.0076241503,-0.0050465907,0.0023842426,0.010337371,0.0016482816,0.005657065,0.009618367,-0.0036424987,-0.009442008,0.0076241503,0.019738682,-0.0038154665,0.0047413534,0.050221715,0.01315912,0.014176578,0.007569886,-0.0061624027,-0.0007711482,0.006925496,0.014257975,-0.0099168215,-0.0072578653,0.007074723,0.026589563,-0.013009894,0.032477252,0.00422245,0.03603157,0.025477143,0.01155832,0.0021298784,-0.010920714,0.018354937,-0.0035780598,-0.02420193,0.0032779097,0.00034699548,-0.016686307,0.022356939,0.017188253,-0.00393417,0.0033677851,0.0052738227,0.02106816,-0.008919713,-0.01740531,-0.01293528,-0.06490024,-0.041132428,0.017351046,-0.00087670947,-0.0020790054,-0.0037035462,-0.033752467,-0.022587562,0.0013184557,0.0027149166,-0.01317947,-0.0019789555,-0.03478349,-0.012507947,0.027105074,-0.009910039,0.011266649,0.008723005,0.010934279,-0.024731006,0.035190474,0.012297673,-0.010398419,0.019725114,-0.014610694,-0.018843317,-0.007447791,0.016008003,0.0017254389,-0.007549537,-0.0034135708,0.001180251,0.02053908,0.046043355,-0.04023706,0.007861557,0.005450182,0.0064608566,0.011788944,-0.014488598,-0.014325805,-0.0037374615,-0.018192144,-0.0061963177,-0.012223059,0.0071154214,0.02057978,0.0112463,0.024608912,-0.018110748,0.0037883346,0.010588344,0.0025521233,0.009035025,0.0012845404,-0.0014710744,0.007644499,0.0051110294,0.010574778,0.011951737,-0.009014676,-0.00029845428,-0.02260113,0.023347264,0.02113599,-0.01796152,0.014854884,-0.0030065877,-0.029275652,-0.0056367163,0.01493628,-0.018599128,0.0068407077,-0.017147554,0.0077123297,-0.021041026,-0.017106857,-0.020525515,0.017568104,0.0056604566,-0.025395745,-0.026928715,0.02022706,0.0040087835,-0.01002535,-0.017663067,-0.03600444,-0.000779627,0.0008186296,0.0009708243,0.014610694,-0.011144554,0.008261757,-0.049082164,-0.012487599,-0.009482707,-0.02698298,-0.024242627,-0.0027878343,0.012501164,0.020796837,0.026874451,0.008566994,0.029818296,-0.013932388,0.007454574,-0.011585453,0.011571886,-0.018477034,-0.004714221,0.009618367,0.02218058,0.01691693,0.023442227,-0.014895582,-0.018544864,0.0061929263,-0.015587453,-0.00931313,-0.014949846,-0.018639827,-0.028461685,0.014949846,-0.022044918,0.018707657,-0.024527516,0.007047591,-0.00070925284,0.0069933264,0.040616915,0.0058469907,0.02913999,0.006816967,0.022153446,0.01653708,-0.0011268345,-0.038527735,-0.015926605,-0.003513621,-0.005429833,0.02593839,0.026087618,0.00085805607,0.0018195537,0.023374397,0.015370395,0.027661284,0.005565494,-0.018707657,-0.0010827447,-0.026630262,-0.0007694524,-0.0328571,-0.010147446,-0.0052026007,-0.005802901,0.019765813,-0.0049482365,0.011829643,-0.006783052,-0.01851773,-0.025653502,-0.0042597568,0.025287217,0.016971195,0.019752247,0.003198209,0.0036323243,-0.011117422,0.018748356,-0.008845099,-0.010072832,0.009129988,0.016550647,0.022343373,-0.013254084,0.011219168,0.011456574,-0.038066488,-0.0021366614,0.02040342,0.010079615,0.012758921,-0.024554648,0.005728287,-0.013287999,0.023401529,-0.01956232,-0.006725396,0.027715549,-0.011395527,-0.01577738,0.007841208,0.0037747684,0.02371355,0.015655283,0.008024351,0.011063158,-0.018843317,-0.009896473,0.0019857385,0.012318023,0.0052975635,0.020104965,0.02364572,0.0050160666,0.0077462452,0.0144479005,0.0072578653,0.0064472905,0.027512059,-0.014868449,-0.010208493,-0.01026954,-0.017147554,0.018666958,-0.010954629,0.0015719723,-0.020186363,0.00074698357,-0.013857774,0.02938418,-0.02722717,-0.019318132,-0.027837645,0.009191035,-0.001494815,0.0022485817,-0.011354829,0.018721223,-0.0132473,-0.015044809,-0.028841536,-0.016265757,0.00788869,0.009197818,-0.003276214,0.017052593,0.016238626,-0.025232952,-0.0048736227,0.028054703,0.0052602566,-0.00091825565,0.041620806,-0.0038425988,-0.004951628,0.005385743,-0.008288889,-0.022506166,-0.026820187,0.012677524,0.008193927,-0.0060403077,0.0039002548,0.008621259,0.018666958,0.0070204586,-0.022126315,-0.033182688,-0.0011522709,0.009062157,0.0023282825,0.0035543193,0.021041026,0.0026369113,-0.032775708,0.009604801,0.00811253,-0.033454012,-0.008431333,-0.0047820513,0.01317947,-0.0075156214,-0.02211275,-0.050710097,0.002280801,-0.009550537,-0.002431724,0.012772487,-0.0033423488,0.013688198,-0.0013303261,0.0081057465,0.0056028008,-0.0014176578,0.005307738,-0.047155775,-0.02496163,-0.016794836,-0.01598087,-0.0070068925,0.028733008,0.021665068,-0.027919041,-0.026263976,-0.01907394,-0.032043137,-0.0033864386,-0.013973087,-0.0043241954,0.010656174,0.0039986093,-0.0007346893,0.021298783,-0.002718308,0.00034593564,-0.017568104,-0.023035243,-0.0014151142,-0.020783272,0.00036670873,-0.017418876,-0.027593454,-0.013545754,0.015275433,0.007447791,0.0003912973,0.02211275,-0.008275324,0.006298064,0.0033677851,0.01260291,0.00030375354,0.02064761,0.020145664,-0.013620368,-0.0028505775,0.015655283,-0.0071222046,0.016645608,-0.008607693,0.014664958,-0.013932388,-0.00591143,0.016564213,0.0009877819,-0.00995752,0.012975978,0.016306456,-0.049136426,0.011354829,-0.0046972632,-0.025070159,-0.016130097,0.0076716314,0.021108856,-0.012392635,-0.0018924715,0.005243299,-0.03576025,-0.017188253,-0.015967304,-0.0022299283,-0.018585563,-0.03182608,0.018232843,-0.024432553,0.0062437993,-0.014949846,0.017608803,-0.0126707405,-0.016252192,0.027200038,0.0057622027,0.0073121297,-0.017785162,0.016767705,0.009903256,-0.0013252387,0.003968085,-0.009570886,-0.019277433,0.009564103,0.022424769,0.0076851975,0.0022706266,0.25721332,0.009869341,0.00409018,0.042082053,-0.004744745,-0.0042665396,0.0004743897,0.0046769143,-0.014963413,0.014352937,-0.022384072,-0.026616696,0.0038358157,0.005358611,-0.0055892346,-0.019874342,-0.030496601,-0.03871766,-0.034186583,0.0020230452,0.006057265,-0.014230843,-0.0091842525,-0.000109906636,0.0200507,0.018639827,-0.0077801603,0.0200507,0.020132098,0.015099074,-0.017215386,0.0089400625,0.007719113,0.006382852,-0.0013659371,-0.0027878343,0.035109077,-0.008851883,0.02789191,0.0135050565,-0.0046023005,0.019209603,0.007217167,-0.017635934,-0.00026347916,-0.014868449,-0.011585453,-0.022424769,0.030632261,0.0001380987,-0.012087398,0.0048193582,0.039504495,0.00268948,-0.0057554194,-0.01900611,-0.0040020007,0.014624259,0.00054349203,0.010344154,0.011849992,0.019019678,-0.014461466,0.015519623,-0.027010113,-0.018992545,-0.029221388,0.0061081382,0.020634044,0.0047176126,-0.042868886,-0.0025521233,0.006847491,0.008051483,-0.02120382,-0.041268088,0.00021525592,0.024079833,0.021963522,0.049353484,-0.01691693,-0.0004413223,0.0019721724,-0.03147336,0.011463357,-0.03502768,-0.008017567,-0.01580451,-0.027077943,-0.003971477,-0.008302456,-0.018951846,-0.008804401,-0.027620587,-0.0015422964,0.004507338,-0.0019806512,0.025287217,0.009252083,0.027756248,-0.032748573,0.0029099293,0.01740531,0.01695763,-0.035434663,0.000700774,0.01389169,0.014746355,0.023143772,-0.003176164,-0.002111225,-0.021922823,0.016672742,-0.017486708,-0.012270541,0.03109351,-0.009645499,-0.0028963631,-0.027837645,0.0060369163,-0.0021010502,-0.017228952,-0.008777269,-0.003118508,-0.011504056,-0.0013455879,-0.0010606997,-0.0124943815,0.007454574,-0.031798948,0.016564213,0.0072578653,0.01317947,-0.00268948,-0.0039613023,0.025490709,0.008716222,-0.017703766,0.004236016,0.0008555124,-0.021475142,-0.0132473,0.026467469,-0.008044699,0.018843317,-0.0073596113,0.007569886,-0.0069594113,-0.012284107,-0.008716222,-0.035190474,0.002268931,-0.020484816,-0.028488819,0.029058594,0.017391745,-0.03491915,-0.028841536,0.023238735,-0.00264539,-0.01493628,-0.0038425988,0.010873232,0.010174578,-0.02618258,-0.04452395,-0.17516553,0.015112639,0.021488708,-0.026345374,0.014678524,-0.017744463,0.0013040417,0.01315912,-0.014352937,-0.008004001,0.019399527,0.0137492465,-0.030632261,-0.004456465,0.011517622,0.016727006,-0.0042054923,0.01918247,0.05494272,0.00036649677,0.04202779,-0.018205712,-0.0068983636,0.015153338,-0.0056401077,-0.0047549196,-0.008234625,0.0057689855,-0.017215386,-0.0129149305,-0.0015855384,-0.0024656393,0.039016113,0.021380179,-0.003340653,-0.017228952,0.02938418,-0.0030320243,0.0069085383,0.012467249,-0.007461357,0.027240736,-0.0010683307,0.003798509,-0.0029658894,0.029899692,0.012894581,-0.011253083,0.013362612,-0.005565494,0.0069356705,-0.02015923,-0.016645608,-0.00030650914,0.0058775144,0.01100211,-0.00946914,0.016075833,0.008431333,-0.05274501,0.000101692785,-0.026643828,0.006833925,-0.008329588,-0.025110858,-0.0075427536,-0.014882016,0.020240627,-0.015655283,0.027837645,-0.0168491,0.0011268345,0.00016639674,-0.0014439422,0.014298673,-0.0010462857,-0.0101949265,0.010052483,0.021597236,0.006152228,0.0003870579,0.039504495,0.016767705,0.026128316,-0.0104459,0.014895582,-0.023075942,0.0039511276,-0.0377409,-0.010717222,0.015451792,-0.010629042,-0.014244409,-0.0035882343,0.0050025005,0.02374068,0.028434554,-0.0102288425,0.01726965,-0.011816076,0.01035772,-0.0020349156,-0.008071831,-0.0055417535,0.050004657,-0.0093945265,0.015940173,0.0054807058,0.02371355,0.00045488842,-0.027919041,0.007088289,0.038283546,0.028570214,-0.014257975,0.03475636,0.0019857385,0.0068271416,-0.007739462,-0.0019484316,0.022940282,0.009021459,0.005036416,0.005158511,-0.014230843,0.0012879319,-0.08009428,-0.033047028,0.023659285,-0.0056265416,-0.015153338,0.023754248,-0.00866874,0.020064266,-0.0100457,0.010717222,-0.010988544,-0.035326134,-0.02022706,0.01300311,-0.005121204,-0.0026589562,-0.0056841974,-0.020905366,-0.0014939671,-0.0035475362,-0.019521624,-0.012487599,-0.015058375,-0.009177469,-0.01671344,-0.00898076,-0.02218058,0.0025436445,0.017364612,0.005887689,0.009543754,0.004714221,0.0022774097,-0.015234735,-0.0064845975,-0.010635825,-0.012487599,-0.011117422,0.02576203,-0.026101183,-0.005083897,-0.015017677,0.016604912,-0.028814403,-0.015899474,0.009835425,-0.007841208,0.015343263,0.030062485,-0.028136099,-0.009821859,0.002840403,-0.023632152,-0.029465577,0.025029462,-0.05445434,0.013688198,-0.009129988,0.012813185,0.01315912,-0.0099846525,-0.0122162765,-0.011639717,0.008994327,0.005714721,0.027349265,-0.011788944,0.0089400625,0.002253669,-0.005938562,-0.0109274965,-0.0045107296,-0.024744574,0.004069831,-0.023699984,-0.021529406,-0.005036416,-0.0058707315,0.00070501346,-0.0013142163,-0.023103075,-0.026684526,0.008648391,-0.012704656,-0.01758167,0.010032133,0.018477034,0.019630153,-0.026711658,-0.037523843,0.0007639412,-0.013810294,-0.002547036,-0.0139595205,-0.02962837,-0.013620368,0.0052975635,0.004985543,0.02176003,0.015831644,-0.0016720223,-0.023523623,-0.0722802,0.022099182,0.008458465,-0.005938562,0.009380961,-0.023984872,-0.016618477,-0.03367107,-0.014352937,-0.019630153,-0.011008893,0.011965304,-0.008879015,0.0031948173,-0.01002535,-0.0013930693,0.04143088,0.002596213,0.008261757,0.015790945,-0.023143772,-0.0119042555,0.006209884,0.0060776146,0.018124314,0.002209579,-0.011619368,0.020742573,-0.018097183,-0.031527624,0.0001816586,-0.011951737,0.000031848547,0.028054703,-0.010072832,-0.03367107,0.00054094836,0.0064608566,0.012752137,-0.017161122,-0.0038358157,-0.012806402,0.0119042555,-0.018680524,-0.016374286,-0.01946736,0.0065422533,-0.0061963177,0.022479033,0.002911625,0.029194254,0.018924715,-0.039260305,-0.014529297,0.0026674352,-0.025029462,0.0021637934,0.0036085835,0.00051466405,0.015126206,0.030984981,0.012399418,0.02113599,-0.015465358,-0.0012531688,0.012351938,-0.015831644,-0.0018280324,0.045066595,-0.03502768,-0.013410093,0.0069424533,0.009828642,-0.005300955,0.0053620026,-0.014217277,-0.005758811,0.0097065475,-0.024296891,0.045690637,-0.00059648464,-0.011734679,-0.011117422,0.018436335,0.029411312,0.018951846,-0.00043369137,0.005243299,-0.021176688,0.018042918,-0.02002357,-0.00014541167,0.00017000023,0.0006015719,0.0072578653,0.005121204,-0.001294715,0.017730897,-0.0058266413,0.008254974,0.012467249,0.022085616,0.019508056,-0.0076377164,0.006504947,0.012786053,-0.018789053,-0.0050771143,-0.0015719723,-0.017595237,-0.014542863,-0.0028522734,-0.027444229,0.027295,-0.030171014,-0.0070204586,0.019250302,-0.010391636,-0.012725005,0.0142715415,0.018694092,0.0010327196,0.0019416485,-0.010032133,0.011185252,-0.00031816753,-0.012616476,-0.036112968,0.00818036,-0.0076512825,-0.013301564,-0.0030286326,-0.011076723,-0.02231624,0.010262758,0.011436225,-0.023428662,0.01260291,-0.0062268414,0.09295494,0.01640142,-0.009285998,-0.014108748,0.008275324,0.03714399,0.028733008,0.0075088385,-0.01140231,-0.0046056923,0.031120641,0.01584521,0.0026419987,-0.01949449,-0.010812185,0.007535971,-0.016699873,0.007970086,-0.01855843,-0.0038188582,0.028407421,0.033264086,0.010323805,0.0039002548,-0.018884016,-0.007074723,0.024853101,0.011748246,-0.018843317,-0.021597236,0.01900611,0.011253083,-0.022126315,-0.013532189,0.021922823,0.011700764,0.00033915258,0.0021570104,0.018042918,0.018042918,-0.017676633,-0.0050262413,-0.015763812,-0.019141773,0.018951846,0.0100457,0.00922495,0.012012784,-0.027064377]},{\"id\":\"019ee307-abd2-44b2-b504-01ea06b5f890\",\"text\":\"Put somewhere the requirements for a post. For example how the bounty comes and what needs to happen for that. \",\"vector\":[0.0027129203,0.007264235,-0.00846005,0.0059962585,-0.025510728,0.005333062,-0.016768906,-0.00071345165,-0.010336244,-0.005418968,0.02787487,-0.021950772,-0.021992007,-0.0031390155,0.025991805,0.0005201625,0.013614427,-0.011401482,0.0038245476,-0.0015514675,-0.004085703,0.00066835084,-0.01604042,0.008769313,0.015284445,-0.0068965564,0.037331432,-0.004003233,0.020425078,-0.005910352,0.021304758,-0.0058381907,-0.022610532,-0.00045057843,-0.02738005,0.001202688,0.0047007916,-0.009291624,0.0124048665,0.0037730038,0.01419859,0.023119098,-0.00042480655,-0.024040014,0.010679869,-0.0017765418,-0.009511543,-0.024259934,-0.011676381,-0.010157558,0.0033417542,0.00692061,-0.05822384,-0.0017481928,-0.00399636,0.011016621,0.00068896834,0.011779469,0.009731463,-0.010721104,-0.0022885434,-0.01507827,-0.0008483245,-0.008638736,-0.0063398834,-0.0074085575,-0.013181459,0.018267112,-0.031283632,0.00175077,0.02878204,-0.00027210815,0.021538423,0.019325476,0.034390002,0.0024586378,0.021332247,0.0005162968,-0.0014793061,-0.005893171,0.015861735,0.013655663,-0.0070924223,0.03320793,0.023723878,0.0029500218,0.018005956,0.011325884,-0.006185252,-0.007875888,-0.004333113,0.018555757,0.0057419757,0.0134907225,-0.0041269376,0.03238323,-0.0046011405,0.040217884,0.00785527,-0.02828722,-0.0022387176,0.023421489,-0.05096648,-0.013009647,-0.010033853,-0.018308347,0.00733296,-0.01650775,0.021648383,0.01626034,-0.015311935,0.037661314,0.0035530836,-0.017524881,-0.0072161276,-0.0014337758,0.008611245,-0.020218901,0.0016012931,-0.009470308,0.03180594,-0.02713264,0.0037936214,-0.014982055,0.0182946,0.013167715,0.011209051,0.0075666253,0.0017215619,-0.025964314,0.009078575,0.020356352,-0.004065085,0.002901914,-0.007209255,0.009910149,-0.027435029,0.0026785578,-0.007034006,-0.013442615,0.03340036,0.03471988,-0.015944205,0.00716802,0.0021562476,0.007209255,0.008831166,-0.009648994,0.0032077406,-0.0011872248,0.0034963856,-0.009401583,0.010198793,-0.0149683105,-0.0035943189,-0.009442818,0.0032764655,-0.0015712258,0.004731718,-0.013284547,0.017236236,0.01392369,-0.0074085575,0.0058588083,0.01452847,0.03546211,0.020548781,-0.025359534,-0.0074497927,0.004649248,0.0043984014,0.0043571666,-0.024094993,0.024768498,-0.0056010894,0.023710134,0.01375875,0.0034774863,-0.013586937,-0.017895997,-0.008618118,-0.008521903,0.016727671,0.03499478,-0.026307939,-0.018239621,0.011889429,-0.0054636393,0.0078002904,0.006965281,0.0012164329,0.0011769161,0.019930257,0.017208746,-0.6650383,-0.0021390663,0.03043144,-0.01392369,0.0071061673,0.012164329,0.0018830657,0.010040726,0.0016932128,0.02927686,-0.016411535,0.009023596,0.0088242935,0.0030599816,-0.012686639,-0.03612187,0.01551811,-0.024864715,-0.0016717362,0.013250184,-0.018899381,0.0014303395,-0.0041131927,0.024287423,0.0083226,-0.00046690064,0.0033211368,-0.005020363,0.007154275,0.02694021,-0.011442716,0.026651565,0.008315728,0.020012727,0.042911906,-0.007930867,-0.018720696,0.0045358515,-0.00725049,0.023256548,-0.01395118,-0.01576552,0.01422608,-0.0007319215,-0.0018487031,-0.002996411,0.02853463,-0.0015686487,0.017950976,-0.0031785325,-0.019023087,0.024122484,-0.0027438465,0.0071748924,-0.022638023,-0.015971696,0.026404154,0.0045392876,-0.015064525,-0.0006189548,-0.005625143,0.004728282,-0.042554535,-0.043874055,-0.016686436,-0.004010105,-0.004422455,0.018679462,0.015683051,-0.0012121376,-0.0074979,0.0075734975,0.00034899428,-0.0033658082,0.015779266,-0.0008655058,0.00744292,-0.011669509,-0.007236745,0.024149973,0.0064086085,-0.0058588083,-0.01395118,-0.017717311,0.019847786,0.009710846,-0.010714231,-0.021497188,0.020466313,0.020163922,0.004913839,0.022390613,0.008432561,-0.0009260697,0.006851885,0.024177464,-0.001490474,0.0047729528,0.035517093,-0.013937435,-0.01408863,-0.008143916,-0.033070482,0.012487337,0.044533815,-0.0027163567,-0.0070649325,0.010741721,0.03488482,-0.030596381,0.0048382417,0.010130068,-0.034197573,-0.00628834,-0.007944613,-0.041207526,0.011250286,0.0042884415,0.005391478,0.007848398,0.044753734,0.030596381,0.02699519,-0.007600988,0.0058588083,0.039200753,0.02927686,-0.003324573,-0.022940412,-0.002790236,-0.0054120957,-0.01744241,0.018871892,0.013277675,0.022912923,-0.012315525,0.0039448165,-0.017854761,0.0053158808,-0.02823224,-0.019064322,-0.0012576679,-0.0005966191,-0.03037646,-0.034829844,-0.0064807697,-0.01290656,-0.0038279837,0.0036115,0.0061611985,0.010260646,-0.0044568176,-0.039503142,0.0034929493,-0.010109451,-0.002558289,-0.003790185,-0.022225672,-0.015751775,-0.0037145875,-0.025785629,0.022335634,-0.025840608,0.009765826,-0.0112227965,-0.012817217,0.03029399,0.0042987503,-0.006611347,-0.023201568,0.011703871,-0.015586835,-0.015366916,0.010954768,-0.020947387,0.00782778,-0.031146182,-0.009662738,-0.0015437359,-0.004893222,0.008810548,-0.0007899082,-0.012391122,-0.0030840354,0.0047901343,0.00063227024,-0.009360348,0.03367526,0.009490926,0.0010368888,0.0061062183,-0.016411535,0.0050169267,0.026582839,0.001653696,0.00059404195,0.009539033,0.006697254,-0.017002571,0.015284445,0.020480057,0.012336141,0.039915495,-0.027833635,0.018088426,-0.023737622,0.005872553,-0.025084633,0.02430117,0.010191921,0.0025428259,-0.03048642,0.015889226,-0.0074635376,0.014102375,0.00848754,-0.01430855,0.0072161276,-0.014954565,0.019517906,0.027091404,-0.0032249216,0.032768093,0.012123094,-0.006047802,-0.0018555756,0.01848703,0.0065872935,0.0028331892,-0.018308347,0.008583755,-0.00094239187,0.0006348474,0.0067522335,0.0275175,-0.013971797,0.018803166,-0.0034379694,0.011449589,-0.009834551,0.006862194,0.013710642,0.017758546,0.0005678405,0.03359279,0.0002373161,0.007834652,0.015820501,-0.0046939193,0.0038211113,-0.00045229658,-0.0015214002,-0.020864917,0.023517704,0.0021717108,-0.023325274,-0.01337389,0.0053296257,0.0047901343,0.005869117,0.026775269,0.013435742,0.009765826,0.004965383,0.021442208,-0.002901914,-0.007223,-0.017291216,-0.005161249,-0.010803574,0.01271413,-0.0092160255,0.011607656,0.00725049,0.02828722,0.009209153,-0.020727467,0.0067281798,-0.0013452923,-0.00037283325,-0.045028634,-0.004319368,0.00821264,0.037276454,-0.008411943,-0.006226487,-0.013133352,0.010081961,-0.017401176,0.022541808,-0.005240283,-0.004006669,-0.0019432,-0.022747982,0.0032816199,0.00785527,0.02878204,-0.016466515,-0.003462023,0.0038760914,0.013483849,0.010322498,-0.019064322,-0.025332045,0.022404358,-0.0049207117,0.022266908,-0.017717311,-0.0025015909,-0.0015660715,-0.011559549,0.003307392,0.005968768,-0.01507827,0.031641003,-0.0029534579,-0.0044636903,0.011257159,0.03133861,-0.00079377403,0.010556163,0.0061508897,-0.015614325,0.011099092,0.074992746,0.01463843,-0.0045324154,0.014184845,-0.03177845,-0.008247003,-0.029551761,-0.018143406,0.01474839,0.004498053,0.017291216,-0.0022816707,0.0036218087,0.017016316,0.02905694,-0.014927075,0.0012971848,-0.008913635,0.019297987,-0.0291669,-0.006377682,0.0021287575,0.008865528,0.009106066,0.022170693,0.00432624,0.018047191,0.037001554,-0.012940922,-0.0045392876,-0.001874475,-0.006016876,0.020163922,-0.002996411,0.0011751979,0.021249777,-0.005989386,0.036836613,-0.0092503885,0.00065847166,0.0020548783,0.0058313184,0.0073673227,0.001517964,0.024122484,-0.0015488903,0.010906661,0.0006455857,-0.0033194188,-0.001654555,0.029881641,-0.011030367,-0.007236745,-0.005621707,0.018528266,0.00019167838,0.011215924,0.008356963,0.007319215,-0.03125614,-0.036231834,-0.03010156,0.008851783,-0.0016253468,-0.022624278,-0.016301576,-0.013992415,-0.015573091,-0.012968412,0.012226182,-0.0297167,0.0025978058,-0.033070482,0.00081954594,0.032960523,0.015105761,0.035984423,-0.017648587,0.033070482,-0.009511543,-0.012762237,-0.020933643,-0.013909945,0.0077796727,0.0055186194,0.0024586378,-0.011896302,0.007374195,-0.0003651017,0.009834551,-0.010130068,0.03282307,-0.0023143152,-0.019449182,-0.0020256701,-0.010700487,-0.014294805,0.012178075,0.0021992007,-0.0053536794,-0.015009546,-0.010721104,-0.008473796,-0.011882557,0.000012637619,0.011525187,0.011470206,0.020727467,-0.015092015,-0.008260748,0.021964518,-0.022335634,0.023490213,0.0067419247,0.012212437,0.01598544,0.008143916,0.021263523,0.01749739,0.00703057,-0.0069171735,-0.014940821,0.03122865,0.011889429,-0.026706545,-0.02581312,-0.0074772825,-0.03010156,-0.0012112786,-0.004676738,-0.002656222,0.0031372975,-0.0049310206,-0.010281264,-0.018514521,-0.021552168,0.020933643,0.0069034286,-0.014982055,-0.0013195204,-0.007374195,-0.010748594,-0.002077214,-0.037358925,0.03004658,-0.03232825,0.0009913584,0.019696591,-0.018858146,0.022679258,-0.012734747,-0.004350294,-0.0363143,-0.024864715,0.005336498,-0.026569095,-0.022225672,-0.009923893,0.022899179,0.0064120446,0.0011648892,0.008405071,0.0294418,-0.0016734543,0.010947896,0.004827933,0.01419859,-0.021717107,-0.016865121,-0.00815766,0.017249981,0.007910251,-0.00060778693,-0.0032884923,-0.0007576934,0.009539033,-0.03375773,0.00024698055,-0.011751979,-0.02897447,-0.009703973,0.018940616,0.005700741,0.011305266,-0.037084024,-0.01386871,0.025043398,0.012583552,0.030733831,0.007944613,0.013463233,-0.01571054,0.026321685,-0.011105964,0.016535241,0.00653575,-0.011525187,-0.003133861,-0.003352063,0.017085042,0.033702753,0.0060271844,-0.011573294,-0.007820908,-0.0155593455,0.010130068,-0.0062505407,0.0062471046,0.009112938,-0.019779062,-0.024837224,-0.026431644,-0.00653575,0.013064628,0.001025721,-0.003597755,-0.009387839,0.017786035,-0.017758546,-0.017346196,-0.0049310206,-0.015999185,0.03293303,0.016617712,0.021469697,0.02878204,0.013332655,-0.01711253,-0.0059137885,-0.009951384,0.0020067708,0.00047033688,0.03403263,-0.016480261,-0.00314417,0.012343015,0.03337287,-0.019352967,-0.034170084,0.013497595,-0.005800392,-0.0037730038,-0.014789625,-0.004759208,-0.039997965,0.0066422736,0.0045289793,0.003999796,0.014762135,-0.0011038957,-0.01419859,0.008996106,-0.009992618,0.017428666,0.033812713,0.008054573,-0.01703006,-0.010886044,-0.01474839,-0.011264032,0.004762644,0.00741543,-0.0050272355,0.017579861,0.005130323,0.0034517143,-0.012858452,-0.027421284,0.019160537,0.020246392,-0.011930664,-0.008370708,-0.0130715,-0.012954667,-0.009298496,0.009243515,-0.01474839,0.0022696438,-0.0017404612,-0.012501081,0.022775473,0.0092503885,-0.02482348,-0.0043674754,0.005745412,0.0047798255,-0.0044533815,0.009167918,0.0286171,-0.0021115763,-0.019930257,-0.0022507445,-0.0015488903,0.012171201,0.0018298038,0.022747982,0.009669611,0.02435615,-0.017346196,-0.005717922,-0.019449182,-0.0004999745,-0.021428462,0.0038692188,-0.010329371,-0.021524677,0.02553822,-0.012494209,-0.0074085575,-0.025703158,0.003420788,0.0074910275,-0.005473948,-0.007126785,0.01595795,-0.009133556,0.020617507,0.016026676,-0.0068862475,0.009717719,0.0029328405,0.0149683105,0.023710134,-0.012817217,-0.008336346,-0.025991805,0.019998983,0.011958154,-0.010741721,-0.042801946,-0.00043103477,0.004662993,-0.010233156,-0.021208543,-0.018748187,-0.022239419,-0.012102476,0.035984423,-0.0075666253,-0.016164126,-0.005893171,0.021992007,0.018198386,0.007621605,-0.014322295,-0.0059962585,-0.011009749,-0.0110578565,-0.0018349581,-0.0163703,-0.02952427,0.045358516,0.0067419247,-0.037139002,0.009470308,-0.0025256446,-0.020205157,0.0034517143,-0.009607758,0.0033331637,0.0023864764,-0.019380458,0.013745005,0.03048642,0.018047191,0.02924937,-0.008432561,0.006704126,-0.031943392,-0.008040828,0.011092219,0.019944003,-0.022981647,-0.021895792,0.019366711,0.0020686232,-0.0006292635,0.03406012,-0.022033243,-0.006882811,-0.01430855,-0.018583247,0.00821264,0.0019311731,0.023930054,-0.01604042,-0.0065013873,-0.006016876,-0.010899789,-0.0031647873,-0.008075191,0.011160944,0.008707461,0.023187824,-0.012116222,-0.00829511,-0.002692303,-0.027558735,0.024644794,-0.005855372,-0.009057959,-0.016191615,0.00094239187,-0.02529081,-0.02957925,0.023201568,-0.03188841,0.0017971594,0.0027283835,0.0012061242,-0.008838038,0.008137043,-0.0060752924,-0.022802964,-0.0032902106,0.0042712605,-0.001955227,-0.0009492644,0.012872197,0.014129865,-0.018143406,-0.022954158,-0.0059962585,-0.016741415,0.008941126,-0.0066663274,-0.050361697,0.018212132,0.020603763,-0.012198692,-0.0015652124,-0.021882048,0.009655866,0.002340087,-0.0138824545,0.008838038,0.23245552,0.0009913584,-0.016439026,0.039173264,-0.0049310206,0.0049172756,0.021442208,0.008865528,-0.0017499109,0.0049860007,0.0039482526,0.0037248963,-0.016494006,-0.0050547253,0.0005596794,-0.018184641,-0.021552168,-0.01722249,-0.02402627,0.0025479803,0.009367221,0.017593605,-0.007958358,-0.01524321,0.0321908,0.0073398324,0.009367221,0.00048322283,0.015531856,0.014597195,-0.0021699925,-0.0043984014,0.002611551,-0.006951536,-0.022816708,0.016342811,-0.0032128948,-0.012322397,0.016397791,0.019944003,0.023778858,-0.0034036068,0.01711253,-0.019930257,0.008088935,0.018170897,0.0017885688,-0.0030032836,-0.0078071626,0.010996004,-0.046430625,-0.020232648,0.015174486,0.0046114493,-0.005058162,0.007999592,0.0013195204,0.017607352,0.01304401,0.015669305,-0.0048897853,0.015284445,-0.008597501,0.01551811,-0.02985415,0.010528673,-0.00025084635,-0.0060684197,0.025263319,-0.01604042,0.01518823,-0.017043807,0.0009604322,0.0074635376,0.0018899381,-0.0052712094,0.011573294,0.013648789,0.050334208,0.039750554,-0.010583654,-0.00083672715,0.0036733525,-0.020260137,0.0029757936,-0.0077178204,0.005728231,-0.0012078423,-0.0283422,-0.004824497,-0.019751571,0.00670069,-0.022074478,-0.025703158,-0.038513504,-0.0080477,0.0044533815,0.03499478,0.0003249405,-0.015421895,-0.035489604,0.060807902,-0.014597195,0.006442971,-0.036919083,-0.0016880584,-0.0008504722,0.021538423,0.019490417,0.0027661822,-0.007374195,-0.031448573,0.0070924223,-0.0044946168,-0.00689312,0.022349378,0.0002811283,-0.0028486522,0.011614529,0.0015815346,-0.019517906,-0.0324657,-0.0034688956,-0.014446,0.027091404,-0.020768702,-0.0113533735,-0.00760786,-0.0075322627,-0.039228242,0.02553822,0.0013633326,-0.02430117,0.00009428214,-0.021029858,-0.019119302,0.007862143,-0.02680276,-0.029744191,-0.018225877,-0.015009546,-0.010831064,0.023558939,0.0034070432,0.024466109,-0.029551761,-0.006965281,-0.0321908,-0.036671672,0.01384122,-0.036699165,-0.007820908,-0.006779724,-0.020782446,0.007917123,-0.01678265,-0.0023349328,-0.035901953,0.0064120446,0.0009904994,-0.039558124,0.015408151,-0.013442615,-0.027118895,-0.030816302,-0.011181561,-0.17791535,0.012789727,0.008013338,-0.012597297,0.020067707,-0.0011545804,-0.0044808714,0.012136839,-0.034197573,0.015971696,0.017195001,-0.0335653,-0.03351032,-0.0182946,-0.021332247,0.008748695,-0.015092015,0.025277063,-0.0006417199,0.024741009,0.026912719,-0.0072436174,0.0073535778,-0.017332451,-0.0042712605,-0.01428106,-0.0036596076,0.013779367,-0.010191921,-0.020273883,-0.019311732,-0.021194797,0.02979917,0.031750962,-0.0027541553,-0.01450098,-0.0035908825,-0.011119709,0.017181257,-0.0017078168,0.014487235,0.03142108,0.005051289,0.018830657,-0.006391427,0.020452566,-0.000091329115,0.000765425,-0.000103785525,-0.01436353,0.0066010384,-0.030926261,-0.004473999,-0.005302136,0.025235828,0.0017164075,0.0007989284,0.0034860768,-0.021084838,0.019174282,0.005487693,-0.03004658,-0.008886145,-0.007917123,-0.015600581,-0.025304554,-0.015820501,0.03395016,-0.020672487,-0.014762135,0.003927635,-0.020590017,0.0024517651,0.0053399345,0.0063948636,0.010666124,-0.02894698,0.022967903,-0.01463843,0.021964518,-0.0046286304,0.015820501,-0.003924199,0.007511645,0.0028538066,-0.022198183,0.006126836,0.010934152,-0.0015437359,-0.02982666,-0.003324573,0.005625143,-0.02919439,-0.0015609171,0.0074979,0.0294418,0.00183324,-0.00020359788,0.014734645,-0.021167308,0.0043812203,0.01439102,-0.035159722,0.024589814,0.016329065,-0.0037661314,0.0016012931,0.025249574,0.018638227,-0.010398096,-0.006614784,0.022486828,0.009800188,0.025978059,0.007958358,0.030816302,-0.0056973044,-0.0029259678,0.0071474025,-0.0032163311,0.039118282,-0.0083294725,-0.012775982,-0.0034998218,0.00015001385,-0.005154377,-0.1106198,0.002491282,0.0066663274,-0.020658743,-0.0063227024,-0.0021992007,0.0035668288,0.017085042,0.006181816,-0.0022129458,-0.0050272355,-0.046623055,0.0052574645,0.014775881,-0.000037664533,-0.009621504,-0.014322295,0.0047042277,0.043406725,0.025551964,0.0000062483396,-0.030019091,-0.011119709,-0.012796599,-0.005305572,0.0007632773,-0.012356759,0.011126582,-0.00048064563,-0.00043726296,-0.022445593,-0.021579657,-0.018473286,0.00024118189,0.0018572938,-0.00043984017,-0.009827678,-0.023682643,0.016301576,-0.010837936,-0.005979077,-0.0166452,-0.0009475463,-0.016246596,-0.003242103,0.0072711078,-0.03340036,0.003008438,0.013470105,-0.018047191,-0.028026065,-0.0012834398,-0.015751775,-0.041344974,0.02608802,-0.013009647,0.005704177,0.02820475,-0.015256955,0.025923079,0.013745005,0.014954565,0.0017885688,0.006278031,0.0068725026,0.01521572,-0.018968107,-0.0064360984,0.0032953648,0.0007632773,-0.01768982,0.028892,-0.0075734975,0.013277675,-0.014019905,-0.033042993,0.0046733017,-0.00736045,0.013360145,-0.010913534,-0.0037798763,-0.018830657,0.0042094076,-0.021263523,0.018363327,0.023448978,0.0032884923,0.016012931,-0.002692303,-0.047337797,-0.0019294551,0.013607555,0.000670069,-0.008260748,-0.021318503,0.006439535,0.0077796727,0.00036080639,-0.0022077914,0.000057020294,-0.013779367,0.011587039,-0.042691983,0.022184437,-0.009628376,-0.018060936,0.008301983,-0.015201976,0.00678316,-0.00043790726,-0.012343015,0.01516074,0.00032515527,0.007937741,-0.012164329,-0.010136941,-0.010246901,-0.0038898364,0.009346603,-0.019174282,0.00032837674,-0.0043021864,-0.021167308,0.0044533815,-0.005786647,-0.021442208,0.0007684317,0.021717107,-0.0021871738,0.0107623385,-0.020177668,-0.006625092,0.023174077,-0.019504162,0.004597704,0.02902945,-0.005171558,-0.006140581,-0.007016825,0.021565912,0.03573701,0.025909334,-0.014129865,-0.025826864,-0.017676076,-0.038513504,-0.019119302,-0.011373991,-0.025359534,0.004659557,0.018033447,0.006154326,0.034582432,0.02633543,-0.024149973,-0.010191921,0.021442208,-0.027366305,0.0002491282,0.00031613512,-0.0063227024,-0.038678445,0.039008323,-0.004144119,0.0094153285,-0.016012931,0.013799985,-0.005047853,-0.017373687,0.017524881,0.017593605,-0.03133861,-0.011394609,-0.0081988955,-0.014267315,-0.020644996,0.013332655,0.030678852,0.011264032,-0.008425688,-0.00769033,0.021607148,0.0141711,0.008576883,0.000677371,0.0041922266,0.038211115,0.008137043,-0.006456716,-0.0067384886,-0.0064945146,-0.0049207117,-0.020864917,0.0015557627,0.014267315,0.012219309,0.014267315,0.00374895,-0.0026390408,-0.019586632,0.008260748,-0.022638023,0.0072848527,-0.0014655611,0.007683458,-0.015586835,-0.0122399265,-0.0018916563,-0.020081451,-0.039228242,0.018047191,0.027971085,-0.006697254,0.012830962,0.03012905,0.011607656,-0.03252068,0.03452745,0.012294907,-0.042939395,-0.026170488,0.038623463,0.0041269376,-0.012205564,0.0053536794,-0.02858961,0.035599563,-0.01549062,-0.009676483,-0.021978263,0.003255848,-0.01573803,-0.006360501,0.014019905,-0.0018212132,-0.005955023,0.01397867,-0.011545804,-0.0280673,0.021510933,0.017071296,0.064601526,0.02979917,-0.015586835,0.018170897,0.0113533735,-0.008006466,0.020026471,-0.0044430727,-0.009346603,0.007456665,0.02619798,0.0077315653,0.0280673,-0.0030135922,-0.0006589012,-0.0016674409,0.002709484,0.022074478,-0.008398198,-0.015504366,0.008192023,0.017758546,0.014487235,-0.0056869956,-0.039668083,-0.0050306716,-0.003513567,-0.038513504,-0.0039448165,-0.0048485505,0.01433604,0.020658743,-0.0062196148,-0.01384122,0.0046939193,0.011580166,-0.0072848527,0.023242803,0.0034053249,0.004896658,0.027627459,-0.00766284,-0.03150355,-0.03537964,-0.041399956,0.012061242,-0.0055151833,0.0067384886,0.0050100544]},{\"id\":\"07e6c480-84d3-46f3-a04a-e2f25141688a\",\"text\":\"I want to know if I am submitted in winning the trip to Aruba since I ordered the vitamin C\",\"vector\":[-0.006502352,-0.008820056,0.0042182878,-0.00916317,-0.028310293,0.026574539,-0.021555651,-0.04098534,-0.0012992931,0.0035488782,-0.001126054,0.0224168,-0.017263358,-0.02238989,-0.008799872,-0.015285405,0.035630066,-0.008961339,-0.0048372387,0.016644407,-0.009351547,-0.009533196,0.023049207,0.005277905,0.014020592,0.014195513,-0.00044150738,-0.026224697,0.0016104507,0.0062366067,0.00509962,0.010535628,-0.005234175,-0.019079845,-0.014235879,-0.011174762,0.0048136916,0.0018602178,-0.000738789,0.0048708776,0.027745165,0.028471759,-0.0048305113,-0.015756346,-0.032723684,0.01467991,-0.011531332,-0.011342955,-0.017478647,0.02280701,0.010347251,0.00085988815,-0.034149963,-0.028417937,-0.005607564,-0.0060751415,0.016536763,-0.0043023843,-0.016227288,-0.008517308,0.013623656,0.012769234,-0.0018215333,0.021394186,-0.006869014,0.006334159,-0.013845671,0.003582517,0.005789213,0.03140505,0.03256222,0.02286083,-0.0076225195,0.009634111,0.01645603,0.0019762712,-0.023493238,0.013912949,0.011692797,0.0059002205,0.0050256154,-0.015002841,-0.00031241903,0.0079723615,0.024744596,0.027960451,0.01847435,0.023506694,-0.028713956,-0.030086415,0.005210628,0.031593427,-0.005092893,0.011934996,-0.024031457,0.0072054,-0.009062254,0.035011113,-0.005557106,0.0120022725,0.003501784,0.0037439824,-0.024932973,-0.030543901,-0.009290997,0.017397914,-0.02995186,-0.0003946235,0.018635815,-0.0062366067,-0.0073466827,0.04128136,0.027166579,-0.033423368,-0.035683885,-0.00016104507,-0.0015650385,0.010374161,-0.037998226,-0.026224697,0.010629816,0.013240175,0.037379276,0.0046488624,0.026762916,0.014370434,-0.029844217,-0.025309725,0.020371571,0.002953474,0.0025414005,0.011867718,0.008389481,0.002803782,0.01467991,0.030678455,-0.037056345,0.0052005365,-0.014935563,-0.0065830853,0.013926404,0.025753755,-0.00505589,0.0050054323,-0.0074005043,0.00094608724,0.02061377,-0.013199809,-0.007757074,-0.018111052,0.0149221085,-0.04628679,0.012439575,0.010057959,0.022026593,0.011349683,0.008080006,0.01322672,-0.0004961702,-0.030597722,-0.00370698,-0.008598041,0.0037305271,-0.022551356,-0.0007539264,0.04077005,0.041119892,-0.022107325,-0.0026170874,0.010212696,-0.006492261,0.014545355,-0.011235312,0.005129895,-0.006640271,0.016792417,0.0011546469,-0.009829216,-0.0014237561,0.0032108098,-0.04103916,0.035064936,0.022228424,0.0023294769,0.013610201,-0.011369866,-0.006387981,0.016213832,0.020304292,-0.021636384,-0.012130099,0.0038718095,0.00511644,0.009169898,-0.64155644,-0.018945292,0.013381458,0.011551514,0.030382434,0.012109917,0.01467991,-0.00028929245,-0.026978202,0.033746302,-0.01755938,0.008389481,0.017667022,0.00035383663,0.016038911,-0.009741755,0.0035926085,0.0067277313,-0.0044033,0.013738028,-0.021488374,0.0041745575,0.0049886126,0.025377003,0.028256472,0.023062663,0.016388753,-0.00806655,-0.02064068,0.00069211534,0.009109348,0.02761061,0.011558242,-0.01568907,0.039155398,-0.020842511,0.018312884,-0.009748483,-0.020263927,0.0325084,-0.026951293,-0.004198104,0.00842312,-0.0058430345,0.008604769,0.014962475,0.013273814,0.0029366547,0.0059204036,0.01977953,0.017196082,0.0069968407,-0.047013387,-0.020183194,0.03083992,-0.0029147896,0.027879719,-0.0018904925,0.016819328,0.0038179876,-0.016375298,-0.010293429,-0.033665568,-0.01948351,-0.01690006,0.016859695,-0.021596018,0.017263358,0.026574539,0.011147851,0.020694502,0.0009696343,-0.020156283,0.04451067,0.04098534,0.022470623,-0.0027432325,-0.016213832,-0.024085278,0.02761061,0.0074475985,-0.00039483374,0.005940587,-0.012385753,0.0048406026,-0.011773529,-0.03662577,-0.0089075165,-0.0041106436,0.0040669134,0.016967338,0.038751733,-0.006310612,0.010656727,-0.0074274153,-0.009169898,-0.025498101,-0.03775603,-0.013832215,-0.010703821,-0.0011823988,-0.018232152,0.0011353047,0.0033941404,0.050404165,-0.021596018,-0.038267337,0.0076427027,0.011934996,-0.016348388,0.0019359047,-0.008113644,-0.003777621,0.012076278,0.020183194,-0.026399618,-0.0025935404,0.003979453,-0.022793554,-0.016765507,0.018514717,0.01963152,0.023197217,-0.00062609947,0.00010554129,0.008295293,0.0055201035,-0.029521285,-0.025659567,0.0014918745,0.027422233,0.0020115916,-0.005382185,-0.007743619,-0.004558038,-0.000111743415,0.018285973,-0.004780053,0.013859127,-0.030409345,-0.024906062,-0.014128236,-0.020035183,-0.0029618838,0.020707957,-0.03455363,-0.008483669,0.011517876,-0.04650208,-0.005079437,-0.0132872695,-0.020263927,-0.019335499,0.020600313,0.01571598,0.0070506623,0.00545619,-0.007360138,-0.0073466827,0.0026423165,0.027691342,0.031270497,0.006011228,-0.018299429,0.0133478185,0.013650567,0.0069430186,0.024583131,0.000011648699,-0.03371939,0.005129895,-0.01186099,0.003081301,0.024623496,-0.039720524,0.014235879,-0.007992545,-0.0032394025,0.0009570198,0.00421156,-0.0031620336,0.01467991,0.009190081,0.0037002522,0.012796145,0.0068017365,-0.012042639,0.035307135,-0.018958747,0.039989635,-0.00043141577,0.008335659,-0.008598041,0.021892037,-0.011504421,-0.01118149,0.00770998,0.0147471875,-0.0026810009,0.0094322795,0.010643271,0.015070118,0.032535307,-0.013119076,0.008335659,-0.007931995,-0.0014178694,-0.011316044,0.03662577,0.013872582,0.013664022,-0.009539923,-0.0033436825,-0.0007253335,0.008416392,0.014774098,-0.01930859,-0.0004923858,-0.022672454,0.0067916447,-0.023641247,0.0068959245,0.008974793,-0.029844217,-0.0059742252,0.021098165,0.012257926,0.014208969,-0.009593745,0.0066436348,-0.0038146237,0.006485533,0.020035183,-0.008295293,0.033827033,0.0070910286,-0.008006,-0.0143973455,0.010279973,0.00851058,0.008342387,0.016604042,0.01586399,0.016038911,0.017572835,-0.017384458,0.022349523,0.00038978792,0.0016987522,0.016213832,-0.03285824,-0.011423687,-0.041119892,-0.015406505,-0.018501261,-0.030893743,-0.010179058,0.021797849,0.040500943,0.04739014,0.027718253,0.0056042,0.026561083,-0.014101325,0.016388753,0.013199809,-0.0023933905,-0.00325454,0.0112420395,-0.009835944,0.006936291,-0.019739164,-0.00034584745,-0.0067310953,0.025228992,-0.016819328,0.011786985,-0.024206378,0.0066268155,0.0106029045,0.006310612,-0.039989635,0.014639543,0.01640221,-0.006334159,-0.009129532,-0.0011823988,0.015083574,-0.011672614,0.03455363,-0.011854263,0.019052936,-0.0063005206,0.0068488307,-0.014760642,-0.0062500625,0.028310293,-0.010744187,0.02822956,-0.022833921,-0.029171443,-0.0044470304,-0.020855967,-0.03143196,0.017061526,0.020802146,-0.0042922925,-0.023466326,0.012506853,0.016361842,0.004006364,0.0115918815,-0.012130099,-0.012264654,-0.025780667,0.015850535,-0.0257403,-0.01287015,-0.005462918,-0.023264496,0.0020755052,-0.0054696454,-0.013509285,-0.018339796,0.096125826,0.010649999,-0.0025178534,0.011578426,0.0069026523,0.022510989,-0.010670182,-0.012513581,0.014868286,-0.007824352,-0.006882469,-0.01640221,-0.002704548,0.0073735937,0.0018467623,0.017209537,-0.009035343,0.00756197,0.014935563,-0.023331773,-0.00874605,-0.015783258,-0.0030123417,0.025901766,0.029521285,0.019335499,0.020425392,-0.004436939,0.006105416,-0.018070687,-0.002025047,-0.018824192,-0.0009334727,0.016065823,-0.0038280792,0.007366866,0.011544787,0.029171443,-0.00043057482,0.015325772,0.010481806,-0.00008577858,-0.0070775733,-0.00901516,0.012614496,0.019322045,0.008611497,-0.0035926085,0.010212696,0.00010201974,0.0063980725,-0.0120628225,0.0004970112,-0.022955019,-0.02002173,0.028552491,-0.00051467144,-0.013085437,0.012157011,0.002554856,-0.02603632,-0.017424824,-0.003683433,-0.010051231,-0.032427665,-0.025228992,-0.036464304,-0.007878173,0.0060616857,-0.021959316,-0.00530818,-0.0288216,-0.015029752,0.018393617,0.029305998,-0.00490788,0.024542764,0.0017012751,0.014208969,-0.009243903,-0.0049785213,-0.015527604,0.0055705616,-0.0044806693,-0.007979089,0.000068591326,0.01263468,-0.015016296,-0.0009856126,0.010380889,0.0012908834,0.025632657,0.04079696,-0.01618692,-0.0037406187,-0.005802668,-0.007333227,0.003532059,-0.033046618,-0.001804714,0.029117621,-0.03436525,0.041927222,-0.0008140555,0.013744755,0.009560106,-0.0030459804,-0.0018686274,-0.027825898,-0.012944155,0.0051769894,0.0023479783,0.020654134,-0.0045984043,0.030651543,0.021690207,-0.02170366,0.008631679,-0.0037473463,0.0057185716,-0.021434553,-0.04477978,0.048520397,0.005799304,-0.00735341,0.005257722,-0.004029911,-0.0036531582,-0.01337473,0.0029517922,0.009788849,0.0023177036,-0.02487915,-0.0072726775,0.00076485897,-0.010084869,-0.0224168,0.01272214,-0.014518444,0.0016920244,-0.02467732,-0.008160738,-0.020734867,-0.008349115,0.0030644815,-0.03573771,-0.0069564744,0.02384308,-0.03113594,0.018864559,0.0210578,-0.018137963,-0.010791281,-0.010105052,0.02022356,-0.00004346745,-0.01859545,-0.026493806,0.024098733,0.030032592,0.017868854,0.013805305,0.0099570425,-0.0051870807,0.0047228676,-0.003104848,-0.019470055,-0.0015894265,-0.01918749,-0.010609632,0.01411478,0.015002841,0.016523309,0.004857422,0.014208969,0.017196082,0.00086283154,-0.025430825,-0.019348955,-0.02662836,0.009042071,0.005762302,0.009391913,0.011053663,-0.007440871,-0.013253631,0.006714276,0.013576562,-0.004726231,-0.009042071,0.016792417,-0.024004545,0.037163988,-0.01630802,0.0008094302,-0.012325204,-0.014545355,0.015823625,0.000039604263,0.02965584,0.0120022725,0.011773529,0.0023715254,0.017074982,-0.017411368,0.021044344,0.011026751,-0.03312735,-0.0026776372,0.0070977565,-0.014262791,-0.004433575,-0.013677478,-0.01891838,-0.012614496,-0.008550947,-0.008813328,0.004537855,-0.008228015,-0.049246993,-0.022739733,-0.012977794,0.00058951747,0.0018131236,0.02428711,0.022053503,0.0055335592,-0.000098130266,0.01375821,-0.0022504262,-0.0074206875,0.007191945,0.053364366,-0.0009713162,-0.023493238,0.028875424,0.0030880286,-0.005584017,-0.018353252,0.015043207,0.008308748,0.017774666,-0.008604769,0.003807896,-0.019537332,0.04647517,0.0065830853,-0.030974476,-0.006482169,-0.023977635,-0.015433416,0.02965584,-0.0325084,0.009883038,0.019133668,-0.00741396,-0.0072726775,-0.01568907,0.018016864,0.0034395526,-0.024044912,0.001101666,0.01126895,0.013872582,-0.0021125076,-0.010138691,0.010643271,-0.010084869,-0.010179058,0.031297408,-0.019618064,-0.022564812,-0.012809601,0.0070708455,0.02164984,0.009580289,-0.011430415,0.0006357706,-0.009573562,-0.02138073,0.010293429,0.0041611018,-0.02268591,-0.012271382,-0.013098893,0.0028239652,-0.0030173876,0.02630543,0.0067445505,-0.00003421682,-0.009553378,-0.009311181,0.011349683,0.021098165,-0.012540491,0.015500693,0.008187649,0.004776689,0.0057723937,0.02719349,-0.010071414,0.00556047,-0.025901766,0.005230811,0.016348388,-0.047497783,0.032723684,-0.0057690297,-0.032158557,-0.019967906,0.011450599,0.013939859,-0.028687047,-0.008894061,0.034957293,0.017007705,0.0037944405,-0.00975521,-0.018312884,0.019227857,0.023304861,0.00615251,0.018837648,-0.013381458,0.017209537,-0.009566834,0.02111162,0.0013808669,-0.035307135,0.0023446144,0.0038146237,0.054683,0.018541628,-0.027502965,-0.0092573585,0.0015213082,-0.005614292,0.012486669,-0.0033251813,-0.025551924,0.013805305,0.005987681,0.0096677495,0.005987681,-0.002003182,-0.006145783,-0.0112084,0.001527195,-0.032024,-0.0055772895,-0.015931267,0.022672454,0.008194377,-0.016469486,-0.0039996365,-0.03137814,-0.025834488,0.0030476623,-0.014478078,0.02467732,0.011423687,-0.021636384,0.015662158,0.019994818,0.00027814964,-0.005415824,-0.0038886287,-0.025807578,0.020331204,-0.0079118125,-0.003908812,0.0004179603,-0.045775484,-0.01755938,0.024152556,0.033046618,-0.0015305589,0.025673022,-0.013193081,0.015541059,0.0046185874,0.012513581,0.014195513,0.0028761053,0.013119076,-0.018245608,-0.0014557128,-0.014208969,-0.019079845,0.008994977,-0.0042721094,0.0142224245,0.011390049,-0.009001705,0.0061491462,-0.019456599,-0.007952179,0.00049196533,0.016980793,0.008254927,0.0044234833,-0.01832634,0.0074745095,-0.0069564744,-0.00065931765,0.01630802,-0.017249903,0.009486102,0.006320704,0.017653568,-0.03081301,-0.011867718,0.0039222674,-0.014074414,-0.0142224245,-0.0041442825,-0.00071986724,-0.021178897,0.02822956,0.005799304,0.012708684,0.0009587017,0.013536195,-0.004749778,-0.0042956565,-0.017222993,0.019456599,-0.009573562,0.0009612246,0.029871127,-0.020142827,0.011107485,0.004732959,0.0062971567,-0.0008090097,0.010865286,0.23767729,0.0144108,-0.0077772574,0.050673272,0.024085278,0.02345287,0.03143196,0.015648704,0.010784553,-0.0073466827,0.025605746,-0.0018316249,-0.010152146,-0.009687933,-0.0073735937,-0.017209537,-0.031297408,-0.026655272,0.015218128,-0.03630284,0.012432847,0.017344091,0.0093179075,-0.004208196,0.017209537,0.0006689888,0.020506125,-0.020842511,0.018904924,-0.0094928285,-0.020721413,-0.0024135737,0.002633907,0.0065797213,-0.022430256,-0.00088890153,0.0043965722,0.0019207672,0.02049267,-0.003429461,-0.024771506,-0.00509962,-0.023197217,-0.014531899,-0.007757074,0.013832215,-0.0035757893,-0.030328613,-0.0035556061,-0.00047304362,-0.02719349,-0.021407641,0.02357397,0.013643839,0.002753324,-0.013771666,0.034230698,-0.014733732,-0.040743142,0.0056950245,-0.026090141,0.008571129,0.0030728914,0.012096461,-0.006889197,-0.023547059,-0.016092733,0.0050491625,0.02123272,-0.029440552,0.0057387548,-0.028606314,-0.007736891,0.018501261,-0.020183194,-0.0036497943,0.008012728,0.022228424,0.02182476,-0.025403913,0.019133668,0.007844535,0.014935563,-0.024973338,-0.009795577,-0.01628111,-0.0012564039,0.020358115,-0.0017172535,-0.010306885,0.0030274792,-0.0116524305,-0.013993681,-0.009681205,0.022040049,-0.0028710593,0.0093179075,0.0071246675,-0.0046892287,0.009035343,-0.017101893,0.01805723,-0.00062988384,-0.0015599927,-0.013307452,-0.0024690775,-0.011430415,0.009640839,-0.0015995181,0.009068982,0.010441439,-0.018945292,0.018380161,0.0019123576,-0.01556797,0.012271382,-0.0113295,-0.023210673,0.018393617,0.012964338,-0.006687365,-0.035899173,0.008302021,0.008880605,0.0036464303,0.00042889288,-0.005284633,-0.006038139,0.012035911,-0.04480669,0.022605177,0.025659567,0.005987681,-0.017895766,-0.026978202,0.0014405755,0.014612633,-0.021071255,-0.0033369546,-0.002131009,-0.02965584,0.006364434,0.003703616,-0.0020216834,-0.016711684,-0.022605177,0.014141691,0.006014592,0.006862286,-0.011544787,0.0021663294,-0.011322772,-0.0018652636,-0.0059035844,0.0401511,0.0029181535,-0.036249015,-0.00042573924,0.011248766,-0.007938723,-0.024152556,-0.009425552,0.022066958,-0.009728299,-0.027112758,0.005977589,-0.17147642,0.017599745,0.022080414,-0.021851672,0.0014615996,0.026695637,0.016496398,0.007043935,-0.024758052,-0.002724731,0.03573771,0.011248766,-0.023506694,-0.018931836,-0.007736891,-0.022134237,-0.02995186,0.021663295,-0.0057421187,0.009560106,0.0036027,0.00541246,0.017074982,-0.03641048,0.01755938,-0.005092893,-0.009264086,0.008860422,-0.008598041,-0.008032911,-0.0070708455,-0.0031098938,0.02849867,-0.0027600517,0.0051500783,-0.0016634315,-0.016859695,0.0021495102,0.00385499,0.0062265154,0.009062254,0.004635407,-0.0041711936,0.021259632,-0.034284517,0.033208083,-0.0039592697,-0.0013489102,0.005304816,-0.0020401846,0.010549082,-0.005409096,0.019792985,0.003156988,0.006357706,0.011484237,0.020950155,0.028068095,-0.025377003,-0.0019897264,0.0030981202,-0.015971635,0.0065427185,-0.028848512,0.022053503,-0.04475287,0.0016861376,-0.01162552,-0.014760642,0.021986226,-0.019873718,-0.002004864,0.0036699774,-0.013011432,0.015110484,0.022134237,-0.014639543,0.004235107,-0.02748951,-0.010737459,-0.025538469,0.028956156,-0.01467991,-0.0064014364,0.019550787,0.004228379,0.016038911,0.004181285,0.0054999203,-0.02763752,-0.006677273,-0.028041184,-0.00335882,-0.020115918,0.020425392,0.024650408,0.00676137,0.01541996,0.0027146395,-0.028525582,0.016913516,-0.00028719002,-0.022013137,0.015635248,0.011369866,0.008503852,-0.021259632,0.02396418,0.045479465,-0.016012,-0.0024842147,0.008349115,0.0131123485,0.045452554,-0.016657863,0.0065797213,-0.026278518,-0.031889446,0.0043427506,0.0018820829,0.02591522,-0.003281451,-0.02177094,-0.0100175915,-0.00937173,0.0048170555,-0.119161576,-0.032400753,0.0032629496,0.0076427027,-0.010010865,0.006845467,0.014330068,0.019200945,0.007736891,0.031189762,-0.016361842,-0.034742005,-0.010959474,-0.0011453963,0.012829783,-0.010999841,-0.005758938,-0.0051500783,-0.026090141,0.0007690638,-0.009237175,-0.032642953,-0.016859695,-0.012170466,-0.0090824375,-0.029252175,-0.005836307,0.012177194,0.024004545,0.011672614,0.0040971884,0.00013318806,0.0062668817,-0.025659567,-0.019564243,0.008934427,-0.041173715,0.0030173876,0.008739323,-0.036141373,0.010010865,-0.024448575,-0.015393049,-0.02007555,0.013098893,0.011686069,-0.019873718,-0.015527604,0.0051668976,-0.017801577,0.011571698,-0.005641203,-0.0011622156,-0.0038348068,0.009566834,-0.023950724,0.0023429324,0.034930382,-0.008483669,0.00082582905,-0.023977635,0.015191217,-0.021932404,-0.006387981,0.024085278,-0.004776689,0.006085233,-0.011544787,0.020882878,0.01171298,-0.009775394,0.010724003,-0.031889446,0.0037877127,-0.034149963,-0.011719708,-0.010966202,-0.016684774,0.0013009751,-0.021474918,-0.0058531263,0.0005886765,0.0041913767,-0.021730572,-0.0030257972,0.016752051,-0.0041240994,0.0037103437,-0.022322612,0.0032427665,-0.008503852,-0.0057152077,0.010481806,-0.005429279,-0.028660135,-0.011013296,0.013051799,0.0009839307,0.01242612,0.001449826,-0.02603632,-0.025794122,-0.042330887,0.025242448,0.0017912585,-0.03110903,0.011443871,-0.015366138,0.014276246,0.005658022,0.012802873,0.0034715093,-0.002428711,0.02138073,0.017088437,0.007191945,-0.0152719505,-0.022632089,-0.0006210537,0.0027617337,0.027274223,-0.0099570425,-0.018353252,0.0176132,0.018622361,-0.008295293,-0.00003303421,0.02339905,-0.0027600517,0.028740868,-0.0036867969,-0.013354546,0.024892606,-0.021784395,-0.012405937,0.012843239,-0.016388753,-0.013536195,-0.017586289,0.035414778,-0.0050222515,-0.003582517,-0.009008432,-0.021407641,0.026278518,0.0019073118,0.0025767211,0.011968634,-0.029736573,-0.00044991705,0.018164875,-0.004077005,-0.008820056,0.027301135,-0.0012109916,-0.02687056,-0.021246176,-0.024892606,0.028579403,-0.008564402,0.0030611178,-0.026022865,0.010266518,0.01936241,-0.010522172,-0.004399936,0.020990523,0.022228424,-0.02078869,-0.006303884,-0.00913626,-0.001752574,-0.023506694,-0.012042639,0.010286701,-0.014060958,0.010562538,0.024031457,0.0010671864,-0.009304453,-0.010340523,0.0025212173,-0.009553378,-0.02399109,-0.022201514,-0.00062315614,0.01776121,0.009425552,0.006334159,0.018339796,-0.022564812,0.009741755,-0.002102416,-0.0023917085,-0.008638407,-0.016375298,0.011073845,0.010515444,0.021286542,-0.010818192,-0.0034193695,0.0467981,0.0063509783,0.020115918,0.00981576,-0.008994977,-0.017815033,0.002374889,-0.026910925,-0.028068095,-0.007824352,-0.021273086,0.02559229,-0.0028861968,0.028364114,0.0061928765,0.007003568,-0.021932404,0.00056639087,-0.00018312044,-0.02369507,0.023049207,-0.000033086773,0.0034849648,0.016536763,-0.02487915,-0.0053451825,-0.0029131076,0.0038348068,-0.0022689274,0.018501261,-0.010683637,-0.0077974405,-0.015648704,-0.0021596018,-0.021151988,-0.000024532566,-0.025659567,0.002179785,0.014478078,-0.020869423,0.076696135,0.017505556,-0.006990113,-0.0012151964,-0.009997409,0.013341092,0.018043775,0.0073735937,-0.0023732071,0.00007158727,0.007017024,-0.015648704,0.016711684,-0.033853944,-0.05207264,-0.014518444,0.024811873,0.028417937,-0.006889197,-0.011887901,0.026534172,-0.009210264,0.012177194,0.01299125,-0.012459759,-0.019012569,0.0043494785,-0.0174921,0.0037271632,-0.05204573,0.007017024,0.0024825328,-0.017545924,-0.00007705355,0.0058934926,-0.019698797,-0.0063476143,0.007992545,0.0060179555,0.006340887,0.007844535,0.035656977,-0.029144533,0.0044503943,-0.01541996,-0.024959883,-0.034123052,0.001050367,-0.036464304]},{\"id\":\"010334d9-76d9-45b5-9416-6905cb5d6b1b\",\"text\":\"Boxes was the wrong size \",\"vector\":[-0.0053362916,-0.0039446447,0.017160356,-0.013093983,-0.018844808,0.0049118884,-0.0044973553,-0.024595633,0.024977267,-0.013357178,0.018607931,0.013205841,0.021397805,-0.00967244,-0.015949655,0.0036748692,0.017370911,0.021595202,0.009356605,-0.04590132,-0.016884001,0.006757548,0.0070273234,0.00026422375,-0.012791308,0.005665286,0.02955687,-0.019489637,0.0009310546,-0.003082679,0.0069023054,0.0071391817,-0.010369908,-0.0035761707,-0.03316265,-0.011047637,0.013554575,-0.003918325,0.007902449,-0.012310976,0.013383498,-0.01086998,0.003507082,0.0018341446,-0.018055221,0.019542277,0.005747535,-0.0043229884,-0.022740103,-0.008369621,0.025780013,0.032820497,-0.020989852,-0.0020052218,0.0067970273,-0.012916326,0.016423408,0.00007685107,0.014173085,0.0074484367,0.0012279721,-0.0050862557,-0.008264343,-0.008382781,-0.011514809,-0.0012534693,0.019805472,-0.013100563,-0.016739242,-0.008126166,0.009948795,0.020950373,0.002228938,0.011172655,0.014383642,-0.002663211,-0.010198831,0.004148621,0.002108855,-0.021160929,0.015489063,-0.02291118,-0.0038327866,0.0035992004,0.022832222,0.01934488,0.0029872705,0.011949082,0.0131663615,0.008178804,-0.005912032,0.0136598535,-0.00020356537,-0.0038788456,0.003247176,0.0192396,0.015120589,0.030846529,-0.0060863993,-0.02296382,-0.0025793172,0.018844808,-0.042163942,-0.015857536,-0.015331146,-0.0019640974,-0.017897304,-0.0043657576,-0.0024197549,-0.031741396,0.0010618299,0.013646694,0.019805472,-0.014673157,0.025003586,-0.010902879,-0.0049250484,-0.01090946,0.002781649,-0.0070404834,0.0023490211,0.010113292,0.022082115,-0.010014594,0.0069746845,-0.004398657,-0.03916351,-0.005800174,-0.009573741,0.011416111,0.029293675,0.02292434,0.017357752,-0.0063166954,-0.016094413,0.0067904475,-0.0061324583,0.008481479,-0.0023391512,-0.020858254,0.005309972,0.034320712,-0.00721814,-0.004040053,-0.015186388,0.023240175,0.009757978,0.013469037,-0.0019871271,-0.012534692,0.0062410263,-0.0066621397,0.014344162,-0.004359178,0.030399095,0.008757835,-0.02056874,0.0064186836,-0.020200266,-0.035005018,0.0065996307,0.022134753,0.023227016,-0.005849523,-0.0031205132,0.008034047,0.011297673,0.00481977,-0.000004735722,-0.010475187,-0.0047868704,0.021068811,-0.016252331,0.03366272,0.019529115,0.008218284,0.007428697,0.009836937,-0.018989565,-0.0013069308,-0.028635684,0.012337295,0.017291954,0.0148310745,-0.011047637,-0.012258337,-0.0027438146,-0.029346313,0.038163368,-0.0012131674,0.014936352,0.009159208,-0.017055077,-0.010185671,-0.689362,-0.03311001,0.003497212,-0.019581756,-0.00543499,0.046138193,0.011889863,0.006454873,-0.00543499,0.0014253688,-0.0289252,0.020081827,0.004286799,-0.00721814,-0.015804898,-0.022779582,0.021226728,0.0003553141,0.015844377,0.021424124,0.0011218714,0.016436568,-0.004457876,0.0136598535,0.0078103305,-0.00788271,-0.005244173,-0.013817771,-0.0024921338,-0.0047309417,-0.01747619,0.039979417,-0.0022618375,-0.0022240032,0.0699574,0.0067246486,-0.018028902,0.026424842,0.015423264,0.011751685,-0.026253765,-0.026069527,0.012771568,-0.014975832,-0.016541846,-0.0031616376,0.011271353,0.020831935,-0.0018999435,-0.02113461,0.00904735,-0.0052211434,0.0016194757,-0.0072313,0.0019229731,0.0040104436,0.01506795,0.0313466,0.008343302,-0.020739816,-0.0011613508,0.00084387104,-0.01684452,-0.010060653,-0.0062377364,-0.007283939,-0.026201125,-0.009869836,0.033031054,-0.006214707,0.0067345183,0.006987844,-0.02654328,0.03439967,0.00421113,0.035005018,0.011949082,-0.024503514,-0.008481479,-0.015633821,0.015502223,-0.006454873,-0.023279654,-0.0022256481,0.03311001,0.008270923,-0.01327164,0.020121306,-0.012811048,-0.0047210716,0.033241607,0.0055797477,0.0061916774,-0.009823777,0.015199548,0.007527395,-0.012916326,0.02533258,0.029162077,-0.007382638,-0.0061489083,0.025727373,0.014659997,0.011225294,-0.004092692,0.0015742389,-0.005783724,0.013791451,0.03508398,-0.012350455,0.022068955,0.00043303907,-0.011146335,0.013475616,-0.01448892,-0.028056655,0.032662578,-0.008514379,-0.016660284,-0.00041864556,-0.0012106999,0.0036452597,0.0127649885,-0.020779295,-0.0027635542,0.01621285,-0.00030226374,0.0074615963,-0.010797601,0.0058166236,-0.01087656,-0.005204694,0.025016746,-0.013212421,0.013015024,0.004997427,0.008540698,-0.008251184,0.007711632,-0.009468463,-0.02405608,-0.003434703,-0.004750681,-0.0018193398,0.021016171,-0.007178661,-0.006451583,-0.014133606,-0.0027471045,0.039637264,-0.008297242,-0.026911754,-0.015804898,-0.006408814,-0.003316265,-0.016502367,-0.015291667,-0.0018407245,0.0033458746,-0.021213569,-0.003743958,0.022713784,-0.037110586,-0.0005712168,-0.0054448596,-0.013100563,0.037531696,0.013396658,0.0076853125,-0.018936926,0.01029095,-0.00905393,-0.00018207791,-0.01801574,-0.011600348,0.012843947,0.003753828,-0.007909029,0.014317842,0.007158921,0.02237163,0.009192107,-0.016015455,0.013219001,0.028635684,0.0155417025,-0.0031007736,0.0109423585,-0.032873135,0.01569962,0.0042440295,-0.014817914,0.0008208414,-0.005550138,0.008481479,-0.011863544,0.0093697645,0.0241482,-0.0034708926,0.0064186836,-0.006201547,-0.0020167367,0.010429127,0.011699046,0.03424175,-0.029372633,0.006468033,-0.013923049,0.0044940654,0.03745274,0.010435707,-0.0019854822,-0.00034174309,-0.021226728,0.022397948,0.021568883,0.0022256481,0.038163368,0.0028606076,-0.026253765,-0.037136905,-0.032662578,0.037636977,0.0016531976,-0.009159208,-0.0066720094,0.027582902,0.012633391,0.041426994,-0.018857967,-0.0037143484,0.016265491,0.005497499,0.002965886,0.011277933,-0.024437714,0.03921615,0.008955232,0.008573598,0.008047206,0.008955232,0.016028615,0.0026911753,0.007652413,0.01388357,-0.015173228,0.028293531,0.011166075,-0.030293819,0.0049809776,0.0003637446,-0.02538522,-0.03371536,0.00483293,-0.00015503868,-0.025424698,0.015725939,0.0065042223,0.01801574,0.021884717,-0.001266629,-0.022095274,-0.008731515,-0.005481049,0.01508111,-0.0009664215,-0.013712493,-0.013304539,0.01140953,0.012014881,-0.0037044785,-0.004517095,0.0028096135,-0.031162363,0.002469104,-0.00056504813,-0.0069220453,-0.00028519714,0.025529977,0.01925276,-0.004454586,-0.022016315,0.018450014,-0.0100474935,0.0072641997,0.017581468,-0.018831648,0.007369478,-0.0077642715,0.018476333,0.009310545,0.014238884,-0.017212994,-0.0033146201,0.0029971404,0.016805042,0.020608218,-0.010040914,0.010501506,-0.010889719,0.012383355,-0.0029839806,0.011297673,0.013093983,0.014541559,0.019700194,-0.017252473,-0.003444573,-0.01144901,-0.0120741,0.01692348,-0.003977544,-0.0038821357,0.036321,-0.008270923,-0.0015413394,-0.011541129,-0.018765848,0.009797458,0.0012715639,-0.043216724,-0.0102317305,-0.02839881,0.007816911,0.07848494,0.029477911,0.0039709643,0.007422117,-0.005685026,-0.014725796,-0.0115608685,-0.0088762725,0.020160785,0.017805185,-0.006076529,-0.012376775,-0.00048732318,0.0022437428,0.013219001,0.010797601,0.007889289,-0.015436424,-0.0039545144,-0.04061109,-0.01754199,0.019226441,-0.01083708,0.015989134,-0.0032998153,-0.0018505943,-0.00095572916,0.016594484,0.0058166236,-0.00907367,-0.0074418564,0.0055106585,-0.0028227733,0.0070404834,0.0012296172,-0.004938208,0.015620661,-0.01931856,0.017884143,0.012264917,0.015949655,0.008198544,0.0124557335,-0.005303392,0.0029872705,-0.007343158,-0.001596446,0.009317125,0.01746303,-0.0034083836,0.046059236,-0.010369908,-0.009514523,-0.013015024,0.029714787,0.010146192,-0.017199835,-0.014383642,-0.0037011886,0.005846233,-0.00724446,-0.008981551,0.018121019,-0.018502653,0.0029987853,-0.03379432,-0.03018854,0.0029280514,-0.02653012,-0.025516817,-0.01864741,-0.017910464,-0.006744388,0.008198544,0.016462887,0.015791738,0.03492606,-0.009804037,0.009343445,-0.0018160499,0.009725079,-0.019358039,-0.014962672,-0.024332436,0.0007279004,0.022016315,0.0065667313,-0.022674304,-0.004579604,-0.017120875,0.02897784,0.012758409,0.012126739,-0.014002007,0.02776714,-0.01996339,-0.001149836,0.02359549,-0.0003551085,-0.011751685,-0.0027849388,-0.0030234598,-0.025108865,-0.0026220866,-0.017134037,-0.029214716,-0.00041843994,-0.0052145636,-0.018423695,-0.0025529978,0.013554575,-0.03313633,-0.016449727,0.005073096,-0.00022145445,0.00023872667,0.0045072255,0.029872704,0.0005872553,-0.0007702585,0.006280506,-0.027398666,0.0023769855,0.009205268,-0.024411395,0.0042045503,0.008698616,-0.059271656,-0.010705482,-0.0012740314,-0.003803177,0.01029095,-0.007731372,-0.0028277081,-0.031109724,-0.009784298,0.00603705,0.0156733,0.011337152,0.003081034,-0.045690764,0.0012921261,0.00423416,-0.023937643,-0.032846816,-0.023161216,-0.0088762725,0.0033573892,-0.015883857,0.017502509,0.007297099,-0.0030892587,-0.021253048,-0.014975832,-0.016265491,-0.0481648,-0.00072995666,-0.00900787,0.019213282,0.044453744,0.04226922,0.018844808,0.003806467,-0.0059646713,-0.012567592,-0.012725509,-0.005681736,-0.0037834372,-0.037031624,0.0078563895,0.012817628,-0.0075208154,0.017436711,0.0133177,0.004714492,0.011863544,0.000049272076,0.009113149,-0.0006522317,-0.01145559,0.007369478,-0.017989421,0.009725079,-0.0043887873,-0.011120016,-0.0020200266,0.009106569,0.018357895,-0.022845382,-0.032215144,0.0252931,-0.028240891,0.0033985137,-0.0069615245,-0.006994424,-0.00035490288,-0.016555006,-0.008244603,0.0180947,0.017410392,0.005803464,0.011613508,-0.009961955,-0.016805042,0.0035992004,-0.010468607,-0.0072049806,0.008369621,0.0018785589,-0.028135614,-0.0109423585,-0.023305973,-0.0040301834,-0.026095847,0.0006489417,0.02296382,-0.00605679,0.019068524,-0.014620517,-0.012284656,0.0031863123,-0.01638393,0.014738956,-0.0019542277,0.026609078,0.021568883,-0.017594628,-0.018568452,0.012389935,0.018963246,-0.020437142,0.0061916774,0.03137292,-0.0069549447,0.029741107,-0.005059936,-0.013324279,-0.024990426,-0.035557732,0.023885004,-0.019660715,0.0024345596,0.0014261913,0.002653341,-0.028240891,0.008619657,-0.023806045,-0.011238454,-0.007981407,-0.015028471,-0.019687034,0.01090946,-0.016015455,0.016436568,0.023937643,-0.019200122,-0.0065371217,0.002656631,0.001538872,-0.017923623,0.0070404834,0.011146335,0.0043196985,0.016673444,0.013416397,0.0193054,-0.015239027,0.005313262,-0.019594915,0.024529833,-0.024595633,-0.019015884,0.007191821,0.0037834372,0.01025805,0.004895439,-0.017068237,-0.024503514,0.006451583,-0.010067233,-0.0022009735,0.017752545,-0.0038920054,-0.025622096,-0.03192563,0.003743958,-0.027609222,-0.016555006,0.00783007,-0.03258362,-0.02600373,-0.0039972835,0.005316552,0.017607788,-0.0071391817,-0.010323849,0.027556583,0.020700337,-0.017173516,0.009428984,0.0044249767,-0.0042210002,-0.031136043,-0.0090276105,-0.02112145,-0.024371916,0.016805042,-0.021279367,-0.00023399737,-0.02405608,0.003197827,-0.0031501227,-0.005977831,-0.011416111,0.046690907,0.005500789,0.0077050524,-0.036452595,-0.02120041,0.0040762424,0.004155201,0.017226154,-0.012330716,-0.026648559,-0.023345454,0.020884573,0.020397661,0.020884573,-0.01941068,0.007862969,0.01995023,0.028714644,-0.013153202,-0.016778722,-0.033610083,0.0026434711,-0.017752545,-0.002656631,0.0012641615,0.023634968,0.014173085,0.0054020905,0.005678446,0.023411252,-0.012732089,-0.0012921261,0.0006275571,0.0023210566,-0.02405608,-0.0099553745,-0.01505479,0.008402521,0.007586614,-0.02299014,-0.0024477195,-0.014094126,-0.017607788,0.00042234675,0.0035136617,0.0148310745,0.024806188,0.03197827,-0.0017864404,0.044401105,-0.0002817016,0.0098303575,-0.009468463,-0.015857536,-0.021805758,0.014094126,-0.008520959,-0.011784584,-0.013607214,0.0008130278,0.008902593,0.02181892,0.0038426563,0.014317842,0.0037702776,-0.00724446,-0.00016768441,0.013738812,0.011245034,-0.0012748538,0.021976836,-0.015581181,-0.015844377,-0.013344019,0.03442599,0.00047580837,-0.030241178,-0.00092776463,-0.0014483985,0.01024489,0.005563298,0.014278363,0.008020887,-0.0053626113,0.033346888,-0.0036452597,-0.010343589,0.0240824,0.023424411,-0.0050303265,-0.0038360765,0.005191534,-0.035715647,0.0035761707,0.00604034,-0.025174662,-0.030609652,0.0031155783,0.023661288,-0.020779295,-0.005915322,0.01086998,0.00043632902,-0.022003155,0.02359549,-0.017305113,-0.01985811,0.013199261,0.0049316282,-0.018502653,0.0026829506,-0.0090276105,-0.009514523,-0.020818776,-0.020739816,-0.009310545,-0.019476477,-0.032715216,0.007941929,0.025148343,-0.015923336,-0.017713066,0.22719048,0.0112516135,0.0040532127,0.028451448,-0.0014788305,-0.009988274,0.020950373,-0.015120589,0.00096806645,0.017581468,-0.009751398,0.019173803,-0.00020027543,0.0031238033,0.009330286,-0.018357895,-0.03368904,-0.02474039,-0.015396945,-0.0045730243,0.015410105,0.010948938,0.006576601,-0.010600205,0.0351103,-0.012797887,-0.007915609,0.020463461,0.009797458,-0.0026862405,-0.012350455,-0.0070997025,0.0059482213,-0.0063726245,-0.018805329,0.00049390306,-0.0067081987,0.010100133,0.008159065,0.0131334625,0.0107581215,-0.009547422,0.00725762,-0.012192538,-0.04719098,-0.0004799208,-0.005007297,-0.008066947,0.005356031,0.020752976,0.012403094,-0.009711919,0.005842943,0.040347893,-0.016397089,-0.00541525,0.0006723826,-0.010409388,0.0059449314,-0.012738669,0.00039993398,0.010685743,-0.00842884,0.016765563,-0.010784442,0.025569456,-0.010804181,-0.004523675,-0.007198401,-0.023648128,0.007507656,0.019371198,0.00025312018,0.013324279,-0.0205819,-0.02776714,0.013528256,0.023792885,0.019673875,0.01808154,-0.001753541,-0.0119622415,-0.0052737826,-0.010652844,-0.013988848,-0.033504806,0.014502079,0.020384502,0.01211358,-0.02471407,0.013120303,-0.013936209,-0.00017446993,0.012245177,0.011001578,0.030241178,-0.0055205286,0.034268074,-0.01751567,0.001751896,-0.040242612,-0.010804181,0.007902449,-0.016265491,-0.015633821,0.00079205434,-0.0104488665,0.028293531,0.019068524,-0.015173228,-0.016357608,-0.02779346,-0.008527539,0.018436855,0.0384792,-0.0026484062,-0.01638393,-0.005207984,-0.006935205,0.0029264065,0.003678159,-0.02471407,0.029346313,0.028451448,0.0054053804,-0.0062903757,-0.009981695,0.019910749,-0.0066720094,-0.027898738,0.011817484,-0.010784442,0.00028581402,-0.014541559,0.0016819846,0.00087101304,-0.010652844,0.009461883,-0.0047770008,0.02173996,-0.007093122,0.031004446,0.014015168,-0.00030884362,0.018844808,-0.00028416904,0.0313466,-0.020068668,-0.0034182533,0.0003820449,-0.026253765,0.0076392535,-0.006165358,0.009929055,-0.0069812643,-0.0053461613,-0.0031451879,-0.027661862,0.014712636,0.012488633,-0.02359549,-0.002344086,-0.0019131033,-0.01744987,-0.0039512245,-0.011277933,-0.17012966,0.032320425,0.025740534,-0.019713353,0.012771568,-0.0013209131,0.018239457,0.009981695,-0.026911754,0.010922619,0.007172081,0.011238454,-0.020713497,-0.0017864404,-0.005971251,-0.02887256,-0.0021269498,-0.010988418,0.025148343,0.015568022,0.019976549,-0.0021384645,0.02050294,-0.0038920054,-0.014975832,0.018357895,-0.0007879419,0.013988848,0.017291954,-0.007915609,-0.008553858,-0.03905823,-0.010600205,-0.007527395,0.00013262592,-0.00845516,-0.011830644,0.008238023,-0.008942071,0.008540698,-0.00011514809,0.031241322,-0.02229267,0.009836937,-0.0039939936,0.02646432,0.021424124,0.016620804,-0.027582902,-0.01755515,-0.0042999587,-0.027898738,0.0062936656,0.012468893,0.021292526,-0.0024296248,0.012021461,0.009777718,-0.023871845,-0.029083118,-0.017778866,-0.007731372,0.017002437,-0.015291667,-0.02592477,0.017792026,0.0051750843,-0.015462744,-0.00012152236,0.013580895,0.010402808,-0.010962098,0.010501506,-0.013422977,-0.001141611,0.01748935,-0.016962958,-0.00056052447,0.011903022,0.002001932,-0.013765132,0.02887256,-0.015910177,0.003980834,-0.003204407,0.022095274,-0.0045763142,0.008619657,0.0011950727,-0.007060223,-0.013212421,-0.031241322,-0.011784584,-0.015423264,0.019660715,0.021279367,-0.014923193,0.0035268215,0.019173803,0.0060107303,-0.015331146,-0.0117780045,-0.009172368,0.01145559,0.037110586,0.014331003,-0.01267945,0.014002007,0.018963246,-0.0047375215,-0.016765563,-0.005928482,0.01025147,0.013396658,0.019476477,-0.0017124166,0.01269919,-0.0144626,0.03755802,-0.029662149,0.044295825,0.004355888,-0.028214572,0.026174806,0.012870267,-0.0043098284,-0.09485571,-0.020937214,-0.00021569704,0.019673875,-0.00842226,-0.0029198267,0.00029074893,0.030504374,-0.007132602,0.033952236,-0.013219001,-0.007941929,0.0048066103,-0.008020887,0.010152772,0.009981695,0.020989852,0.0016145407,-0.012968965,0.013396658,-0.013330859,-0.0018933637,-0.0056554163,0.00038985853,-0.012291236,-0.012501793,-0.029714787,-0.003441283,0.018871127,-0.015212708,0.034715503,0.0030629393,0.0045730243,0.0054415697,0.0064252634,0.0043164087,0.0042571896,-0.00048526697,0.016962958,-0.032794178,0.007540555,0.004415107,-0.009751398,-0.025411539,-0.013324279,-0.001934488,-0.021239888,0.02903048,0.0056981854,-0.006928625,-0.013594055,-0.0020118016,-0.024253478,-0.018305257,0.02539838,-0.0012468894,0.01754199,0.006099559,0.016805042,0.01269261,0.011705626,0.015317986,-0.018884286,0.029741107,-0.0008693681,-0.013344019,-0.007553715,-0.018936926,0.019581756,-0.015489063,0.0056981854,0.017765706,-0.021858398,0.01323874,-0.024661431,0.020187106,-0.032715216,-0.012870267,0.004165071,0.0050500664,-0.0074352766,-0.0063002454,-0.0046585626,-0.016147053,0.01575226,0.013291379,-0.02104249,0.010146192,0.010027754,-0.0128571065,-0.007297099,0.008685456,0.026859114,-0.018673731,-0.022832222,0.020752976,-0.0065009324,0.00020654689,-0.0047210716,-0.018752689,-0.02048978,-0.027661862,-0.047427855,0.040163655,0.017607788,0.0010042558,-0.01086998,-0.010646263,-0.013620374,-0.034636546,-0.020121306,0.007553715,-0.026516961,-0.0027240748,-0.018265776,-0.024635112,-0.020371342,-0.019042205,0.025503658,-0.0011309187,0.005082966,0.0036485496,-0.0046717227,-0.017620947,0.0036485496,-0.007612934,-0.0076392535,0.0017091266,-0.006862826,0.017923623,-0.0018390795,-0.0025151633,0.0037604077,-0.029635828,-0.0040729525,0.007981407,0.016686603,-0.015989134,-0.018765848,0.014633677,0.004283509,-0.032399382,-0.0041420413,-0.020358182,0.0120412,-0.007297099,-0.023490211,-0.009376344,-0.008244603,0.003964384,0.023885004,0.006935205,0.009488203,0.029056799,-0.022450589,-0.028688325,-0.021621522,-0.011402951,0.015120589,0.009540842,0.02056874,-0.022213712,0.031557158,0.0023967254,-0.011646407,-0.016607644,0.022161072,-0.0064384234,-0.017502509,-0.008488059,-0.0067279385,-0.023950802,-0.010152772,-0.007119442,0.014765276,-0.00846174,0.010021174,0.033241607,0.0023194116,0.0028458028,-0.010054073,0.0192396,0.0053823506,0.011784584,-0.024345597,-0.0030892587,0.011837224,0.0003477061,-0.015791738,0.024279797,-0.003938065,0.023279654,-0.028240891,0.0012764989,-0.026714357,0.010027754,0.008330142,0.03558405,0.004474326,0.020910893,0.017160356,0.02592477,-0.0047868704,-0.004089402,-0.0047934507,-0.03374168,-0.029398954,0.0031040634,-0.009751398,-0.04097956,0.0026253765,0.014396802,0.019976549,-0.008849953,0.015462744,0.017357752,-0.014423121,0.0217268,0.0072707795,-0.013936209,-0.028082974,0.007737952,0.021503083,0.0144626,0.018278938,-0.010343589,0.015831217,0.016686603,0.0154495835,-0.014107286,0.011718785,-0.0062508965,-0.005740955,-0.009396085,-0.0048033204,0.0010305754,0.007468176,0.015594342,0.00050911907,0.023556009,-0.0057179253,0.04040053,-0.0035531411,0.005000717,0.0025809621,-0.004994137,0.005125735,0.027451305,0.0035301114,0.0041190116,-0.03368904,-0.003077744,0.0022684175,0.005267203,-0.022068955,-0.012712349,0.008889433,0.000466761,0.003018525,0.0036419695,0.013205841,0.0192396,-0.0037143484,0.024398236,0.011738526,0.00005798529,-0.0053231316,-0.008409101,0.0015026826,-0.017252473,-0.01506795,-0.0039479346,-0.013153202,-0.030004302,-0.002233873,0.013015024,-0.023753406,-0.028293531,0.01752883,-0.0066062105,-0.009192107,-0.005905452,0.035899885,-0.015554862,-0.022174232,-0.017686747,-0.011547709,-0.005536978,-0.028214572,-0.02708283]},{\"id\":\"e139b53e-4b00-4c42-a2ef-e878bfaf7a77\",\"text\":\"How much do I get paid for each post?\",\"vector\":[-0.0011698359,-0.001391506,0.009921762,-0.037020534,-0.036632206,-0.002397921,-0.025513103,-0.0077082966,-0.008607921,-0.0066339243,-0.0098894015,0.020568402,-0.024594061,-0.02273009,0.0115915695,-0.0015387469,0.026004983,0.020503681,-0.01852321,0.007714769,-0.024438731,0.009785848,-0.025280107,0.020736678,-0.014109225,-0.019934135,0.022600649,0.024153957,0.0116886515,-0.0059964205,0.024128068,0.00088182656,-0.015403649,-0.01265947,-0.015584868,0.017345285,0.007041668,0.019752914,0.014432831,0.016736906,0.020646067,0.012471778,-0.0018574989,-0.0142775,-0.01647802,-0.010614279,-0.0010921705,-0.049214013,0.0002793125,-0.0008332856,-0.01470466,-0.0149506,-0.0490069,-0.009190412,-0.025694322,0.0149247125,0.029461097,0.019506974,-0.009242189,0.009326327,0.020814342,0.0042521837,-0.019157479,0.018134885,-0.03251594,-0.025590768,-0.0045401934,0.017578281,-0.013293738,-0.00036850641,0.014406943,0.0033460867,0.018290216,-0.018937428,0.020607235,-0.016206192,0.0049479366,0.0048087863,-0.006705118,0.0155330915,0.01794072,0.0017134942,-0.014161002,0.032645382,0.032205276,-0.0073652742,-0.0036049716,0.022082878,-0.015364816,-0.005129156,-0.0015225665,0.023959793,0.038237292,0.0013809889,-0.0028380253,0.020296574,-0.016089695,0.033422034,0.018510267,-0.012931298,-0.0073329136,0.0035920274,-0.03261949,-0.0036826371,-0.00045749807,0.0052424185,-0.004326613,-0.018859763,0.039712936,-0.00796071,-0.019882357,0.029098658,0.008103096,-0.016944014,-0.0042036427,-0.017448839,0.003724706,-0.0066857017,-0.0053233197,-0.01605086,0.043492656,-0.00692517,0.0364251,-0.0018866234,0.031894613,0.0022700967,-0.0014327659,-0.022160543,0.0066792294,0.0053395,-0.0135137895,0.0071581663,0.013267849,0.010931413,-0.023416135,0.025073,-0.0060643777,-0.0044431114,-0.029849425,-0.0059058107,0.040463705,0.01623208,0.014044504,0.0015686804,0.0031066183,0.014575218,0.0070481403,-0.0008680733,-0.0023946848,-0.024335176,-0.008407285,-0.012232309,0.012976604,0.018562045,-0.011151466,0.015934363,-0.0038185515,0.01598614,-0.010264785,-0.049783558,-0.010323034,0.022160543,0.009967067,-0.01333257,0.010200064,0.03249005,0.016193248,-0.006439761,-0.023092529,0.003847676,-0.017189955,0.005436582,-0.012866577,0.018160773,0.0022409721,0.039609384,0.007947765,-0.014406943,0.015377761,-0.026108539,0.0006245597,0.021047339,-0.0029140727,0.011086744,-0.0043622097,-0.011565681,0.011843982,-0.014083336,0.004456056,-0.0060643777,-0.0074429396,0.018989203,0.0050773793,0.012381168,-0.65197563,-0.015235374,0.01763006,-0.0036308602,0.0036308602,-0.005274779,-0.010251841,0.0026454797,-0.027933676,0.002608265,0.00040329408,-0.011598041,-0.0032765116,0.0044463472,0.019261034,-0.025836708,0.022963086,-0.009073914,-0.016037917,0.0010193591,-0.04139569,-0.0032668032,-0.009967067,0.029461097,-0.017811278,-0.00014279118,0.0021099115,-0.030677855,-0.03150629,0.029616429,-0.007287609,0.029461097,0.012756552,0.023351414,0.044346977,0.0008842536,-0.0067892554,0.005381569,-0.023325525,0.028813886,-0.041110914,-0.01192812,-0.0020371003,-0.011792205,-0.011080272,-0.020723732,0.012154644,0.0078053786,0.0449683,0.019843524,-0.018652653,0.02733824,-0.010970246,-0.010141814,0.011371518,-0.010361866,0.02376563,0.0043330854,0.004488416,0.015520147,-0.009656405,-0.005158281,-0.034897678,-0.019390475,0.003912397,-0.0065303706,0.0063135545,0.013021909,0.016918125,-0.0075335493,0.007876572,-0.0032700393,0.0070610843,0.012911882,0.0011868252,0.012381168,0.008167817,-0.014290445,-0.009145108,-0.013306682,-0.008886223,-0.00909333,-0.015869642,0.021940492,0.011132048,0.008588505,-0.011319741,-0.030004755,0.01717701,0.018458491,0.0007507661,0.043984536,0.002451316,0.000074126016,-0.022678314,0.010996134,-0.011701596,0.012931298,-0.006879865,-0.0060061286,-0.007546494,0.009229246,-0.00713875,0.005494831,0.034664683,-0.008789141,-0.027597126,-0.004388098,0.016400356,-0.019584639,0.012245254,0.007792434,-0.009073914,-0.011559209,-0.014173946,-0.025888486,0.0022587704,0.018380824,-0.009520491,-0.012109339,0.01659452,0.029305765,0.024684671,-0.013125462,-0.004003007,0.0037117617,0.0049285204,-0.0030645495,0.013772675,0.0033752113,-0.0026422436,0.00286715,0.0020824051,-0.015351872,-0.020024743,-0.013106046,0.015740199,-0.0085755605,0.009895873,-0.027933676,-0.0241669,0.0068086716,-0.000076451935,-0.010012371,-0.016128527,-0.023390247,0.010012371,0.0021358,-0.0010088419,0.013798563,0.0037311781,-0.015662534,-0.0092810225,-0.017422952,-0.030185975,-0.012510611,0.0046081506,-0.013371403,-0.032567713,-0.0036632207,0.011028495,-0.0011674089,-0.00991529,0.0068539768,-0.035829663,-0.0145104965,0.0039771185,0.0024383718,0.0065918555,-0.0036276241,0.006090266,-0.0036405683,-0.0043816264,-0.0062035285,0.01162393,-0.004588734,0.01955875,0.0000074391473,-0.019002149,-0.018717375,-0.0091839405,0.024904724,0.01616736,-0.0040288954,0.024063347,0.008213122,-0.022807756,0.052864287,0.001863971,0.006426817,0.009287494,0.00031126858,0.0028655317,0.020581346,0.014821158,-0.017720668,0.030030644,-0.014743493,0.011242075,0.01089258,-0.00029245898,0.0062747216,0.0059575876,-0.018199606,-0.011604514,-0.037331197,-0.0049932417,-0.013720897,0.028995104,0.013824452,0.01592142,-0.006009365,0.013902117,0.016659241,0.0010306854,0.004737593,-0.03267127,0.009494602,0.0018024858,0.034069248,0.0030677856,0.0042424756,0.017785389,-0.014782325,0.0049900054,-0.00039803548,-0.002660042,0.009164524,0.012374696,-0.0228207,-0.022859532,-0.0031923738,0.005595149,0.011889287,0.021409778,-0.008038375,0.005475415,-0.0030629314,0.010756666,-0.00014451034,0.002833171,0.008763253,0.012025202,-0.007035196,0.0073911627,0.006815144,0.016037917,-0.0059931846,-0.0033719754,0.01162393,-0.00016989319,0.008620866,-0.011966952,-0.004514305,0.00064074004,0.007041668,-0.003912397,0.004747301,-0.010018844,0.010361866,0.02992709,0.018769152,0.0071646385,-0.009041553,0.023817407,0.022587704,-0.011041439,0.0121417,0.015597813,-0.021966381,-0.023234917,-0.013474957,-0.00035697795,-0.015287151,0.010491309,0.008057791,0.0029383432,-0.02392096,0.009941178,0.02666514,-0.018769152,-0.013449068,0.009857041,0.013002492,-0.01302838,0.006187348,0.01546837,-0.033473812,0.019390475,0.0028428794,-0.0057375357,0.02974587,-0.003886509,0.00048055503,0.00026839078,-0.006989891,0.04411398,-0.012452362,0.007980126,-0.024891779,0.014743493,0.015274206,-0.009740543,-0.03743475,-0.0067504225,0.011636875,-0.012523555,-0.03689109,-0.016879292,-0.0016058951,0.027726568,-0.0070481403,-0.0047181766,0.024891779,0.018626766,-0.009235717,-0.0048184944,0.00881503,0.05182875,0.004096853,-0.018380824,0.017863056,-0.02889155,0.0011876343,0.09682294,0.018096052,0.010297145,0.014549329,-0.023079585,-0.0111061605,-0.006556259,-0.0032862197,0.005815201,-0.00811604,0.023118418,0.00970171,-0.036813427,0.00811604,0.012206421,-0.010724305,0.0024577882,-0.04546018,0.0220311,-0.019481085,-0.004358974,-0.0058281454,0.020335406,0.053589165,0.020969674,0.007637103,0.020270685,0.032593604,-0.019998856,-0.0018154301,-0.015766088,-0.0027765401,-0.0030192446,0.016115582,0.01616736,0.009539907,-0.021293279,-0.01101555,0.02754535,0.02376563,0.0031713394,0.015688423,-0.0027846303,-0.009857041,0.022082878,-0.032386497,-0.004310433,0.031583954,0.023778575,-0.006229417,-0.01546837,0.007378218,-0.020426014,-0.016296802,0.005566024,-0.014626995,-0.005744008,-0.0028995103,-0.02156511,-0.019118646,-0.021073228,-0.022600649,0.03761597,0.0046599275,-0.023209028,-0.017487671,-0.01012887,-0.0081872335,-0.014847047,0.0110738,-0.011863398,-0.010096509,-0.046599273,-0.018458491,0.042923108,-0.007086973,0.034121025,0.008336092,0.00713875,0.0064785937,-0.016879292,-0.033810362,-0.017060513,-0.012458834,-0.002177869,0.019235145,-0.012038146,0.027390018,-0.007546494,0.011093216,0.016180303,0.012504139,0.020982618,-0.033603255,0.016866349,-0.012717718,-0.008950944,0.017410006,-0.013889173,0.006119391,-0.00820665,0.0026924026,-0.0011043057,-0.04121447,-0.010847275,0.026716918,0.03280071,0.021422721,-0.00007139559,-0.009436353,0.010025316,0.0015152855,0.026613364,0.0056695784,0.0121028675,0.049291678,-0.0028962744,0.028089007,-0.013720897,-0.005268307,-0.011216186,-0.03865151,0.027053468,0.021176782,-0.039091613,-0.0043525016,-0.028813886,-0.017578281,-0.0040353676,0.008271371,-0.0033137263,0.01583081,-0.025487214,-0.018484378,-0.01726762,-0.020581346,0.0026713682,-0.0023704146,-0.014743493,-0.005278015,-0.0022247918,-0.020050632,-0.028089007,-0.015791977,0.031040294,-0.03453524,0.008685587,0.00013399313,-0.0034981817,0.013216072,0.019998856,0.010407171,-0.031376846,-0.0012321301,0.003789427,-0.031376846,-0.0015557362,-0.0016366377,0.012076979,-0.004316905,0.011643346,0.011209714,0.013183711,0.013578511,0.006598328,-0.007196999,0.009203357,-0.0070028356,0.004922048,-0.0007948574,0.010549558,0.029357543,0.009934707,0.02120267,0.008349037,0.008387869,-0.011041439,-0.01693107,-0.035337783,-0.021150893,0.026949914,0.001225658,-0.014031559,-0.010465421,-0.02306664,-0.010840803,0.020270685,-0.012258198,0.01445872,-0.00012206016,0.010679,0.0038444402,0.029124547,-0.02034835,0.020892007,-0.01589553,-0.018380824,-0.025500158,-0.0055239554,0.009268078,0.010782555,0.022600649,-0.0057472438,0.046107393,-0.013682065,0.0006019073,-0.025888486,-0.014290445,-0.00811604,0.002609883,-0.0050547267,-0.027286464,-0.010601335,0.0062844297,-0.0014084955,0.010627223,-0.015973195,0.010361866,0.0039641745,-0.02333847,-0.009818208,-0.009552851,-0.002446462,-0.0010978336,0.0043039606,0.03142862,0.0074882447,-0.011915175,-0.0051841694,-0.015701367,-0.004517541,0.034276355,0.049291678,-0.031247402,-0.0069381143,0.011183826,0.011895759,-0.0029593776,-0.013099574,0.005951116,0.018471435,-0.020115353,-0.008018958,-0.0033460867,-0.003886509,0.01684046,-0.0054592346,0.0011204861,-0.0063523874,-0.0034722933,-0.012510611,0.0065303706,0.002660042,0.016555687,0.007934821,0.0068539768,-0.034561127,-0.029538762,0.0019303103,0.021500388,0.009999428,0.022432372,-0.025810821,0.017643003,-0.0028703858,-0.012866577,-0.03127329,-0.0065692035,-0.026108539,0.014639938,-0.01546837,0.0017296744,-0.016115582,0.005760188,-0.02547427,-0.0032700393,-0.01180515,-0.002556488,-0.012316447,0.004265128,0.024205735,-0.025784932,-0.028425558,0.025849653,-0.013054269,0.003947994,-0.01805722,-0.00544629,0.017863056,-0.0074364673,0.021966381,0.009196885,0.019131592,0.0077600735,0.011280907,0.021642774,0.016982846,-0.0048379106,-0.0052650706,0.0037020536,0.023170196,-0.0149247125,-0.019079814,0.014859991,-0.02733824,-0.0391175,0.029305765,-0.0077665458,-0.030988518,-0.01119677,-0.0055724964,0.00224259,-0.0018316103,-0.012607693,0.014691716,0.02419279,-0.00063143636,0.007908932,-0.0170864,0.0016956958,0.003297546,-0.022613592,0.030470748,0.012309975,-0.002881712,-0.0299012,0.012911882,0.011636875,-0.0034820014,-0.014135113,0.019028038,0.028632665,-0.011326212,-0.024322232,-0.021008506,-0.008128985,-0.0048702713,0.049343456,0.0009384576,-0.01955875,-0.027390018,0.025150664,0.022251153,0.011365045,-0.0067568948,-0.009248662,-0.012212893,-0.0008037566,0.019002149,-0.020607235,-0.01095083,0.048126694,0.01055603,-0.037590083,-0.00079162134,-0.0170864,-0.033810362,-0.03953172,-0.0019934133,0.006536843,-0.008808557,-0.00018971406,-0.01315135,0.022419428,0.006190584,-0.0026843124,-0.0036340961,-0.00035273063,-0.023377303,-0.009902346,-0.007514133,0.0074364673,-0.033991583,0.0018526447,0.030134197,0.018251382,-0.00079081237,0.006397692,0.005701939,0.0017474728,-0.00031066182,-0.009805264,0.016283857,0.0145363845,0.021189725,-0.022652425,-0.004113033,-0.009895873,-0.0047796615,-0.009073914,-0.008666171,0.020167131,0.0006358859,0.0088926945,-0.020283628,-0.0128148,-0.019209256,-0.005815201,0.012504139,0.0117857335,-0.028296115,0.01180515,0.033059597,-0.017720668,-0.016219137,0.02212171,-0.024412842,-0.008251955,0.016037917,-0.013876229,-0.011986369,-0.00043605917,0.002975558,0.0074623562,-0.0110090785,-0.012109339,-0.014406943,0.0033946277,-0.0021228557,0.019131592,-0.034949455,0.0043363213,-0.021306224,0.0026163552,-0.014911768,-0.0064624134,-0.015740199,-0.021370945,-0.0065303706,0.035570778,0.0036082077,-0.038263183,0.021332113,0.025914375,0.014005671,0.007527077,0.2392096,0.0018008678,0.0055207196,0.048929237,0.0069963634,0.016180303,0.0056695784,0.013216072,0.007022252,0.0030548414,0.0061032106,0.0028121367,-0.026432144,0.0091839405,0.012238782,-0.03727942,-0.017487671,-0.0075529655,0.015248318,-0.0052132937,0.024128068,0.0053718607,0.0056792866,-0.0029609955,0.024361065,0.015727255,-0.016452132,-0.0035078898,0.020180074,0.010355394,0.0017846875,-0.004197171,0.002941579,0.0073134974,0.0056792866,-0.00088182656,0.0072746645,-0.013565566,0.024141014,0.03176517,0.03458702,-0.0031130905,-0.0038120796,-0.018846817,-0.0009821444,0.0074235233,0.004850855,-0.0066274526,-0.02891744,0.026147371,-0.04447642,-0.011999313,0.029875312,0.0025322174,-0.014005671,-0.015157708,0.0068669207,-0.0030532232,-0.010601335,0.024231622,0.020956729,0.029383432,-0.0054657063,0.024361065,-0.010102982,-0.013449068,0.01726762,0.0032247344,0.032748934,-0.017837167,-0.0077471295,-0.015571924,-0.01598614,-0.007345858,-0.00802543,-0.0005100841,0.035156563,0.04530485,0.026639251,0.008038375,0.010329505,-0.004579026,-0.0011156319,-0.02367502,0.015546036,-0.029202212,0.027312353,-0.0046113865,0.0049447007,-0.01366912,0.003689109,0.00007751377,-0.028140783,-0.018665599,-0.018665599,-0.011721012,0.011002607,0.025784932,-0.022950143,-0.012258198,0.009960595,0.05799021,0.0026406255,0.008310204,-0.011636875,-0.0080642635,-0.016568631,0.019015092,0.021642774,0.0031778116,0.015908474,-0.029512873,0.022755979,-0.0007192145,-0.0071581663,0.010795498,0.004902632,-0.030056532,0.0061258627,-0.021940492,-0.0072228876,-0.026458032,0.0005117021,-0.003624388,0.008426702,-0.026535697,-0.015766088,0.006879865,-0.011617458,-0.019662306,-0.0008632192,-0.013863284,-0.006138807,-0.0029658496,-0.018989203,0.0037149978,-0.0032651853,-0.0031875197,-0.009514019,-0.00018455659,-0.005575733,-0.0054139295,0.021383889,-0.02754535,0.026496865,-0.025098886,0.019817635,0.0072552483,-0.005119448,-0.0002946838,-0.02120267,-0.004689052,0.009423409,-0.012555916,0.006345915,-0.010937885,-0.00018071376,-0.046262722,-0.006646869,-0.034664683,-0.012420001,-0.010808443,0.03318904,-0.025940264,-0.03233472,-0.008983305,-0.16320102,0.013131934,0.023092529,0.002184341,0.0012604457,0.022173489,0.011416823,-0.0067310063,-0.012944243,-0.0027360893,0.020581346,-0.020840231,-0.0048152586,-0.017785389,0.0128083285,0.0029965923,-0.024671728,0.034897678,-0.015157708,0.00851084,0.04261245,0.00245617,-0.014678772,-0.026768694,0.015390704,0.0006593474,-0.011436239,0.0020872592,0.00067552767,-0.0143163325,-0.029771758,0.012135228,-0.0001304537,-0.005646926,0.023014864,0.012827745,-0.014393998,-0.0059575876,0.0041939346,0.00448518,0.026341535,0.018820928,0.0024885307,0.0049738255,-0.0039706463,-0.0035014178,0.012924827,-0.0034820014,0.0059478795,-0.0032862197,-0.0008142738,-0.016361523,0.03660632,-0.0031227986,0.0013235488,0.016452132,0.0141221685,0.024594061,-0.0031050004,-0.013345514,-0.012769495,-0.030496636,-0.007889516,-0.023118418,-0.018872706,-0.0185491,-0.020646067,0.0008567471,-0.024322232,0.015856698,-0.000064872904,-0.023377303,0.037874855,0.008853862,-0.0069963634,0.0062455973,-0.008336092,-0.0062617776,-0.004753773,0.031014405,-0.00510974,0.042974886,-0.010051205,0.025849653,-0.017345285,0.0024448438,0.01976586,0.020749621,-0.022807756,-0.016555687,-0.016633352,0.0050288383,0.001122104,-0.000479746,-0.00012307144,0.0012199949,0.009125691,0.019040981,0.000013184419,-0.018820928,0.0056728143,-0.0023639423,-0.04784192,0.017215842,0.024891779,-0.007527077,-0.0021503624,0.031920504,0.015740199,-0.0062132366,-0.011157937,0.029357543,0.010154759,0.018743264,0.029305765,0.019351643,-0.0058410894,-0.011067328,-0.0004959263,0.011941064,0.060113065,-0.0153389275,-0.033758584,-0.0030742576,0.0022231736,-0.0076888804,-0.09459653,0.01445872,0.004206879,0.016128527,0.007455884,0.014549329,0.01949403,0.016439188,-0.0035920274,0.009080387,-0.00829726,-0.016956959,0.0008591741,0.005773132,0.009514019,-0.020400127,0.010187119,-0.02733824,0.012413529,0.021707496,0.011986369,-0.016969902,0.00039985575,-0.014989433,-0.008303732,-0.013552622,-0.02327375,0.012303503,0.01034245,-0.0033299064,0.018367881,-0.03404336,-0.0145104965,-0.017901888,-0.0023040753,-0.009352216,-0.033784475,-0.022833645,0.006776311,-0.031739283,0.003941522,0.007734185,0.0022555343,-0.014549329,-0.0030807299,0.00468258,-0.0046016783,-0.020801399,0.016283857,-0.012704775,-0.025810821,-0.0008672643,-0.0048282025,-0.018199606,0.010931413,0.0129054105,-0.019519918,0.030418972,-0.015999084,0.016490966,0.0057343,0.008400814,-0.00970171,0.00046761078,0.032748934,-0.010310089,-0.007604743,-0.006608036,0.010213007,-0.007132278,-0.026742807,0.012497666,-0.0020629887,-0.012199949,-0.020141242,-0.007520605,-0.011779261,0.006782783,-0.0012895702,-0.008407285,-0.0097923195,-0.019079814,-0.01592142,-0.009818208,-0.007585326,0.009831153,-0.0031082362,0.0042262953,-0.0067892554,-0.022626536,-0.001065473,0.040567257,-0.0018332284,0.026794583,0.00003807428,0.012057562,-0.031195626,-0.0012410292,0.013345514,0.005792549,-0.015494259,0.002660042,-0.05457293,0.009636989,-0.008931528,-0.01445872,0.01592142,-0.006879865,0.0033201983,-0.0047084684,-0.019455196,-0.01287305,0.006776311,-0.005695467,-0.016193248,-0.0058863945,0.0029108366,0.009222773,0.0021681606,0.010827859,0.02010241,-0.01095083,-0.012821273,0.0036858732,0.006400928,-0.010549558,0.0045045963,0.040670812,-0.008750308,0.0013373022,-0.021668663,-0.014665827,0.018484378,-0.025940264,-0.018820928,0.02605676,-0.007675936,0.0062455973,-0.026030872,0.023286693,0.0029124545,-0.01385034,-0.024658782,-0.025707267,0.004297489,-0.027260575,-0.008141928,0.009041553,-0.012174061,0.004685816,0.018316103,0.005229474,0.01976586,0.009216301,0.00068361784,-0.02540955,-0.024089236,-0.022186432,0.0023089293,-0.025150664,0.004701996,-0.04799725,0.02178516,0.025694322,-0.006167932,-0.015092988,0.016827516,-0.0027457976,-0.00988293,-0.00049916236,-0.0023137834,-0.011546264,0.009125691,0.01830316,0.018083107,0.014031559,0.030677855,0.017461784,0.025953207,-0.008931528,-0.038056076,0.022665368,-0.00086564623,-0.01906687,-0.006598328,0.008219594,0.038496178,0.031143848,-0.010310089,0.015067099,-0.00006168741,0.00003668378,-0.012730663,0.0005193878,0.0016778975,-0.0075011887,0.008426702,0.022872478,0.005824909,-0.007527077,-0.03181695,0.00049228576,0.022328818,-0.010653112,-0.0060028927,0.0076112146,-0.010316562,0.02751946,-0.013953893,-0.04408809,0.027441794,0.006598328,0.013876229,0.016698074,0.021150893,0.011125577,-0.01394095,-0.0051647527,0.015688423,-0.025836708,-0.02605676,0.021668663,-0.008802085,-0.0278819,-0.020270685,-0.024516396,0.01726762,-0.0071646385,-0.015856698,-0.011164409,0.019882357,0.016918125,-0.025021221,0.0067374785,-0.02700169,-0.021759272,0.028606776,0.00468258,-0.03611444,0.021228557,0.017591227,0.055970907,0.0073652742,-0.010277729,0.016335635,0.009869985,0.009416937,0.008717948,0.0011366663,0.003724706,-0.016296802,0.007941293,-0.0029577594,-0.00090852403,-0.016219137,0.004096853,-0.020270685,0.013170768,0.02025774,-0.00088587165,-0.0032651853,0.029823536,0.008646755,0.0013939332,0.00035273063,-0.024516396,-0.023895072,0.0021697788,-0.007662992,0.0020597526,-0.040127154,-0.0029156907,0.015597813,-0.007086973,-0.009662878,-0.006595092,0.010458948,-0.005527192,-0.007086973,-0.0033331425,0.011455655,0.010782555,0.032205276,-0.018354936,-0.023183139,-0.020710789,-0.0013405381,-0.0031583952,0.0005861315,-0.029668204]},{\"id\":\"b86d1d55-e4ec-4ddf-ad57-30a79175650d\",\"text\":\"How you pay people? Tell me before \",\"vector\":[0.00585527,0.0036231324,0.014374704,-0.037939794,-0.020842012,0.017110873,-0.016102811,0.007102256,-0.023984024,-0.0028261743,0.022845045,0.0075015533,-0.0038980586,0.0040224297,0.024429142,-0.013458285,0.02456006,0.0054919748,0.021326406,0.00035204444,-0.017791642,0.00042998104,-0.0069517014,0.0054036058,-0.023447264,-0.0015521866,0.023984024,0.0045002773,0.017281065,0.007102256,-0.005753809,-0.008542345,0.022910504,-0.0048701186,-0.03644734,0.00089350966,0.01171054,0.021431139,0.0073902737,0.005577071,0.028356656,-0.007134985,-0.0011897098,-0.009471857,-0.017372707,0.0114028845,-0.019009171,-0.034509763,-0.0175429,0.0062054736,0.0045460984,0.014544897,-0.031184468,-0.019938683,-0.00038763753,0.00046516504,0.0043104477,0.023316346,0.0025348836,0.0005302145,-0.0017690181,0.0032385632,-0.047653846,0.0056850775,0.0067291423,-0.00785503,-0.01502929,0.00020517175,-0.027963907,0.00079368526,0.021836983,0.01076139,-0.007161169,-0.005442881,0.018446228,-0.021902442,-0.011383248,0.005809449,-0.016259912,0.01800111,0.0053250557,-0.008725629,-0.002426877,0.0028474482,0.0076782918,-0.006287297,-0.011795636,-0.0032172892,-0.017281065,-0.0060189166,0.018655695,0.0063985763,0.016796673,0.016809763,0.015199482,0.029456362,-0.0014343611,0.02356509,0.01133088,-0.019218639,0.0056490754,0.010100259,-0.038332544,-0.011429069,-0.026942752,-0.0031092826,0.0012404401,0.0045297337,0.01883898,-0.0029178162,-0.011874187,0.030844083,0.01014608,-0.0260787,0.00043979983,-0.0041697114,0.0023450537,-0.037573226,-0.022269009,-0.01540895,0.034588315,0.00938676,0.010270451,-0.006421487,0.018498596,-0.002695257,-0.0065065827,0.0044413647,-0.009268935,-0.015042382,0.01656102,0.031603403,-0.0055508874,0.011612352,-0.0125287725,-0.011769453,-0.016534837,0.03265074,-0.020815829,-0.012214571,0.011573077,0.0011103412,0.0031403755,-0.0027116218,0.003639497,0.023133062,-0.0027819898,0.00885,0.005069767,-0.02463861,0.021850074,0.010198447,0.029692013,-0.020108877,-0.012921524,0.017844008,0.0043693604,0.009124926,0.013091716,-0.007010614,0.01709778,0.008791087,0.02609179,0.012561502,-0.009759874,0.039248966,0.032755475,-0.008686353,0.02372219,-0.004677016,-0.0105191935,0.018446228,-0.03393373,0.016809763,-0.015395858,0.005635984,0.015840977,-0.02974438,-0.007200444,-0.014374704,0.0023319619,0.007756842,0.0034954883,0.040374853,-0.012947707,-0.0070498893,0.0027132581,0.010970858,0.031996153,-0.011232693,0.000064077816,0.001257623,-0.0036984098,-0.024808802,-0.67574203,-0.024887353,-0.020540902,-0.005210503,0.009524223,0.004739201,0.007383728,-0.007894305,-0.035190534,0.009871154,-0.013549927,-0.0057472633,0.0025414294,-0.0050010355,-0.0107417535,-0.03898713,0.0136546595,-0.018066568,-0.0142961545,0.013680844,-0.017804734,0.024141125,-0.024167309,0.01441398,0.01793565,0.0062022004,-0.0021159486,-0.017411983,-0.010892307,0.0077437502,0.000013059754,-0.00006504946,0.0051777735,-0.00016446468,0.052366864,0.008705991,-0.0027787169,-0.0024383322,-0.022543935,0.041526925,-0.023434171,-0.025659764,-0.009275481,-0.0240233,0.0031125555,-0.012253846,0.005380695,-0.010106805,0.016377738,0.02097293,-0.011612352,0.015958803,-0.037206657,0.010997041,0.008084135,0.005897818,-0.004677016,0.0018688425,-0.0107417535,0.019794675,-0.008496524,0.0032401998,-0.013209541,-0.017372707,-0.018865163,0.013353551,0.003780233,0.0021486778,0.011461797,-0.0109184915,0.00048562084,0.017844008,0.006689867,0.023512723,0.00086323504,0.011343972,0.009916975,-0.023630548,0.010041346,0.01262696,0.007979401,0.0069058803,-0.025031362,-0.024298225,-0.00035695382,0.025541939,0.018891346,-0.03296494,0.014492529,-0.01273824,0.005717807,0.024219675,0.024245858,-0.004513369,0.011893824,0.018943714,-0.015435133,-0.000061009443,0.0042809914,0.0039602444,-0.011867641,-0.007887759,0.010715569,0.01586716,0.032834023,0.002762352,-0.013955769,0.005433062,0.03979882,-0.0035478552,0.010283543,-0.020121967,0.008679808,0.005361058,0.02021361,-0.028042456,0.022871228,0.032179438,0.011186872,-0.0030929178,0.008254327,0.015435133,0.03592367,-0.033148225,0.017267974,0.013340459,-0.01648247,0.006081102,0.0075931954,0.009373669,-0.011357063,-0.003371117,0.003688591,-0.005524704,-0.0011087047,0.004935577,0.008594711,-0.017045414,0.002659255,-0.02440296,-0.0018132026,-0.025960874,0.004611557,-0.0156446,0.006274205,-0.018969897,-0.014688905,0.0006979521,-0.010381731,0.009020193,-0.01228003,-0.023656731,-0.03320059,-0.017123966,-0.0065785875,-0.0050370377,-0.008476886,-0.01049301,-0.026131066,-0.009210022,0.0011888915,0.015500592,-0.030922633,-0.021418048,-0.011127959,-0.012476405,0.005940366,-0.0011537075,-0.012620415,-0.020056508,0.017830918,0.003505307,-0.020383801,-0.0035183986,-0.0064803995,0.01684904,0.013772486,-0.00224032,-0.019048447,-0.011114867,0.00015914618,0.012757878,-0.011959283,0.006094194,0.03707574,0.0012748059,-0.019755399,0.054042604,-0.013471376,0.041448373,-0.00029394994,0.0015161844,0.00019637574,0.011717086,0.007861575,0.018550962,0.0076782918,-0.010329364,-0.0029996394,0.008620895,0.01616827,0.023015236,0.01540895,0.0077633876,0.013032803,-0.010499557,0.007383728,-0.03142012,0.02602633,0.03369808,-0.0051548635,-0.021313313,0.017202515,-0.017830918,0.020017235,0.0128167905,-0.02577759,-0.004372633,0.0029390904,0.019689942,0.015225666,0.009203477,0.0114028845,-0.008653624,-0.009779512,0.00069345185,-0.002237047,0.008372152,0.001391813,-0.010159172,-0.016966864,-0.00024301498,-0.009871154,0.0073968195,0.018145118,0.014976923,0.0063429363,-0.00002064758,0.009092197,-0.00093769416,0.0022272281,0.015160208,0.018655695,-0.015435133,0.010244268,0.019519748,0.023146154,-0.0028523577,-0.010466827,0.015369675,-0.007115348,-0.00093278475,-0.016521746,0.0030323688,0.020815829,-0.024887353,0.00057726284,0.0076324707,-0.00965514,0.01571006,0.037887428,0.0073117237,0.0035216718,-0.015094749,0.019153181,-0.00046475593,0.018511686,-0.017137056,0.01117378,-0.005851997,-0.009334394,0.009249298,0.0068796966,0.02204645,0.028985059,0.018629512,-0.0118218195,-0.008594711,0.008241235,0.001532549,-0.0092623895,-0.0023597819,0.0057832655,0.014230696,0.00007619788,-0.016613388,-0.014021228,-0.010375185,0.0091511095,0.020200519,-0.017032323,0.005167955,-0.012790606,-0.0014752728,-0.01792256,-0.023813833,0.03401228,-0.0041762576,0.011848003,-0.025293196,-0.004418454,-0.00030335961,-0.00065540406,-0.008476886,0.02135259,0.013798669,-0.004019157,-0.0015309126,-0.015814792,-0.030110948,0.024141125,-0.02150969,-0.01403432,-0.015225666,0.019048447,0.01403432,-0.013890311,-0.013981953,0.04050577,0.023512723,-0.014453255,-0.01426997,-0.030451331,-0.0009736964,0.10536213,0.043935798,0.02120858,0.014165237,-0.02304142,-0.011749815,0.0051384987,-0.019113906,0.0039307876,-0.01163199,0.023211613,-0.0010105169,-0.0043955436,0.0017772005,0.01087267,-0.008476886,-0.019113906,-0.020239793,0.0033334782,-0.0064345784,-0.0040846155,-0.0022435929,0.01684904,0.039275147,0.0007253629,0.030268047,0.016063536,0.00043775426,-0.01246986,-0.003727866,0.006588406,-0.0042777183,0.01163199,-0.006176017,-0.0024186946,0.017765459,0.0049683065,0.023002146,0.006519675,0.023735281,0.005449427,0.035504736,-0.008450703,-0.03754704,0.012947707,-0.00075972866,-0.00047334738,0.0033302053,-0.012803698,-0.01014608,0.019637574,0.008319786,-0.012293122,-0.024507692,0.008175776,0.0011569804,-0.031001184,-0.01807966,0.0093278475,0.0050468566,-0.041238908,-0.013759393,0.01800111,-0.014099779,0.010296634,-0.020252885,0.0039013315,0.022609394,0.013864127,-0.0056098006,-0.0071218936,-0.011546894,-0.041081805,-0.01708469,0.021954808,0.012306213,0.010781028,0.0068993345,0.012116384,0.016888313,0.020933654,-0.020632545,0.015147116,0.00061449246,-0.01087267,0.005547615,-0.0059730955,0.005943639,-0.0015791883,0.008300148,-0.003596949,0.0000069741513,0.033514794,-0.024311317,0.004811206,0.021941716,-0.014060503,0.015526775,-0.012941161,0.010132988,-0.023813833,-0.0051417714,0.0044479105,-0.004745747,-0.0023794195,0.0046344674,0.019703032,0.009772966,0.011992012,-0.010296634,-0.0037933248,-0.023997115,0.0040355213,0.0057145343,0.016521746,0.028985059,-0.006549131,0.025267012,0.0053152367,0.021640606,0.012744785,-0.04506169,0.024520785,0.020802736,-0.042757545,-0.0016012805,0.013405917,-0.026432175,0.018027293,-0.016089719,0.002004669,0.014492529,0.011029771,-0.006918972,-0.031315386,-0.004186076,-0.0024841533,-0.015840977,-0.031969972,-0.008594711,-0.0099235205,-0.024232768,-0.014427071,-0.024756435,0.018053476,-0.04006065,0.0067225965,-0.00045616447,0.00034263477,0.019271007,-0.0078092087,0.023617456,-0.026157249,0.009380215,0.028592309,-0.011841457,-0.010565015,-0.01076139,0.01624682,-0.008529253,0.030084765,-0.0002297187,0.02822574,0.00002636242,-0.014584172,-0.007887759,-0.0021781342,-0.017058507,-0.011455252,0.012620415,0.00415662,0.007730658,0.01174327,-0.0040355213,0.010506102,-0.0109184915,-0.021562057,0.0050632213,-0.0308179,-0.015775518,0.020252885,0.0017902922,-0.014898373,0.0050370377,-0.006087648,-0.022059541,-0.0024088759,-0.040531952,0.019873226,0.0075015533,-0.0055116126,-0.008882729,0.02998003,-0.010218085,0.016050445,-0.013379734,-0.023460355,-0.012338943,-0.025816863,0.035452366,0.023512723,0.019271007,0.013445193,-0.003829327,-0.02548957,0.024625517,-0.016587205,-0.009373669,-0.0032680198,0.015880251,-0.01292807,-0.014139053,-0.016770488,-0.009792604,0.001937574,0.014453255,-0.0010808848,0.009511132,-0.0010088803,-0.031681955,-0.015840977,-0.026170341,-0.0035805844,0.006090921,0.02770207,0.011664719,0.0134321,0.00039172868,-0.00518432,0.018210577,0.005819268,0.009707508,0.009059467,-0.014060503,-0.027361687,0.016979955,0.017503625,-0.019991051,-0.032598373,0.0045493715,0.014374704,-0.013052441,-0.0241804,-0.011926553,-0.006683321,0.019271007,0.012973891,0.0072200815,-0.017372707,-0.015042382,-0.0025316107,-0.010028254,-0.012554956,0.027597338,0.01618136,0.0017215607,-0.030241864,-0.0071677146,-0.009988979,0.028775591,-0.005763628,0.029351627,-0.0061072856,0.022059541,-0.012581139,0.0023630548,-0.010407914,-0.0053381473,0.01495074,0.016652662,-0.0150685655,-0.026131066,0.0011512528,0.0017150148,-0.0025659765,0.0051712277,-0.010375185,-0.03105355,-0.0045821005,-0.004107526,0.008653624,-0.012096746,-0.030163314,-0.005639257,-0.004863573,-0.011703994,0.0036329513,0.020331435,0.02746642,-0.015304216,-0.01163199,0.0021159486,0.019271007,0.019729216,-0.01243713,0.014348521,0.00072945404,0.025450297,-0.0010694296,0.025685947,-0.004418454,0.004533007,-0.043359764,-0.02051472,-0.019559024,-0.041631658,0.022033358,-0.02264867,-0.011834911,0.008273965,0.023106879,0.0040747966,-0.014125962,0.000056560304,-0.013772486,0.014505621,0.020724187,0.00968787,0.0036722263,-0.0021715884,-0.0014703633,-0.0063003884,0.009373669,-0.02723077,-0.013759393,-0.015225666,-0.003371117,-0.015474409,-0.013124445,-0.022321377,-0.015199482,0.018799704,0.0010096986,-0.017228698,-0.026104882,0.004107526,-0.018367678,0.0063985763,-0.009674778,-0.0311321,-0.0018917529,0.026811834,0.017660726,-0.00067095045,-0.020082692,0.00069099717,-0.00839179,-0.007102256,-0.025437204,-0.026942752,-0.028801776,0.018852072,-0.0037998706,-0.017647633,-0.017948743,-0.024311317,-0.02882796,-0.01300662,0.0019604845,0.022805769,0.022831952,0.008162685,-0.0048602996,0.0029472725,0.020174334,0.02456006,0.00023565089,0.007560466,-0.015840977,-0.017215608,-0.013759393,0.0027459874,-0.023748374,0.011533802,0.03851583,-0.015461316,0.016312279,-0.00011935963,-0.024141125,0.0042253514,0.016286096,0.02609179,0.00903983,-0.011867641,0.01739889,-0.028147189,0.014309246,0.02067182,-0.02135259,-0.031786688,-0.0072135357,0.026707102,-0.009740237,-0.0026658007,0.020396894,-0.0045460984,-0.0068927887,-0.01876043,0.00046230122,0.013072079,-0.007508099,0.008372152,-0.0046704696,-0.0075866496,-0.0154875005,0.026641643,-0.0056163464,0.0074884617,0.018865163,-0.013510651,0.0113374265,-0.015539867,0.0025316107,-0.012273484,-0.0062480215,-0.013314275,-0.00048766643,0.016312279,0.011920008,-0.014976923,-0.022177367,0.014885281,-0.012568047,0.0049224854,-0.018302219,-0.022177367,0.005122134,0.002646163,-0.009949705,0.033462428,-0.0029996394,-0.025528846,0.012823336,0.0071284394,0.006189109,0.01763454,0.23188047,-0.008156139,0.0035805844,0.030608432,-0.006555677,0.012352034,0.012070563,0.016390828,0.0035642197,-0.006647319,-0.02266176,0.016286096,-0.034274112,0.0050959503,-0.008254327,-0.034981064,-0.03738994,-0.022072634,-0.0010522467,-0.0012093473,-0.0041107987,0.030791717,-0.017372707,-0.010015163,0.0066375,0.014492529,0.002258321,0.010853033,-0.0020946746,0.018812796,-0.010964313,0.0014384523,0.021758432,0.000055435237,-0.017817825,0.000066276814,-0.024782619,-0.008751812,0.016927589,0.035557102,0.027675888,-0.0018688425,-0.01578861,-0.03754704,0.0016102811,0.015173299,-0.00224032,-0.010250813,-0.009602774,0.040767603,-0.026759468,0.0017215607,0.017673817,0.020331435,0.0059207287,-0.00009348304,0.012116384,0.0016446469,-0.031603403,0.021025296,0.023015236,0.031341568,-0.007560466,-0.002786899,-0.04317648,0.0106304735,0.009844971,-0.020907471,0.03752086,-0.017726183,-0.0019817585,-0.0058814534,0.008791087,-0.0086929,0.0021683155,-0.0050174003,0.010977404,0.0040486134,0.033305325,0.024429142,-0.02387929,0.023970932,-0.034274112,-0.0077437502,0.012443677,-0.02501827,0.01891753,0.00035409,-0.012522226,0.005272689,-0.010060984,-0.008084135,-0.029194526,-0.026602367,-0.0098580625,0.007796117,0.031629585,0.032938756,-0.006549131,0.0040027923,0.0009974252,0.0067095044,-0.0063887574,0.00023810558,-0.015160208,0.01670503,-0.0043988167,0.018577145,0.0036820453,-0.014374704,-0.008679808,0.0025250649,0.0037147745,-0.008169231,-0.012227663,0.008149593,0.018302219,-0.0018770248,0.006918972,-0.0037344121,0.0058225407,-0.023093788,-0.02188935,0.0034823965,0.02723077,-0.00812341,-0.011350518,0.001670012,0.012829882,-0.03272929,0.0088630915,0.0032009245,0.017961835,-0.034902517,-0.0350858,0.015736243,0.011926553,-0.015670784,-0.02174534,-0.02806864,-0.024756435,0.006146561,-0.013045895,-0.012829882,0.022674853,-0.015827885,0.004765385,0.004336631,-0.009628957,-0.01815821,-0.036421154,0.0045395526,0.007259357,-0.023146154,0.011232693,-0.018577145,-0.013890311,-0.00022910503,0.027728254,0.0019801222,-0.010126443,0.018276036,0.016691938,-0.014819822,-0.01216875,0.0011193417,-0.16725977,0.008463794,0.006644046,0.017582174,0.015893344,0.00809068,0.0032107434,-0.005210503,-0.0066244085,0.010728661,-0.0028834506,-0.022321377,-0.0047162906,-0.0029963665,-0.0032172892,0.009020193,-0.013707027,0.0308179,0.019951776,0.015683876,0.0246517,0.028121006,0.0058356323,-0.023237797,-0.005400333,0.009105288,-0.014086687,0.035897486,-0.02746642,-0.026523817,-0.034850147,0.012162204,-0.0040846155,0.005439608,0.021313313,0.00043325397,0.001638101,-0.0040911613,-0.0033907546,0.0014441799,0.022805769,0.0058781807,-0.017359616,0.0091511095,-0.008365607,-0.012482951,0.006084375,0.009183839,0.0011234329,-0.016587205,-0.005115588,-0.019781584,0.005573798,0.014557988,0.007927034,0.0039144233,0.008719083,0.005347966,-0.022530844,0.000027027234,-0.015461316,-0.012273484,0.012672781,0.0151340235,-0.011815274,-0.0043529957,0.014086687,-0.004064978,-0.0311321,0.020043418,-0.0041271634,-0.016456287,0.005164682,-0.011245784,-0.0014417253,-0.013667752,-0.0268642,-0.016259912,0.00012938297,0.023224704,-0.015971893,0.032781657,-0.011841457,0.015618417,-0.010695932,0.010970858,0.0037540495,0.015173299,-0.0061989278,-0.031184468,0.007625925,-0.005347966,-0.004248262,0.00081536843,0.004978125,0.014911464,-0.0049093934,-0.018393861,0.0074950075,-0.0066669565,0.0048242975,0.00253652,-0.036028404,0.030870266,0.010532286,-0.0015456408,0.0060778293,0.016089719,0.015448225,-0.0061432878,-0.027440237,0.011775998,0.018865163,0.02166679,0.0048177517,0.016089719,-0.00965514,-0.015657693,0.013281546,0.008332877,0.04775858,0.006820784,-0.01624682,0.00701716,-0.011127959,-0.014741273,-0.10955148,-0.013549927,0.0064705806,0.026366716,0.024285134,0.00049830345,0.016207544,0.030870266,0.0013312639,0.019388832,-0.013981953,-0.03089645,-0.0028883598,-0.0115796225,0.015775518,-0.010951221,0.005907637,-0.013366642,0.019506657,0.030268047,-0.03320059,-0.030477514,-0.0062414757,-0.0071480772,-0.026838018,-0.0088630915,-0.024992086,0.0014335429,0.0034398483,0.006460762,-0.023709098,-0.01022463,-0.005256324,0.003166559,-0.0096813245,-0.00048807554,-0.01701923,-0.019441199,0.008332877,-0.022386834,-0.005112315,0.005894545,-0.012181842,-0.03157722,0.0056785317,-0.013471376,-0.024834985,0.0065262206,0.024756435,-0.028592309,-0.020121967,-0.007887759,-0.016914498,-0.04333358,0.04157929,-0.011664719,-0.018446228,0.025162278,0.004375906,0.002768898,-0.01899608,-0.00087550853,-0.002716531,0.028985059,0.009988979,-0.012764423,-0.007985947,0.005675259,0.020383801,-0.014191421,-0.023774557,0.008365607,-0.029273078,0.017778551,-0.026196525,-0.016207544,-0.032624558,-0.0041828034,-0.01079412,0.009308211,-0.003269656,-0.020396894,-0.0016233728,-0.003826054,0.011638536,-0.0043235393,0.0129935285,0.008601258,-0.013144083,-0.0150685655,-0.002417058,0.020593269,0.0055541606,0.01822367,0.002927635,0.0043169935,-0.033907544,-0.012535318,0.015369675,-0.00839179,-0.002325416,-0.0056065274,-0.039039496,0.011992012,-0.010735207,-0.0014482711,0.023434171,0.0021715884,0.009648595,-0.010185355,-0.001511275,0.015003107,-0.01899608,0.021156214,-0.023931658,-0.02410185,-0.020684911,-0.01052574,0.006509856,0.011815274,0.014937649,0.0061531067,0.002695257,-0.02914216,-0.014990015,-0.0005015764,0.016233727,0.02525392,-0.019401923,0.019703032,-0.011880732,-0.011920008,0.02304142,-0.023394898,0.008830363,0.015094749,-0.0005220322,-0.008208506,-0.005806176,0.025044452,0.0026903476,-0.025620488,0.008071043,-0.028094823,0.0014458164,-0.008764904,-0.019807767,-0.0102115385,0.00026715282,0.016338462,0.007940126,0.007193898,0.028566124,0.022059541,-0.024677886,-0.007835392,-0.025463387,-0.022478476,-0.00026613005,-0.00968787,0.008404882,-0.027728254,0.036211688,0.0116909025,-0.0054985206,-0.023551997,0.0072200815,-0.009831879,-0.02547648,0.018014202,0.005626165,-0.052811984,-0.0067291423,-0.0011267058,-0.0004234352,-0.0030307323,0.018132027,0.018812796,0.009399852,-0.018812796,-0.038253993,0.027099853,0.020632545,-0.017202515,-0.03157722,0.00019392105,0.03372426,0.030425148,-0.00043693604,-0.0012126202,-0.02067182,0.007331361,-0.013641568,-0.0034333025,-0.019218639,-0.0243375,0.021706065,0.013929586,0.006493491,0.00054739736,0.010126443,0.03453595,0.037101924,0.0027721708,-0.009007101,-0.0036787721,-0.010126443,-0.01289534,-0.018524779,-0.012522226,0.014204512,0.04660651,0.012273484,0.009949705,0.025764497,0.009622412,0.0085554365,-0.00009910838,0.0060712835,-0.03395991,-0.02495281,0.012273484,-0.007102256,0.014701997,0.016927589,-0.01762145,0.02067182,-0.0036067679,-0.013510651,-0.012136021,0.017359616,0.007972855,-0.016652662,0.022622485,-0.01594571,-0.041396007,-0.003114192,-0.005246505,-0.0073248153,0.008352515,0.0027607155,0.06697722,-0.009871154,0.00039786543,0.007423003,0.018825889,0.022792678,0.028382841,-0.006146561,-0.012018195,0.024507692,0.03320059,-0.0025888868,-0.004925758,-0.004418454,0.00391115,0.0058225407,-0.0062316568,0.020776553,-0.010191901,-0.0098580625,0.006640773,0.0140081365,0.0066735023,0.012424039,0.0026608913,0.004199168,0.0061661983,0.010695932,0.010990496,-0.016403921,0.0048177517,0.002444878,-0.0073902737,0.0039798818,0.00858162,-0.00049012114,-0.008948188,0.007455732,0.0018999353,0.010381731,-0.008404882,-0.0024366956,-0.020959837,-0.010650111,-0.024481509,0.0006999977,-0.025188463,0.028382841,-0.007115348]},{\"id\":\"efa4c325-bd26-4bc2-91c7-ea2149979f9e\",\"text\":\"There is no improvement needed so far.\",\"vector\":[-0.0143572735,0.013085027,0.014133147,-0.0034772553,-0.0028180599,0.011694125,-0.018510204,-0.023955157,-0.016849032,-0.009400125,0.000083841405,0.005451545,0.018365182,0.0005961598,0.003355304,0.0034146316,0.028793652,-0.008450883,0.02200394,-0.016176652,0.008602499,0.011661165,-0.0017699394,-0.008332228,0.0011906715,-0.010837171,0.018457469,-0.024324307,0.01897164,-0.0056031602,0.019011192,-0.010876723,-0.017257733,-0.033592593,-0.0056493036,-0.020725101,0.00064683537,-0.014871446,0.01970994,-0.0072115967,0.0044330885,-0.0036025024,0.0027356604,-0.011568878,-0.02713248,0.007073166,0.014700055,0.010883315,-0.032485146,0.018642044,0.012096234,-0.0079301195,-0.02284771,0.0070665735,-0.0085102115,0.0015062613,0.0035398789,0.00759393,-0.013605791,0.0004342449,-0.006901775,-0.0065458096,-0.01147659,-0.007442315,-0.020237297,0.0021918244,-0.013085027,-0.00076755055,0.0051812753,0.039235305,0.035965696,0.042320337,-0.012129193,-0.015596561,0.036967672,-0.004663807,-0.002264336,-0.0065293293,0.0059558298,0.0027340124,0.02079102,-0.015056021,-0.027580732,0.02987473,0.026011847,0.038365167,0.011160176,0.029558318,-0.0063744187,-0.01093605,0.004911005,0.0314568,0.040553696,0.003945284,-0.004492416,0.0061272206,-0.00504614,0.029268272,0.013065251,-0.025524043,-0.019617653,-0.015715215,-0.032485146,0.0011783116,-0.037310455,0.0015853647,-0.0004906885,-0.00013214805,0.00616018,0.0033355283,-0.023572825,0.01464732,0.015385618,0.002804876,0.014924182,0.0031163457,0.0076400735,-0.013539871,-0.017257733,0.0002389583,0.027027007,-0.0010728404,0.015411986,-0.00955174,-0.00014656795,-0.008806849,-0.041661143,0.003935396,-0.003205337,0.01181278,0.009775867,0.026921537,0.04023728,-0.008193797,-0.0008029823,0.014330906,-0.03000657,-0.0059591257,-0.012017131,-0.022544479,-0.0153196985,0.017666435,-0.021740261,-0.004535264,-0.0047659823,0.0051812753,0.01970994,-0.02568225,-0.012471975,-0.0321951,0.0012854309,-0.014054044,0.020817388,0.005319706,0.003243241,0.007534602,-0.0020682253,0.014990102,0.0056723757,-0.010916274,-0.012129193,-0.014291354,0.010962418,-0.007910344,-0.004746206,0.010685556,0.03517466,0.003793669,0.0030141706,0.00067073124,0.02278179,0.03216873,-0.002518126,0.004630847,-0.012821348,0.0043144333,0.0035761346,0.011278831,0.0019841779,-0.014172699,-0.024970317,-0.002097889,0.014054044,0.010507573,-0.017508227,0.0068094875,0.030217513,-0.02284771,0.020580078,-0.0016652922,0.003249833,0.012445607,0.007613706,-0.006417266,-0.66278136,-0.021977572,0.009479228,0.0036123903,0.021845732,0.0360448,0.00698747,-0.0077785044,-0.034436364,0.0133223375,-0.016558986,0.000702867,0.001956162,0.0030224104,0.0021934723,-0.013698079,0.0063908985,-0.018351998,-0.019736307,0.0072709243,-0.015504274,0.00086354587,-0.006199732,-0.012122601,0.015016469,-0.019973617,0.018523388,-0.0048055337,-0.033197075,0.022504928,-0.019195767,0.017877378,-0.009129855,0.0054218816,0.037811443,-0.032986134,-0.01778509,0.009564924,-0.0051120594,0.034779143,-0.023440985,0.015781136,0.016163468,-0.0010440006,-0.01873433,0.020632813,0.006071189,-0.006206324,-0.008332228,0.0031970972,0.010316406,0.0020583374,-0.009017792,0.0042880652,0.0050955797,-0.0054350654,0.02953195,0.012003946,-0.0018556347,0.0068556312,-0.026499651,0.004756094,-0.029347375,-0.02565588,-0.03132496,0.018114688,-0.0230191,-0.014291354,0.021964388,-0.0021489768,-0.022254433,0.007442315,-0.0012763669,0.0009245214,0.02217533,0.02224125,0.019960433,0.004950557,0.0043144333,0.030164776,0.018787066,-0.03340802,0.008015815,0.015939342,0.027079742,0.002412655,-0.013961757,-0.030929444,-0.017495044,0.010962418,0.009940665,0.017323652,-0.006875407,-0.016189836,-0.003622278,0.018325629,-0.0017963072,-0.0012079754,0.03860248,-0.011212912,-0.0020402095,-0.0009418253,0.02295318,-0.0050098845,0.022307169,0.018088318,0.0027636762,-0.0005862718,0.022452192,-0.01691495,0.018707963,-0.011008562,0.0016199725,0.013592607,-0.00335036,-0.037073143,0.002120961,-0.023164123,0.0031344737,-0.019617653,0.017468676,-0.0065062577,0.030665766,-0.008780481,0.011615021,0.01346736,-0.013909021,0.011028337,-0.024719823,-0.004920893,0.012017131,0.0119775785,0.021542503,-0.011390895,0.018562939,0.002831244,0.0075082346,-0.01748186,0.0069742864,-0.013414624,0.0021555687,-0.0061173323,-0.022254433,0.011779821,0.011766636,-0.027580732,0.006034933,0.02518126,-0.010085688,0.018220158,-0.030270249,0.008714562,-0.02089649,0.0061041485,0.0023500312,0.0073566195,0.0052801543,-0.048068523,-0.01039551,-0.012392872,0.022636767,0.0083783725,-0.00308833,-0.014383642,-0.028740915,-0.009716539,-0.0137112625,0.013342113,-0.0039782436,-0.025510859,0.0104350615,-0.03949898,0.0038266287,-0.003394856,-0.01481871,-0.00052694423,-0.016783113,-0.0051219477,-0.007488459,0.0055075767,0.0014395177,-0.003787077,-0.005912982,-0.0063414588,0.03314434,0.005346074,0.021964388,-0.009347389,-0.0072181886,0.02315094,-0.019011192,0.009037567,-0.016519435,0.0035992065,0.0057185194,-0.0077785044,-0.0044462723,0.00034793152,0.013632159,-0.0020336176,0.015873423,0.031166755,0.0106262285,-0.02520763,0.001268951,-0.012887268,0.006881999,-0.023546455,0.0035926143,0.010982194,-0.003955172,-0.0069808783,0.0096638035,0.004248514,-0.02278179,0.0063579385,0.0065029617,0.021542503,0.017020423,-0.010711924,-0.0078048725,0.009531965,0.023876054,-0.0191694,-0.013539871,0.010982194,0.02440341,0.018299261,0.036809467,-0.008002631,-0.035702016,0.006156884,-0.00040519913,0.011417262,0.0128147565,0.0056888554,0.030797604,-0.0007506586,0.009327614,0.026275525,0.018707963,0.015675664,0.01758733,-0.010355959,0.0032943285,-0.008628867,0.047172017,-0.0077785044,-0.01241924,0.028028984,0.014449561,0.01066578,-0.014502297,-0.005174683,0.008899136,-0.036730364,0.013605791,0.006756752,0.031746846,0.032010525,-0.010639412,0.0087672975,0.021186538,-0.012841125,0.00070616294,-0.0016718841,0.018101502,-0.0019166104,0.026552387,-0.007448907,-0.0030454823,-0.00850362,0.04363873,-0.011885291,0.034146316,-0.00035802546,0.005912982,0.023586009,-0.0123665035,-0.013869469,-0.017442308,-0.034146316,0.031245857,-0.010889906,0.0046967664,0.0014395177,-0.013289377,0.021924837,-0.022860894,0.030243881,-0.01549109,0.019222135,0.00678312,0.00088826567,0.016506251,-0.0018160831,0.01316413,-0.014489112,-0.0029729707,0.026446916,0.009030975,0.009129855,0.014027677,-0.016756745,0.024363859,-0.010883315,0.0018457469,-0.027053375,-0.008035591,-0.017626882,0.012649958,0.0014716535,0.02284771,0.0035893184,-0.024021076,-0.008998016,-0.024798928,-0.0028378358,0.014515481,0.017613698,-0.002373103,-0.030692134,-0.0038464046,0.012636774,0.07388261,0.016994055,0.02615687,0.011799596,0.026921537,0.0020912972,-0.022676319,-0.011713901,0.019564917,0.011858923,0.0033025686,0.016308492,0.0023071836,0.015741585,0.0076268897,0.000987969,0.0041727065,-0.03206326,0.0021555687,-0.015530641,-0.006704016,0.0072709243,0.017903745,0.00014131499,0.0044363844,0.030507559,0.0066413926,-0.009525372,0.02693472,-0.023506904,-0.003918916,0.00965062,-0.01093605,0.009393533,-0.015095573,0.037705973,-0.013829918,0.0013332225,0.017969664,0.0068490393,0.0006620793,-0.008925504,0.008444292,0.014396826,0.022834525,0.0066908323,-0.025972296,0.027527995,-0.011133809,-0.01839155,0.013763998,-0.012221481,-0.004113379,0.023124572,-0.0137771815,0.022439009,-0.025458124,0.011733676,0.007442315,0.012228073,-0.019723123,-0.020843755,0.0034508875,-0.01481871,-0.014264987,-0.048253097,-0.008497028,-0.020764653,-0.010830579,0.0058009187,0.023005916,0.015860239,0.008259717,0.013935389,0.013961757,0.023651928,0.012261033,-0.019024376,-0.002811468,0.013361889,-0.010547125,-0.016796296,0.031245857,0.0076400735,-0.014067228,0.0081212865,-0.012201705,-0.0056031602,-0.015398802,0.006901775,0.038787052,0.0048088296,-0.0069347345,-0.005491097,-0.00033021564,-0.015201043,0.019920882,-0.00091792946,-0.0027109408,-0.013988124,0.023164123,-0.015477906,-0.030903077,-0.012412648,0.0040540514,-0.0017699394,0.01157547,-0.006901775,-0.011021745,-0.011450223,0.007949895,-0.003239945,-0.008417924,-0.017864192,0.025154892,0.025537226,-0.0001959046,0.019551734,0.025524043,0.0053823297,0.005191163,-0.034146316,0.010276855,-0.009459453,0.022570847,0.006829263,0.020527342,-0.008002631,-0.043005902,0.023282778,-0.010520757,0.005372442,0.0027323645,-0.050441626,-0.044983488,-0.020870123,0.0099934,0.012933412,-0.027264317,-0.009835194,-0.0076466654,-0.0031344737,-0.013790366,-0.012676326,-0.015438354,-0.021674342,-0.014726423,-0.011865515,-0.0077785044,-0.014027677,-0.0014535256,-0.0039749476,-0.022768606,-0.00007688895,-0.0023384953,-0.010916274,-0.0108239865,0.0069215507,0.024126548,0.03928804,0.011555694,-0.010771251,-0.0012318712,0.01700724,-0.009202367,-0.010362551,-0.00816743,-0.01380355,-0.03193142,0.025062606,0.009367165,-0.013078435,0.0058437665,0.009301246,0.0101582,0.0052768583,-0.0039914274,-0.017640067,-0.02362556,-0.026868802,-0.013948573,-0.009129855,0.011516142,0.0052570826,0.0021390887,0.01299274,-0.012135786,0.01880025,0.018272894,-0.014396826,0.019828595,-0.00034607755,0.015939342,0.00027500803,-0.012399464,-0.03121949,-0.007738953,-0.02109425,-0.003249833,0.0017682915,0.007297292,0.015530641,0.0013043827,0.003955172,-0.0098615615,0.011278831,-0.014370457,-0.015135124,-0.0085761305,-0.02362556,0.03230057,-0.02700064,-0.009696763,0.00076384254,0.009789051,-0.0016207965,-0.029110065,0.013091619,-0.015688848,-0.029110065,0.027422525,0.007692809,0.025194444,-0.009367165,0.03422542,0.0490705,0.0026928128,-0.023414617,-0.009525372,0.008694786,-0.011364527,0.007198413,0.006440338,-0.0103098145,-0.0019924177,0.0031921533,0.0016010206,-0.007745545,-0.010454837,0.001115688,0.019868147,0.03725772,-0.018945273,-0.010975602,-0.024126548,0.023520088,-0.00732366,-0.025708618,-0.0012244553,-0.0017748834,-0.018312445,0.023717847,-0.020224111,0.031114018,0.004578111,-0.0056888554,0.009439677,-0.011364527,0.0004354809,-0.0020286737,-0.019736307,0.018998008,-0.028345399,0.02133156,-0.013203682,0.013328929,0.004535264,-0.014541849,0.016888583,0.025260365,-0.010533941,-0.026881985,0.013269601,-0.010448245,0.0071786367,-0.0125576705,-0.002499998,-0.011766636,-0.0383388,0.00031929772,0.0009006256,0.012287401,-0.021357927,0.0015787728,-0.02736979,-0.004199074,-0.018655227,-0.0053889216,0.0071061254,-0.017798273,-0.013210274,0.008609091,-0.010777843,0.03245878,0.0018803546,-0.021212906,0.012762021,0.018220158,-0.011054705,0.025998663,0.0031526017,0.009624251,-0.009103487,-0.0077653206,0.0037046776,-0.023902422,0.025128525,-0.02609095,-0.02882002,-0.023546455,0.00617666,0.0034673673,-0.002529662,-0.0007366508,0.010909682,0.030823972,0.014054044,-0.013829918,-0.019999985,0.011028337,0.00026347212,-0.0070533897,0.009156222,-0.014489112,-0.0041562263,0.00075230666,-0.00039737116,-0.0013661822,-0.032590616,-0.013032291,-0.018760698,-0.00789716,-0.026921537,-0.03061303,-0.014528665,-0.0065425136,0.00043218493,0.0031740253,0.0045484477,0.0069215507,0.00033309963,0.015807504,-0.021015147,0.031878684,-0.021621605,-0.013078435,0.0020056018,-0.010718516,-0.013856285,0.004344097,-0.008602499,0.0065095536,0.024047446,-0.02224125,0.017534595,-0.01542517,-0.044878017,0.020197744,-0.026288709,0.01970994,0.0014691815,-0.017323652,-0.022649951,0.037152246,0.011417262,0.0056789676,-0.0015639409,-0.012570854,-0.0020270257,0.015609745,0.018141055,-0.0066908323,-0.00907712,-0.012017131,0.02808172,0.0043144333,0.01150955,0.006196436,0.0100527285,-0.010725108,0.003922212,0.0031657855,0.0062260996,-0.00004493343,0.0034377035,-0.014752791,-0.012794981,0.033197075,0.011707309,-0.012102826,-0.00097231305,0.014779159,0.011087665,-0.013856285,-0.039208937,-0.0016554042,0.0015606448,-0.05178638,0.02210941,0.014080412,-0.022162147,-0.00011515318,0.0066776485,-0.000977257,-0.0065194415,0.01893209,-0.01464732,-0.0065161455,0.0168754,-0.025115341,-0.026420549,0.0055636084,0.017336836,-0.0010308167,-0.015847055,-0.0072577405,-0.000019556986,-0.036203004,0.009386941,0.0038661805,-0.019564917,0.022636767,-0.001262359,-0.00068515114,0.009367165,-0.011885291,0.006875407,-0.028556341,0.005774551,-0.00931443,-0.020936042,-0.049439646,-0.009604475,0.0045220796,-0.001265655,0.021608422,0.24174011,0.0074752746,-0.019472629,0.028371766,0.007277516,-0.009195775,0.0117204925,0.00005458961,-0.0063546426,0.019433077,0.04121289,-0.000034504756,-0.02295318,-0.000059739574,0.01009228,0.002664797,-0.019670388,-0.025840456,-0.014634136,0.021845732,0.00092122547,0.0036980857,-0.010382326,0.007752137,0.028160824,-0.014383642,-0.020922858,0.0032135772,0.006001973,0.0030257064,-0.017877378,-0.006608433,0.0062458757,-0.011647981,-0.031114018,-0.014054044,-0.0088266255,-0.024377042,0.007692809,0.0322742,-0.0016175004,0.0076664416,-0.0033256402,-0.028477237,0.020909674,0.0180224,-0.0052175308,0.008615683,0.0059854933,-0.00045731675,0.0013480544,-0.01771917,0.062702656,0.016532619,0.008299269,-0.023651928,-0.00062252756,-0.014462745,0.020369135,-0.019762674,-0.013045475,0.010652596,-0.0018688187,0.024891214,-0.041872084,0.008206981,0.008094918,0.005777847,-0.008391556,0.008127878,0.014199067,-0.0006212916,-0.0013818381,0.015939342,-0.013645343,-0.014660504,0.044983488,0.011041521,0.014027677,0.0031723774,-0.009624251,-0.0031905053,-0.010909682,-0.027870778,-0.010507573,-0.043164108,0.02085694,0.01488463,0.005500985,0.0009055695,-0.0052570826,-0.0072115967,0.00308833,-0.014436377,0.01893209,0.012907044,0.0073500276,0.04073827,0.0089584645,0.0025675658,-0.008035591,0.029321007,-0.015702032,0.008371781,0.00337508,-0.015557009,0.0019479222,-0.0016389244,-0.0028592597,-0.023164123,0.016400779,-0.021015147,0.004040867,-0.011806188,0.009531965,0.010375734,0.026605122,-0.0137112625,-0.011318384,-0.016176652,0.009716539,0.010098872,-0.03725772,0.0062656514,0.005194459,-0.018220158,-0.0321951,-0.0041298587,0.020276848,-0.03986813,-0.0004923365,-0.024746193,-0.012768613,-0.013763998,-0.018510204,0.0022033602,0.0031245858,-0.0034772553,-0.0042551057,-0.0033635441,0.0067699356,0.018457469,-0.007007246,0.0056921514,-0.013098211,-0.014291354,0.031140387,-0.008114695,-0.0081872055,0.020527342,-0.01670401,-0.013355297,0.0056789676,-0.010112056,0.034067214,-0.0043902406,-0.017363204,-0.02487803,-0.01626894,0.003642054,-0.033434387,-0.020290032,0.012445607,-0.02392879,-0.012228073,-0.0006212916,-0.16822664,0.012887268,-0.0073763956,-0.016730377,-0.0069545107,-0.015609745,0.024864847,0.0071324934,-0.02440341,0.009980217,0.016783113,0.019802228,-0.02693472,0.0020072497,0.0071324934,-0.0003532875,-0.0056756716,0.004914301,0.015385618,0.007732361,-0.0050889878,-0.0010093928,-0.0050791,-0.018338813,0.019485813,0.00071440294,-0.012300584,0.010909682,0.0029696748,-0.016506251,-0.020817388,0.0061371084,0.0314568,0.004044163,0.012715877,0.005161499,0.0037607092,0.006186548,-0.0016257404,0.018984824,0.0036783097,0.03361896,0.020975595,-0.00021568047,0.00068185513,0.03243241,0.0322742,-0.01988133,-0.013144354,-0.009835194,-0.008648642,-0.005909686,-0.038365167,0.0044067204,0.025102157,-0.0014288059,-0.00033557162,-0.000105780244,-0.0006451874,0.013269601,0.0082531255,-0.01862886,-0.0008717858,-0.001674356,-0.0018655227,0.0046011833,0.00024246027,-0.005500985,-0.020922858,0.011990762,-0.023230042,-0.015557009,-0.0067237923,-0.022755422,0.0076005217,0.005191163,-0.0016908359,0.01680948,0.0056855595,-0.00034504753,0.0065622893,0.029136432,-0.020685548,0.006470002,0.0032531288,0.010118648,0.014054044,0.0161371,-0.00732366,-0.01150955,0.026051398,-0.0253131,-0.023823319,-0.01964402,0.01292682,0.052867465,-0.0017930112,-0.007033614,-0.017033607,0.0104350615,0.017521411,0.023915606,-0.024983503,0.0059360536,0.04519443,0.000040839208,0.0031377696,0.0214634,0.033302546,0.005059324,0.008259717,-0.0043078414,0.015174676,0.02808172,0.0026499652,0.035860226,-0.007732361,0.00017180278,0.000140903,0.001133816,0.06148974,-0.00870797,-0.0077653206,0.003500327,-0.015530641,-0.01441001,-0.12445607,-0.019314423,0.024047446,-0.0034113356,-0.009274878,0.00620962,-0.0015351011,-0.005533945,-0.016084366,-0.003365192,-0.0036750138,-0.026947904,-0.008266309,-0.003233353,0.019683572,-0.02963742,-0.017982848,0.016954504,-0.041397464,0.008846401,-0.003497031,-0.025734985,-0.0010761364,-0.002104481,-0.01235332,0.004897821,-0.018325629,0.012399464,0.00840474,0.003783781,0.027106112,-0.007969671,0.010514165,-0.028503604,-0.023164123,-0.005346074,-0.0063744187,-0.009433085,0.031351328,-0.04050096,-0.0072511486,-0.006585361,0.013658526,-0.03419905,-0.0065293293,-0.019894514,0.005896502,0.03952535,-0.013671711,-0.028345399,-0.049993373,-0.00069627503,-0.01771917,-0.008464068,-0.0052274186,-0.020342767,0.010263671,0.018615676,-0.014238618,-0.014555032,-0.031166755,-0.013869469,-0.022359904,0.027185215,0.0099208895,0.0037244535,-0.0038826603,0.001112392,-0.0084377,-0.0031641375,-0.010718516,0.031193122,-0.006868815,-0.0017287397,-0.011034929,0.021687526,-0.026077766,-0.03208963,0.020276848,0.00082193414,-0.03108765,-0.013632159,0.0291628,-0.0065392177,0.04627551,0.0075280103,-0.024073813,-0.005662488,0.03158864,-0.008872769,0.0090243835,0.022755422,0.016835848,-0.037415925,-0.0106262285,0.032854293,0.0025758056,-0.022267617,0.03266972,0.01700724,-0.025669064,-0.016361227,-0.021397479,0.006156884,-0.0090112,-0.028951857,-0.028556341,-0.0071061254,0.00810151,0.003938692,0.0039815395,-0.01184574,-0.024205651,0.035491075,-0.002374751,0.016717194,-0.015293331,-0.012577446,0.026077766,0.013645343,0.019472629,0.0049802205,-0.0015293331,-0.02237309,0.009868153,0.0003489615,-0.008562947,0.025260365,-0.015622929,0.005998677,-0.0063019074,-0.0073961713,0.02808172,-0.025589962,0.0055537205,0.0021390887,-0.0015153252,0.0029861548,-0.004232034,0.004067235,0.023401434,0.036572155,-0.029136432,-0.03195779,0.0036189822,-0.032010525,-0.0052537867,-0.0016521083,-0.0338299,-0.0048384937,-0.010461429,-0.00056979194,0.0045121918,0.008661826,-0.011351343,-0.014317722,-0.0018836505,-0.027633468,0.014752791,-0.007745545,0.01549109,-0.0148055265,0.013144354,0.0012038554,-0.026143685,0.0032729048,0.023005916,0.023704663,0.010975602,0.033566225,-0.0019957137,-0.005995381,-0.0052801543,-0.010224119,0.016730377,0.007969671,0.012340136,0.0098615615,-0.014106779,-0.00759393,0.02224125,-0.004620959,0.022162147,0.009241918,-0.010586676,0.017099526,0.013790366,0.019683572,0.012709285,0.001265655,-0.011595245,-0.0053988094,-0.044904385,0.0056789676,0.011621613,0.01758733,0.003076794,0.013632159,0.0010332887,0.017429125,-0.008174022,0.008734338,-0.0038365168,-0.00042888895,-0.013328929,-0.01873433,-0.004067235,0.014950549,-0.010303223,-0.022874078,-0.022689503,0.026974272,0.0010753124,-0.01741594,0.011680941,0.008694786,-0.008549763,0.0013027347,-0.0061173323,-0.009505596,-0.014080412,-0.00029725587,0.020817388,0.009274878,-0.003086682,-0.003078442,0.011034929,0.018747514,0.022649951,-0.016071182,-0.012518119,0.004248514,-0.012478567,-0.012913636,-0.009881337,-0.008793665,-0.005791031,-0.009090303,-0.024245203,0.013698079,-0.012221481,0.05146997,0.0038628846,-0.012643366,0.008595907,0.026130501,0.029611053,-0.009578108,0.017033607,-0.016769929,-0.031562272,-0.0062788352,-0.019195767,-0.0011041522,-0.010876723,-0.00982201,-0.026473284,-0.005471321,0.017191814,-0.008365189,-0.01748186,0.0051219477,0.0021720484,0.008213573,0.019393526,-0.015214228,-0.023770582,0.045510843,0.022834525,0.005952534,-0.020052722,0.017771905,0.01596571,0.0026153573,-0.008648642,0.0038167408,-0.02163479,-0.015754769,-0.024192467,0.005448249,0.010547125,-0.013526687,0.014555032,-0.017521411,-0.022808157,-0.016611721,-0.008721154,-0.005187867,-0.007165453,-0.0019528661]},{\"id\":\"167d89f3-3edd-499e-b368-9136a237a168\",\"text\":\"Hello, I uploaded a tik tok for the Sacheu lip liners but it’s still asking on my account if I’m ready to post. \",\"vector\":[-0.010208447,0.013782391,-0.014322102,-0.00851033,-0.0003593278,0.024339676,-0.02107508,-0.029644646,0.0035344528,-0.02207552,0.03746388,-0.020311585,-0.010965359,-0.042176485,0.00826022,-0.0156648,0.0063251564,0.0068451227,-0.0022394739,-0.04041255,-0.02716987,-0.018244885,-0.009036878,0.005861136,-0.008832841,-0.026985578,0.019943,-0.022036029,-0.000004492883,-0.0042420016,-0.03130327,-0.008345784,-0.023405053,-0.012551585,-0.024510805,-0.016717896,0.007957455,-0.027722746,0.025037352,-0.01555949,0.000100064666,0.028933806,0.011814418,-0.019640235,-0.021404171,0.0124726035,-0.011636708,-0.0038898725,-0.017415572,-0.0013023833,0.010563867,-0.02961832,-0.062290616,-0.025537573,0.0046796943,-0.017415572,0.016428294,0.0134664625,-0.015849091,0.0018462085,-0.009050041,-0.005742663,-0.0067595583,-0.008286547,-0.007865309,0.0035443255,-0.010379575,0.014743341,0.014914469,0.0015640118,0.008740695,0.0013081424,0.009991246,-0.020324748,0.022760032,0.0065950123,0.015519999,-0.020140456,0.0156648,0.016704733,0.018916233,-0.024471313,0.0043769293,0.012485767,0.02428702,0.026906596,0.014532722,0.019469108,-0.0064962846,-0.02445815,0.00024805343,0.029223409,0.0076283626,0.0010843596,-0.003047396,0.004811331,0.00055986847,0.023470871,-0.015230398,0.0037253264,-0.0038010175,0.0029141135,-0.029407699,-0.01602022,-0.02214134,0.0090302965,-0.005558371,0.0029634773,0.0218649,0.017402407,-0.01000441,0.02631423,0.009148769,-0.032409023,0.012031619,-0.006957014,-0.0012686513,-0.027643764,-0.012446276,-0.032961898,0.038043085,0.004903477,0.0020173367,-0.019376962,0.023734147,0.0072795246,0.0045118574,-0.030329159,-0.0031181509,-0.0048870225,0.012913587,-0.008029855,0.014295775,0.020140456,-0.001890636,0.021127734,-0.027117217,0.013914028,-0.0023085834,-0.03727959,0.012268566,0.03949109,-0.012268566,0.038253702,-0.006433757,0.00430782,0.007917964,-0.0017211534,0.017928956,-0.0030737233,0.02257574,-0.018389685,0.00084905844,-0.023168107,-0.020140456,0.011458999,0.026814451,0.0000636074,-0.014308939,-0.012255402,-0.016151857,0.0099320095,0.012261984,-0.016033383,0.023089124,0.038832907,0.015243561,-0.013953519,-0.018165901,-0.010010991,-0.013716573,-0.008240474,-0.021391008,0.019890346,-0.0016759032,0.02591932,0.011906564,-0.016994333,0.017165462,-0.01424312,-0.03122429,0.027196199,0.012939914,0.038148396,-0.0141114835,-0.023089124,-0.0036298896,-0.0007647285,-0.020917114,-0.033778045,-0.033988666,0.022417776,0.032356367,-0.02360251,-0.63649106,-0.029170753,0.025458591,0.0252743,0.0048146225,0.034804814,0.004528312,0.016678404,-0.022694213,0.031013671,-0.018205393,-0.003432434,0.016691567,0.00826022,-0.0031790328,-0.012874096,0.03891189,-0.017283935,-0.01791579,0.011064087,-0.020706495,-0.013887701,-0.0037154534,0.00008998621,0.020969769,-0.010741577,0.045914974,0.0030292957,-0.01698117,0.02859155,0.0038569632,0.014361594,0.00073757843,-0.004304529,0.049627136,-0.017902628,-0.012202747,0.001336938,0.0131900245,0.009616081,-0.046915416,-0.034699507,-0.021693774,-0.0009189906,-0.0031444782,-0.011511653,0.027512128,-0.020456385,0.03762185,0.031171635,-0.0000088957795,-0.014690686,0.027038233,0.013914028,-0.0018462085,-0.025063679,0.015598981,-0.0075954534,0.016441457,0.022338795,-0.028143985,0.009036878,-0.017692009,0.007180797,-0.01520407,0.018718777,-0.006084919,0.009800373,0.019771874,0.0005968914,-0.01616502,-0.0064962846,-0.032172076,0.020100966,-0.0023382017,0.032777607,0.00027746605,-0.0043242746,0.011011433,-0.0012900423,0.016322985,0.0027248852,0.0029174043,-0.016099202,-0.0048014587,0.00011528519,-0.017283935,-0.011103579,-0.003432434,0.013532281,0.016599422,0.028407259,0.0077731633,-0.020969769,0.008747277,0.018666122,-0.006970178,-0.024721423,0.014822323,0.007865309,0.012393621,0.015138252,-0.020640677,0.006598303,0.03928047,0.0044065476,-0.032093093,0.009050041,0.015941238,-0.020285258,-0.005347752,-0.002716658,-0.0009691772,-0.008378693,0.0018873451,-0.026222086,0.023168107,-0.00067258265,0.012801696,-0.025866665,0.0009008905,-0.002114419,-0.00016979112,0.00079229,-0.005485971,0.026893433,0.0014233248,-0.0062395926,0.0031099236,0.009385716,0.0007231806,-0.016625749,0.035410345,-0.013380898,-0.030355485,0.011853909,0.022746868,0.004228838,0.0069767595,-0.027512128,-0.0019893637,-0.015480508,0.0030539779,0.0069175228,-0.004610585,-0.025721865,-0.007904801,0.0015640118,-0.005828227,-0.0064403387,-0.01808692,-0.023405053,-0.007391416,0.010800813,-0.012696386,0.0060980828,-0.0035377436,-0.009991246,-0.005130551,-0.019113688,-0.02566921,0.040649496,-0.01673106,-0.010583612,-0.025142662,-0.002726531,-0.009938591,0.0025027478,0.0011896691,-0.0431506,-0.01587542,-0.026011465,-0.009254079,-0.024721423,0.01484865,-0.01331508,0.015598981,-0.025063679,0.015032942,-0.0141114835,0.003282697,-0.0053181336,0.0013517472,0.009859609,0.01655993,0.015401525,-0.011781509,0.029039117,-0.006878032,0.025379607,0.005535335,-0.010846887,-0.0067990497,0.0058545545,-0.0025586935,0.0050384053,0.0089381505,0.024760915,-0.011768346,0.002866395,0.005699881,0.0025652754,0.029460354,-0.027854383,-0.0031099236,-0.01399301,-0.021746427,-0.0013978201,0.018968888,0.03143491,0.02769642,0.0038635451,-0.0156648,-0.011268125,-0.008187819,0.022378284,0.016033383,-0.014308939,-0.0215753,0.035094418,-0.010623104,0.0032086512,-0.004821204,-0.023628836,-0.009918846,0.023773637,0.027485799,0.03261964,-0.003735199,-0.010478303,-0.035173398,0.03809574,-0.0046171667,0.037753485,0.012551585,-0.010721832,0.01727077,0.0009881001,0.016283493,-0.0028762678,-0.006173774,0.01267664,0.011281288,-0.0044921115,0.045520063,0.0049660048,0.016862696,-0.00876044,-0.017757827,0.00438022,0.0007992832,0.0036397623,-0.026274739,-0.022588905,0.008049601,-0.03204044,-0.0011148006,-0.0008679813,0.007345343,0.026538013,0.016625749,0.017784154,-0.022694213,-0.014743341,-0.0012933332,0.009188261,-0.004133401,-0.016586259,-0.012650313,-0.016770551,0.00010145303,-0.016336149,0.025787683,-0.026840778,0.03304088,-0.012064529,0.014308939,0.0010119592,-0.0008605767,0.012202747,0.005479389,-0.037226934,0.00801011,0.012795114,0.010840304,-0.0046895673,-0.018258048,0.007003087,-0.0028581677,0.052259877,0.013229515,0.020193111,0.00075608987,-0.008398439,-0.021391008,-0.0035903985,0.034278266,0.010241357,0.03304088,-0.000008915063,0.0029025953,0.026195757,0.0054563526,0.0004965182,0.027512128,0.00077501265,0.013051806,-0.009616081,-0.012255402,-0.008095673,-0.0034554705,0.0055846986,-0.02663016,-0.002278965,0.009175097,0.0051075146,-0.014098319,-0.01242653,0.02798602,0.0047093127,-0.0071018147,0.0076283626,-0.040991753,-0.0008247879,0.09067155,0.010017574,0.012775368,0.018560814,-0.019074198,0.030776724,-0.00258173,-0.024418658,-0.009991246,-0.0041465648,-0.022970652,-0.01434843,-0.022049192,0.0066970307,0.023760473,-0.019745545,0.023655163,-0.013183443,-0.020811806,-0.03406765,-0.0022921287,0.007786327,-0.0034653433,0.009168515,0.009208006,-0.0012571331,0.011064087,0.012900423,0.011774927,0.017046988,-0.027564783,-0.0064567933,-0.016336149,0.013703409,-0.006726649,0.022299303,0.030539777,0.014888141,-0.0052720606,0.010412484,0.007733672,0.032014113,0.013716573,-0.016902188,-0.0022937742,0.0058413907,-0.012900423,-0.009063206,-0.0007552671,0.004821204,0.043071616,-0.0041926377,-0.022457268,-0.004956132,0.022470431,0.017362917,-0.0021440373,-0.03464685,0.0060915006,-0.028828496,-0.015691128,-0.025050515,-0.016244002,-0.023668328,-0.007733672,-0.015309379,-0.0075427983,-0.03435725,-0.0054004067,0.02107508,-0.009905682,-0.016349312,-0.02759111,-0.016757386,-0.004041255,-0.015638473,0.02243094,0.013328243,0.0029453773,0.039359454,-0.006226429,-0.030276503,0.0047093127,0.0013624426,-0.003735199,0.0012596013,-0.0010613231,0.0038602543,-0.0020387275,-0.00028260812,0.021746427,0.034620523,0.032488003,-0.018613467,-0.0038010175,0.0048409496,0.0036233077,0.03233004,-0.031856146,-0.006529194,-0.0017227989,-0.01944278,-0.022654723,-0.018429177,-0.0020403732,0.008115419,0.017705172,0.029486682,-0.024273857,0.005867718,0.02859155,0.015348871,-0.0070689055,0.008490585,0.01777099,0.024023747,0.002446802,0.017139133,-0.00059483456,-0.0022674468,-0.008556403,-0.011623545,0.023365563,-0.0003630301,0.006351484,0.027749073,0.011327362,-0.039570075,-0.010149211,0.0043703476,0.017455062,0.015809601,-0.012696386,-0.018494995,-0.019758709,-0.0068517043,0.007964036,0.024918878,-0.0007569126,-0.007694181,-0.013756064,0.0032728242,-0.0037648175,-0.018284375,-0.010149211,-0.03648977,-0.009964919,0.014374757,-0.0052885152,0.017178625,0.002585021,0.012966242,-0.022351958,-0.033936013,0.009425207,-0.016757386,-0.012314639,0.0116432905,0.023339234,0.026801288,0.0049660048,-0.0076744356,0.011557726,-0.0059730276,-0.0034028157,0.0009732909,0.0010234774,-0.014071993,-0.011807837,0.010149211,-0.008089092,-0.0050746053,0.043993074,0.03351477,-0.0067661405,-0.0005631594,-0.0116630355,-0.000076051205,-0.020482713,-0.030855706,-0.02090395,0.0065555214,0.010076811,-0.014282611,-0.004120237,0.02132519,-0.0037253264,0.014782832,0.02218083,0.014769668,0.029170753,-0.019205835,0.019600745,-0.007983782,0.010945614,0.00043892703,-0.016217675,-0.008674877,0.0075427983,0.009497607,0.00213581,0.004084037,0.006996505,0.0037154534,-0.02485306,0.013505953,0.0111101605,-0.026301067,-0.0075757075,-0.01086005,-0.00089595414,-0.034989107,-0.012038201,0.003784563,0.021799082,0.003090178,-0.034225613,0.002004173,-0.0103927385,-0.008062764,-0.007950873,-0.008707786,-0.0040346733,0.021706937,0.036516096,0.031777166,0.020140456,-0.006433757,0.030961016,0.0011970737,-0.008043019,-0.0022016284,0.043176927,-0.011399762,0.006315284,0.013782391,0.009662154,-0.017468225,-0.022970652,0.012880677,0.014085156,-0.004788295,-0.018652959,-0.009734554,-0.03970171,0.026669651,-0.007555962,-0.0047981674,0.0016339439,-0.0068846135,-0.012979405,0.0156648,0.01641513,0.005133842,0.010603358,0.0057755723,-0.022233484,-0.00054135703,-0.0065884306,0.0058216453,0.0061606104,0.02631423,-0.0137428995,0.009800373,0.025392773,-0.0063745202,-0.01445374,0.0011024596,0.000732642,0.026814451,-0.037253264,0.0022263103,0.006094792,-0.020272093,0.0015804664,0.0029848684,0.0052029514,-0.02207552,-0.0133743165,-0.010728413,0.030355485,0.0021687192,-0.010155792,-0.010596776,-0.0013525699,0.01777099,-0.0016207802,-0.008918405,-0.007911382,-0.029170753,-0.0051108054,-0.008635385,0.012801696,0.005979609,0.0018215266,0.010563867,0.0106691765,0.033830702,-0.014822323,0.015032942,-0.00801011,0.012387039,-0.0074901436,0.015849091,0.014190465,-0.038280033,-0.00332877,-0.014177302,-0.022417776,-0.006127701,0.03362008,0.016362475,-0.009234333,0.0035278709,0.022325631,0.003689126,0.014795995,-0.023681492,0.0049758777,0.007253197,0.0036693807,0.0156648,0.014414248,-0.000089574845,0.002353011,-0.042808343,0.030487122,-0.0089381505,-0.0054695164,-0.0094910255,0.025116334,0.007687599,-0.00047636128,-0.0029223408,-0.03148756,-0.000026481657,-0.0023382017,0.02214134,-0.018850414,0.002933859,-0.035120744,0.017297098,0.016494112,0.020153621,0.0026508395,0.00059401186,-0.011064087,-0.011129906,-0.01587542,0.002649194,-0.03364641,0.022760032,0.01434843,-0.021799082,-0.0032563696,-0.010919287,-0.023655163,-0.011801255,-0.014150974,0.012716131,0.0070096687,-0.024234366,-0.015730618,0.021891229,-0.003514707,0.020917114,-0.01505927,-0.0083128745,-0.0021637827,-0.021641118,-0.009859609,-0.005907209,-0.040675823,-0.0035476163,0.007865309,0.009596335,0.020851295,0.016217675,-0.034409903,0.012755622,0.0035903985,0.024589786,0.0145722125,0.012716131,0.005690008,-0.0063317386,0.0078521455,0.0019367089,0.008029855,0.0021637827,0.0061145374,-0.0019218997,-0.0012834605,0.043097943,0.0026903306,0.012202747,-0.031461235,-0.0028713315,0.04354551,-0.011031178,0.011531399,0.0056011532,-0.0031395417,-0.024273857,-0.00911586,0.024695097,-0.018271212,-0.018218556,0.0156648,-0.013650754,0.002652485,0.008424766,-0.0019301272,-0.014624868,-0.019745545,0.0012184647,-0.019245325,-0.013808718,0.013196606,0.009872773,-0.008049601,-0.020798642,-0.007964036,-0.0140193375,0.026893433,-0.01577011,0.00936597,-0.024774078,0.033988666,0.022996979,0.023484036,-0.02919708,-0.0060553006,0.0026162849,0.020337911,0.0041959286,0.22915363,0.009563426,0.007648108,0.0489163,0.020969769,0.00026800466,0.014769668,0.014901306,-0.013361152,0.01000441,0.0028153858,0.012189584,0.006170483,-0.02065384,-0.008424766,-0.024484476,-0.027933365,-0.0063811024,-0.021088243,-0.013756064,-0.007996946,0.0005968914,0.017692009,-0.015098761,0.02930239,-0.010471721,0.008826259,-0.035805255,0.01324268,-0.015888583,-0.025379607,-0.0019827818,0.019363798,-0.0064107203,-0.023457708,-0.0020798643,0.0075362166,0.005992773,0.023852618,0.016691567,-0.005420152,0.0050976416,-0.0014480067,-0.015993891,0.005476098,-0.005439898,-0.012900423,-0.010168956,-0.0024155385,0.01681004,0.0007671967,-0.008832841,0.03040814,0.016678404,-0.007812655,-0.0007268829,0.018060593,-0.0025093297,-0.021193553,-0.0050647324,0.00022851356,0.014150974,-0.012525258,0.013782391,-0.025971975,-0.0025438846,0.012413367,-0.005390534,0.025432263,-0.0068582864,-0.0034620524,-0.012360712,-0.0044592023,0.023628836,-0.04191321,-0.017060151,0.0042387103,-0.002428702,0.03446256,0.018494995,0.011274707,-0.009530516,-0.002224665,-0.014229957,-0.010958778,-0.025300626,0.016691567,0.0031559963,-0.0072334516,-0.01858714,-0.011630126,0.0074901436,-0.023655163,-0.0252743,0.000012231697,-0.01207111,0.008924986,0.017652517,0.0018758269,0.0023727564,-0.016586259,0.018258048,0.009662154,0.021680608,0.0034554705,0.011426089,-0.026801288,0.003781272,0.008740695,-0.01681004,0.0077468357,-0.034093976,0.0015566072,-0.015835928,-0.020416895,0.023115452,-0.0006034732,-0.0010917641,-0.00017411046,-0.0020551821,-0.0038174721,0.00056069123,-0.007924546,-0.003777981,0.013150534,-0.011834164,-0.00022152034,-0.0056340625,0.00033114926,-0.039754365,0.02040373,0.023628836,0.0027610855,0.008326039,-0.018284375,-0.011366853,0.012255402,-0.020798642,-0.0004487998,0.012314639,-0.01093245,0.01804743,0.00050063187,0.01783681,0.0049660048,-0.032277387,0.0022444103,-0.011972383,-0.020416895,0.014519558,-0.011340525,0.015638473,0.005867718,-0.004176183,0.012999151,-0.0020930278,-0.01954809,-0.0045809667,0.0078060725,-0.005380661,-0.031698182,-0.013229515,0.03346212,-0.022878505,-0.02239145,-0.023628836,-0.16638914,0.019837692,0.017586699,-0.007865309,-0.009958337,0.0134664625,0.0104651395,-0.006476539,-0.016902188,-0.0027281763,0.044545952,0.00291905,-0.0058545545,-0.036226496,-0.01641513,-0.01434843,-0.018705614,-0.010952196,0.02616943,0.018560814,0.030329159,-0.018376522,0.010274266,-0.013795555,-0.002538948,0.00023221584,-0.010287429,0.039359454,-0.016033383,-0.000902536,-0.015849091,-0.015493671,0.02435284,0.034883797,0.008977641,-0.0036298896,0.00936597,-0.016388804,0.0074572344,0.0024681932,0.0008079219,0.005828227,0.006525903,-0.0027002033,0.029934248,0.0014241475,0.01445374,-0.009938591,0.005439898,-0.020021982,-0.0057755723,-0.016770551,0.0075427983,0.015993891,-0.011189142,0.024339676,-0.0028384223,0.026090447,-0.0023266834,-0.0020469548,0.0010687277,-0.0015253434,0.010991687,-0.010603358,0.006924105,-0.030460795,-0.01263715,0.01562531,0.0021094824,0.022983816,-0.008793349,-0.0011542917,0.019311143,-0.0029980321,-0.008793349,-0.009754299,-0.02552441,0.01093245,-0.0049363864,0.016086038,-0.019956164,0.052549478,-0.021351516,0.022246648,-0.010280848,0.017415572,0.0196534,0.009622662,-0.018797759,-0.025932483,-0.014717014,0.028196638,-0.015519999,-0.008049601,0.0030506868,0.012051364,-0.00452173,0.012492348,-0.010761322,-0.027670091,-0.0003986132,-0.0061540282,-0.025629718,0.022457268,0.027222525,0.0053082607,-0.038280033,0.0076546897,0.0376745,-0.030197522,-0.020969769,-0.00569659,0.026301067,0.02581401,0.017362917,0.036937334,0.004297947,-0.019719219,0.0028713315,-0.021851737,0.029934248,-0.028881151,-0.011577472,0.008326039,-0.01363759,-0.017692009,-0.099675514,-0.027301507,-0.0037253264,-0.013163697,-0.027301507,0.0052819336,0.0041926377,0.019021543,-0.0022740287,0.014743341,-0.010287429,-0.025195315,0.011742018,0.00009204304,0.01053754,0.013703409,0.019113688,0.0041893465,-0.0023678201,-0.0042782016,-0.007904801,-0.0026640033,0.0033534518,-0.024918878,-0.020193111,-0.026748633,-0.02000882,0.003649635,0.015941238,0.021246208,-0.01103776,-0.006647667,-0.0087538585,-0.015598981,0.002933859,0.005344461,-0.014914469,-0.01652044,0.017823646,-0.03125062,-0.00022810219,0.004646785,-0.0075954534,-0.007786327,-0.030539777,0.0060915006,0.0019449362,0.008576149,0.014901306,-0.01103776,0.008194402,0.00015354219,-0.008247056,-0.023642,0.026603833,-0.026129939,0.011129906,0.02727518,-0.03261964,0.005344461,0.0039063273,-0.01217642,-0.013690245,0.018968888,-0.014756504,0.0003126378,0.0021308735,-0.00722687,0.01762619,0.024984697,-0.004518439,0.030144867,0.00084000843,0.013361152,-0.018350193,-0.010070228,-0.0045414753,-0.017639354,0.009477862,-0.03154022,-0.016388804,-0.009866191,0.006249465,-0.025195315,0.008141747,-0.012926751,0.0013114334,0.0063679386,0.006506157,-0.04557272,-0.008451094,-0.010234774,0.0019284816,0.0011156233,-0.01869245,0.014993451,-0.008299711,0.01107067,0.010813978,0.02146999,-0.013598099,-0.01153798,-0.05523487,0.015928073,0.027354162,-0.03001323,-0.01235413,0.0037582356,-0.017981611,-0.040175606,-0.020535368,0.0196534,-0.006423884,0.00137972,0.0030325868,0.010491467,-0.003154351,-0.026616996,0.005397116,-0.005206242,0.021193553,-0.022720542,-0.01445374,-0.0060092276,-0.028222967,0.003065496,-0.018139575,0.018968888,0.011004851,0.026340557,-0.0063811024,0.0034982525,0.040991753,-0.019113688,-0.0040346733,0.03801676,0.009925428,-0.029144425,0.039438438,0.01727077,-0.018876743,-0.024774078,-0.005581408,-0.03211942,0.015006615,-0.027854383,-0.011064087,-0.0066641215,-0.016375639,0.002774249,0.040965427,0.017849972,0.039438438,0.008279965,0.003304088,-0.012939914,0.030697742,-0.025326954,0.017744664,-0.0083128745,0.004781713,-0.04112339,0.03880658,0.019732382,0.017033825,-0.016099202,0.030460795,0.00972139,-0.02838093,0.0005010432,0.017494554,-0.037305918,-0.023576181,-0.014730177,0.014229957,-0.01848183,0.025116334,0.026511686,-0.028775843,-0.0030029684,-0.02848624,-0.000088854955,-0.006292247,0.0064666662,-0.0196534,0.023365563,0.007990364,0.03040814,-0.0073979977,0.030987343,-0.0126568945,-0.005002205,-0.05202293,-0.0041597285,0.014822323,0.0009782272,0.034225613,0.018652959,-0.026616996,0.011636708,0.006950432,0.0007746013,0.022944324,0.01207111,-0.010853468,-0.026814451,-0.0123804575,0.0009091178,-0.014335266,-0.026353722,0.01940329,0.018508159,-0.0021555554,-0.024234366,0.0044131293,0.0131900245,-0.00034493,-0.019271653,-0.0054168613,-0.01295966,-0.01944278,0.03841167,0.007648108,-0.0048968955,0.03567362,-0.01267664,0.010149211,-0.022404613,-0.005209533,-0.006127701,0.041360337,0.008484003,0.003239915,-0.009280407,-0.0063613565,-0.006667413,0.008431348,-0.010813978,-0.035226054,0.024866223,-0.0072334516,0.07329547,0.0007532103,-0.001465284,-0.005871009,0.006772722,0.03222473,0.02435284,0.005212824,0.0059236637,0.025300626,-0.0039754366,-0.015822764,0.01107067,-0.01833703,-0.024366003,-0.0010761323,0.011347107,0.011689363,-0.0063745202,-0.026248412,0.015677962,0.013808718,0.020430058,0.0055879895,0.0068451227,-0.022365121,0.040359896,-0.004297947,-0.031145308,-0.031013671,0.020996097,0.018982051,-0.009056624,-0.037095297,0.0007170101,-0.012025038,-0.011222051,0.0431506,0.012064529,0.016954841,0.034383576,-0.002303647,-0.0018067175,-0.018771432,-0.03283026,0.011742018,-0.016112365,0.01278195,-0.04428268]},{\"id\":\"72d50368-b335-4b3a-8477-da1cb93f9a93\",\"text\":\"Hope there’s no more video. We can post as much as we can even without showing our face. \",\"vector\":[-0.036259446,-0.0061134356,0.02160275,-0.011540041,0.023585485,0.017157793,-0.012466614,-0.023442937,0.008183645,-0.010393165,0.011565959,0.014254964,0.0030291798,-0.0291838,0.015797092,-0.012175035,0.017248506,-0.013464461,0.021810096,-0.019788481,0.0041598575,0.009486031,-0.027317695,-0.00002951223,-0.010049749,-0.009622101,0.020255009,-0.026851168,0.003343437,-0.02477772,0.023844667,-0.018622167,0.014423432,-0.02105847,-0.011403971,-0.00825492,-0.0050281147,0.008883434,-0.0034697878,-0.012285187,0.0153435245,0.004373682,-0.011676111,-0.030272359,-0.025801485,0.01347742,0.0047365357,-0.007820792,-0.014488227,0.03649271,0.019218283,-0.029520735,-0.024324153,-0.009803528,0.004869366,0.03879942,0.0036123374,0.0079763,-0.010244136,-0.024544457,-0.003315899,0.017676156,-0.022859778,0.0062527456,-0.025334958,-0.0047721732,-0.026086584,0.0181686,-0.0024897591,-0.00070505374,0.0031215132,0.0076069674,0.012628602,-0.03786637,0.023961298,-0.018142682,0.027291777,0.00086906686,-0.017131874,0.020293886,0.032138463,-0.005183623,-0.0047397753,0.012213913,0.028043402,0.0057570618,0.020060621,0.023352223,-0.0099590365,-0.020877043,0.0048920442,0.024375988,0.020967755,-0.0025513147,-0.011643713,0.020488271,0.0035281037,0.016328413,0.0012918562,-0.007678242,0.004662021,-0.01995695,-0.012414778,-0.0053034946,-0.0016482302,-0.02214703,0.007166359,-0.015524952,0.030738886,-0.0033239985,-0.008682569,0.0049730386,-0.007678242,-0.021343568,-0.012136158,-0.025542304,0.022626515,-0.007419061,-0.011883456,-0.003673893,0.021576831,-0.011378053,0.030324196,0.011980649,0.005352091,-0.0013882391,-0.0098553635,-0.018259313,0.007127482,-0.013108088,0.029753998,0.0079568615,0.016211782,0.00013799372,-0.0028931098,0.018466657,-0.0045907465,0.005274337,0.0027278818,-0.014475268,0.011371573,0.035170883,-0.02822483,0.030842558,-0.0012756573,-0.015900765,-0.0031522908,-0.014643736,0.017792787,0.019244201,0.009388838,-0.0059222896,0.007892067,-0.0051415064,0.015887806,0.0097840885,0.033900898,0.010127504,-0.013594052,0.001569666,0.0017235547,0.010911527,0.011578918,-0.014980671,0.02201744,0.020967755,0.011747386,0.0066933534,-0.0065410845,0.013153444,0.014488227,0.02160275,-0.03371947,-0.0029676242,-0.011164228,0.026877087,-0.011980649,0.008812159,0.0090843,-0.03174969,-0.021589791,-0.009304604,0.035715163,0.01761136,-0.0132376775,0.005216021,0.02037164,-0.024064971,0.0075680898,-0.0003934289,-0.018829511,-0.0036350158,0.020255009,-0.017689114,-0.6539659,-0.0057829795,0.059093304,-0.005128547,0.0198144,-0.00742554,-0.004512992,0.0016474202,-0.036026184,0.016613513,-0.019425629,-0.001568046,-0.02050123,0.015045467,0.0079244645,-0.028535847,0.015019548,0.007969821,-0.00016664539,0.002791057,-0.012725795,0.006424453,0.0024330632,0.031023985,0.008883434,-0.012077842,0.015123221,-0.0024832794,-0.044656914,0.0068942187,-0.021667546,0.017157793,-0.00024318483,-0.017533606,0.061477773,-0.021641627,0.0014400753,-0.018479617,-0.004940641,0.020902961,-0.027291777,0.0013688005,0.006369377,-0.0068423827,-0.016678307,0.0012780871,0.015874846,-0.00027457005,-0.011494685,-0.012136158,0.011714988,0.0075745694,0.010159901,-0.0018952623,-0.006155553,-0.000316687,0.03752943,-0.020604903,-0.0047106175,0.01155948,0.0010496837,0.0096480185,-0.0054233656,-0.0195293,-0.01347742,0.01472149,-0.012058403,-0.005766781,0.012103761,-0.0074644177,0.0022208586,-0.0031053142,-0.008293797,0.008974148,0.020708576,0.02326151,0.035818838,-0.013069211,-0.009978475,0.00742554,0.0024638409,0.005459003,-0.017702073,-0.0012594585,0.0011614556,0.0014959613,-0.010250615,-0.014280882,0.012984976,0.029909506,0.010801375,0.032993764,0.02147316,-0.016159946,0.005245179,0.009330522,-0.016289536,-0.012447176,0.011922333,0.022380294,0.00016492426,-0.014682613,0.016574636,0.00044546762,0.02749912,0.0035507819,-0.013308953,-0.016522799,0.00080994115,-0.03289009,0.012628602,-0.021213979,-0.009835925,-0.0014975811,-0.011727948,-0.03454885,0.010438521,0.017507687,-0.0068423827,-0.0150325075,0.010140463,0.016121069,0.0012780871,0.009317563,0.020021744,0.014151292,0.00343739,-0.022095194,-0.0021495838,-0.011203106,0.0010035171,-0.019982867,0.027162187,-0.00011946632,-0.012466614,0.018699922,0.03594843,-0.015887806,0.015589747,-0.019879196,0.003372595,-0.011222544,0.003095595,-0.0020604902,-0.0094082765,-0.004593986,-0.012155596,0.0061199153,0.0070238095,0.012576766,0.014514145,0.0115141235,0.026825251,0.01238238,0.020164294,0.007172839,0.007075646,-0.02874319,-0.01994399,0.009181493,0.0018790634,0.0068877395,-0.01582301,-0.017831665,0.0030648173,-0.019451546,-0.0020054143,0.010969843,0.006437412,0.00029279373,-0.0040140683,-0.024855474,-0.0058672135,0.035430066,-0.013632929,0.020941839,0.01638025,0.013645888,0.016717184,-0.0017851102,0.0059287692,-0.028147073,-0.032138463,-0.00076336955,-0.00037196546,0.01609515,-0.009000066,0.028665436,-0.020799289,-0.010509796,0.009395317,-0.030350115,-0.012453655,0.007237634,0.016496882,0.0034341505,0.017948296,0.004085343,0.011630755,0.0005548097,0.0016053034,0.010548674,0.01334783,0.004380162,0.010367246,-0.046289757,-0.00016036835,-0.03809963,0.038281057,-0.003277022,0.009032464,-0.013179362,0.007911505,0.0065799616,-0.026799332,0.018920224,0.010121024,0.0073413067,-0.01858329,0.008540019,-0.008002219,-0.036414955,-0.007898546,-0.004901764,-0.008151247,0.020708576,0.004992477,0.031386837,0.010224697,-0.0108920885,-0.02695484,0.014915876,-0.020760411,0.03841065,0.0024525018,-0.0181686,0.024064971,-0.0040237876,0.037918203,0.0097840885,0.0026371684,0.02615138,0.026112502,0.023481814,0.027965648,0.011047597,0.02587924,-0.024570374,0.0015429378,0.006314301,0.010308931,0.02340406,-0.0073542655,0.026047707,0.0148251625,-0.021939686,-0.022341417,0.0033499165,0.01087265,0.02270427,0.0054136463,0.0004790802,0.0034341505,-0.015473115,-0.017131874,-0.0075680898,0.023417018,-0.0061004767,-0.011397491,-0.018635126,-0.019153489,-0.024414865,0.006288383,-0.0046976586,0.013814356,0.010756019,0.019840319,0.009965516,-0.0013647508,-0.004853167,0.0010116164,-0.029650325,-0.021499077,0.014630777,-0.0035119047,-0.015460157,-0.010101586,-0.020423476,-0.026203215,-0.006751669,-0.019075735,0.022963451,-0.008293797,-0.014527104,-0.03615577,-0.0026242093,0.037373923,-0.020967755,0.0107301,0.0015016309,-0.00088688557,-0.005789459,0.021006633,-0.021369487,-0.008157727,0.018674003,0.0033661153,-0.0072765113,-0.013918028,-0.0027392209,0.0110994335,-0.0040108287,-0.019697769,0.016108109,0.016172905,0.016198823,-0.007419061,0.00071355817,0.01499363,0.000115517854,-0.02848401,-0.0019147008,-0.008209564,0.011805702,0.1144544,0.009473071,-0.0055788746,0.023728035,-0.009142616,0.012213913,-0.016354332,-0.02944298,-0.012362941,-0.02915788,-0.012045445,0.0034049926,-0.004250571,-0.007859669,0.028121157,-0.0030502384,0.015576788,0.0047948514,0.007632885,0.0018774435,-0.0018207476,-0.0048078108,0.009596183,0.04198735,0.025101695,-0.0099914335,0.012499012,0.024013136,-0.020747453,0.031075822,0.0017656717,0.025309041,-0.0066674356,0.0037678462,0.0014230666,0.009622101,0.00880568,0.01073658,0.035144966,-0.0007868578,0.005313214,0.02749912,0.027032595,-0.023766913,0.009110218,-0.0018774435,-0.024233438,0.0283285,0.0054168864,0.0033401973,0.04084695,0.0011663153,-0.0030324196,-0.00798278,0.01416425,-0.006784067,-0.003414712,-0.013295994,-0.02819891,0.004098302,-0.015991477,-0.010626428,-0.01967185,-0.00027558248,-0.018285232,-0.027861975,-0.00087959605,-0.014980671,-0.021836013,-0.025218327,0.0074125812,-0.010756019,-0.051369708,-0.033771306,-0.01279707,0.015745256,-0.0010326749,-0.024013136,-0.01829819,-0.022885697,-0.030039096,-0.008611294,-0.01663943,-0.014436391,-0.005280816,0.0071210023,-0.029805833,-0.007917984,-0.02835442,0.010956883,0.017909419,-0.0068553416,0.028846864,-0.0015567068,0.000048191498,-0.02230254,0.0017413734,0.007114523,-0.008429867,-0.006797026,0.0019357593,-0.0020961277,-0.01417721,-0.025568223,-0.0048661265,0.031723775,0.012978497,0.035974346,0.018699922,-0.012278708,0.01748177,-0.008131809,0.02708443,-0.012842427,0.014643736,0.03835881,0.012894263,0.011203106,0.0019503383,0.009265726,-0.0006248696,-0.0024039054,-0.001060213,-0.006784067,0.0022905136,0.026877087,-0.0084752245,-0.047844842,-0.0070108506,0.010807854,-0.00632402,0.014695572,-0.0028461332,-0.027032595,-0.030920314,-0.008306757,0.019036856,0.007691201,-0.0038747585,-0.00005284866,-0.0043996004,-0.0048207697,-0.0122722285,-0.01416425,0.0011565959,-0.026216175,-0.006223588,-0.001994075,0.014086496,-0.0122722285,0.0016943968,0.006589681,-0.009142616,0.01170203,0.012071363,-0.012984976,-0.040691443,-0.001747853,0.009123177,0.0022937532,0.010257094,-0.008436346,0.0024946188,0.007911505,-0.0044222786,-0.003686852,-0.007140441,0.011164228,-0.024466703,0.010010872,0.0029676242,0.022483965,0.008358592,0.0045615886,-0.00044546762,0.0008480084,-0.023481814,0.014604858,-0.005766781,-0.0015437478,-0.03771086,-0.016146986,0.0022759347,0.019645933,0.01829819,0.013555175,-0.006784067,0.01197417,-0.0011063796,-0.008546499,-0.005131787,0.014112415,-0.014967713,-0.0020928879,0.005789459,-0.01416425,-0.011643713,-0.012673959,0.011669632,0.0139957825,0.012239831,0.0059838453,0.016769022,-0.017118916,-0.0014457449,0.0031749692,-0.03327886,-0.024544457,0.0043834015,-0.0039427932,-0.0041501382,-0.0032381446,-0.01486404,-0.025749648,0.026371684,0.00536505,-0.032319892,0.006356418,-0.0016798179,-0.027265858,-0.008319715,0.003910396,0.034160078,0.012038965,0.029546652,0.03174969,0.01638025,-0.024803637,0.019969909,0.0019001219,0.013555175,0.02340406,0.00440284,-0.009330522,-0.0146178175,-0.0024962386,0.0324754,-0.028561763,-0.023494773,0.020591943,0.018777676,0.0046361033,-0.017041162,0.0021252856,-0.037192497,0.016043315,-0.022911616,0.012738754,-0.011922333,-0.021836013,-0.0055626757,-0.00398815,-0.009226849,0.016911572,0.005060512,0.010911527,-0.021706423,0.00426677,-0.006622079,-0.0025950514,-0.010743059,0.0046361033,-0.011203106,-0.0049212025,0.014501186,-0.00045761676,-0.021680504,-0.0016061133,-0.017585441,0.01746881,-0.027887894,-0.006563763,0.009116697,-0.008624253,0.004577787,-0.019231243,-0.009447154,-0.020423476,-0.005792699,-0.005128547,0.009797048,0.014941794,-0.0046166643,-0.021447241,-0.008229002,-0.018064927,0.026799332,-0.0022726948,0.025749648,-0.01663943,-0.004292688,-0.0052322196,-0.0055529564,0.017222589,-0.0085076215,-0.0026128702,0.0039136354,0.018388903,-0.024233438,0.0040140683,-0.0065346053,-0.007321868,0.0014457449,0.0071534,0.017183712,-0.03701107,0.003673893,-0.009829446,-0.0062138685,-0.035196804,0.0065832017,0.01609515,-0.016574636,0.021861931,0.012686918,0.008779762,-0.0055367574,-0.018013092,-0.009259247,0.023274468,0.013956905,-0.0076588034,0.024142725,0.0076004877,-0.010956883,-0.009939598,0.0040691444,0.0153435245,-0.011073515,-0.0015972039,-0.012000088,0.01349038,0.00041043767,-0.04100246,-0.003647975,0.0034503492,-0.01115127,0.009453633,-0.009920159,0.0041533783,0.017650237,0.0319052,0.003754887,0.013231198,-0.010231176,-0.001815888,0.014604858,-0.025322,0.010989281,-0.02669566,-0.023650281,0.0068423827,0.0061814706,-0.009660978,0.0011063796,-0.0025205368,-0.03703699,0.008773282,-0.011196626,0.009673937,0.009447154,-0.009246288,-0.016146986,0.03081664,0.014604858,0.009272207,0.021486118,-0.009278686,-0.018868389,-0.004937401,0.009466592,0.005177144,-0.02931339,0.0030194605,-0.018907266,0.029961342,-0.011598357,0.01857033,0.009123177,0.0017316542,-0.018868389,-0.016354332,0.021784177,-0.006223588,0.009505469,-0.017818704,-0.0014109175,0.029235635,0.0037808053,-0.004639343,-0.013179362,-0.0075616105,0.016885653,0.008416908,-0.019723687,0.005582114,-0.00564043,-0.02736953,0.015978519,0.024518538,-0.017650237,0.0042311326,0.031775612,-0.007937423,-0.009038943,0.011799223,-0.035689246,0.015628625,0.013036813,-0.009149095,0.025257204,-0.011293819,-0.002557794,-0.008935271,-0.007263552,0.01403466,-0.024233438,0.0063661374,0.021213979,0.008844557,-0.023196714,-0.017546564,0.011617796,-0.023909463,-0.0018175079,-0.0065702423,-0.008319715,-0.01293314,0.013438543,0.00031547208,0.010555153,-0.026229134,0.0015064905,-0.0022953732,0.0040691444,-0.019607056,0.24653313,-0.016289536,-0.026643824,0.020760411,0.0006904748,0.020345721,0.0321903,0.02050123,-0.00061879505,-0.0042214133,-0.018609207,-0.00023285807,-0.020954797,-0.0027602795,0.005122068,-0.013658848,-0.02736953,-0.027550958,-0.02257468,-0.012200953,-0.0023585486,-0.017183712,0.013043292,-0.0071210023,0.039162274,-0.0073413067,0.0044805943,-0.008650172,0.011429889,0.0027748584,-0.030687049,-0.035430066,-0.00024318483,-0.010918006,-0.022794982,-0.010393165,0.012077842,0.008676089,0.03835881,0.046704445,-0.007250593,0.0104061235,0.0059514474,-0.032397646,0.0068099853,0.0053585707,0.0076588034,-0.011682591,-0.021965604,0.008261399,-0.03729617,-0.0079763,0.03257907,0.021304691,-0.0031976476,-0.03952513,0.0067711077,0.040665526,-0.011047597,-0.004512992,-0.0031830687,0.03395273,-0.0010148563,-0.0022888936,-0.052225005,0.0028720512,-0.0032867412,0.0077300784,0.0217453,-0.031594183,-0.0006702263,-0.020332763,-0.020073581,0.016082192,0.0040529454,-0.022509884,0.028665436,0.0078531895,0.012900743,-0.0053423718,-0.0060842778,-0.03784045,0.007866148,-0.027136268,-0.016043315,-0.024674047,0.038436566,0.005559436,0.010250615,-0.011598357,-0.016743103,-0.014540063,-0.00014052479,-0.0045648282,-0.0012497392,0.034082323,0.0023828468,0.014812203,0.018829511,-0.005727904,-0.002502718,-0.00079981686,0.01527873,-0.010652346,0.0112355035,-0.0002326556,0.009330522,0.0070367684,0.0048758457,-0.027654631,0.0045486293,-0.03340845,0.011766825,0.0034633083,0.0027003437,0.006686874,0.021395406,-0.011384533,0.0049341614,-0.021226937,-0.02133061,-0.02078633,-0.008831598,0.005902851,0.02848401,0.012207433,-0.004846688,0.013179362,-0.0039460333,-0.032708663,0.012181515,0.0057052253,-0.00034827468,0.004730056,-0.006907178,-0.0037581269,0.012745234,-0.015654542,0.003660934,0.012777631,-0.030220523,-0.0063369796,0.031335004,-0.01211024,0.029961342,-0.015252812,0.010399644,-0.019036856,0.013568134,0.009246288,-0.02915788,-0.008216043,-0.0076588034,-0.0065281256,0.027291777,-0.013308953,-0.01884247,-0.03675189,-0.027991565,0.007814312,-0.008488183,-0.016730145,0.015175058,-0.005808898,-0.02615138,-0.002561034,-0.16369882,0.009835925,0.0125119705,-0.020073581,-0.0014433151,-0.026747497,0.032941926,-0.0025788525,-0.03340845,-0.016470963,0.03952513,0.016626472,-0.0012213913,-0.017715033,-0.0050183954,-0.01678198,-0.022678351,0.028846864,0.03327886,0.0107301,0.039706554,-0.003204127,0.0035605012,-0.027421366,-0.0132052805,-0.019723687,-0.0004183346,0.033797223,0.0028007764,-0.010010872,-0.015861887,0.0064438917,0.03732209,0.034341503,0.013581093,-0.00056209916,-0.004555109,-0.017870542,-0.010334849,-0.0022888936,-0.007801353,0.018622167,-0.018609207,-0.019373791,-0.0010764118,0.010911527,0.0050572725,0.012136158,0.000006954104,-0.0083715515,0.005216021,-0.04113205,0.026086584,0.016717184,-0.020902961,0.0016547097,-0.022341417,0.00083342945,-0.0050799507,-0.0049341614,-0.019607056,-0.027836056,-0.023598446,-0.0028412736,-0.020164294,0.0061134356,-0.00453891,0.0006147453,-0.004998957,0.010561632,-0.015045467,0.0014109175,0.005216021,-0.02120102,0.000564529,0.011332696,-0.03097215,0.024531497,0.0027894373,0.018725839,0.00023893264,0.02959849,-0.01500659,0.021913767,0.001348552,0.0071534,-0.0004019333,0.016315455,-0.024751801,-0.0236762,0.017416975,-0.012324064,-0.009894241,0.011403971,0.0015631864,0.017533606,0.0030065016,0.028717274,-0.004525951,-0.020216132,0.011533562,0.022872739,0.0026063905,0.014073537,-0.0049438807,-0.023106001,-0.004143659,0.02915788,0.027602794,-0.0032948405,-0.01898502,-0.0024589812,0.020410517,0.012220392,0.041909594,0.020760411,-0.0123046255,-0.01774095,0.009563785,0.009168534,0.04172817,-0.0038715187,-0.002518917,-0.015226893,-0.02477772,-0.03768494,-0.10496837,-0.037218414,0.035767,-0.011131831,-0.0072311545,0.03895493,0.008643691,0.031127658,-0.011585398,0.017494729,0.017766869,-0.008306757,0.006317541,0.009246288,0.027317695,-0.03208663,-0.017831665,0.0002707228,-0.0134126255,0.037633106,-0.0076199262,0.004169577,0.016250659,-0.023766913,0.00077632855,0.000247437,-0.0002767974,0.02736953,0.015123221,0.013244158,-0.00025776378,-0.018686961,-0.00073664146,-0.01995695,0.0017008764,0.001665239,-0.023300387,-0.018674003,0.002381227,-0.030583378,0.008170686,0.0038164426,-0.0046976586,-0.017831665,-0.016704226,-0.00454215,-0.018933184,0.03908452,0.001760812,-0.033589877,-0.03053154,-0.018518494,-0.0033823142,-0.003038899,0.010956883,-0.0068423827,0.008455786,0.008708487,-0.028976453,0.013121046,-0.005144746,0.0009508709,-0.014125373,0.02708443,-0.0054428047,0.0043704426,-0.0060907574,-0.0062106284,0.03620761,0.0132376775,-0.017274424,0.036026184,-0.008138289,0.00053334626,-0.010969843,0.006440652,-0.008630733,0.0032899808,0.024894351,0.015563829,-0.008980627,-0.009732253,0.028017484,0.008183645,0.0024379229,-0.0048952843,0.013295994,0.009045423,-0.0138273155,-0.013710683,-0.021369487,0.006038921,-0.005834816,-0.019710727,-0.020890001,0.023883544,-0.03244948,-0.018207477,0.0044093197,0.005060512,0.0006038111,-0.04227245,-0.03478211,0.014786285,0.011164228,0.0029384664,-0.011248463,-0.005902851,-0.005656629,0.0015939642,-0.009557306,-0.011630755,-0.00045721178,0.027239941,-0.024933228,0.0039265947,-0.017650237,-0.018129723,0.009660978,-0.028872782,0.016807899,0.0018369465,0.012699877,0.00077754346,0.006508687,-0.025775567,0.01389211,0.024194561,-0.022535803,0.0020459113,-0.017235547,-0.013308953,0.010775457,-0.050125636,0.0002877316,0.0037386883,0.01238886,-0.0059838453,0.001705736,0.004444957,-0.005802418,0.008028137,-0.03975839,-0.0324754,-0.0033045597,-0.0012829468,-0.0098229665,0.002698724,-0.021084387,0.004195495,0.009207411,0.0100627085,0.0214602,0.0018061687,0.003894197,-0.021006633,-0.014954753,-0.013723643,0.0055853543,-0.016989326,0.014656695,-0.024388947,0.01334783,-0.00674519,-0.0032867412,0.01389211,0.024000175,0.040147163,-0.0070562074,0.011170709,0.008021657,-0.010937445,0.004853167,-0.0044773547,0.028665436,0.01939971,0.012751713,0.014319759,-0.0102700535,0.01389211,-0.013179362,0.012356462,0.0067257513,-0.0047656936,-0.0159526,0.018790634,0.027136268,0.022820901,0.010367246,0.018518494,-0.007030289,0.011047597,-0.044112634,0.001568856,-0.0031166535,-0.018777676,0.003728969,0.013814356,-0.013114567,0.00977113,-0.019464506,0.028121157,0.022367334,0.017002285,-0.0327605,-0.0036674135,-0.019801442,0.03426375,-0.02654015,0.008624253,0.0022451568,0.015252812,0.008436346,-0.009745211,-0.011241983,0.022496926,-0.015213935,0.011138311,0.015784133,0.0041630976,-0.030687049,0.03908452,-0.0006483579,-0.007859669,0.014332718,-0.016730145,0.02902829,0.008967668,-0.012226871,-0.023002328,0.022626515,0.0136199705,-0.018207477,-0.008015177,-0.0095443465,-0.00839099,0.0016846776,0.00017676965,-0.03426375,0.02228958,0.008552979,0.038203303,0.0069395755,-0.0025626537,0.01622474,-0.0006216298,-0.00054428045,0.009013025,0.03918819,0.018259313,-0.01416425,-0.021265814,-0.010328369,0.008410429,-0.018051969,-0.006508687,0.004778653,-0.010794896,0.02698076,-0.024414865,-0.01995695,0.035274558,-0.022496926,0.02944298,-0.0043510036,-0.017598402,0.010393165,0.014345678,0.0014481747,-0.025814444,-0.0153435245,-0.0036706533,0.022924574,0.007898546,-0.013244158,0.0145919,0.0035669808,0.0032543435,0.026164338,-0.012615643,0.017404014,0.011371573,-0.009473071,-0.027861975,-0.019283079,0.014138333,0.003965472,-0.051291954,-0.0019584377,-0.022496926]},{\"id\":\"d55a9e40-00c3-4770-922d-d98f6889ff02\",\"text\":\"Instead of views reward users for making good contents . The rewarding system is not fair now . The team members even don’t bother to watch and will only reward you for 2 points and their focus is only views . Plus now the system is unfair \",\"vector\":[-0.023962617,-0.008462414,0.0040900577,-0.033797137,-0.00040190725,0.016793527,-0.038156364,-0.028623838,-0.0114561,-0.021297187,0.016570313,0.010399119,-0.013123636,-0.02096893,0.0088169295,0.004956651,0.025131205,0.003686304,-0.022820288,-0.0038373012,-0.008547761,-0.000052059197,-0.01695109,-0.012578732,0.00883006,-0.004424878,0.02741586,-0.027126996,0.034374867,0.004621831,0.010057734,-0.025682673,-0.005458881,0.00051987387,-0.032484118,-0.007385738,0.0076155164,-0.013314024,-0.019353917,-0.0012284945,0.017226823,0.003264496,0.006588078,-0.029332869,-0.0076746023,0.0104253795,-0.017450036,-0.021520399,0.0008391019,0.01890749,0.014206877,0.014036185,-0.036607,-0.01896001,0.011167236,0.012362084,0.017305605,0.0055343797,-0.012795381,-0.017962115,-0.008055379,0.00947344,-0.030488327,-0.014456351,-0.003932495,0.010300643,-0.009204271,0.0075433003,-0.00023552298,-0.009598177,0.034847554,0.016806656,-0.008593717,-0.0078518605,0.03479503,0.004707177,0.013629149,-0.006597926,0.0010422097,-0.009092664,0.0183035,0.0041786865,-0.025065554,0.008304852,-0.0066307513,0.0047596977,0.012427735,0.03274672,-0.0035024812,-0.003083956,-0.0026161924,-0.017778292,0.020719457,0.010622333,-0.011364189,0.033639576,-0.0149815595,0.0060398923,-0.007011527,-0.007582691,-0.009269922,0.008423024,-0.040125895,-0.009965822,-0.009670393,0.009611307,-0.0014755063,-0.00508467,0.007910946,0.008009423,-0.0012235706,-0.00028722314,-0.008317982,-0.0072741313,-0.002397903,0.016741006,0.0049730637,0.0018054026,-0.029621733,-0.013097376,0.029254088,-0.002476684,0.018658016,0.0062138676,0.038130105,-0.030383285,0.008265462,-0.0012728089,-0.004254185,-0.0034991985,0.040047113,0.024487825,0.032694202,0.005334144,-0.015861282,0.018461062,-0.0078124697,-0.0064830366,-0.005705072,-0.005130626,0.011541447,0.027783506,-0.009972388,-0.0008977775,0.011239452,0.011331364,-0.0074185636,-0.00019008017,0.0065651005,-0.004546332,-0.0065257098,-0.0134256305,0.01500782,-0.005925003,0.012362084,0.012145435,-0.015296684,0.0080685085,0.00085674564,-0.0142331375,0.009374963,0.012322693,-0.0005814217,-0.030435806,0.02607658,0.02608971,0.018040895,0.016754135,-0.017358126,0.0014172411,0.015572418,0.017121783,-0.016688485,0.00077509216,-0.029621733,0.0063812775,0.01179092,-0.0023338932,-0.007661472,-0.012125741,-0.0072084805,-0.015782502,0.01894688,0.03975825,-0.0124343,-0.024514085,0.010740505,0.0015501843,0.04826662,-0.01768638,0.017358126,0.010707679,-0.02027303,-0.022623336,-0.643695,0.010123385,0.011863137,0.009053273,0.022400122,-0.005865917,-0.012506517,0.0073069567,-0.014850257,0.02096893,-0.024304003,-0.015165382,0.017384386,-0.008344242,-0.005613161,-0.018789317,0.018776188,-0.040178414,-0.005005889,0.009243662,-0.01440383,0.019367047,-0.012453996,0.0044380077,-0.0021681245,-0.008547761,-0.0017807835,-0.014508872,-0.029910598,0.027284557,-0.008554325,0.015559288,-0.0047170245,0.008606846,0.05115526,0.0009117283,0.0018283805,0.011850006,-0.017292475,0.032168992,-0.032904282,-0.00021603284,0.007910946,-0.009184576,-0.014600784,-0.013241808,0.024763558,0.013878622,-0.007943772,-0.015782502,-0.012854467,0.008974493,-0.016806656,0.01897314,0.0070049623,0.024304003,0.009657263,-0.00671938,0.0013187645,0.02614223,-0.015139122,-0.006853965,-0.045981962,-0.03466373,-0.02419896,-0.0049303905,0.00849524,0.017988374,0.014718955,0.0027606247,-0.003489351,-0.00022813724,-0.00947344,0.012066655,-0.015322944,-0.0023913379,0.023201065,-0.03797254,-0.003715847,0.025722064,-0.025380678,-0.016741006,0.009631002,0.006722663,0.02289907,0.027179515,0.019340785,-0.0103203375,0.008967928,0.0037191294,0.006548688,-0.002649018,0.0053472742,-0.0067160977,0.015506768,0.024080789,-0.0032021278,0.008258896,0.009637567,-0.010044604,-0.019577129,-0.0070049623,-0.009020448,-0.016517792,0.033665836,0.023148544,-0.01506034,-0.026641177,0.0496059,-0.0353465,-0.011311668,-0.0016970785,-0.010031474,0.020076077,-0.02807237,-0.034847554,-0.006548688,-0.011626793,-0.0010898067,-0.0040900577,-0.0043099886,0.002773755,0.023437409,0.0000989894,0.0057411804,0.02744212,-0.0020959084,-0.014810867,-0.023791924,0.016741006,0.0012760914,-0.008974493,0.010845546,0.0009461951,0.0148765175,-0.002196026,0.010162775,-0.026470484,0.000075857686,-0.03201143,0.019065052,0.017830813,0.008390198,-0.033770878,-0.017069262,-0.018132808,-0.0035878273,0.013392805,0.013366545,-0.0007734509,-0.029096525,-0.011521751,-0.035845447,-0.0009929715,-0.009932997,-0.005041997,0.0027409294,-0.02677248,0.0023847728,-0.017463168,0.0039390605,0.009059839,-0.030278243,-0.010819285,-0.013294328,-0.009040143,-0.013149897,0.00018731052,0.0051207785,-0.011022803,-0.0124343,-0.0016741006,-0.019511478,0.02018112,-0.017344996,0.043487225,0.015926933,0.0036075227,0.00076565484,0.0080685085,0.006305779,0.0016388132,-0.03190639,-0.025459459,-0.0003278447,0.006532275,-0.0103728585,0.040441018,-0.03405974,0.029858077,0.00048253487,-0.022557685,-0.016255189,0.0027557008,0.0029099807,-0.0034499604,0.008449284,-0.0028147867,0.018474193,0.010280947,0.0051207785,0.01622893,0.035005115,-0.008856321,-0.0015107937,-0.039443124,-0.0011825387,-0.017857073,0.0009970746,0.0052487976,0.0040342542,-0.033009324,0.0054917065,-0.009506266,-0.002327328,0.01569059,0.0055704876,0.017476298,0.0039948635,0.006939311,-0.048739307,-0.026378574,0.0061777597,-0.022715248,0.05286219,0.0040966226,0.0024175982,0.023726273,0.015309814,-0.010504161,-0.022400122,0.009296183,-0.0034729382,0.0124080395,0.013786711,-0.01373419,0.027993588,0.0020729306,0.02222943,-0.0049402383,-0.009585046,0.01569059,-0.0044478555,-0.006489602,0.023201065,-0.0062663886,0.03261542,0.0038799744,-0.01303829,0.009158315,-0.00814729,0.006709533,-0.007910946,0.0048778695,-0.0034072872,-0.03936434,0.010983413,0.006880225,0.01759447,0.023004113,0.0019284983,0.0007315984,0.011206627,-0.015099731,0.0048778695,0.023870705,-0.012611558,-0.009552221,0.020128598,0.0043264013,-0.0051043658,-0.008317982,0.0047793933,0.01502095,0.028781401,0.014180617,-0.011850006,-0.011889397,0.007050918,0.024763558,-0.012178262,-0.0112854075,0.0019596824,0.025262507,0.0025406939,0.0035024812,-0.017095521,-0.0064633414,-0.023201065,0.012519646,-0.008140724,-0.02622101,0.012690339,-0.00024024164,-0.0022058738,-0.0037618026,0.030383285,-0.015178512,0.0043067057,-0.024238352,0.004352662,-0.025538241,-0.0034795033,-0.021454748,0.012565603,-0.0016568672,-0.009112359,-0.011127845,-0.019275134,-0.008954797,-0.014456351,0.0009831238,0.008088204,-0.019327655,0.009552221,-0.010668288,-0.013248373,-0.015874414,0.027730985,0.028440015,-0.01633397,0.008876015,-0.0037322596,0.0035878273,0.09999961,0.02557763,-0.0042968583,0.032510377,-0.013294328,0.010399119,-0.020312421,-0.043329664,0.009361833,-0.0072216103,-0.010221861,-0.018802447,0.007694298,-0.008928536,0.028282452,-0.008134159,0.014075575,-0.018434802,-0.006939311,0.0024832492,-0.007904381,0.0097294785,0.036213093,0.008180115,0.003555002,0.03592423,0.015966324,0.03516268,-0.0073529123,-0.027310818,0.005764158,0.0055869003,-0.0008419741,0.009112359,-0.016202668,0.0456931,-0.007392303,0.012585297,0.021231534,0.011291972,0.0018382281,0.032484118,0.009972388,-0.0023519471,-0.0027113864,-0.0007098515,-0.0071493946,0.014443221,0.014325049,-0.016005715,0.008239201,-0.0017151325,-0.008226071,-0.023306107,0.021691091,-0.020089207,-0.028256193,0.003962038,-0.0013220471,-0.03329819,-0.03447991,-0.027048213,-0.013839232,-0.016097626,0.0022501883,-0.0156512,0.006880225,-0.025840236,0.0015460812,-0.0003030204,-0.0033875918,-0.0106945485,-0.019367047,-0.009571916,0.011561142,0.006407538,0.0047268723,-0.02027303,-0.0034236999,-0.013057984,-0.0030741084,-0.019865993,-0.00819981,-0.0022403405,0.014430091,-0.0050387145,-0.019800343,-0.0033908745,-0.027284557,0.008876015,-0.0053735347,0.0036797388,0.028991483,-0.019498348,0.012204521,0.016557183,0.03981077,0.018736796,0.021415358,-0.013366545,0.0074645192,-0.012696904,-0.019091312,0.034296084,-0.0026112688,0.020719457,0.014810867,0.039154258,0.008764409,-0.024737298,0.012985769,0.005613161,-0.010385989,0.0049664984,0.011403579,-0.006932746,0.015493637,0.017870203,0.02607658,0.0055442275,-0.005074823,-0.04364479,0.028965224,-0.01311707,0.0040867752,-0.03516268,-0.017712642,-0.05015737,-0.0037585201,-0.016793527,-0.019143833,0.00302487,-0.0065552527,-0.033587053,-0.03479503,0.0033580489,0.011508621,0.0030265113,-0.013327154,-0.011239452,-0.022111258,-0.020417463,-0.013668539,-0.03707969,0.017318735,-0.032956805,-0.014837127,-0.0056722467,0.0012982487,0.003251366,0.003294039,-0.006387843,-0.046192046,-0.021100232,0.016793527,-0.034086,-0.013891753,-0.009657263,0.04553554,0.01699048,0.02477669,-0.042673152,0.012572167,-0.012152001,0.009952692,0.0004891,0.0068473998,-0.0038143233,-0.029175306,0.01376045,0.013254938,-0.0001844383,0.012289868,-0.016189538,0.022360733,0.023424279,-0.017633859,0.020115469,-0.03145996,-0.034900073,-0.009998648,-0.018080287,0.0037979106,-0.020207379,-0.01571685,-0.024566606,-0.008679063,0.014023054,-0.0028262758,0.01699048,0.018040895,-0.0035188938,0.0042738803,-0.0045725927,0.024553476,-0.008534631,-0.011639923,-0.008646238,0.015309814,0.0202599,0.0056230086,0.02222943,0.004290293,-0.0036108051,-0.004913978,0.013281198,-0.048791826,-0.027284557,-0.005357122,-0.020102337,0.013891753,-0.018920619,-0.0069590067,-0.0002939934,0.023778794,0.022373863,-0.009237097,0.0029444476,-0.004142578,-0.025722064,0.004838479,-0.014272529,0.030540848,0.0035057636,0.0054129255,0.02678561,0.009893606,-0.028466275,0.01767325,-0.0010922686,0.019340785,0.0143381795,0.018854968,-0.0052487976,0.008239201,0.0041130353,-0.001491919,-0.021809263,-0.038917914,0.030488327,-0.008042248,-0.003323582,-0.029227827,-0.017935855,-0.011462665,0.010326903,-0.004218077,0.0053078835,0.0025324875,-0.003627218,-0.005567205,0.024737298,0.004323119,0.01563807,0.019655911,-0.004956651,-0.029227827,-0.0018858251,-0.022990981,0.038130105,-0.00043493792,0.008751279,-0.0074973446,0.015349205,-0.018185329,0.005977524,0.0076680374,-0.019800343,-0.022977851,0.023187935,-0.022820288,-0.023266716,0.0029034156,-0.0056689642,0.0065552527,-0.02679874,-0.016767267,-0.028440015,-0.019156963,-0.020141728,0.010806155,0.023096023,-0.005035432,0.007300392,0.007201915,0.020758847,0.014416961,0.0026916913,0.012631253,-0.028229931,0.0026326054,-0.010038039,-0.0040670796,0.036003012,-0.010628898,0.02542007,0.027730985,0.022807159,-0.026365444,-0.010950588,-0.008915407,0.009631002,-0.024999902,-0.009434049,-0.021664832,0.0017331865,0.012723165,-0.028623838,-0.03721099,-0.0023158393,0.0004152426,0.007562996,0.0018595647,0.007385738,0.017515687,0.03264168,0.004224642,-0.040283456,0.009913302,0.036895864,0.0108521115,0.00669312,-0.0044412906,-0.013918013,-0.011101585,-0.021100232,0.030199463,-0.017541949,-0.019563999,0.0006142472,0.0156512,0.0047170245,-0.021651702,-0.021586051,-0.009749174,-0.016596574,-0.026654309,0.031538744,0.023292976,-0.023686882,0.015191643,0.016911699,-0.023660623,0.021152753,-0.020364942,-0.0053111664,0.009092664,-0.025275636,0.010189036,-0.042988278,-0.016780397,0.042909496,0.02226882,0.0008427948,0.0035484368,-0.016806656,-0.030803451,-0.00814729,-0.002744212,0.02033868,0.02154666,0.009309312,-0.0020860606,0.038366448,0.019183224,0.008475545,-0.0074382587,-0.0045266366,-0.027573422,0.001578086,-0.0033022456,-0.002553824,-0.035582844,-0.005698507,0.021179015,0.038156364,0.0020318986,0.018710537,-0.0029017744,0.011226322,0.01710865,0.038261406,0.007648342,-0.01637336,0.028676359,-0.021021452,-0.021415358,-0.0039456254,-0.0023256869,0.005698507,-0.008915407,0.020391202,-0.008403328,0.014561392,-0.008633107,-0.0069590067,-0.003532024,-0.02671996,0.002887003,0.031249879,-0.009644133,0.025341287,0.01829037,-0.016898569,0.011856572,0.015821893,-0.0032054102,-0.0047892407,0.043355923,-0.0072938264,0.012322693,0.023463668,0.019760953,-0.01141671,0.009499701,0.007963466,-0.02480295,-0.017870203,-0.002995327,-0.002517716,0.0050190194,0.0037092818,-0.01211261,-0.0068145744,-0.0068473998,-0.008698758,0.017633859,0.00753017,0.011909092,-0.013852362,0.01502095,-0.042909496,0.005816679,0.0075958213,-0.021507269,0.024461564,0.22289829,-0.011994438,-0.010838981,0.047452547,0.011600533,0.025078684,0.009355268,0.008587152,-0.0024668365,0.015349205,0.009801695,0.011876266,-0.001166126,-0.006670142,0.011771225,-0.03009442,-0.019340785,-0.005823244,-0.017541949,0.004815501,0.0059446986,0.0052126897,-0.0007385738,0.0038044758,0.023844445,-0.03466373,-0.010064299,-0.0196953,0.01567746,0.020811368,-0.008856321,-0.017555078,0.002964143,-0.01142984,-0.030934753,-0.0057116374,0.011154106,0.0076089515,0.018605495,0.030330764,-0.008593717,0.011101585,0.009952692,-0.019708432,0.013333719,0.007451389,-0.0030659018,-0.010254687,-0.027547162,0.023437409,-0.033797137,0.005905308,0.022662727,0.02148101,-0.00052028423,0.008390198,-0.009650698,0.0062499754,-0.013931143,-0.021848654,-0.010077429,0.016662225,0.007753384,0.017804552,-0.041570216,0.039022956,0.00045832607,0.0053078835,0.022006217,0.0074579543,-0.010110254,-0.008849756,0.0024914555,0.014325049,-0.014994689,-0.01768638,0.012670644,0.027652204,0.037526116,0.027678464,-0.015467376,-0.019262005,-0.011377319,-0.028413754,-0.0131039405,-0.053334877,0.03537276,-0.0025669544,-0.0048877173,-0.007845295,-0.0060333274,-0.018776188,-0.047610108,-0.024671648,-0.019012531,-5.609827e-8,0.019275134,0.02815115,-0.0065716654,0.0063221916,-0.010635463,0.014732085,0.0063944077,-0.012473691,-0.0027425708,-0.004241055,0.01639962,0.00947344,0.008738149,-0.0015575701,-0.0001369439,-0.0392593,0.009158315,-0.00023244559,0.0030445654,0.014863388,0.02028616,-0.0026867674,-0.007779644,-0.021717353,0.014613913,-0.020863889,0.003335071,-0.023594972,0.0022879376,-0.006043175,0.0013261503,0.0105304215,-0.02284655,-0.03069841,0.0114429705,-0.036554478,-0.00554751,-0.02219004,0.0033678964,0.009020448,0.011239452,-0.022570815,-0.012348954,0.020430593,-0.008580586,0.0156512,0.014627044,-0.020601286,0.0014361157,-0.01307768,0.03001564,-0.022019347,-0.0112854075,0.014456351,-0.015217903,-0.0015838305,-0.0024192396,-0.007917511,0.027284557,-0.01960339,-0.032405335,-0.021927435,0.024304003,-0.0050255843,-0.034689993,-0.0006318909,0.028676359,-0.011915658,-0.04369731,0.01636023,-0.1658607,0.023043502,-0.00012555755,-0.005304601,0.0069655715,-0.021691091,0.03001564,0.023253586,-0.023988876,0.015191643,0.02606345,0.005875765,-0.011961613,-0.022111258,0.00018413055,-0.007339782,-0.01636023,0.02809863,0.017633859,0.0034696555,0.024435304,0.028256193,0.0042804456,-0.008705324,0.0048778695,-0.010950588,-0.015559288,0.0105304215,0.006689837,-0.021507269,-0.0017364691,-0.010510726,0.020758847,0.009197705,0.004516789,0.018644886,-0.023450539,-0.012027264,0.0011792561,0.020404331,0.019708432,-0.0020302574,0.010385989,0.004011276,-0.006939311,0.03277298,0.018277239,0.01961652,0.005422773,-0.027678464,0.0053111664,0.020640675,0.00058060104,0.0043460964,0.020010427,0.004976346,-0.0016675355,0.0010282588,-0.023161674,-0.02146788,-0.009243662,-0.03329819,-0.020036686,-0.023227325,0.001682307,-0.0014714032,0.0008780822,-0.0012342389,-0.014088705,-0.003817606,-0.0042574676,-0.024369653,0.0037552374,0.0007796057,0.001974454,0.0051109307,-0.03132866,-0.003971886,-0.005298036,0.024711039,0.0030659018,0.022623336,-0.008797235,0.020351812,-0.010123385,-0.011029369,0.0038931046,0.0050682575,-0.0051207785,-0.02099519,0.016859178,-0.044222515,-0.03012068,-0.0012087991,0.0065651005,0.01693796,0.0041983817,0.019340785,0.025682673,-0.020771978,0.0012170055,0.023857575,-0.03450617,0.013826102,-0.016635964,-0.01693796,-0.009158315,0.006246693,0.029884337,-0.0021500704,-0.018710537,0.014640174,0.018487323,0.019196354,-0.0074842144,0.008514935,-0.010307208,0.010957153,0.010353164,-0.014732085,0.059873715,-0.023700012,-0.031670045,0.008711888,-0.005035432,0.0005128985,-0.101522714,-0.04117631,0.018172199,-0.025209986,-0.003811041,0.0046382435,0.013419066,0.015598679,0.0014459634,0.03279924,0.005087953,-0.023805054,-0.0018103265,0.007648342,0.023660623,-0.0038504314,0.0025456178,-0.007451389,0.035031375,0.03075093,0.009237097,-0.0352152,0.038917914,0.0065355576,-0.019156963,-0.0048483266,0.0029805556,0.019406438,0.00046653245,-0.0040047113,0.022977851,-0.006167912,0.026010929,-0.028124891,-0.005865917,-0.009374963,-0.02355558,-0.03608179,0.0107470695,-0.029595474,0.0004456062,-0.0025554653,0.00536697,-0.0023240456,-0.029674254,0.009184576,-0.0023141978,0.025170594,0.023345497,-0.030777192,-0.0059446986,-0.021139624,-0.014823996,-0.025708934,-0.001100475,-0.0014664793,0.013215547,0.01775203,0.017069262,0.007884686,-0.009420919,-0.016649095,-0.01211261,0.02024677,0.015808761,-0.008639672,-0.0007779644,0.014758346,0.014758346,-0.019577129,-0.008908842,0.011607097,-0.01574311,0.005967676,-0.019813472,-0.017633859,-0.004070362,-0.021310316,0.0034105696,-0.0026145512,-0.027573422,0.00028291479,0.026247272,0.010385989,0.03907548,-0.002637529,0.0027212342,0.0064337985,0.013281198,-0.014705825,-0.0044051823,0.0060464577,0.01903879,-0.01141671,0.017121783,0.0017857073,-0.013812971,-0.029805556,-0.009946127,-0.01639962,0.004283728,-0.028046109,-0.03461121,0.026286662,-0.008298287,-0.00026486078,0.0077599487,0.015703721,0.0024980207,-0.0071559595,-0.00879067,-0.019839734,0.0019629651,0.016714746,-0.014495742,-0.023069764,-0.0035123287,-0.012985769,0.0025702368,0.019143833,-0.011922223,0.0007738612,0.016018845,-0.008061944,0.0032858327,0.015112861,-0.010957153,0.016885439,0.019577129,0.0142331375,-0.005888895,-0.017318735,-0.004533202,0.011291972,0.003650196,0.009913302,0.038996696,-0.023765665,-0.0029444476,0.026838131,-0.0044970936,-0.0011529957,-0.015467376,-0.046218306,-0.0028115043,-0.0065946435,-0.0275209,-0.013261503,-0.020443723,-0.0055704876,0.0055310973,0.000059701382,0.031643786,0.024238352,-0.027757244,-0.0051700165,-0.022820288,-0.020076077,0.009013883,0.009178011,-0.0016765625,-0.020758847,0.029779296,0.0039226473,0.0031299116,-0.004913978,0.025170594,0.020364942,-0.045640577,0.0020975496,0.012828207,-0.014823996,0.0076877326,-0.0011989515,-0.009532526,0.021979956,0.012670644,0.01896001,0.008258896,0.0127297295,-0.027153255,-0.0064108204,-0.005291471,-0.030777192,-0.026365444,0.022163779,0.026628047,0.024553476,-0.012230782,0.02090328,0.012302998,-0.00019141371,-0.021073973,-0.001637172,0.013123636,0.009020448,0.0094603095,0.010110254,-0.021034582,-0.000018618215,-0.0058724824,0.019879125,0.01372106,0.0101562105,-0.0055606402,0.02161231,0.0011792561,0.008626542,-0.041386392,-0.00948657,0.0030659018,0.021966826,0.005291471,-0.012355519,0.012493386,0.01504721,-0.012966073,-0.00077632314,0.017489428,-0.020430593,-0.015309814,-0.004976346,0.011252582,-0.008751279,0.035740405,-0.016281448,0.050078586,0.0036830213,0.0026998976,-0.026916912,0.011666183,-0.001992508,-0.0016199385,-0.012132306,0.0071690897,-0.010031474,0.021940567,0.014797737,-0.026680568,0.022360733,0.0012120816,0.04640213,0.02880766,0.0002470119,0.005435903,-0.0055869003,0.018356021,-0.002683485,0.00505841,-0.0046087005,-0.018933749,-0.012749425,-0.011055629,0.0137473205,-0.003985016,0.00016505073,0.009775435,-0.00031820222,0.033429492,-0.016885439,-0.00335969,0.023398018,-0.009532526,0.02485547,0.010609202,-0.0094603095,0.004352662,0.018408542,0.036370657,-0.00667999,-0.024015138,0.017043,0.032326553,-0.010523856,0.013025159,0.011915658,-0.013274633,0.022413254,0.0149290385,0.0028919268,0.024527214,0.015336075,0.020680066,-0.016031975,-0.017935855,-0.012670644,0.00912549,-0.019826604,0.00426075,-0.019104442]},{\"id\":\"737d4c85-3e23-4ba2-99a1-17ef87cd590f\",\"text\":\"I’m not interested in Bounty\",\"vector\":[-0.039616864,-0.007205414,-0.0013179258,0.008787248,-0.0316625,0.0013033987,-0.02054447,-0.00058148534,-0.02508982,-0.02465078,0.03941026,0.0004656725,0.014746564,-0.008638749,0.014036354,0.018478401,0.030138776,-0.02737541,0.0029651313,-0.009478089,-0.016373593,0.0052491054,-0.006075533,0.013300316,0.0011565142,0.008006016,0.02050573,-0.0072183274,0.0005867312,0.0007800216,0.04052077,0.0044969274,0.004826207,-0.006895504,-0.027323756,-0.026471503,-0.0055105924,-0.010175387,0.008115776,0.0036091637,0.0053427243,0.026161594,-0.009432894,-0.013216383,-0.019550174,-0.00012035253,0.017251672,-0.01415257,-0.00841923,-0.00045316308,-0.0008869568,-0.015792511,-0.024715345,0.0012436764,0.014669087,0.027401235,0.025412643,0.008315926,-0.0088324435,-0.021500027,0.010704818,-0.012351217,0.0053136703,-0.01031743,0.006953612,0.012467433,0.011150314,-0.016812634,-0.00478424,-0.0044097654,0.00969761,0.018194316,-0.004935967,-0.0013469799,0.028124359,-0.009503916,-0.004245125,0.017419541,0.0059819142,-0.019201525,0.01679972,0.002711715,-0.022675103,0.028227663,0.032798838,0.026174506,0.0054169735,0.00936833,-0.007554063,-0.018814137,0.010156019,-0.0009999449,0.005784992,0.051264327,-0.033082925,0.038480528,-0.016993415,0.030551989,-0.008231992,-0.029570607,-0.022597626,0.017548671,-0.019369394,-0.011938003,-0.018155579,0.019072395,0.0017012784,-0.0051328894,0.008083493,0.0035252296,-0.011621635,0.0069600684,0.00079172396,-0.008264274,-0.013125992,-0.011976741,-0.0026197105,-0.013106623,-0.030965203,-0.02319162,0.010614428,-0.016593114,0.004451732,-0.010046259,0.014539958,0.023643572,-0.0099946065,-0.005991599,0.010607971,0.007018177,0.032927968,0.026381113,0.0033379921,-0.0075992583,0.0020660686,0.0032346887,-0.021732459,0.015702121,-0.01349401,-0.0037899446,0.0051684,0.04669315,-0.00852899,-0.010078541,-0.006979438,-0.0033024815,0.019498521,-0.0056881453,-0.0046228287,-0.022636363,-0.00969761,-0.0039126175,0.030293731,0.0026197105,-0.0023130283,-0.0072570657,-0.030784423,0.008186797,0.016347768,-0.011944459,-0.009917129,-0.019291915,-0.024547478,0.0041353656,0.035510555,0.02010543,0.020906031,-0.0027262422,-0.008819531,0.010524037,0.012034849,0.021564592,-0.017819842,0.018452575,-0.020660685,0.0046809367,0.018310534,0.006856765,-0.015702121,-0.009975238,-0.035071515,-0.0012808011,0.023966396,-0.01084686,-0.013558575,0.0071666753,-0.012034849,-0.00064605,0.018659182,-0.014088005,0.020350775,0.008361122,0.021241767,-0.0040126927,-0.6483323,-0.008148058,0.0157796,0.013151818,0.02521895,0.0061368695,0.004884315,0.012706322,-0.008580641,0.016412333,-0.016593114,0.010091454,-0.0020321722,0.010181844,-0.0032637427,-0.027969403,0.007534694,-0.019459784,-0.00043258313,0.018091014,-0.029880516,0.010633796,0.0057527097,-0.0037447494,0.028950786,-0.008761422,-0.0022452355,-0.0045711766,-0.0011153542,0.012357673,-0.0046809367,0.007024633,-0.0064855185,-0.014720739,0.043335788,-0.022830058,0.03677602,0.017729452,0.0025260916,0.026626458,-0.029131567,-0.018555878,-0.01825888,-0.03447752,-0.0138168335,0.008315926,0.0109759895,0.02503817,-0.004461417,0.0023420826,-0.016825546,0.004267723,-0.01970513,-0.0077542136,-0.011344008,0.017316237,0.025980813,-0.012816082,0.0023227131,-0.0013776481,-0.032643884,-0.0039836387,-0.013545662,-0.00670181,-0.032488927,0.0016100808,0.010156019,0.016567288,0.0072958046,-0.024392523,-0.0000955355,-0.019304829,0.0088905515,0.000034602614,0.02319162,-0.004044975,0.017845668,-0.021926153,0.008767879,0.01221563,-0.005355637,-0.0120219365,-0.007579889,-0.018801223,0.01723876,-0.016102422,0.019924648,0.009323134,-0.003961041,-0.019072395,0.0068438523,0.013222839,0.021848675,-0.0049391952,0.0033186227,0.005559016,-0.022830058,0.018878702,0.028046882,-0.030784423,0.0032734275,-0.0037770316,0.014914433,-0.0076702796,0.04770036,-0.005158715,-0.0048746304,0.015727947,0.019576,-0.024857387,0.0070117204,0.02001504,-0.010130192,0.019769695,0.012377042,-0.0338577,0.024986517,-0.029518954,-0.0005225701,-0.0051135197,0.020841466,0.01676098,0.015456776,-0.013855573,-0.007554063,0.051290154,-0.0015471303,0.0030603642,-0.006311194,-0.013087253,0.008341752,-0.015250169,0.02729793,0.0023388541,0.0109759895,0.006914873,0.012809625,-0.006020653,-0.0033541333,-0.03192076,-0.012583649,0.00020045304,0.0021629157,-0.016683504,-0.023114143,-0.022029456,0.003489719,0.014978997,0.008219079,-0.008877639,0.009839652,0.019291915,-0.023682311,-0.026135767,0.005197454,0.0056042112,0.0014623891,-0.0019272546,-0.032411452,0.0028456866,0.0012122012,0.00035349143,-0.0017158054,-0.01820723,0.0062369443,-0.012183349,0.020118343,0.0119638285,0.0009523285,-0.021048075,0.017200021,-0.017832754,-0.008341752,-0.013661878,-0.022287715,0.000653717,-0.028330965,0.005559016,-0.010524037,0.0031442982,0.0073474566,0.013739356,-0.025464296,0.0206736,0.026781414,-0.01349401,-0.012086501,0.034839083,0.00756052,0.016231552,0.019279003,0.0010402978,-0.007186045,0.019950476,0.00054436066,-0.028382618,0.010963077,0.025167298,-0.0025373905,0.010685449,0.029286522,0.037395842,0.01605077,-0.0113246385,0.010924337,-0.02954478,0.010491755,-0.01477239,0.029622259,-0.0011920247,0.0025099504,1.8284909e-7,0.015224343,-0.0044420473,0.015159778,0.01499191,-0.010001063,0.003767347,0.003308938,0.01970513,0.013726443,-0.022726754,-0.0061175,-0.013610227,-0.0053879195,-0.0091229845,0.029209046,0.008367578,0.008412773,-0.0049973032,-0.012912929,0.021551678,0.010420733,-0.032127365,0.001208973,-0.01679972,0.025283514,0.0013913681,0.020970596,-0.017174195,0.006078761,0.016154073,0.00037124672,0.024302132,0.0058172746,0.0031539828,-0.0040159207,-0.012958124,0.0027343126,0.021190116,-0.009626589,-0.01340362,-0.020260384,0.027091324,0.0014833726,-0.054130998,-0.02094477,0.017690713,0.030526163,0.012938755,0.017794015,-0.0019982758,-0.014836955,-0.0025648305,0.026071204,-0.011569984,-0.0000116519,0.018000623,0.00042330194,-0.004593774,0.0056203525,-0.019007832,0.0124286935,0.0019756781,0.0076896492,0.0025890423,-0.00004834782,0.0063854433,0.012015481,0.015340559,-0.020337863,-0.019769695,0.024883214,0.032282323,-0.011931546,0.0050780093,0.00016847337,-0.00014738897,-0.022068195,0.022597626,0.0004975513,0.01095662,-0.0072764354,0.008871182,-0.02129342,0.0154955145,0.007915625,-0.024934866,-0.005061868,0.007554063,0.009800913,0.013377794,0.0073797386,0.000013669545,0.0005088501,0.0021241768,0.00356074,-0.0151468655,-0.020234559,-0.0067792875,0.0024034188,-0.00681157,0.0034800342,0.0031539828,-0.01190572,0.0066566146,-0.025942074,-0.021370897,0.023359489,0.0019611511,-0.0055170488,0.015288908,-0.021500027,0.0032007922,0.123344295,0.016334854,-0.019214438,0.009749261,0.0011807259,0.014759477,-0.027582016,-0.02698802,0.00061497826,0.0033379921,0.000959592,-0.0062627704,-0.009930043,0.016321942,-0.002140318,-0.026264897,-0.00032766556,-0.030371208,0.027039673,-0.011744308,0.003864194,-0.018568791,-0.012286652,-0.010588601,-0.024405435,0.013261578,0.023914743,0.0055461028,-0.00905842,-0.022365192,0.0073345434,0.007147306,0.0018191088,0.032437276,0.0062498576,0.017251672,0.004406537,-0.019950476,0.018723747,-0.03073277,0.002235551,-0.0035994789,0.012674039,0.00250188,0.010821034,-0.03680185,-0.012590106,0.004810066,-0.007663823,-0.016631853,0.034400042,-0.0138168335,-0.003544599,-0.005252334,-0.0040546595,0.01979552,-0.009452264,0.015237256,0.015288908,-0.044782035,-0.018194316,-0.013132448,0.026122855,0.003183037,0.009884847,-0.03380605,-0.0075024115,-0.024263393,0.0091810925,0.0052781594,0.017897319,0.010950164,-0.008838899,0.0037479775,0.019911736,0.018723747,0.013971789,-0.013042058,0.025490122,0.011395659,-0.009303765,-0.011395659,0.019020744,0.012699866,-0.029957995,-0.013158275,-0.0018530053,-0.010704818,0.006466149,-0.007883343,-0.013100166,0.020402428,0.021022247,-0.009000312,0.0092392005,0.0012138153,0.0044129933,0.0033670461,0.013429446,0.028899135,0.025167298,0.0051909974,-0.010394908,0.0033541333,0.025670903,0.01000752,0.007618628,0.023617746,-0.0072958046,0.006643702,-0.0010273849,-0.004519525,0.017290412,0.002518021,0.01723876,0.02266219,-0.02490904,0.025309341,0.004987619,0.015792511,-0.024702433,-0.018310534,0.01648981,0.011344008,-0.018994918,-0.025464296,0.0010233496,-0.05286553,0.010136649,-0.005006988,-0.0451436,-0.005839872,0.003948128,-0.024134263,-0.03677602,-0.013648965,0.02226189,0.023088317,-0.024624955,-0.0037996292,-0.027969403,-0.013558575,0.0042031584,-0.024457088,0.008625836,-0.033754397,-0.019343568,0.010227039,-0.02094477,0.008173884,-0.031326763,-0.0005988371,-0.01490152,-0.0023679084,-0.022145674,-0.02081564,-0.019989213,-0.0138168335,0.053666133,0.020518644,0.0007235275,0.0021112638,0.019524349,-0.006940699,0.01340362,-0.0161799,0.0016520479,0.004157963,-0.0248703,0.00500376,0.006075533,-0.01953726,0.0027036446,0.0034800342,-0.009884847,0.0024986516,0.0011855683,-0.0072376966,-0.047674533,0.0043710265,-0.018956179,-0.008057668,-0.0090067675,-0.013442359,-0.0068180263,-0.004380711,0.016476898,0.020906031,0.017200021,-0.000024968358,0.0078510605,0.0050780093,0.018439662,-0.009800913,0.013080797,0.018685007,-0.0026939597,0.024934866,-0.0012364129,0.012002567,0.0029699737,0.006020653,-0.01446248,-0.030784423,0.008328839,0.03192076,0.0038545092,0.0008942203,-0.0017174195,-0.032721363,-0.012615931,-0.033263706,-0.030551989,-0.02010543,0.009736348,0.0058882954,-0.012448063,0.0021887415,0.01384266,-0.027814448,0.012402868,0.009542654,0.030629467,-0.0065565393,0.01424296,0.035174817,0.004593774,-0.02887331,0.013164731,-0.024792824,-0.009762174,-0.00060852175,0.023863092,-0.00850962,-0.0026487645,0.020970596,-0.0028715124,-0.028899135,-0.026600633,0.002877969,-0.008909921,0.022158585,-0.024030961,-0.007902713,-0.01446248,0.020002127,-0.007412021,0.022545973,-0.00040635373,-0.019433958,-0.0157796,-0.004613144,-0.028253488,0.004574405,0.0031636676,-0.0017400171,-0.018943267,-0.013532749,0.009245657,-0.00756052,-0.0020531556,0.028227663,-0.023682311,0.0011105118,0.018723747,0.018788312,-0.001070159,-0.01477239,0.012596562,0.026781414,-0.0012299565,-0.0044678734,-0.011234248,-0.0034542084,0.008070581,0.013300316,-0.02244267,-0.01349401,0.019020744,0.0019498522,0.0049650213,0.005794677,-0.0029086373,-0.0026342375,-0.02094477,0.00861938,-0.014862781,0.019860085,0.017497018,-0.013984702,0.002823089,-0.009323134,-0.019588914,0.016877199,-0.0026810467,0.032721363,-0.0057753073,0.015314734,-0.021732459,-0.0022048827,-0.022881709,0.021370897,-0.021525852,0.012486802,0.009555567,0.004726132,0.008625836,-0.0046454263,0.005946404,-0.025903335,0.021060986,0.005016673,0.020131256,-0.01926609,0.02196489,0.022326455,0.018865788,0.005326583,-0.00494888,0.0031265428,0.007915625,0.005704286,0.017200021,-0.0012041306,0.0018691465,-0.022804232,0.014062179,0.00414505,-0.02892496,-0.028408444,0.01044656,0.037809055,-0.0063047376,-0.012751517,0.007186045,-0.011938003,-0.010898512,0.020195821,-0.010162475,-0.017509932,0.024224654,0.021022247,0.004061116,0.023114143,-0.0029796583,0.002753682,0.011750765,-0.018542966,-0.023359489,-0.008044754,-0.008477338,0.018271795,0.03667272,-0.0055267336,-0.01586999,0.00079898746,0.0016076596,-0.013558575,-0.0076315408,0.0050263577,0.011376291,-0.0119638285,0.012499715,0.038377225,0.0157796,-0.010078541,-0.011660375,-0.012312477,0.0071343933,-0.0056623193,0.008335295,-0.0131776435,-0.019898823,0.003128157,0.0233724,0.0073345434,0.006243401,0.030190427,-0.008722683,0.020583209,-0.034864906,-0.020751076,0.0007178781,0.0020128028,0.045789246,-0.0091810925,-0.013687705,-0.0020370146,0.0042418973,-0.0017109631,-0.016024945,0.010892055,-0.0074572163,0.019743867,-0.01574086,-0.023566095,-0.01648981,-0.014139657,0.009962324,0.03610455,-0.02711715,0.0012557823,0.021525852,-0.057953224,-0.013054971,-0.0052361926,-0.0000044766502,-0.009736348,0.0059883706,-0.005936719,0.02116429,0.0052910727,-0.014088005,-0.012144609,0.012925842,-0.014914433,-0.014875694,-0.016657678,-0.009303765,0.0059334906,0.0015753773,-0.0087743355,0.011783048,-0.0016512407,0.0221715,-0.008374034,-0.019730955,-0.024573304,0.01705798,-0.01384266,-0.0147982165,-0.06859348,0.0005653442,0.0012670811,-0.004751958,0.013274491,0.2499943,-0.007392652,-0.022920448,0.019498521,0.0075282375,0.02843427,-0.007915625,-0.010026889,0.0005689759,0.020686511,0.050102163,-0.009581394,-0.026858892,0.0035220012,0.012370585,-0.009194005,-0.014359177,-0.0112084225,-0.0102851475,-0.009555567,0.03210154,0.0049714777,0.008115776,-0.0071925013,0.013545662,-0.01256428,-0.015482602,0.011014728,-0.006030338,0.008658119,-0.012176892,-0.00965887,0.008212622,-0.014862781,0.0025938845,0.023114143,-0.024315044,-0.016515635,0.025335167,0.010549863,0.008935747,0.004532438,0.0005015866,-0.011854068,-0.006075533,0.013610227,0.008096406,0.01851714,0.011318182,-0.010310974,-0.034864906,-0.008451512,0.028201837,0.017200021,-0.0012840293,0.0062369443,0.0046228287,0.01221563,-0.029441478,-0.013571488,-0.01829762,0.01446248,0.0038157704,-0.011531245,-0.02768532,0.04739045,-0.0120800445,-0.008587098,0.00009074359,0.0030280817,0.014113831,0.006049707,-0.0130033195,0.005655863,-0.021086812,-0.02640694,0.020906031,0.015043562,0.03341866,0.00075661694,0.0040385183,-0.011866981,-0.01586999,-0.03130094,-0.0034864908,-0.046176635,0.030577816,0.017574497,-0.0034864908,-0.003531686,0.0058108177,-0.020350775,-0.025515947,-0.02138381,0.003573653,-0.02178411,0.009219831,0.02169372,-0.0001040096,-0.02503817,-0.02138381,0.014281699,-0.013958876,0.001167813,-0.032282323,-0.013661878,0.012790256,0.015637556,0.02468952,-0.0026923455,-0.01192509,-0.030706944,-0.010020433,0.009484546,0.0048229787,0.04708054,-0.0076702796,-0.012034849,0.02742706,-0.017122544,0.0103368,-0.007741301,0.014785304,-0.003990095,0.011834699,0.009859021,-0.0010338414,-0.01115677,0.011214878,-0.04338744,0.0039255302,-0.012086501,0.02085438,-0.023527356,-0.02481865,-0.008496707,-0.0008183569,-0.0038254552,-0.026936369,0.010737101,-0.005878611,0.016347768,-0.0030539075,-0.0009975238,0.0058560134,-0.009671784,0.025683815,-0.028847482,-0.0043000053,-0.0038867916,-0.01829762,-0.021835763,-0.018233055,0.00642741,0.030087125,-0.007521781,-0.01117614,0.0030280817,-0.008600011,-0.0022452355,-0.045221075,0.01042719,0.029596433,0.007592802,-0.024547478,0.0013469799,-0.16311611,0.033212055,-0.02315288,-0.006856765,0.033005446,-0.012189805,0.010601515,-0.0071343933,-0.004019149,0.016954675,0.024095524,-0.03571716,-0.011221335,-0.0210739,-0.014785304,-0.030319557,-0.014023441,0.009988151,-0.0072118705,0.011008272,0.016903024,0.02503817,-0.0024147176,-0.016825546,0.009884847,-0.0052200514,-0.013558575,0.015017736,0.0009926814,-0.010123736,-0.0057236557,-0.029389827,0.013429446,0.017509932,0.038558006,0.009090702,-0.0067082667,-0.012047762,0.032075714,-0.010291604,0.02381144,0.020002127,0.018362185,0.00850962,-0.01798771,0.016257377,0.01512104,0.023901831,0.017574497,-0.024766997,0.005139346,-0.021280507,0.0038835632,0.019679304,0.022081109,0.015056475,0.0016802949,0.0047487295,-0.034012653,0.0076896492,-0.015366385,-0.024857387,-0.019330654,-0.016347768,-0.01477239,-0.0037834882,0.0011113189,0.0062078903,-0.023075404,0.0056687756,0.005410517,0.009846108,0.012286652,0.00980737,0.021241767,0.016644765,-0.017419541,0.001627836,0.005949632,-0.0047293603,0.019808432,-0.0029263925,-0.039306954,0.0054298867,0.017535757,0.006059392,0.015534253,-0.033134576,0.024547478,-0.028511746,0.007605715,-0.030577816,-0.0027762796,0.00055323826,-0.009930043,0.036750194,0.016954675,0.004422678,0.007554063,-0.0153792985,0.010433647,-0.010724187,-0.024960691,0.031714153,0.03130094,-0.00558807,0.0075476067,0.022184411,0.01745828,-0.020841466,-0.013726443,0.0058075897,0.006630789,0.022533061,-0.011014728,0.024224654,-0.0043871677,-0.010033346,0.027917752,-0.032024063,0.05779827,-0.02178411,0.0036608153,0.0071666753,0.00723124,0.002225866,-0.08104154,-0.027065499,0.0022161815,-0.024018047,-0.02010543,0.012073589,-0.02094477,0.03863548,-0.0006504888,0.022584712,0.015301821,-0.017794015,-0.022210237,-0.0066759842,0.020557383,-0.008683944,-0.0033379921,-0.019976301,0.021396723,0.040804856,0.0035349142,-0.009407069,-0.002447,0.0040675728,-0.013829746,-0.014062179,-0.010039802,0.021835763,-0.008554815,-0.017251672,0.0150306495,0.0039319866,-0.0019062711,-0.024586216,-0.029389827,0.015727947,-0.006217575,-0.014836955,0.003255672,-0.020867294,0.008819531,0.0022210237,0.006162695,-0.0045421226,-0.0145141315,0.015405124,0.00027318916,0.005578385,0.025554687,-0.012615931,-0.035174817,-0.032876316,-0.027633667,-0.01042719,0.029209046,0.019175699,-0.0058205025,0.019692216,-0.016399419,-0.0009079403,-0.01384266,-0.0012243071,-0.028201837,0.044033088,0.024095524,-0.0020628404,-0.008690401,-0.010788752,-0.025412643,0.0032346887,-0.008858269,0.025386818,-0.011305269,0.00595286,0.0010225426,-0.03641446,-0.014565784,0.002779508,0.027917752,-0.0044549606,-0.028227663,0.0039674975,0.0046647955,-0.011337551,0.019498521,0.0126546705,-0.035045687,0.02324327,0.012900015,-0.00023606447,-0.030216252,0.017742364,0.018620443,-0.02235228,0.0002826721,-0.0010540178,0.019550174,0.0030119405,0.008716227,0.009594306,0.0043322877,0.024637869,-0.043981437,0.018801223,-0.008057668,0.0034735778,0.015392211,0.0018836735,0.023488617,-0.022584712,-0.004990847,-0.0031313852,-0.0028989525,0.04961147,-0.008464425,-0.015340559,-0.0070117204,-0.016631853,0.01705798,-0.014307525,0.019369394,0.021590417,-0.00903905,-0.027530365,0.0055945264,-0.01794897,-0.012467433,0.01424296,-0.022700928,0.015185604,0.015250169,-0.011841156,-0.0013526293,-0.024844475,-0.0061788363,0.010175387,0.0009821897,-0.020247472,-0.0032863403,-0.0062918244,0.0043452005,0.007618628,-0.025438469,-0.0024841246,-0.0075476067,-0.044859514,-0.0376541,-0.026071204,-0.02059612,-0.004003008,0.0165802,0.007412021,0.019020744,0.01882705,-0.009729892,0.00905842,-0.017277498,-0.042741794,0.019911736,-0.0075024115,-0.019149873,-0.014875694,0.025438469,0.010762926,0.015082301,-0.006285368,-0.00075823104,-0.008916377,-0.036930975,-0.015715035,0.015702121,-0.042225275,-0.016154073,-0.020957684,-0.008864726,-0.019718042,0.02178411,0.003476806,0.009742805,-0.005197454,-0.026122855,0.012958124,0.0096459575,-0.035200644,-0.008096406,-0.016476898,0.013894311,0.0153792985,-0.009981694,0.0007247381,0.0157796,0.012783799,-0.01833636,0.00026693445,0.018052274,-0.0013994386,-0.014746564,-0.014475393,-0.009452264,-0.012906472,-0.014320438,0.022597626,0.02315288,-0.0048714024,-0.0056687756,0.015986206,0.002695574,0.03840305,-0.012486802,-0.019098222,-0.0061239563,0.015986206,0.025102733,0.011408572,-0.0105692325,0.020454079,0.0025067222,0.014255873,-0.004548579,-0.040727377,-0.02614868,0.017548671,0.026626458,-0.0025131789,0.025141472,-0.04695141,0.018646268,-0.014294612,0.00007081934,-0.028899135,0.0078898,-0.0056913733,0.0045711766,-0.020221647,-0.0075411503,-0.0023162565,-0.005878611,-0.0015237256,-0.012628844,0.03478743,-0.0053491807,0.036052898,0.040391643,0.0021871272,0.003128157,0.012887103,-0.014088005,0.008186797,0.011318182,-0.025451383,-0.005571929,0.029570607,0.00976863,0.008993855,-0.022119846,-0.037860706,-0.008212622,-0.01988591,0.0031878792,-0.00007460243,-0.017225847,0.015508427,0.0028053338,0.025864596,-0.011479594,-0.016476898,0.018465487,0.004283864,0.004322603,-0.011059923,-0.016735155,0.024353784,0.0014083163,-0.010175387,0.005310442,0.016941762,-0.0054524844,0.009607219,0.015108126,-0.0008716227,0.014010528,0.00096685556,0.026135767,-0.023914743,-0.01362314,0.010524037,-0.0154955145,-0.032127365,-0.0033444485,-0.016825546]},{\"id\":\"50b295c5-c552-42b6-a26d-f5d57adc5be2\",\"text\":\"I haven’t colored my hair yet but will soon!\",\"vector\":[-0.024979753,-0.021618525,0.0020325508,-0.018058848,-0.0021968912,0.026046416,-0.011621662,-0.006220132,0.015764283,0.006012381,0.0328929,0.014474365,0.002821695,-0.027559588,0.007361213,-0.012471272,0.03596886,0.0033953364,0.025723936,-0.0061116056,-0.016161181,0.01262631,-0.0044868053,0.012682124,-0.0085581085,-0.00019389464,0.014772039,-0.023441775,0.017649548,-0.012496078,0.017401487,0.0006399201,0.009426322,-0.035869636,-0.009649577,-0.0065674176,0.009550353,-0.011658872,-0.014585993,-0.027559588,-0.017872803,-0.0019410781,0.010871278,0.00007180206,-0.0015185991,-0.006145714,0.0036402966,-0.0107844565,-0.02062628,0.019373572,0.021246433,0.011510035,-0.024892932,-0.019708455,-0.020762714,0.00053643214,0.013085223,0.018170476,-0.009482136,0.004737967,0.0061116056,0.016372032,0.0076712896,0.0002738362,0.021829378,-0.018927062,-0.016012345,0.005324011,-0.0034945607,-0.016830945,0.015094518,0.01757513,-0.002297666,-0.007993769,0.034703746,-0.0059937765,-0.041748684,0.0046108356,0.019733261,-0.0020589072,0.0066108285,-0.012558093,0.0035007624,0.020229382,0.01607436,0.037010718,0.014027855,0.009941049,-0.0022961155,-0.01676893,0.022635575,0.04948819,0.014127079,-0.0036589012,-0.02509138,0.0073860195,0.011590655,0.0113674,-0.009637174,-0.023193713,0.0030589034,0.007832529,-0.009209269,-0.0047162618,-0.017686756,0.0007631755,0.0008953455,0.006995323,0.009674383,-0.02626967,-0.014623202,0.025389053,0.00803718,-0.039789002,0.0069395094,-0.021444883,-0.0040309927,-0.018778225,-0.01007128,-0.0035875838,-0.013469717,0.04807424,0.032496005,-0.004474402,0.020452637,-0.001896117,-0.005091454,-0.016024748,0.004803083,-0.0005647266,0.017872803,0.010958099,0.00844648,0.01498289,0.00020038686,0.0071069505,-0.012589101,-0.007075943,-0.013568942,-0.021457285,0.013296075,0.024334794,0.013134835,-0.009072835,-0.012861968,0.0102077145,0.01884024,-0.015565834,0.0025054172,-0.022585964,0.023156503,0.0038356448,0.039689776,-0.01709141,0.0010852673,0.031032443,0.016409243,0.014288319,-0.009122447,0.0040495973,-0.0009069734,0.0055348636,0.031032443,-0.012837162,0.025240216,0.019460393,0.032496005,-0.027137885,0.004083706,0.006524007,-0.022461932,0.021854183,-0.016880559,0.014648008,-0.029246405,0.008762758,-0.004499208,-0.004868199,-0.010734844,-0.013730182,-0.012297629,0.00074805925,0.015578237,0.008347256,-0.014896069,-0.005606181,0.032297555,0.0011372052,-0.007733305,-0.013804601,-0.0040247915,0.005891451,0.0015922422,0.000080038466,-0.6497216,-0.02143248,0.015082115,0.011770499,0.004514712,0.014040259,-0.0028061913,-0.024496034,-0.02646812,0.010617015,-0.015875911,-0.0005182151,0.004046497,-0.0046387427,0.039590552,-0.0056216847,0.016843349,-0.014201498,-0.013767391,-0.0077519096,-0.019844888,0.0074232286,-0.04105411,-0.008030978,0.026691375,-0.007547259,0.017066604,0.026120834,-0.020861939,0.0038418462,-0.023317743,0.012601504,-0.011683678,-0.010288334,0.054226156,-0.010195311,0.014201498,0.01673172,-0.013209254,0.032744065,-0.034207627,-0.0082790395,-0.010641822,-0.004961222,-0.0061085047,0.025066575,0.002415495,-0.0038604508,0.016620094,0.012434063,0.002496115,-0.005789126,-0.007361213,0.015243355,-0.002277511,0.021134807,0.026368896,0.037581258,0.0024015415,-0.002127124,-0.000273061,0.00239534,-0.018331716,0.014784441,-0.045866497,0.017885206,-0.014114677,-0.011875926,0.0011100734,0.009922444,-0.013271269,-0.0034480493,-0.012322435,-0.006461992,0.025041768,-0.009246478,0.020241786,0.0029782837,0.015330176,-0.01408987,0.0053395154,-0.018852644,-0.018542567,0.015280564,0.031106861,-0.015541028,-0.011038719,-0.02066349,0.015230952,-0.010579806,0.020998372,0.039565746,-0.0117580965,-0.024744095,-0.008576713,-0.004046497,0.018294506,-0.011243369,0.03321538,-0.014883666,0.02253635,-0.012049568,-0.0010511589,0.023069682,0.017835593,-0.003255802,-0.010865076,0.0084774885,0.0013550337,-0.006679045,0.008254233,-0.01104492,-0.029196791,0.0005081377,0.009897638,-0.01843094,0.026517732,-0.01071624,0.008421674,0.009122447,0.026046416,0.008799967,-0.004148822,-0.015937926,0.02545107,-0.0031596783,-0.02321852,-0.01473483,-0.019472796,0.000803873,0.0099906605,0.021023178,0.014424753,-0.012167397,-0.00430386,0.0025674324,0.028551834,-0.012173599,-0.003965877,-0.024384405,-0.009488337,0.01709141,-0.0129115805,0.0049395165,-0.009978258,-0.034802973,-0.033761118,0.009736398,-0.027658813,0.024260376,-0.02378906,-0.004306961,-0.018765822,-0.017934818,0.009072835,0.007454236,-0.013903825,-0.029171987,-0.019013884,-0.0024589056,-0.0016108467,0.030511515,-0.0042356434,-0.012502279,-0.0045736264,0.0059906757,-0.024595259,0.04395643,0.007441833,-0.008905394,-0.0065054023,-0.035423126,0.0039565745,-0.025190605,-0.016558079,-0.030809188,0.0007565864,-0.00816121,0.00088681845,0.0004713161,-0.009786011,0.0016992185,-0.008173613,-0.009358105,0.03941691,0.023193713,0.008223225,0.0389704,-0.029816944,0.010331745,0.023528596,-0.01092089,0.0020201476,0.01400305,-0.01830691,0.0018945667,-0.013370493,0.015503819,0.016508466,0.020961164,0.016818542,-0.0041426206,0.013730182,0.00917206,0.017327068,-0.037928544,0.017463502,0.0059224586,0.016099166,0.0073302058,0.00043178134,-0.039020013,-0.0036402966,-0.006666642,0.0062511396,0.0022682087,-0.020266593,-0.014672814,-0.004998431,0.009475934,-0.0042728526,-0.0062852483,-0.003544173,-0.025922386,-0.027708424,0.0133084785,0.02464487,0.014536381,0.0055875764,-0.012669721,-0.0059224586,0.001282941,-0.011807708,0.009103842,-0.006461992,-0.0047844783,0.00079224515,-0.020291397,0.0006674394,0.019410782,0.0144619625,0.02366503,0.014189095,0.028527027,0.024297586,0.003137973,0.022102244,0.009897638,-0.021035582,0.01498289,0.013209254,-0.00032674297,-0.020936357,-0.016334824,0.00072480354,-0.031875852,0.018889854,0.0020449536,0.025599906,0.03768048,0.008210823,-0.004787579,-0.0041023106,-0.015342579,0.012570497,-0.0047441684,-0.021829378,-0.023478983,-0.018927062,-0.00080852414,-0.0029286714,-0.010021669,0.03418282,-0.014151886,-0.004291457,-0.015292967,-0.0028449506,-0.0003687971,0.0072681904,0.014486768,-0.010195311,-0.021754958,0.026244864,0.026344089,-0.0077209016,-0.026294477,0.0004949594,0.007193772,-0.021531703,0.0068588895,0.019708455,0.02078752,-0.009004618,0.013494524,-0.010877479,-0.0066480376,0.001043407,0.012130188,0.02602161,0.0032589028,0.021630928,0.004372077,-0.028427802,-0.033041738,0.015168936,0.0324712,-0.0008302295,-0.012874371,-0.02484332,-0.020266593,-0.0048930054,0.006248039,-0.0312557,0.014561187,-0.0051813764,-0.0044278908,-0.00499223,-0.028725475,0.012638713,0.018083654,-0.0013449563,-0.041153338,-0.021147208,0.005649592,0.10507868,0.008291442,0.009265082,0.010468178,0.010747247,0.004434092,-0.00022151081,0.0010302288,0.0049395165,-0.004347271,0.011950344,0.019224735,0.012365846,0.0067782695,0.010654224,0.0019302254,0.004291457,-0.021147208,0.00081550085,-0.01835652,-0.0075906697,-0.0024511537,-0.014796845,0.011646469,0.026815405,0.01603715,0.010734844,-0.002776734,0.012322435,-0.012985999,-0.0051937792,0.023354953,-0.02013016,0.001165112,-0.00247596,0.017947221,0.01010849,0.015962731,0.029221598,-0.0015379789,0.034678943,0.008539503,-0.003336422,-0.005184477,-0.017488308,-0.0035627775,-0.03418282,0.01709141,-0.007243384,-0.009196865,0.025178201,0.009364307,-0.013568942,0.0044651,-0.018951869,0.04551921,-0.020899149,-0.0353239,0.0023085186,0.009184462,-0.025525488,-0.006710053,-0.01766195,0.0048526954,-0.012043366,-0.027981292,-0.021792168,-0.0088557815,0.0016837147,-0.0014837155,0.011857321,-0.0059503657,-0.0029364233,0.012105382,0.0032185928,0.012192203,-0.0012728635,-0.011621662,0.0041271164,0.018567374,-0.005801529,-0.0055038556,0.02302007,0.0028123928,-0.0067658667,-0.014834054,0.040830858,-0.0034542507,-0.023243325,0.014710023,0.021370463,0.007733305,0.0010666627,-0.01063562,-0.0010480582,0.019782873,0.00832245,0.021283643,-0.0141642885,0.004793781,0.006393775,0.0033922356,-0.021941004,-0.029494464,0.025773548,-0.01351933,0.005618584,0.0104061635,-0.040334735,-0.0030092911,0.012378249,-0.010077482,0.0039596753,0.0052185855,0.0055844756,0.011150346,-0.01839373,0.020564266,-0.016992185,-0.0162356,0.01932396,-0.030189035,0.029246405,0.0016527071,-0.026220059,0.02569913,0.0020682095,-0.016372032,-0.013469717,0.021655735,0.000022419976,0.017599935,-0.020551862,0.0021596819,-0.020154964,0.020576669,0.0007360438,0.0004104636,-0.0111627495,-0.01769916,0.0021240232,0.015702268,-0.008762758,-0.031404536,-0.010139498,-0.0353239,-0.005404631,-0.00499223,-0.0016356529,0.011510035,-0.021531703,0.005652692,-0.016024748,0.011131742,0.035373513,-0.022263484,-0.008700743,0.002257356,0.009922444,0.033513054,0.027882067,-0.00081937684,0.015392192,0.00921547,-0.010523993,-0.018827837,-0.014995294,-0.0004624014,-0.01619839,0.008142605,-0.0034046387,0.003155027,0.0033891348,0.0054697474,0.016123971,0.008204621,0.0019379774,-0.02005574,-0.015838701,-0.027981292,-0.015082115,0.0064929994,0.016954977,0.0107844565,0.027708424,0.010170505,0.0034046387,0.01120616,0.030784383,0.014759636,0.018542567,0.016099166,0.024223167,-0.03170221,-0.018170476,0.0033643288,-0.015813895,0.013010805,-0.0007259663,0.0019054194,0.033488248,0.011150346,0.00030561903,0.008843378,-0.0119379405,0.01031314,0.012210808,-0.038251024,0.0093395,-0.02257356,-0.009277485,-0.026939435,-0.02946966,-0.03296732,-0.001693017,-0.009488337,-0.04470061,0.005361221,0.015429401,-0.029320823,-0.014710023,0.0003253864,0.0057922266,-0.012899177,0.013444912,0.022486739,-0.008092994,-0.0037054126,-0.0012271273,-0.033637084,0.0042356434,0.007931754,0.02780765,-0.030015394,0.008359659,0.03443088,-0.004254248,-0.018939465,-0.056260258,-0.023689834,0.006629433,0.020688295,-0.026989048,0.024558049,-0.023578208,0.013209254,0.0015713121,-0.030189035,0.007181369,-0.023454178,0.0052650967,0.019844888,-0.011168951,0.027261915,-0.0011999956,0.0007259663,-0.02321852,-0.0057922266,-0.011944142,-0.0023364255,-0.007075943,0.01932396,0.0050232373,0.013767391,0.016123971,-0.001112399,-0.0018821636,0.008018575,-0.017810788,0.030982831,-0.028601445,-0.010102289,-0.033810727,-0.0026418508,-0.0025767346,-0.005106958,0.0009883684,-0.02793168,0.01010849,0.009308493,0.017885206,-0.015206145,-0.02748517,0.007770514,-0.027063467,0.007844932,-0.025798354,-0.0077519096,-0.000982167,-0.015603043,-0.00422324,-0.0045736264,-0.00076588866,0.031875852,0.005485251,0.0017348774,0.010220118,-0.003742622,-0.0033178173,0.006524007,-0.0052930037,0.024173554,-0.013457315,-0.0042480463,0.014275917,-0.038027767,0.02168054,0.001372088,-0.017463502,-0.0020713103,0.012675922,-0.005106958,0.011243369,-0.0013550337,0.023193713,-0.011119339,-0.0057457155,-0.010461977,-0.02614564,-0.031925462,-0.012173599,-0.010858875,0.0050728493,-0.0017658849,0.016868155,-0.017339472,-0.020080546,-0.0013899173,-0.012570497,-0.0066914484,-0.003358127,0.03170221,0.012551892,-0.0064929994,0.0057116067,-0.0017209239,-0.0050449427,0.0045705256,-0.0296433,0.026666569,-0.0015015448,0.0385735,0.003928668,0.010710038,-0.028601445,-0.010499186,0.0039937836,-0.0296433,-0.03648979,0.0029705316,-0.002224798,0.00023410766,0.04904168,-0.0050232373,-0.00082557835,-0.02200302,0.004452697,-0.019894501,-0.012142591,0.009792212,0.02971772,-0.011292982,0.001282941,0.008744154,0.00083488063,-0.01575188,-0.0025565797,0.0010992207,0.017649548,0.0077209016,-0.013010805,-0.0027519278,-0.00942012,-0.015168936,0.00434417,0.019981321,0.017835593,0.025996804,-0.0024108437,0.031975076,-0.016434047,0.019696051,0.0032185928,0.012576698,0.011553446,-0.030660352,-0.018195283,0.008961207,-0.01023252,-0.026740987,0.0031333219,-0.004003086,0.027088271,-0.03222314,0.0037891334,-0.008285241,-0.025165798,-0.033885147,0.035348706,-0.012068173,0.0113611985,0.011745693,-0.0008139505,-0.012558093,0.013928631,-0.01944799,-0.033711504,-0.014288319,-0.012291428,-0.0140650645,0.028353384,-0.009506942,0.0054170345,-0.021730153,-0.01457359,-0.014499172,-0.03299213,-0.020440236,0.027534783,-0.020700699,0.0014883666,0.016979782,-0.0027007652,-0.0060899,0.011398408,-0.028254159,0.029122373,-0.022313096,0.00047829282,0.004917811,0.010257327,-0.0050573456,-0.011590655,-0.026641762,-0.0073426086,0.018083654,0.24468747,-0.0031875852,-0.008012374,0.014883666,-0.011032517,0.006117807,0.04839672,0.017488308,0.014437156,-0.009934847,-0.00081007456,-0.0023658827,-0.030660352,-0.004083706,0.028725475,-0.0064929994,-0.004920912,-0.0048061837,-0.0076092742,-0.028527027,0.0018403033,0.0129115805,-0.006889897,-0.0075968713,0.02817974,0.002573634,0.015640253,0.011100735,0.009364307,0.004592231,-0.018964272,-0.0009279036,-0.010145699,-0.015193743,0.00095038407,-0.008570511,0.039789002,-0.0027937882,0.008923998,0.02082473,0.013730182,-0.00840307,0.005615483,-0.012229413,0.0000029508733,0.02525262,-0.00039728536,0.008092994,0.010852673,-0.014052661,-0.02094876,-0.0115596475,0.01307282,0.024185957,0.017910011,0.016161181,0.016967379,0.01307282,-0.014176692,0.0022232477,-0.021494495,0.020378219,-0.014040259,0.011665073,-0.01676893,0.014809248,-0.014275917,-0.016694512,0.005364321,0.015987538,-0.0025472774,0.019683648,0.013593748,0.0044557974,-0.011373602,0.00466975,0.0389704,0.0030837096,0.00024379755,-0.019956516,0.003584483,0.022883637,0.014834054,-0.024396809,-0.0010689883,-0.03515026,-0.002951927,0.014337932,0.032446392,-0.014710023,0.011999955,-0.0119379405,0.0049705245,-0.011466624,0.020886745,0.0026558042,0.002683711,0.016942574,0.008973611,0.02602161,-0.00046550215,-0.010883681,-0.002744176,-0.0043782783,0.0013480571,0.018865047,-0.018679,-0.0129115805,0.0021240232,-0.014772039,0.012161195,-0.02228829,0.0034449485,-0.009457329,-0.0020356514,-0.004291457,-0.018703807,-0.013990646,0.018034043,-0.017463502,-0.0027937882,-0.0023007668,0.0044961073,0.014213901,-0.007931754,-0.021010775,-0.021643331,0.011987553,-0.02996578,-0.02894873,0.011708484,0.009265082,0.030958025,-0.017674353,-0.01818288,0.023032473,0.015057309,-0.0023240224,0.012750341,0.019175123,-0.011144145,-0.010722442,0.016793737,-0.028675864,-0.016744124,-0.03852389,-0.0014286769,0.0035751807,-0.025016962,-0.021382866,-0.028229354,0.0068464866,-0.010350349,-0.007826327,0.022585964,-0.01595033,-0.015776686,-0.0051131593,0.015230952,0.019782873,-0.0023767354,0.006679045,0.024099136,0.009308493,-0.0288247,-0.0045271153,-0.15359944,0.020266593,0.020923954,-0.002748827,-0.0014782891,0.0031255698,0.008905394,0.02228829,-0.015106921,0.0054945536,0.028998343,0.020427832,-0.0075410577,-0.020489847,-0.01635963,-0.0042325426,-0.010294536,0.006970517,0.04527115,0.015776686,0.012824759,-0.020043338,0.008936401,0.000773253,0.0013635609,0.010579806,0.0022883636,0.033637084,-0.013494524,-0.01485886,-0.015379788,-0.0125146825,0.015491416,0.007733305,0.015292967,-0.0009875933,0.01964644,-0.003519367,-0.002618595,0.0025317736,-0.0020790622,0.010883681,-0.0030015393,-0.0008372062,-0.028427802,0.02671618,0.037358,-0.0023395263,-0.000128391,-0.022635575,0.011720887,-0.024756499,0.0061674193,0.010914689,0.022610769,0.012123986,0.008297644,0.006641836,-0.014424753,0.006297651,-0.004858897,-0.019572021,0.007770514,0.020030934,-0.00028488267,-0.011466624,-0.0006829432,0.004300759,-0.04770215,0.01242166,-0.0073488103,-0.008787565,0.011634066,-0.031007638,-0.0018403033,-0.0032496005,0.0044961073,0.0015682112,-0.01144802,-0.0021565813,0.009786011,0.047032386,-0.021792168,0.0012844914,-0.0022852628,0.023032473,-0.004124016,-0.01128678,-0.009587562,-0.0025488278,0.013568942,-0.016868155,-0.01473483,-0.025351845,0.008124001,0.013395299,0.0054232357,-0.007534856,0.012415458,-0.040979695,-0.0013248014,0.01092089,-0.022982862,0.024136346,0.030809188,0.006759665,0.027534783,0.022213873,0.04068202,-0.0037891334,-0.013916228,0.008347256,0.016024748,-0.010461977,-0.0069519123,0.017451098,-0.0031643293,-0.031280506,0.017364277,-0.023131698,0.022945652,0.0069891214,-0.021941004,0.018604582,-0.00031337093,-0.0037054126,-0.10974223,-0.023106892,0.005739514,0.016248003,0.007993769,-0.0020775117,0.0016418544,0.018244894,-0.010480582,0.038350247,0.0026868118,-0.014648008,-0.021779764,-0.012762744,0.00009835235,-0.00884958,-0.006865091,-0.022275887,-0.027088271,0.010244924,-0.007100749,0.017910011,-0.034927003,-0.012024762,0.007119354,-0.014027855,-0.041674264,0.027733231,0.008775162,0.0043999837,-0.036216922,-0.029097566,0.017785981,-0.0045581227,-0.007119354,-0.0077209016,-0.010710038,0.013941034,0.016297614,-0.025153397,-0.010710038,-0.009624771,0.008018575,-0.009568957,-0.002578285,0.03041229,-0.0004906959,0.024694482,0.023094488,-0.011596857,-0.01578909,-0.005324011,0.0030806088,-0.004260449,0.04202155,-0.028675864,0.006102303,0.010455775,-0.010858875,0.0013100727,-0.004251147,0.018902255,-0.022399917,0.023528596,0.0075100497,0.009320896,-0.0070139277,-0.0007007726,0.020514654,-0.030585933,-0.019224735,0.022350306,-0.023392161,0.025103783,-0.021482091,0.012682124,-0.012824759,-0.004579828,0.012700728,-0.016582884,-0.019758066,-0.014151886,-0.007286795,-0.0312557,0.029023148,-0.003581382,-0.011491431,0.00011056161,-0.015702268,0.0012542589,-0.0069643157,0.01721544,0.013630957,-0.027137885,0.0012728635,0.017165828,-0.0014395296,0.0067782695,0.011472826,0.00024592932,-0.018790629,-0.046337813,-0.031007638,0.010077482,0.008390667,-0.028278966,0.0060464893,-0.011807708,-0.0024620064,0.009680584,-0.0106046125,0.0059503657,0.017488308,-0.022647979,-0.020713102,-0.0141642885,-0.017649548,-0.0020961163,0.02334255,-0.0006348814,0.008886789,-0.015168936,-0.018989077,-0.0066852467,0.012372048,-0.018083654,-0.032198332,0.028353384,-0.0099100415,0.010617015,-0.025971998,-0.027162692,0.020192174,-0.0280061,0.008787565,0.02671618,-0.008229427,-0.043584336,-0.009314694,0.033711504,-0.004986028,-0.012452668,0.00066395104,-0.029320823,0.005162772,0.0071503613,-0.020527055,0.0052837017,0.009786011,0.011696081,0.03812699,-0.009246478,0.019410782,0.020489847,0.0072619887,-0.020266593,0.0062046284,-0.04038435,0.00036240177,-0.003069756,0.0072743916,-0.027658813,0.018468149,-0.020440236,0.0046542464,-0.012477473,0.0032123912,0.00438448,0.010517791,-0.0039069625,0.004093008,-0.013258866,-0.0025472774,0.024880528,0.022623172,0.004306961,0.013978243,0.0028573538,-0.01400305,0.001640304,-0.009395314,-0.0033643288,-0.016272807,-0.0055100573,0.0023224722,0.039838612,0.012558093,0.024731692,-0.0099100415,0.010486783,0.0021395271,-0.0049736253,-0.013941034,-0.019361168,0.02017977,0.020068143,0.025971998,0.027832456,-0.011696081,0.02091155,-0.012936386,0.038474277,-0.0050480436,-0.010430969,-0.008111598,-0.010517791,-0.013271269,0.019981321,-0.037159555,0.00042557984,-0.018220088,0.015044906,0.00033643286,-0.02691463,-0.019993724,0.024905335,-0.016855752,-0.010350349,-0.0263937,-0.00925888,-0.0084588835,0.050480433,0.019410782,0.022474336,0.007869738,-0.01944799,0.027782843,0.0007883692,0.023044877,-0.012576698,-0.004896106,0.0050108344,0.0048619974,-0.038548697,-0.035795216,-0.0012248016,-0.0035100647,0.00393797,-0.014995294,0.030040199,0.005854242,0.058195133,0.0053488174,-0.03157818,-0.0014069716,-0.0014875914,0.03284329,0.014623202,0.015888313,-0.023330146,0.010536395,0.018865047,-0.014313126,-0.0005015485,-0.03629134,-0.059584275,0.012799953,-0.020973567,0.01673172,-0.022970458,-0.0121177845,0.022189066,-0.0025643317,0.04214558,0.021345658,-0.019671245,-0.02009295,0.018728614,-0.0031085156,0.016620094,-0.017389083,0.03730839,0.003336422,-0.010375155,-0.0162356,-0.005733312,-0.0047441684,-0.011665073,-0.008489891,0.01482165,0.024347197,-0.011789104,0.011572051,-0.023007667,-0.003779831,-0.013544136,-0.020477444,-0.022846427,0.021047985,-0.039764196]},{\"id\":\"0bfa49c8-a71b-400d-9148-5ddc448cdf2a\",\"text\":\"It says I’m earning bounty but I don’t see anything pending\",\"vector\":[-0.02755534,-0.015775368,-0.007887684,-0.016355345,-0.02969481,0.014112769,-0.040340606,-0.00483314,-0.038536236,-0.028251315,0.043124497,-0.011212884,-0.022709314,0.0017528187,0.013790559,0.009795164,0.022851085,-0.017541075,-0.011567315,-0.019577438,-0.009704945,-0.0021700799,-0.027374905,-0.012115071,0.0064119655,-0.018327266,0.016265126,-0.0037150735,0.007913461,0.00012163402,0.0023070187,0.0033606433,-0.016922433,-0.019384112,-0.044000905,-0.017863285,0.0103042545,-0.011116222,0.0149634015,0.015942918,0.020788945,0.026627379,0.000101596626,-0.014718522,-0.030004133,0.0056354413,-0.01220529,-0.0040985025,-0.0037279618,0.017360639,-0.0055806655,-0.012630605,-0.05964739,-0.04864072,0.0011623701,0.008570768,0.0026372834,0.014538085,-0.029179277,-0.008261447,0.005216569,-0.020299187,-0.0037215177,-0.0020218636,0.010078708,-0.004875027,0.0077136913,0.009498731,-0.009099191,0.0045141526,0.015891364,0.006179975,0.0041661668,0.0029917136,0.032401368,-0.006811505,-0.0044336,0.0023537392,0.035030596,-0.0164069,0.019525886,-0.0037891816,0.002835442,0.030880542,0.043717362,0.011341768,0.020054309,0.018791247,-0.0042982725,-0.0031737618,0.017244643,0.025067886,0.03129297,0.02399815,0.005078019,0.019358337,-0.04049527,0.030725881,0.009975601,-0.022064894,-0.00540345,0.020995159,-0.022541765,-0.0088349795,-0.030751659,0.012405059,-0.0065376274,0.0036828525,0.006289526,-0.014976289,-0.006589181,0.0044497107,0.008403219,-0.022631982,0.01117422,0.024294583,0.011799306,-0.009041194,-0.023559947,-0.009479398,0.01409988,0.0051940144,0.00030791128,0.002901495,0.023727495,0.03320045,0.0014724967,-0.02321196,0.024423467,0.0092087425,0.0122117335,0.010149593,-0.0021926344,0.011612424,0.011702643,0.023611499,-0.02075028,0.012675715,0.0016690443,-0.0008562713,0.022064894,0.0405726,0.00863521,-0.0054421155,0.020092973,0.008770538,0.016368235,-0.022245333,0.00066254294,-0.019577438,0.0042886063,0.0040243943,0.013970996,-0.018262824,-0.028251315,-0.010130261,-0.021768462,0.004836362,0.0027854997,-0.02265776,-0.0216138,0.009576061,-0.010014266,-0.0076492494,0.025222545,0.03049389,0.007662138,-0.034154188,-0.033252,0.014976289,0.0008538547,0.013790559,-0.01377767,0.023173295,-0.0354688,-0.0043369373,0.013584346,-0.01128377,0.005532334,0.00046156486,-0.009260296,0.005416339,0.02447502,0.023727495,-0.009047638,-0.0019397001,-0.0011365934,-0.010014266,-0.0020621396,-0.008093898,0.000708055,0.010226924,0.01750241,-0.0010012655,-0.6512237,-0.01908768,0.007017719,0.019732099,0.011264438,0.0025341765,-0.019255228,0.010078708,-0.014460755,0.014306094,-0.0048556947,0.015118062,0.019796541,0.014512308,0.009859606,-0.025248323,0.019435667,-0.0113997655,-0.009273184,0.007082161,-0.014460755,0.0002815304,0.006811505,0.016535783,-0.0023311845,-0.020389406,0.010136706,-0.004208054,0.0042918283,0.019268118,0.012856152,0.006779284,0.013023701,0.015427383,0.04714567,-0.00048331398,0.020788945,0.011612424,-0.01877836,0.04657858,-0.036886524,-0.014757187,0.005016799,-0.025016332,-0.018546369,0.0035700793,0.0164069,-0.0030287676,-0.0009956268,-0.00017943032,-0.001657767,0.0010922896,-0.018713918,0.005954428,-0.0077588004,-0.0006186419,0.012173069,-0.0047751423,0.0028161095,-0.010433138,-0.012830376,-0.0064119655,-0.041526336,-0.021974675,-0.013970996,0.022760866,-0.0016690443,0.015775368,0.027374905,0.01022048,-0.0065601817,-0.012289064,-0.011895969,0.02312174,0.024449244,0.0010955117,0.016368235,-0.00760414,0.013197694,0.014679857,-0.016613113,-0.03144763,0.006121977,-0.008287224,0.009157189,0.004810585,-0.012134403,-0.013094587,-0.011651089,0.0024020704,0.005210125,0.010052931,0.0053454526,-0.0013548902,-0.0044368226,0.03273647,-0.01319125,0.014215875,0.009872493,-0.015466047,0.00066093187,0.013648787,-0.015904251,-0.010890675,0.05346097,-0.013146141,-0.012005519,-0.017141536,0.03572657,-0.023392398,0.012456613,0.005358341,-0.028947286,0.017064206,-0.014074103,-0.036706086,0.01893302,-0.015775368,0.019577438,0.0219489,0.026421165,0.009659835,0.024449244,-0.033020012,0.0031012648,0.023392398,0.0134941265,0.0022006896,-0.011831527,-0.0023054078,0.0044078236,-0.018288601,0.023108853,0.011638201,0.0069275005,0.0047558094,0.019165011,0.004179055,-0.0073463726,-0.023663053,0.016909545,0.009924048,0.0041275015,0.014228764,-0.0039792852,-0.010980894,0.00227802,0.0005123128,-0.02147203,0.011238662,-0.01014315,0.019435667,-0.028560635,-0.018636588,0.0012831986,0.0069339448,-0.02288975,-0.0019558107,-0.029359713,0.014009661,-0.003315534,-0.00015687567,0.0039535086,-0.014602527,-0.004359492,-0.0068501704,-0.0025647862,0.013597233,-0.011251549,-0.016149132,-0.00039792852,-0.020415183,-0.0007426925,-0.013429685,0.0120570725,-0.0111806635,-0.014447866,0.004498042,-0.0020653617,0.0055387784,0.0043014945,0.016922433,0.015259834,0.008983196,0.016510006,-0.013429685,0.0011293436,0.035597686,-0.0077459123,0.00037779042,-0.0020895274,0.011973298,-0.0034283071,0.024694122,-0.011895969,-0.01216018,0.00064240483,0.033045787,-0.0008035095,0.010336475,0.014847405,0.05490447,0.026627379,-0.00017610754,-0.014499419,-0.027168691,0.009737166,-0.019757876,0.004697812,0.018314378,0.032839574,-0.0063346354,0.011084001,-0.0026501718,0.015865587,0.01901035,-0.015775368,-0.008486994,0.0025454536,0.01790195,0.012069961,-0.00078538526,0.010658684,-0.025944294,-0.00021588025,-0.004314383,0.026266504,0.005329342,-0.0013355577,0.01311392,-0.023418173,0.031318747,0.004984578,-0.0054840026,0.0065472936,-0.0013830835,0.013378131,-0.0025776746,0.014679857,-0.012688603,-0.0034379736,0.010207592,0.027993547,0.002104027,0.019616103,0.0171802,0.022168001,-0.021046713,-0.0047558094,0.029437045,0.0022909082,-0.009756498,-0.043846246,0.00061743363,0.00047002285,-0.036783416,-0.0070241634,0.013519904,0.030828988,0.024591016,0.032916903,0.0075203655,0.013339466,-0.014383424,0.038433127,0.009956269,-0.0132750245,-0.010993782,0.00808101,-0.01782462,-0.0077330237,-0.019912537,0.005877098,0.0029933245,0.055729326,-0.0066568446,-0.02258043,0.0041307234,0.035030596,0.016703332,-0.049130477,-0.026807817,0.036963854,0.026678933,-0.021265816,0.0035346362,0.007365705,0.0055097793,-0.008493437,0.027710002,0.015659373,-0.014293206,-0.008557879,0.00669551,-0.0070692725,-0.0077974657,0.0064345202,0.017876172,-0.0027565008,-0.02685937,0.0109293405,-0.0029949357,-0.0077781333,0.006360412,0.0137132285,0.00697261,0.016626,-0.022722201,0.00023279624,-0.01639401,-0.0009948213,0.00096501695,-0.007191712,-0.0007426925,-0.0033831978,0.0031077089,-0.018804137,-0.024578128,0.024913225,0.0130881425,-0.003389642,-0.010040043,-0.018288601,0.00558711,0.1025399,0.017631294,0.0077459123,-0.005284233,-0.0025841189,-0.0020508624,-0.017141536,-0.030906318,-0.0011486763,-0.009550285,-0.018958796,-0.011019559,0.0011003448,0.025673639,0.00155466,-0.013236359,0.010562021,-0.0402375,0.005973761,-0.028792625,0.007397926,-0.009775831,-0.025841188,0.012327729,0.018713918,0.034025304,0.047970526,0.010033598,0.0001933256,-0.015917141,-0.005983427,0.0015457992,0.007333484,0.014821629,0.021588026,0.023173295,0.003521748,-0.0024342914,-0.004249941,0.009917603,-0.007913461,0.023199072,0.01576248,0.006118755,0.011109778,-0.005068353,-0.007436591,-0.0042467187,-0.0014225541,0.016097577,0.033252,-0.0066052913,-0.005964095,-0.0029788252,0.0003477847,0.02138181,-0.0051360168,-0.014937624,-0.0023634054,-0.033870645,-0.041552115,-0.013803448,0.014512308,-0.008751205,-0.020969383,-0.02432036,-0.005564555,-0.031009426,-0.013635899,0.013597233,-0.019049015,0.017657071,-0.021111155,-0.007874796,0.018649476,0.013674564,0.014666968,0.014112769,0.0141514335,0.0015611042,-0.010362252,-0.010542689,0.0072174887,0.02732335,-0.013648787,-0.0034057526,0.025789635,-0.027529566,-0.0033058678,0.0059930934,-0.0061284215,0.019306783,0.032942683,-0.017309085,0.023882154,0.0068243933,-0.005487225,0.006875947,0.014795852,0.01442209,0.016883768,-0.0014209431,-0.011599536,0.010884231,0.008596545,0.0040566153,0.017218865,0.04405246,-0.04477421,-0.0026098955,-0.0057868795,-0.00008926205,0.012327729,0.0029611038,-0.010413805,0.026730485,-0.0005344647,0.009782275,0.006428076,0.01861081,-0.010162482,-0.019397002,0.02116271,0.013429685,-0.013842112,-0.01528561,-0.0034669724,-0.04642392,0.0046011494,0.0014016106,-0.024578128,-0.0018059833,-0.0034959712,-0.01560782,-0.028741071,-0.017708624,0.00067341747,0.006792173,-0.018417485,-0.0113353245,-0.034154188,0.00100046,-0.0027113915,-0.02732335,0.027426457,-0.03134452,-0.008093898,0.009833829,-0.019306783,0.034979045,0.0056354413,-0.002730724,-0.025776746,-0.012740157,0.011818638,-0.032684915,-0.020299187,-0.007971459,0.044928867,0.0102720335,0.001730264,-0.012521055,0.017798843,0.0016448786,0.0041822772,-0.012862597,0.015040731,-0.023907932,-0.026021626,0.014293206,0.012572608,-0.016187796,0.033148896,-0.0063700783,0.002627617,0.009195854,-0.0077974657,-0.0015659373,-0.040134393,-0.014074103,-0.021897346,-0.017721513,-0.0028289978,0.0016593781,0.00022836585,-0.011232217,0.013165473,0.01774729,0.025789635,0.0071208263,0.030442337,-0.008764094,0.052636117,-0.01203774,-0.008557879,0.0031512072,-0.011715531,0.011580203,-0.0070692725,0.017051317,-0.0033831978,0.023714606,-0.019848095,0.009878938,-0.011483541,0.033612877,0.0028386642,-0.0041951654,-0.0012203678,-0.014125657,-0.023547057,-0.04119124,-0.024178587,0.0041629444,0.001086651,0.009704945,-0.010684461,0.0032768687,0.0045044865,-0.030313453,-0.009402068,-0.005123128,0.009975601,0.0052906773,0.031550735,0.038536236,0.037608273,-0.024371913,0.0031705399,-0.02313463,0.0072497097,0.020221857,0.03740206,-0.023070188,-0.023070188,0.030081462,0.016136242,-0.011322436,-0.024990555,0.023405286,0.0043047164,0.010549134,-0.041088134,0.0019413112,-0.011638201,-0.00071651296,-0.0107424585,0.0073012635,0.0155562665,-0.019165011,-0.0006057535,-0.0023376287,-0.01965477,0.013165473,-0.003763405,0.013126808,-0.0213947,0.009099191,-0.007011275,0.020866277,-0.015504713,0.0302619,-0.03098365,0.0088672,-0.02011875,0.0012147292,-0.012707936,-0.024462132,0.0034476398,0.02147203,-0.023057299,-0.01600736,-0.012888373,-0.003379976,-0.00572566,0.009253852,-0.008313,-0.02685937,0.008764094,0.009704945,0.021111155,0.0061348653,-0.027297573,0.005567777,-0.012108627,-0.0035700793,-0.02462968,0.011438431,0.009247407,-0.008783426,-0.019461444,-0.0056902166,-0.0012533943,0.02193601,-0.013584346,0.037066963,0.011058224,0.007997235,-0.00918941,0.008519215,-0.021433365,0.012901261,-0.037247397,-0.00043619087,-0.0046817013,-0.018842801,0.014112769,-0.009324738,-0.015917141,-0.016497117,0.03343244,-0.020247635,0.0041822772,-0.010291366,0.011696199,0.021923123,0.006331413,0.011373989,-0.018301489,0.016471341,0.035443027,0.010452471,0.01742508,-0.004382047,-0.012102182,-0.013442573,0.01583981,0.015362941,-0.01814683,-0.026962476,-0.010729571,0.011921745,-0.018443262,-0.018301489,0.008899421,-0.017399304,-0.008274335,0.024694122,-0.0013508626,0.0045463736,-0.002382738,0.01183797,0.007810354,0.012772378,-0.013674564,-0.024217254,0.007146603,-0.01271438,-0.015234057,-0.023572834,-0.022451546,0.027142914,0.031241417,-0.027400682,-0.003492749,-0.013101031,-0.010104485,-0.025712304,-0.006254083,0.025145216,0.032401368,-0.008287224,-0.0011849247,0.043588478,0.011541538,0.0026421165,-0.0085836565,-0.024294583,0.010407361,-0.012011964,-0.016973987,-0.0008393553,-0.014228764,-0.01029781,0.013062366,0.019525886,0.016613113,0.010581355,-0.003666742,0.0010777902,-0.010194703,-0.0107424585,0.018391708,0.015466047,0.0128368195,-0.022064894,-0.015427383,-0.015079397,0.0148087405,-0.005906097,-0.004726811,0.022064894,0.0017238199,0.012611273,-0.021407587,0.0064860736,-0.009195854,-0.015221168,0.033690207,0.017644182,-0.019577438,-0.006051091,0.01583981,-0.03500482,-0.013094587,0.015698038,-0.005358341,-0.013893666,0.016058913,-0.016729109,0.008486994,0.01791484,-0.029024616,0.0022312996,-0.009221631,-0.011631757,-0.014770076,-0.020389406,0.010961561,-0.0018591478,-0.001762485,-0.0098660495,-0.00006429083,-0.012443724,0.017154425,-0.008255003,-0.018791247,-0.029875249,0.0009875715,0.00093601807,0.0019590326,-0.053409416,-0.0033316445,-0.0119604105,-0.009750054,0.014267429,0.21322525,-0.012031296,-0.024694122,0.03492749,0.016909545,0.022992857,-0.0083323335,-0.010400917,0.005496891,0.003660298,0.02193601,0.014331871,-0.028251315,-0.00062105845,0.007997235,-0.0042660516,-0.024114145,0.009762943,-0.0107424585,-0.028792625,0.01009804,0.03098365,-0.012108627,-0.026575824,0.02288975,-0.014035438,0.005619331,0.01145132,0.009131412,0.004701034,-0.022528876,-0.0041822772,0.008628766,-0.024333248,-0.03492749,0.005113462,-0.0114319865,-0.0068501704,0.033638652,0.027658448,0.015246945,0.0074752565,0.0012662826,-0.015865587,-0.0013983884,0.018945908,0.009762943,-0.012127959,-0.0062605273,-0.008087454,-0.042248085,-0.008164784,0.014873182,0.009266741,-0.01687088,0.0031205972,0.022915527,0.010632908,-0.017399304,0.0026662822,-0.035700794,0.0005191598,-0.007223933,0.009511619,-0.03263336,0.031885836,0.005181126,0.004005062,0.025725193,0.013700341,0.014241653,0.0060897563,0.012978592,-0.004733255,-0.029952578,-0.001539355,0.0077781333,-0.016123354,0.016677555,-0.017102871,-0.00677284,-0.0019058682,-0.016484229,-0.025132328,0.001902646,-0.044104014,-0.0026018403,0.0208405,-0.00697261,0.0035926339,-0.00994338,-0.016484229,-0.030854765,-0.03134452,-0.009762943,-0.010362252,0.010007822,0.03729895,-0.000011862589,-0.014976289,-0.018585034,0.021652468,0.010426694,-0.0075396984,-0.022619095,-0.022528876,-0.018005056,-0.0053970064,0.0041565,-0.0062411944,-0.01679355,-0.029952578,0.0020895274,0.009298961,-0.009015417,0.009827385,-0.009601838,-0.0070306077,0.0057643247,0.0100851515,0.0072625983,-0.02455235,-0.0041726106,-0.019371225,0.022915527,-0.0041371677,0.010626463,-0.02312174,-0.0036312991,-0.025609197,0.01520828,0.000091376554,0.013507015,-0.019384112,-0.034901716,-0.002419792,-0.019281005,0.013597233,-0.023972373,0.01259194,-0.038536236,0.009286073,0.010761792,-0.01216018,-0.0002825373,-0.04642392,0.019113457,-0.021588026,-0.026936699,0.007913461,-0.010168926,-0.01631668,0.00071127707,0.0006629457,0.024462132,-0.008796315,-0.021343146,-0.0047139223,0.008506326,0.007907017,-0.037891816,0.006837282,0.040701482,-0.017953504,-0.024565239,-0.003837513,-0.1621873,0.017025542,-0.00036792277,0.00518757,0.013062366,0.017489523,-0.0094922865,-0.006888835,-0.021974675,0.0061413096,0.023650164,-0.025776746,-0.02290264,-0.0247199,0.0005268122,-0.010426694,-0.030287677,0.012250398,0.014035438,0.022760866,0.03399953,0.010832678,0.004414268,-0.009260296,0.018894354,0.0073077073,-0.015195392,0.027581118,-0.0032156492,-0.019461444,-0.027117137,-0.0048879157,-0.012005519,0.013030145,0.021317368,0.010993782,0.0026147286,-0.005674106,0.016973987,-0.000508688,0.0047622537,0.016909545,0.015930029,0.004639814,-0.008229226,0.019203676,0.019384112,0.018108165,0.012985036,0.0015071341,0.021639578,-0.017012652,-0.015904251,-0.01339102,0.023315066,0.024771454,-0.00497169,-0.0029788252,-0.030442337,-0.0009948213,-0.010890675,-0.023907932,-0.024926113,-0.007810354,-0.0072819307,0.006070424,-0.016329568,0.019036127,-0.014035438,0.00318665,-0.019770764,-0.014679857,0.029746365,0.010858454,-0.014138545,-0.024732787,-0.01822416,0.0121795125,-0.02210356,0.012643494,0.0017350973,0.02923083,-0.021510694,0.00077571895,0.01394522,-0.008068121,0.024268806,0.008216338,0.014924736,-0.02827709,-0.0082098935,-0.008119675,-0.0025470648,-0.009511619,0.014886071,0.0354688,-0.006669733,0.0006323358,0.009099191,-0.025531868,-0.00047445323,0.0056128865,-0.013687452,0.034798607,0.029256606,0.017850397,0.008229226,0.01836593,0.046784796,-0.020080086,-0.013919443,0.008119675,-0.005641885,0.04624348,-0.012417947,0.023173295,-0.023263514,-0.004459377,0.017798843,-0.01861081,0.05188859,-0.012881929,-0.015749592,-0.016097577,-0.013236359,-0.007990791,-0.090012394,-0.01567226,-0.0017673181,-0.005113462,0.014499419,0.023405286,-0.008815647,0.02225822,-0.005068353,0.0141514335,-0.0016561559,-0.032143604,-0.0060672015,-0.00050466036,-0.0039470643,0.00009339036,0.017205978,0.0122117335,0.030081462,0.03938687,-0.008023012,-0.009131412,0.0057933237,-0.017025542,-0.012559719,-0.015981583,-0.0077008028,0.008731873,-0.019345447,0.0018382042,0.029488597,-0.008731873,-0.012411503,-0.0147442985,-0.024127034,0.0027693892,-0.030081462,-0.01703843,0.0068566143,-0.015118062,0.0039986176,-0.016187796,0.022760866,0.0006379745,-0.018159717,0.015865587,-0.0034025304,0.0033703095,0.01339102,-0.03263336,-0.037814487,-0.00504902,-0.010826234,-0.011522206,0.0115544265,0.011747752,-0.0064860736,0.045289744,-0.009182965,-0.008622321,0.001901035,-0.008815647,-0.0127466,0.02218089,0.004385269,0.004665591,-0.031164085,-0.0036506318,-0.023250625,0.0009972379,-0.022670649,0.0313703,-0.01560782,0.005003911,-0.01719309,-0.01846904,-0.006631068,-0.0010769847,0.014770076,-0.019757876,-0.027735779,-0.012572608,-0.00863521,-0.021033825,0.04379469,-0.0032430368,-0.023095964,0.009414957,0.005013577,-0.011741308,-0.02685937,0.010768236,0.01933256,-0.012263287,-0.000760414,0.011122666,0.0169611,-0.015375829,0.008609433,-0.012121514,-0.000674223,0.002864441,-0.045289744,0.0117735285,-0.029720588,-0.009099191,0.007900572,0.006701954,0.005078019,-0.0045721503,-0.0019219787,0.015878476,0.009930491,0.025209658,0.009008973,-0.009144301,-0.0051972363,0.0020685839,0.014589638,0.0011309547,0.025080774,-0.0029176055,-0.0263825,-0.020969383,0.012901261,-0.002245799,-0.009982045,0.030674327,-0.011515762,0.011728419,0.011264438,0.0006887224,0.016445564,-0.0067663956,0.0011953966,0.04554751,-0.007359261,-0.021459142,0.010845566,0.010458915,0.023791937,-0.011489985,-0.009092747,-0.0031318746,-0.014409201,-0.025248323,-0.032530252,-0.037247397,-0.01885569,-0.0060994225,0.019268118,0.017695736,0.04650125,0.020788945,-0.013262136,-0.0075525865,-0.0029901026,-0.025480313,0.028380197,-0.015195392,-0.015156726,-0.04294406,0.037994925,0.012972147,0.007114382,-0.006047869,0.0346955,-0.0018817025,-0.019126346,0.011245105,0.007223933,-0.029565929,0.010781124,-0.029978355,-0.024127034,-0.02225822,0.030906318,0.009769387,0.019525886,-0.0046043713,-0.014202987,0.023379508,0.004005062,-0.021523584,-0.005628997,-0.016058913,0.04085614,0.0149634015,0.0047074785,0.01964188,0.008886533,0.018262824,-0.029772142,-0.0005872265,0.010613576,0.008841424,0.008770538,-0.010832678,0.008886533,-0.002627617,-0.003460528,0.013790559,0.009698501,-0.0042918283,-0.0011704253,0.01042025,-0.0063765226,0.019474331,-0.039567307,-0.014228764,-0.0067857285,0.012050629,0.023469727,0.0016368234,-0.008873645,0.008841424,-0.025944294,0.014177211,-0.0015949361,-0.045495957,-0.027478011,0.015375829,0.013378131,-0.021678243,0.0009005751,-0.034824383,0.029411267,0.00023360176,0.011638201,-0.023418173,0.008100342,-0.017476633,-0.0070563843,0.0063765226,-0.0046043713,-0.00455604,0.00697261,0.0011132333,-0.031782728,0.01568515,0.0045399293,0.051476162,0.01639401,0.0019767543,0.011425543,0.008841424,0.008641654,0.031060979,0.009447177,-0.0035507467,-0.0037118513,0.03033923,0.0059995377,-0.011122666,-0.010961561,-0.03817536,-0.008151896,0.002207134,-0.012134403,-0.015195392,0.00044102402,0.013751894,0.005177904,0.013584346,-0.0138678895,-0.016020248,0.007939238,0.022644872,-0.01354568,0.0044174897,-0.02709136,0.027658448,0.006121977,0.022374215,-0.010123817,0.01231484,-0.003927732,-0.009801608,0.0043627145,0.008390331,0.009440733,0.001106789,0.017773066,0.00070402736,-0.014241653,0.007965014,-0.018069498,-0.033947974,0.026601601,-0.020969383]},{\"id\":\"3d87abd8-0fa9-4ecb-891b-d0d6c4f937e0\",\"text\":\"Caden should request buyers to post their recent purchases\",\"vector\":[-0.019384298,0.012178862,0.0048058582,-0.016555745,-0.0033145004,0.032387596,-0.031824566,-0.020966142,0.0038037999,-0.021904524,0.020724844,0.007701438,0.013030109,-0.021515766,0.021194035,0.0038172053,0.024223669,-0.0075338697,-0.0044238023,-0.006722839,-0.028902175,-0.004768993,-0.0058548353,-0.017561154,0.016877476,-0.022025174,0.024558805,-0.018070562,0.016676394,-0.009806096,0.019491542,-0.008706847,-0.007795276,-0.022588203,-0.024880538,0.0047019655,0.0021431982,0.020161815,0.0037099614,0.00212309,0.011508589,0.005807916,0.008874415,0.0069373264,0.0014368979,-0.010188151,-0.006025755,-0.011542102,-0.028982608,-0.0054694284,0.015443092,-0.00053161033,-0.015912283,0.004420451,0.016770232,-0.010489774,-0.0018968729,0.009672041,-0.011997888,-0.015107956,0.0035692041,0.0034033116,-0.0067261904,0.004336667,0.019156404,-0.009135822,-0.007801979,0.01246708,0.001627088,-0.008659928,0.020121599,0.018633591,0.010777991,-0.012286105,0.00013855801,0.0057844566,0.021998363,0.008505765,-0.021676632,0.017641587,0.0051108324,-0.024893943,-0.0051946165,0.02788336,0.028902175,0.028392768,0.004715371,0.017990129,-0.018807862,-0.009618419,0.010462963,0.016676394,0.00085962523,-0.00493321,-0.0136601655,0.018526347,0.014290222,0.03429117,-0.0111667495,-0.009826204,0.013258002,0.02164982,-0.020362897,0.0017678452,-0.014839846,0.008103602,-0.018700618,-0.022427337,0.023446152,-0.011542102,0.005888349,0.042897478,0.013579733,-0.027387358,-0.0016170338,0.015523525,0.00013709179,-0.0074802474,0.0034519064,-0.025778703,0.024505183,-0.010811505,0.011696265,-0.0047488846,0.003522285,0.009544688,-0.03919757,-0.0021783875,0.0046818573,0.010483071,0.001848278,0.010958965,0.015282227,0.013767409,0.0032893652,0.030832563,-0.0018281698,0.025765298,-0.012446972,-0.046409708,-0.007493653,0.03399625,-0.0012735189,0.011689562,-0.013847842,0.017668398,0.012433566,0.005787808,-0.007051273,-0.012989893,0.009484364,-0.023767883,0.014987306,-0.016904287,0.003988125,0.003009526,0.025095025,-0.0021532523,-0.00071258406,-0.00080474664,-0.0147460075,0.020041166,0.025658054,-0.017628182,-0.011997888,0.039358437,0.039358437,0.0032122838,-0.014504709,0.0010925451,0.005345428,-0.011133236,-0.013901464,0.0012634648,-0.010845019,0.026985195,-0.010127827,0.0066055413,-0.0029760124,-0.039867844,0.0037200155,0.017480722,0.013754004,0.026395354,0.008827496,-0.029813746,0.02105998,-0.015469903,-0.010858424,-0.018928511,0.0075070583,0.009946853,0.016059743,-0.019639002,-0.66748476,-0.027105844,0.014075735,0.00930339,0.00841863,0.048608202,0.00017521357,0.03512231,-0.0032022297,0.024196858,-0.010395936,0.027963793,-0.033808574,0.003185473,0.028955797,-0.0071853274,0.02047014,-0.012017996,0.003760232,0.013613246,-0.015992716,-0.00011164236,0.017856074,-0.0029793638,0.013043514,0.028955797,-0.011354426,-0.00409872,0.01160913,0.037133127,-0.018338671,0.015603958,0.020403113,0.0065050004,0.05222768,-0.0035189337,-0.0048460746,0.02874131,-0.002498443,0.03219992,-0.022132417,-0.007171922,0.0020476843,-0.0064145136,-0.0022822798,0.012762,0.006260351,0.006585433,0.014263411,-0.0039914763,0.00559678,0.0071115973,-0.023017177,-0.013506003,0.029518826,-0.024773294,0.030081855,-0.006548568,0.015268821,0.031181104,-0.01082491,0.0076612215,-0.017038342,-0.028634066,-0.013244596,0.009015173,-0.016931098,-0.008043277,0.007440031,-0.025135241,0.000538732,-0.0009417337,-0.022641825,0.016528934,0.010938857,0.0174271,0.022816096,-0.010174746,-0.027722495,0.027936982,0.019424515,0.00040048818,-0.0348542,-0.035631716,0.0018013589,0.02103317,0.0015123036,-0.021810686,0.023915343,0.010724369,-0.009591608,0.008981659,0.0001547912,-0.00044028563,-0.002857039,0.00819744,0.000765787,0.011997888,0.006055917,-0.022561392,-0.0029056338,-0.013164164,-0.0035021768,-0.006565325,0.017976724,0.011099722,0.014692386,0.011160047,0.017051747,-0.044023536,0.0076075997,-0.019129593,-0.013459084,-0.003733421,-0.0057744025,-0.038473677,-0.0042227204,0.019920517,0.004520992,-0.03860773,0.019813273,0.027213087,0.027508007,-0.0064982977,-0.0015148171,0.013345137,0.0011612481,-0.017949913,0.0015885473,0.018365482,0.028258713,-0.025470378,0.031744134,-0.019571975,0.002719633,-0.012426863,0.011702968,-0.010637234,0.011984482,-0.020094788,-0.023084205,0.003254176,-0.023593612,0.013888058,-0.013740598,-0.0114147505,-0.0047321278,0.010630531,-0.025443567,0.002376118,-0.0056068343,-0.019947328,-0.008599604,0.012426863,-0.009236363,0.005730835,-0.015630769,0.0003100013,-0.006796569,-0.009323498,-0.006179918,0.035363607,-0.027508007,0.008076791,-0.0068300827,-0.023928748,0.013552922,0.003743475,-0.003291041,-0.03217311,0.001948819,-0.010040691,-0.0033982845,0.011320912,-0.00038813002,0.007165219,-0.024263885,-0.012433566,0.011408048,-0.00726576,0.023405936,0.014906873,-0.0024129832,0.00849236,-0.011066209,0.0072523546,-0.0059419707,0.040725794,-0.023714261,0.028526822,-0.020282464,0.012145348,-0.01828505,-0.012849135,-0.020644411,0.019531759,0.020242248,0.008029872,0.004061855,0.014330438,-0.0058313757,-0.0049164533,0.014075735,-0.01730645,0.002339253,-0.020336086,0.00091743626,-0.027253304,0.030135479,0.02466605,0.012634648,-0.057589862,0.0074534365,0.0033312573,-0.015402876,0.014397466,0.007198733,0.010054097,0.0012500593,0.0019270352,-0.0033932575,-0.023379125,0.03281657,-0.021958146,0.021596199,0.012279402,-0.014196384,0.021368306,-0.003148608,-0.015295632,-0.015295632,0.02427729,0.02120744,0.027105844,0.015014117,-0.009886528,0.0027665521,-0.014719197,0.019223433,0.024049398,0.019920517,0.035363607,-0.017467316,0.02439794,0.020832088,0.0018683862,0.014142762,0.010952262,-0.03458609,0.0077818707,0.00562024,0.0059051057,-0.018070562,-0.007574086,0.0026157408,-0.01813759,0.014075735,0.016354663,0.011334318,0.032119486,0.006612244,-0.0105500985,0.024867132,-0.0017024936,0.012420161,0.014665575,-0.010717667,-0.0056369966,-0.0073260847,-0.019357488,0.014692386,-0.02105998,0.02493416,-0.008747064,0.026006596,-0.018472726,0.011823617,-0.02000095,-0.02236031,0.012373242,0.001779575,-0.025202269,0.008338197,0.035095498,-0.017762236,-0.0121051315,-0.005771051,0.0045746136,-0.019210028,0.010710964,0.0027447683,-0.012601134,0.0094642555,0.0040048817,0.0046818573,-0.0055431584,0.033299167,-0.002593957,0.009109011,0.005640348,0.0023627125,0.0008998416,-0.014692386,-0.019384298,0.023553396,0.01831186,0.0017293046,-0.03399625,-0.024920754,-0.010664045,0.0036261773,0.010268584,-0.013512705,0.0021431982,0.008291278,-0.0065251086,-0.0014017086,-0.01124048,0.018472726,0.020992953,-0.011146641,0.0011067884,-0.022427337,0.0230708,0.12740551,0.0127217835,-0.0076880325,0.024612427,-0.005519699,-0.0040585035,-0.018405698,0.01175659,0.020563979,0.011454967,0.003998179,-0.0053856443,-0.0019387649,0.012359836,0.011716373,-0.002867093,-0.0055264016,0.011749887,-0.0074735447,-0.05072627,-0.019116187,0.017802453,-0.0013338435,0.02248096,0.027226493,0.035899825,0.026569625,0.028580444,0.011676157,0.00047756959,-0.012078321,0.007547275,-0.027642062,0.018700618,0.016810449,0.021261062,0.009806096,0.02611384,0.014491304,0.015872067,0.028848553,0.0061832694,0.013754004,-0.016515529,-0.00051359675,-0.0058012134,0.009973664,0.0018398996,0.009410634,-0.02236031,0.0198803,-0.02697179,-0.011823617,0.0132647045,0.002609038,-0.007775168,-0.007580789,-0.0073528956,-0.033781763,-0.017829264,-0.0045712623,-0.01941111,0.0072255437,-0.0067999205,-0.032012243,-0.015697796,-0.03139559,-0.002604011,-0.021958146,-0.019826679,-0.011790103,0.012011293,-0.014330438,-0.002687795,0.022266472,0.011662751,0.029894179,-0.0038105026,0.0034552577,0.0046952628,-0.010757883,-0.009745771,0.026341733,-0.012460377,0.003342987,0.022909934,-0.002598984,-0.0078354925,-0.02248096,0.024599021,0.008217548,-0.0065318113,0.007238949,-0.017641587,-0.012768703,0.0048460746,-0.0041154767,0.021462144,-0.026060218,0.009933447,-0.0031435809,0.01190405,-0.0004141031,-0.02685114,-0.0052515897,0.019250244,-0.0026710383,-0.007848898,-0.010335611,0.0124000525,0.0048896424,-0.004661749,-0.0036261773,-0.0070378673,0.012118537,0.0053588334,0.0048092096,0.0048460746,-0.0069038128,-0.017681804,0.0069574346,-0.004524343,0.03541723,0.012205672,-0.000058334703,0.0005693132,-0.0198803,-0.038312808,-0.005392347,0.025939569,0.0036362314,-0.000538732,-0.033004247,-0.022561392,-0.022011768,-0.010315503,-0.0037133128,0.021368306,-0.0054057525,-0.021609604,-0.031020239,-0.008539279,-0.013955086,-0.018325265,0.015858661,-0.03573896,0.000617908,0.0018466023,0.010912046,0.036141124,-0.00819744,-0.013150758,-0.0034820687,-0.01146167,0.0050572106,-0.033486843,-0.013150758,-0.0035625014,0.007319382,0.010181448,0.026073623,-0.012259294,0.007460139,-0.018673807,0.010938857,-0.01261454,-0.0033882305,0.003907692,-0.012654756,-0.004779047,0.015282227,0.02177047,0.005556564,0.01453152,0.007520464,0.014813035,-0.005429212,-0.0096854465,-0.0025922812,-0.010764586,-0.010275287,-0.0124737825,-0.009135822,0.011769995,-0.039224382,-0.012118537,0.034478847,-0.0018197914,-0.002118063,-0.025899353,0.013640057,-0.016797043,0.039814223,-0.008016466,0.011334318,-0.0020996304,-0.006712785,-0.015939094,-0.009966961,0.020537168,0.018392293,0.013231191,-0.01804375,0.0052046706,-0.020657817,-0.005730835,-0.0063407836,0.008874415,-0.007621005,-0.002756498,-0.024196858,-0.011971077,-0.022641825,0.009129119,0.0020744952,0.016314447,-0.025885947,-0.0005722456,-0.02726671,-0.028794931,-0.021529172,0.0034250955,0.021167224,0.0009475986,0.007125003,0.0021130359,-0.0020946034,-0.0060224035,0.0023660639,-0.024237074,-0.008257764,0.0009819501,0.041637365,-0.021837497,-0.025926163,0.021301279,0.016797043,-0.028392768,-0.01627423,0.017628182,0.009886528,0.016998125,-0.01902235,0.0049198046,-0.031529646,0.004182504,-0.01831186,-0.002540335,0.007319382,-0.028553633,-0.0026961735,0.013566327,-0.017467316,0.011280696,0.016207203,-0.01727964,0.0039579626,-0.031154294,-0.0053588334,0.019317271,-0.026033407,0.005593429,-0.0060592685,0.015670985,0.015349254,-0.02366064,-0.006877002,-0.012118537,0.0028603903,0.028500011,-0.005898403,-0.007393112,0.01872743,-0.016890882,-0.0135864355,-0.02221285,-0.004866183,-0.038017888,-0.018995538,-0.015201794,0.0011101398,-0.006280459,-0.014223195,0.008177332,0.001193086,-0.010369125,-0.030296344,0.002935796,0.020845493,0.00856609,-0.0041389363,-0.0075070583,0.0087738745,0.015416281,0.0072858683,-0.021462144,0.012822324,0.01774883,-0.02002776,0.03075213,-0.0043601263,0.0010690856,-0.032575272,0.012989893,0.016756827,-0.02253458,0.0030748777,-0.002007468,-0.015134767,0.0047488846,0.0051577515,0.006253648,0.0039579626,0.008988362,0.007654519,0.034800578,-0.0071518137,-0.02366064,-0.04501554,-0.006702731,0.006759704,0.005667159,0.016408285,-0.017051747,0.01713218,-0.028392768,0.019062566,0.006950732,-0.0034033116,-0.020939332,-0.01760137,0.032575272,0.00431991,-0.024505183,-0.01482644,0.00031942702,0.0044807754,0.011984482,-0.0001721764,0.0057174293,0.0135864355,0.0062301885,0.009470958,0.02280269,-0.011991185,0.014182978,-0.033245545,0.015791634,-0.011917455,-0.0071384083,-0.037347615,0.014330438,0.00468856,-0.035685338,0.0077148434,0.0076880325,-0.017266234,-0.008525874,-0.0034284468,0.014317033,-0.0067362445,-0.0301891,-0.009403931,0.013968491,-0.024558805,0.019330677,-0.01819121,0.006833434,0.0002603592,0.011253885,0.015885472,0.0063944054,-0.028634066,-0.022172634,0.015898878,0.01320438,0.0041590445,0.015335849,0.0006975029,0.008485657,-0.02248096,0.0014142762,-0.00090067944,0.013673571,0.024344318,-0.033915818,-0.014638764,-0.011743184,-0.0024950916,0.004450613,-0.01772202,0.011186858,0.0029056338,-0.020805277,-0.0077818707,-0.0120314015,-0.00461483,0.016032932,-0.0016287636,-0.013090434,-0.013304921,0.020899115,0.0009367066,-0.031744134,0.007795276,0.020966142,-0.005955376,-0.015496714,-0.009209552,-0.0025487135,0.0025755244,0.008974956,-0.023338908,-0.00562024,-0.016676394,0.0021029818,-0.002935796,0.0061329985,0.0042260718,-0.0069105155,-0.031261537,0.010248476,-0.00056470506,0.0026425517,-0.0050404537,-0.00055632665,-0.0028184983,-0.036811396,-0.0038842326,-0.0039043408,-0.0041959095,-0.0012408431,-0.010771289,-0.020067977,-0.0024548753,-0.004839372,0.24044035,-0.004346721,-0.01639488,0.039894655,0.008834199,-0.0031134186,0.036784586,0.013485895,-0.010483071,-0.031476025,0.001446952,0.011602427,-0.02540335,0.003622826,0.0057174293,-0.0024381184,-0.014504709,-0.021287873,-0.023137826,0.009417336,0.026274705,0.016140176,0.005187914,-0.010952262,0.023928748,0.009933447,0.004634938,-0.0076075997,0.021368306,0.013686976,-0.01713218,-0.016703205,-0.0012224106,-0.013298218,-0.039867844,-0.0063106213,-0.015014117,0.005476131,0.0045746136,0.031905,0.018566564,0.014196384,-0.0029592556,0.005851484,0.024143236,-0.0031972027,-0.003549096,-0.019799868,0.014518115,0.0053856443,-0.01713218,-0.0070378673,0.0015977635,0.026207678,-0.025658054,-0.0009970312,0.024304101,0.04027001,-0.01016134,-0.028875364,-0.008532576,0.023312097,0.0069373264,0.020403113,-0.00065477303,0.011280696,-0.02788336,-0.027481196,0.018097373,-0.017561154,0.032602083,0.0075606806,-0.02105998,0.021368306,-0.0017175748,-0.015282227,0.017949913,0.009537986,0.01786948,-0.00011289912,0.0021666577,0.013539516,0.008009763,0.00994015,0.0037300696,-0.04203953,-0.010027286,-0.011743184,-0.002414659,-0.018244833,-0.000871355,0.00017050072,-0.024451561,0.0017946562,-0.014611953,0.0009635176,-0.0016346285,0.018486131,-0.012554215,0.0030480667,-0.013861247,0.053032007,0.008311386,0.013653463,-0.0128692435,-0.012252592,-0.016528934,0.038312808,-0.00033681223,0.01327811,0.012366539,-0.014571737,0.013325029,0.009665338,-0.009899934,0.012802216,0.001853305,-0.033915818,0.0026810924,-0.0037903944,-0.002414659,-0.028312335,0.0022353607,-0.0019136297,0.03423755,-0.00090486865,-0.009993772,-0.033513654,0.025242485,-0.008539279,0.0022119011,0.013479192,-0.0009861393,-0.012011293,-0.003004499,0.0084521435,-0.00064262433,0.007466842,-0.011052803,0.014491304,-0.0013388705,0.025644649,0.015134767,-0.02236031,0.021984957,-0.00066315144,0.0031251484,-0.0035289878,-0.009672041,0.012058212,-0.017038342,-0.007386409,-0.008887821,-0.01727964,0.023258476,0.0047120196,-0.014544926,-0.000633827,0.0046550464,-0.013847842,-0.017507533,-0.0058917003,0.011052803,-0.0027531467,-0.02844639,0.0006279621,-0.17298408,0.016234014,0.0097591765,-0.01212524,0.005925214,-0.016287636,0.014799629,0.016662989,-0.015912283,0.00027690656,0.04766982,-0.01656915,0.004071909,-0.0062134317,0.00018055481,-0.011300804,-0.011857131,0.007238949,-0.0018968729,0.025792109,0.014518115,-0.0131909745,0.00937712,-0.00076159777,-0.008425333,0.011709671,-0.0115622105,0.026891356,-0.026824329,-0.032923814,-0.023325503,-0.006990948,0.0053856443,0.019746246,0.0010163016,0.0025906055,-0.004698614,-0.011508589,-0.0049198046,0.018660402,0.012507296,0.026368544,0.011408048,0.019518353,0.019357488,-0.01160913,0.014705791,-0.003348014,-0.0029609313,-0.036436044,0.0032340677,-0.025483783,0.016207203,0.007915925,0.024384534,0.017534344,0.0136601655,0.012145348,-0.0066457577,-0.019210028,-0.00064723246,-0.007580789,0.0026174164,-0.027333736,-0.0077818707,-0.012762,-0.012265997,0.0039747194,-0.01134102,0.0174271,-0.0058648894,-0.025885947,0.008961551,-0.003379852,0.0070311646,0.008840902,-0.02640876,0.00015856148,-0.0051041297,0.0012525729,-0.0032709327,0.026355138,-0.012420161,0.01438406,-0.0284732,0.014115951,-0.0025269296,-0.0035792582,-0.012131942,-0.009370417,-0.0072054355,0.005392347,-0.035336796,-0.0015902229,0.011113128,0.013995302,-0.0035625014,-0.004045098,-0.007795276,-0.039599735,-0.009055389,-0.0019136297,-0.0044003427,0.004869534,0.01408914,-0.01774883,-0.008827496,0.03431798,0.016877476,-0.05045816,-0.0014653845,0.03715994,0.0045746136,-0.0028687688,0.018968727,0.03423755,-0.018365482,0.00016578786,0.0033161761,-0.007125003,0.03488101,-0.011307507,-0.0015231955,0.00001292763,-0.0061497553,0.007942736,-0.0952324,-0.009571499,0.016662989,0.0015273847,0.011656049,0.026623247,0.008036574,0.023566801,-0.0003179608,0.021408523,-0.0051778597,-0.009263174,-0.0093905255,0.0013020055,0.022132417,-0.013063623,0.010033988,-0.01904916,-0.03195862,0.0047589387,-0.015335849,-0.019075971,-0.0009970312,-0.0008738685,-0.002857039,-0.0053889956,-0.03718675,0.017949913,0.023915343,-0.011676157,-0.009638527,0.0033832034,0.008157223,-0.017735425,-0.014370655,-0.0051745083,-0.020215437,-0.012178862,0.035068687,-0.022078795,-0.004420451,0.0058213216,-0.009698852,-0.011066209,0.0057107266,0.00021092656,0.0025017944,0.015201794,0.014611953,-0.0120314015,-0.012420161,0.0052582924,0.00029135932,-0.023767883,0.010349017,-0.015818445,-0.0004078193,0.013680274,-0.01597931,-0.007553978,-0.0038172053,0.0068300827,-0.024558805,-0.0023694152,-0.011374534,0.0069105155,-0.012453674,-0.005771051,0.01845932,0.0036060691,0.006401108,0.02658303,-0.02427729,0.024733078,-0.019303866,-0.005281752,-0.011890644,-0.0019571974,0.014048924,-0.03284338,0.00395126,-0.024143236,0.0048929937,-0.027668873,0.02336572,0.02002776,-0.0044338563,0.010168043,-0.016703205,-0.03890265,0.023486368,0.005234833,0.010952262,-0.016998125,-0.04182504,-0.005962079,-0.0008349089,0.006035809,0.012500593,0.012634648,-0.019987544,-0.01904916,-0.048635013,0.025617838,0.004557857,-0.0006007323,0.0031553106,-0.018941917,0.018794456,-0.035873014,-0.026355138,-0.0040786117,-0.03662372,0.0043232613,-0.021998363,-0.009578202,-0.033031058,-0.0063843513,0.014611953,-0.008572793,0.019491542,-0.015885472,-0.008599604,0.003585961,0.010101016,-0.0062402426,-0.012292808,0.039385248,-0.010710964,0.010717667,-0.018057156,-0.01929046,0.009256471,-0.016381474,-0.009041984,0.01565758,-0.0045746136,-0.030993428,-0.026207678,0.005881646,0.0016756827,-0.022856312,0.010322206,-0.018968727,0.016220609,-0.02844639,-0.023620423,-0.0024381184,-0.015107956,0.024625832,0.025135241,0.014424277,0.02522908,0.018848078,0.0051208865,-0.037320804,-0.01639488,-0.029706502,0.013888058,-0.016207203,0.027038816,-0.020644411,0.012487188,0.011079614,0.02876812,-0.0109455595,0.025497189,0.0025185512,-0.03911714,0.018834673,0.025363134,-0.023486368,0.00031817026,-0.031100672,0.009973664,0.0026224435,0.0100071775,-0.01175659,-0.016180392,-0.024009181,0.009826204,0.020336086,-0.009135822,0.0055264016,-0.0045176405,0.011180155,0.020858899,0.017440505,-0.009839609,-0.016019527,-0.009605014,0.017239423,-0.026207678,0.00004005929,-0.0063508376,-0.011924158,-0.009189444,0.016032932,-0.03579258,-0.006417865,0.0052515897,0.020510357,0.012259294,-0.0026257948,-0.0066357036,0.0064882436,-0.008599604,0.00915593,-0.021690037,-0.020403113,-0.0074534365,0.015617363,0.013821031,0.004886291,-0.005807916,0.017024936,-0.0066826227,0.020255653,-0.0035189337,-0.036730964,-0.023580207,0.039251193,0.004366829,-0.0024096319,-0.0059319166,-0.008613009,0.033620898,-0.00024150778,0.0009325174,0.016636178,0.016287636,-0.0055833748,-0.015858661,-0.007956142,-0.002820174,-0.0035826096,0.0051577515,0.007822087,-0.021287873,0.019478137,0.0011578967,0.058179703,-0.005992241,-0.000024742503,0.010389233,-0.012239186,0.01819121,0.0189017,0.010395936,0.023231665,0.00930339,0.0038306108,0.001304519,0.020791871,-0.026462382,0.0025235782,0.0057811053,0.0048092096,0.013465786,-0.0031251484,0.015282227,0.00013237893,-0.008029872,0.02685114,-0.00537559,-0.01713218,-0.02758844,-0.002223631,-0.018700618,-0.02493416,-0.02191793,0.009953556,0.0123263225,0.016381474,0.009363715,-0.0059051057,-0.021220846,-0.009102308,0.007493653,-0.013365245,0.013767409,-0.022253066,-0.0052851033,-0.016059743,0.010214962,-0.00032215,0.024478372,-0.0090822,0.016059743,-0.034452036]},{\"id\":\"4565863d-22cf-4136-ab5b-4e3ffdabe773\",\"text\":\"More bounties for the same product\",\"vector\":[-0.010242769,-0.018522685,-0.010712747,-0.0024604762,-0.030410381,-0.0047447104,-0.029166318,-0.0036181442,-0.01944882,-0.033866104,0.02316718,0.0018263507,-0.013988775,-0.008086396,0.013097198,0.016808646,0.02826783,-0.0020025927,-0.007053135,-0.017237157,-0.025489427,0.006697195,-0.006258318,0.0020527006,0.001885098,-0.0095654465,0.03646481,-0.017333917,0.016048387,0.0073814285,0.02178489,0.0005105834,-0.025378844,0.010781862,-0.02254515,0.029636297,0.005031536,-0.008017282,0.014804326,0.006199571,0.005487691,0.027562862,0.017928302,-0.015799575,-0.02231016,-0.01649072,-0.007018578,-0.017154219,-0.0005144711,0.019697633,-0.0011542122,0.006368901,-0.0638618,0.00414687,0.0074712774,0.02359569,0.018384457,0.009468687,0.000091090755,-0.004665229,0.00023650118,-0.006413826,-0.0039948183,0.015841044,-0.02125962,-0.0023844503,-0.028392237,0.005532616,-0.018066531,-0.0034747315,0.024134783,0.021356381,0.010657456,0.008466526,0.021411672,-0.0064898515,-0.016048387,0.025669126,0.007415986,-0.022863077,0.021950765,0.007975813,0.00698402,0.009828082,0.022489859,0.01062981,-0.0014401734,0.046500236,0.0027559407,-0.014417285,0.019504111,0.0007650111,0.024964157,0.007885965,-0.02116286,0.018370634,-0.0014470848,0.044454448,0.006306698,-0.015274305,-0.014458753,0.015288128,-0.028530465,-0.011977543,-0.02636027,0.01100994,-0.0003442766,-0.014845795,0.011707996,0.016836293,-0.015371065,0.015785752,0.04221514,-0.009275166,0.0044129607,-0.010339529,-0.008729162,0.013608646,-0.005104106,-0.026954655,0.02378921,0.0033468697,0.015509294,-0.017914478,0.019379705,0.0073192255,-0.0054980586,-0.0008008643,0.014320524,-0.0018816423,0.022296337,0.011839314,-0.00862549,-0.003141254,-0.007053135,0.022821609,-0.015910158,0.008832833,-0.011555945,-0.01425141,0.023955086,0.035828955,-0.008936505,0.026415562,-0.005940391,0.023913616,0.0020060483,-0.00500389,-0.010249681,-0.011929163,-0.014279055,-0.017665666,0.022365453,0.020706704,-0.0076371524,-0.03889764,-0.020264372,0.002289418,-0.020043205,-0.0077270013,0.0048483824,-0.0015300222,-0.0075127464,-0.0066280807,0.034446668,0.024991803,0.04074991,0.0024708435,-0.010111451,0.006493307,0.013947306,0.0010764584,-0.027825497,0.01467992,-0.007865231,0.0071395277,0.01377452,0.005819441,0.0016492448,-0.009226786,0.0126617765,-0.018329166,0.02054083,0.024770638,-0.0012768904,-0.007692444,-0.0066315364,-0.011376247,0.010588341,0.0004587475,-0.006158102,0.021204328,0.005539527,-0.005211233,-0.6763269,-0.011099788,-0.005580996,-0.033064377,0.01196372,-0.0064172815,0.005639743,0.021425495,-0.0076717096,0.026139105,-0.004765445,0.0041123126,0.0019784025,-0.020900225,-0.00419525,-0.019600872,0.004081211,-0.023360701,-0.00036889865,0.02007085,-0.015744284,-0.0036146883,-0.0053978427,-0.001143845,0.017831542,-0.0061270003,0.00014438451,-0.018895904,-0.0025002172,0.009489421,0.008784453,0.024176253,0.005940391,-0.001999137,0.050812982,-0.002462204,0.0071326164,0.017043635,0.019849684,0.030714484,-0.030050986,-0.0065900674,-0.0023568044,-0.022227224,-0.031571504,0.010374087,0.039588787,0.027825497,-0.022476036,-0.023761565,0.0024224631,0.0038323991,0.014610806,0.0028993534,0.0020803465,-0.008701515,0.022517504,-0.001987042,0.0053321836,0.0030738674,-0.015371065,-0.020513184,-0.04362507,-0.026857896,-0.022835432,-0.0030133922,-0.017651843,0.013007349,0.012834563,-0.009814259,0.006057886,-0.0089917965,0.003822032,-0.0008531321,0.023429817,0.013332187,0.012219444,0.00021879059,-0.01510843,0.026954655,-0.020969339,-0.030023338,0.00017645796,0.010291149,0.010602164,0.008943416,-0.0034850987,-0.008597844,0.027866967,0.027618155,0.0068803485,0.019573227,0.009330458,-0.008514906,-0.009012531,0.038482953,0.0012008644,0.0067041065,0.02564148,-0.016656594,-0.016905406,-0.005871277,-0.017707136,-0.018840613,0.03231794,0.0053874752,-0.00048812115,-0.000942549,0.02669202,-0.025862645,0.016850116,0.0056984904,-0.01353953,0.012952058,-0.0020509728,-0.03593954,0.01362938,-0.038400017,-0.0073330486,-0.007277757,0.011576679,0.017997416,0.011707996,0.011410804,0.002173651,0.03303673,-0.0010030242,-0.013995687,-0.0037598289,-0.019642342,0.013166312,-0.007526569,0.0009149032,-0.0017529165,0.020374956,0.017057458,0.010374087,-0.020181434,0.018066531,-0.040777557,-0.00548078,0.0051870435,0.022987483,-0.027231114,-0.005940391,-0.011977543,-0.021674307,0.002790498,-0.007927434,-0.0033831547,0.015412534,0.002498489,-0.01730627,-0.012924411,0.019006487,0.0048311036,0.0028734354,-0.006075165,-0.025157679,-0.023899794,-0.010933914,0.008494172,0.0022548605,-0.018370634,-0.005252702,-0.008072574,0.009254431,0.009669119,0.004385315,-0.02196459,0.0114315385,-0.017997416,0.0047550774,0.0035334788,0.010284238,0.015702814,-0.05343933,0.00957927,-0.00086133945,0.012032835,0.010069983,0.018356811,-0.0101805655,-0.0030012971,0.023982732,-0.0045442786,-0.0028872583,0.017057458,-0.005425488,0.015481648,-0.018384457,0.015025493,0.004924408,0.017762426,-0.011929163,-0.008079485,0.0022946014,0.009392661,0.014127004,-0.0027870422,0.012371495,0.027756384,0.024895044,-0.02416243,0.003281211,-0.02244839,0.020485537,-0.022711026,0.026014699,0.031156817,0.004437151,-0.026567614,-0.0033969777,-0.00464795,0.034308437,0.014320524,-0.020222902,0.00096241944,0.016435428,0.009420306,-0.0029114482,-0.007920522,0.016850116,0.0007434128,-0.010719659,-0.0056328317,-0.0089503275,0.014050978,0.019517936,-0.002591794,0.013608646,0.0025693316,0.018840613,-0.0033278633,0.019559404,-0.012019012,0.019808216,0.0047447104,0.024853574,0.0076233293,0.015260482,0.012032835,0.013470416,0.010470847,0.0046825074,0.012979703,0.020651413,-0.0012742986,-0.0052768923,0.0071809967,-0.0045684683,-0.006182292,-0.03278792,0.010615988,0.022655733,-0.02692701,-0.009468687,0.016186615,0.006652271,0.012565016,0.039505847,-0.0020596122,0.00962765,0.00924752,0.01682247,0.02001556,-0.010871711,-0.016739532,-0.011369335,-0.026705842,-0.0008056159,-0.017513614,-0.007851407,-0.016200438,0.0169607,0.020388778,-0.010823331,0.010021603,-0.00560173,0.03173738,-0.0405011,-0.019075602,0.01239223,0.015440179,-0.007498923,0.01606221,-0.015979273,-0.00039740838,-0.013885103,0.028779278,0.022987483,0.021771068,-0.01311102,-0.0059991386,-0.011735642,-0.009682941,0.026139105,-0.01396804,-0.00022850982,-0.00049892033,0.024729168,0.009641473,-0.004499354,-0.013083375,0.017002167,0.007823762,-0.013076464,-0.024673877,-0.009758968,-0.020153789,0.0046168487,-0.015606054,0.0011516204,0.005086827,0.037211247,0.0051110173,-0.0058505423,0.0044164164,0.023637159,0.027922258,0.011977543,0.003141254,-0.0035524853,0.019269124,0.07497541,0.014209941,-0.014306702,0.016794823,0.0004475164,0.0013278624,-0.018412104,-0.00028812108,0.002840606,0.002235854,-0.014431108,-0.016186615,0.00796199,-0.018619446,0.0021321822,-0.020609943,0.018812967,-0.010408644,0.016642772,-0.011777111,-0.0038012976,0.010228946,0.0075749494,0.017043635,0.0058263526,0.009282078,0.042574532,0.04370801,0.002099353,-0.01658748,-0.01649072,-0.0132768955,0.005494603,0.017568907,0.0018194392,0.009517067,-0.012143418,0.01582722,0.0072846683,0.006033696,-0.0036872586,0.0030099365,0.011348601,0.014292879,0.0108786225,-0.014818149,-0.016974522,-0.012095038,-0.0003732183,-0.0071809967,0.004108857,-0.009897197,0.0066591823,0.0014107998,0.016559834,-0.0017676033,-0.004019008,-0.0019887697,-0.022130463,-0.052084688,-0.014652275,-0.020278195,0.0169607,-0.0026747312,-0.0005062637,-0.015951626,-0.025102386,-0.04647259,-0.017624198,-0.009475598,-0.023899794,0.010028514,0.00026414698,0.0030565888,0.015564585,0.0034125284,0.0013287263,-0.011127435,0.0120466575,0.007678621,-0.0031118805,-0.010636722,-0.013601733,-0.0306039,-0.011784023,0.006092443,0.001621599,-0.017071282,-0.03331319,-0.0054565896,-0.0036492457,0.0042021614,0.025351198,-0.0062272167,0.0036976258,0.0063412553,0.02793608,0.01172182,0.01997409,0.0039326153,0.011238018,-0.011023763,-0.010788773,-0.009351192,0.003495466,0.0073952517,0.009309723,-0.008639312,-0.0070773247,0.023429817,0.012302381,-0.019794393,0.012668688,0.01763802,-0.0056086415,0.009600004,-0.009171494,0.021660484,0.0021909296,0.004585747,-0.0063827243,-0.020665236,0.019946445,-0.006572789,-0.029111028,-0.027217291,-0.0014185752,-0.033119667,0.010906268,-0.0012630675,-0.020789642,-0.008010371,-0.010968471,-0.02159137,-0.011403892,-0.021757245,0.0027110162,0.018909728,-0.020748174,-0.016131325,-0.0046790517,0.007927434,-0.0023291586,-0.014140827,0.012509725,-0.029829819,-0.0057226806,0.0016164153,-0.008666959,0.021978412,0.01410627,-0.015246659,-0.012993526,-0.021978412,-0.011265663,-0.014652275,-0.010498493,-0.0023049687,0.03679656,0.037570644,0.0058367196,-0.007740824,0.005155942,-0.0139334835,0.014790503,0.0014902814,0.015854867,-0.012848386,-0.022227224,0.0047930907,0.014901087,-0.0044302396,0.0077270013,0.002790498,0.0031965456,0.035524853,-0.012019012,-0.013663936,-0.0075127464,-0.014223765,0.0046444945,-0.03298144,-0.021798713,0.002147733,-0.013491151,-0.017762426,0.02669202,0.021231975,0.011037585,0.02378921,0.030990941,-0.0095861815,0.02850282,0.009233697,0.0071809967,0.002574515,-0.009993956,-0.01367776,-0.010083806,0.009834994,-0.0031066968,-0.0029079926,-0.003946438,-0.022724848,-0.0010600437,0.0061166333,-0.027604332,-0.018647091,-0.010042337,-0.024245366,-0.01296588,-0.015661346,-0.033340834,-0.010989206,0.0077615585,0.020734351,-0.019089425,0.016269553,-0.00655551,-0.013815989,0.0028838026,0.0023084243,0.044399153,-0.015606054,-0.0054358556,0.054019894,0.018011238,-0.014320524,0.010553785,-0.01038791,-0.0071049705,0.009420306,0.027894612,-0.020651413,-0.023236295,0.003683803,0.011189638,-0.039671723,-0.034916647,0.012447522,-0.017651843,0.01968381,-0.021508433,-0.005307994,0.010228946,-0.011611236,-0.009378837,0.019545581,0.014956378,-0.011314044,-0.03403198,0.014762857,0.0018298064,0.017790072,-0.0012898494,-0.012758537,-0.0045200884,0.003153349,0.00086393126,-0.012385319,-0.0071187937,0.035828955,-0.021978412,0.016573656,0.002928727,0.0065658777,0.0017745148,-0.025682949,0.0010825059,0.024425065,-0.018812967,-0.0017676033,-0.0024172796,-0.0074851005,0.0035593968,-0.0003205185,-0.005086827,-0.019310592,-0.0015930892,0.015813397,0.0095654465,0.00070583186,-0.011279486,0.011728731,-0.013926572,-0.002989202,-0.021273443,0.0017442772,0.017209511,0.0030617723,-0.012730891,0.012357673,0.00986955,0.020029383,0.00877063,-0.00056630693,0.02577971,0.016504543,-0.049154233,0.004499354,0.00084146904,0.022462213,-0.023333056,-0.003281211,-0.00075118826,-0.0061615575,0.002778403,-0.009489421,-0.025240615,-0.00010539962,-0.008881213,-0.011528298,0.0026799147,0.0017451411,0.049071297,0.011417716,0.0120881265,-0.016435428,-0.020236725,0.012647954,-0.00319309,0.013615557,0.025171502,-0.019642342,-0.002501945,-0.025973229,0.012765449,0.00011630674,-0.021328734,-0.03383846,-0.016366314,0.0065900674,-0.008742984,-0.028751632,-0.015758106,0.0012768904,-0.016628949,-0.0003745142,0.013159401,-0.004533911,-0.002049245,0.015384888,0.017029813,0.008501084,-0.008895036,-0.028889861,-0.021619016,-0.0053943866,0.009302812,-0.019365883,0.0012025923,0.025682949,0.006448383,-0.047384903,-0.002462204,-0.00015010806,-0.024217721,-0.0151222525,-0.016380137,0.0012250545,0.005663933,0.014099359,-0.0046928744,0.055595703,0.0065866117,0.013905837,-0.040114056,0.0056846677,-0.0012120956,-0.00087905006,0.00944104,-0.009682941,-0.028806925,-0.014431108,0.030133922,0.018909728,0.009980134,0.013615557,-0.012461345,-0.0048829396,-0.017375385,0.008321386,0.010539961,0.011244929,0.030520964,-0.023609513,-0.022088995,-0.014120093,0.0031118805,-0.011307132,-0.014500222,0.01773478,0.011182726,0.025116209,-0.02445271,-0.020568475,-0.000048380152,0.0010669552,0.0015144715,0.013940395,-0.0068803485,-0.0023827225,0.016020741,-0.04185574,-0.016421605,0.026415562,-0.00054427667,-0.02564148,0.011652705,-0.021950765,0.013574088,0.0017866099,-0.006009506,0.006092443,0.011853137,-0.019476466,-0.02149461,-0.015011669,0.022006057,0.013449682,-0.01596545,-0.019725278,0.002574515,-0.018978842,-0.010519227,-0.005048814,-0.03502723,-0.008639312,0.0032587487,-0.014984024,-0.011797845,-0.056314494,0.010505404,0.008584021,-0.014970201,0.019573227,0.22171932,0.014790503,-0.01592398,0.05061946,0.011258752,0.008715338,0.015467825,-0.0017796984,0.0012647953,0.028143425,0.0385106,-0.0032501095,-0.014818149,-0.00011133914,0.00957927,0.0074851005,-0.014182296,-0.0026177117,-0.0037252717,0.026387917,0.017610375,0.010021603,-0.0068941712,-0.014154649,0.014928732,-0.01120346,-0.013470416,-0.0061926595,0.018605623,0.017085105,-0.008687693,-0.005667389,-0.008957239,-0.009337369,-0.026346447,0.018246228,-0.015177544,-0.0064000026,0.0457538,0.010360263,0.028806925,0.0051075616,0.00505227,-0.0021356381,-0.012350761,0.019725278,-0.014970201,0.005923113,0.020374956,-0.016034564,-0.02935984,-0.006095899,0.010346441,0.017955948,-0.018094176,-0.006082076,0.00022894179,-0.004613393,-0.0023585323,-0.0070151216,-0.022323985,0.013809077,-0.0066073462,0.009496332,-0.03640952,0.00041576693,-0.02731405,-0.003911881,0.023015128,0.0011464368,0.02293219,0.011452273,-0.008618578,0.02340217,-0.005190499,-0.018190937,0.0075334804,0.015136075,0.021314912,0.012426787,0.00278877,0.008279917,0.00068034587,-0.011929163,-0.019822039,-0.019379705,0.012323115,0.012855297,-0.016863938,0.011445361,-0.014984024,-0.026235864,-0.018273873,-0.02192312,-0.024632407,0.0055533503,0.0026937376,0.011659617,-0.02121815,-0.016241908,0.00042419025,0.04929246,-0.0023758109,-0.009551624,-0.014361993,-0.015716637,-0.010277326,0.011714908,0.017361563,0.0021079923,-0.0023792668,-0.028309299,0.0066280807,-0.014154649,-0.021466963,0.009482509,-0.0025987052,-0.005325272,0.0026177117,0.00185918,0.00683888,-0.034114916,0.012855297,-0.0027490293,-0.0039879065,0.008238449,0.012032835,0.0037563732,-0.0037632845,-0.029553361,0.0007650111,-0.012350761,-0.00051101536,-0.0050557256,0.005415121,-0.01740303,0.006199571,-0.018785322,-0.030382734,0.0053874752,-0.0017434133,0.002588338,0.031626794,0.005857454,0.013069552,-0.020983163,0.010318795,-0.0063308883,0.00648294,0.00050453586,-0.0037563732,-0.02359569,-0.015813397,-0.02297366,0.01592398,-0.007367606,-0.013311453,-0.03751535,0.029332194,-0.01978057,-0.056839764,-0.011238018,0.021121392,-0.01767949,-0.020941693,-0.0063101538,-0.18025061,0.00638618,0.003291578,-0.0030583167,0.020098496,-0.006496763,0.012855297,-0.0023170637,-0.016283376,0.0077961157,0.019849684,0.001080778,-0.030631546,-0.016048387,0.013193958,-0.026097635,-0.025157679,0.025530897,-0.0030583167,0.0005477324,0.031765025,0.009358103,0.0034539972,-0.009634562,0.015785752,-0.0020509728,-0.030438026,0.014334347,0.00505227,-0.020803465,-0.00910238,-0.02340217,0.019987913,0.008100219,0.0069563743,0.012613396,-0.015578409,-0.0043680365,0.019711455,0.012267824,-0.002591794,0.030106276,0.01763802,0.028184893,0.0009511883,0.02392744,0.0073883403,-0.02521297,0.011701085,-0.023125712,0.03336848,-0.031820316,0.006496763,0.009765879,0.022766316,0.01767949,-0.0056086415,-0.011417716,-0.021619016,0.0025935217,0.005352918,-0.01377452,-0.0063516228,-0.021425495,-0.025116209,-0.019089425,-0.010415555,0.0023291586,-0.015481648,-0.01367776,0.0036008656,0.0021062645,0.011714908,-0.00077969796,0.0027835865,0.022918368,-0.016781,0.016933052,0.0035697639,0.010657456,-0.0016466529,0.024867397,-0.0034833709,0.005114473,0.0041779717,-0.0038185762,0.0036285112,0.014064801,-0.00012764585,-0.0048829396,-0.0017641477,-0.010249681,-0.007872142,-0.004765445,-0.013636291,0.02054083,0.00087429845,-0.0030842347,0.020181434,0.0029961136,-0.013193958,0.017472146,-0.020374956,0.0391741,0.019172363,-0.0047723562,0.0068527027,0.02207517,0.014514045,-0.017085105,-0.012668688,0.017140396,0.0061028106,0.017955948,-0.011701085,0.02974688,-0.0050557256,-0.005352918,0.025226792,-0.032400876,0.051918812,-0.00084492477,0.0013658754,0.00096328335,0.0013987047,0.0058401753,-0.102731794,-0.0031585328,0.016546011,-0.02196459,-0.015440179,0.02497798,-0.0018488129,0.036741268,0.020609943,0.014735212,0.008528729,-0.02941513,-0.014956378,0.00018369338,0.01610368,-0.011790934,-0.0145278685,0.014306702,-0.0009002164,0.021024631,-0.0025399579,0.015854867,0.013352921,-0.035607792,0.009233697,0.00092699827,-0.03699008,0.008666959,0.009993956,-0.01172182,0.012074303,-0.017499791,-0.0036354228,-0.021370204,-0.010304972,-0.0075196577,-0.023374524,-0.019904977,-0.0017555084,-0.016739532,0.0026660918,-0.02844753,-0.010215123,-0.0013900654,0.015025493,0.008528729,-0.0053460067,0.0052596135,0.020264372,-0.03093565,-0.018121822,-0.0027853143,-0.01668424,-0.01730627,0.003884235,0.0031187919,-0.011445361,0.01902031,-0.010028514,0.011030674,0.0008863935,0.011687262,-0.027037593,0.01701599,0.011770199,-0.008203891,-0.029138673,-0.01682247,-0.005155942,0.0031913621,-0.006092443,0.031460922,-0.00910238,-0.00278877,-0.002752485,-0.012779271,-0.008915771,-0.02488122,0.028641049,-0.020789642,-0.017499791,-0.015578409,-0.0007701947,-0.007153351,0.0040120967,0.00067300245,-0.011860048,0.021826359,0.009240609,-0.041772805,-0.00412268,0.006144279,0.023816857,-0.0053598294,-0.008397412,0.01849504,-0.007035856,0.0027421177,0.025835,0.01487344,-0.016186615,0.0040742997,-0.056729183,0.035635438,0.005415121,0.0035421182,0.007650975,0.009593093,0.026719665,-0.031488568,0.0043334793,-0.015495471,0.006272141,0.02412096,-0.019766748,-0.017693313,0.010664367,-0.012979703,0.007955079,0.0048207366,0.02326394,0.0013088558,0.026996125,-0.0016768905,0.010353352,-0.023471285,0.0010349896,0.010871711,-0.0025796988,0.027493749,0.0009701948,-0.017555084,-0.001144709,-0.014113181,-0.0047412547,0.019144718,-0.0095032435,-0.024604762,-0.011673439,-0.0050626374,0.019711455,-0.02554472,-0.03154386,-0.0045408225,0.0015749467,-0.021314912,-0.037570644,-0.02969159,0.010132186,0.0006371493,0.002526135,0.002498489,0.014113181,0.029553361,0.009413395,-0.026747312,-0.0029460057,-0.031958546,0.004927864,-0.013560265,-0.0042781876,-0.03173738,0.017071282,0.009696765,0.020513184,-0.0057745166,0.013014261,0.011555945,0.0042816433,0.005204322,0.027507572,-0.0066038906,-0.014306702,0.0015749467,-0.016518366,-0.009178406,0.005871277,0.0095032435,0.014168473,-0.011175815,-0.034391377,0.02593176,-0.012143418,-0.02521297,-0.014085535,-0.022628088,0.017195689,0.016946876,-0.014265233,-0.010664367,-0.0035369345,0.016006919,-0.004938231,-0.005532616,-0.008749896,-0.013242339,-0.012364584,0.0076647983,-0.009454864,-0.015509294,-0.0026799147,0.014804326,0.0083352085,-0.0011144713,0.0046790517,0.00557754,-0.013739963,0.03361729,-0.009931753,-0.025917938,0.0006807778,0.011196549,0.03588425,0.0031723555,-0.010940826,0.014693743,-0.041054014,0.024245366,-0.0021701953,-0.03627129,-0.028696341,0.037349477,0.03580131,-0.007153351,0.004527,-0.01939353,0.050840627,-0.0034591807,0.017762426,-0.01843975,0.021840183,-0.020679059,-0.009136937,0.005556806,0.0007213826,-0.013836723,-0.017416853,-0.033810813,-0.0031775392,0.024673877,0.012171064,0.0480484,0.016573656,-0.005425488,0.02550325,-0.006673005,-0.0006354214,0.0101183625,0.02988511,-0.021798713,-0.026650552,-0.0031827227,0.02116286,0.026636729,-0.0033209517,-0.015606054,0.0030064809,-0.006558966,0.0020388777,-0.027037593,-0.011134346,0.0053874752,0.0013926572,0.009834994,0.0065658777,-0.014500222,0.00919914,-0.0027766752,-0.006496763,-0.012841474,-0.020858757,-0.0005788339,0.026567614,-0.018453572,-0.01367776,0.0036768913,-0.008259183,-0.020900225,0.01163197,0.0019127438,0.005753782,-0.0054358556,0.017071282,-0.021149037,-0.0082730055,0.009634562,-0.01968381,-0.010470847,-0.007498923,-0.0011265663]},{\"id\":\"a0a0e68a-7259-4fa5-a6c1-4fec68079e21\",\"text\":\"I’d like to post about vitacup and I have not heard back about this issue. \",\"vector\":[-0.028247623,-0.010468622,0.009625116,-0.0143330535,0.0054370137,0.020034889,-0.00583915,-0.013783794,-0.002793703,-0.014503063,0.016176995,0.016268538,-0.010782484,-0.047864027,0.020257208,-0.014006114,0.018949447,0.0030748716,0.01898868,0.017327825,-0.0019828917,0.0014761345,-0.005502402,0.026155207,-0.017720154,-0.012404107,0.0053487397,-0.011822154,-0.0051100734,-0.002527247,0.0077942517,-0.009030085,-0.03094161,-0.007741941,-0.024036635,-0.014267665,0.012574116,-0.019472552,0.01789016,-0.01740629,0.010416311,0.021761132,0.015601581,-0.016987806,-0.034446407,0.03078468,0.0060385833,-0.0032775744,-0.0007115034,0.02368354,0.013509165,-0.014176122,-0.03612034,0.0012505458,0.021617278,-0.020924166,0.015052321,0.019995656,-0.0024275302,-0.009180478,0.019551016,0.027201416,0.012966444,0.005888191,-0.003306999,0.0052539273,-0.008794689,-0.0035244143,0.0183348,0.0074411565,0.026704466,0.022297313,0.002401375,-0.021198796,0.024455119,-0.009775508,-0.03405408,-0.0048615993,-0.0072057596,0.012646043,0.008775072,-0.015078477,-0.013718406,0.01675241,0.013666096,0.027750675,0.02117264,0.0043090703,0.0007621791,-0.011266355,0.016830876,0.015758513,0.00769617,0.00731038,-0.021761132,0.011338282,0.026939863,0.03572801,-0.00414887,0.0015578695,-0.01898868,-0.0033642135,-0.035597235,-0.024154333,-0.020688768,0.02155189,0.009664349,-0.008801227,0.039311275,0.0016069105,-0.03426332,0.0038382767,0.017262436,0.004551006,-0.021290338,0.0021022249,-0.001866828,-0.013326078,-0.006421103,-0.027462967,0.028221468,-0.007264609,0.018491732,0.001986161,0.009134706,-0.0005815447,-0.030235419,0.0067153494,0.020335674,0.00029751548,-0.005571059,0.037035774,-0.012319103,-0.0116194505,-0.010050138,-0.0034622955,-0.030130798,0.010815178,0.0046098554,-0.007192682,0.016660867,0.025736723,-0.034341786,-0.005100265,-0.026861398,0.0051754615,0.021224951,-0.0015423399,0.0066368836,-0.004819097,-0.004737362,-0.028404554,-0.0012709796,-0.00676766,-0.0015856595,0.0054533607,-0.008258507,0.016033143,0.003848085,-0.021094175,-0.017144738,0.008742378,0.008323895,-0.004001747,0.011795999,0.036931153,0.044228457,-0.027515277,-0.0026972557,-0.014411519,-0.016530091,0.01904099,-0.017785542,0.0023261788,-0.0036649983,0.024402808,-0.005070841,0.0034034464,-0.004001747,0.008598524,-0.003557108,0.0046588965,0.021159563,0.015287719,-0.00807542,-0.011913697,0.029006125,-0.009396258,0.003645382,-0.022585021,0.015706202,0.01484308,0.011769843,0.0012709796,-0.65827423,-0.022231925,0.020047966,0.029895402,0.0069115134,0.022323469,-0.006045122,0.019681793,-0.013227996,0.021460347,-0.03436794,-0.001953467,-0.013744561,0.0025795572,0.002793703,-0.033034027,0.024886679,0.016503936,-0.006613998,0.0012914133,-0.0115148295,-0.0007241723,-0.0003661729,0.018648664,0.00632956,-0.029947711,0.0241151,0.016268538,-0.022388857,0.034132544,-0.015680047,0.019982578,-0.019093301,0.013823027,0.044542316,0.015745435,-0.0020106814,0.011547524,-0.019367931,0.017693998,-0.03235399,-0.00007586032,-0.00050593977,-0.00025705664,-0.0039657834,0.0062380168,0.006963824,-0.005806456,0.02455974,0.011233661,0.018831749,0.0000035344012,-0.029450763,0.0112402,0.017223204,-0.006996518,0.040122088,-0.01020053,0.00084514014,0.006793815,-0.020021811,0.011913697,0.012678737,-0.016687023,-0.0072449925,0.014163044,-0.021931142,0.01446383,0.013953803,-0.010082833,-0.0067545823,-0.0072973026,-0.008598524,0.03486489,0.017013961,0.014228432,0.009422413,-0.00029731114,-0.0056789494,0.029843092,-0.0040900204,-0.02450743,-0.021748055,0.00003550365,0.018897137,0.010775945,-0.018426344,-0.008114653,0.0008655739,0.0043809973,0.013561475,0.031804733,0.0040442487,-0.002532151,-0.016621634,0.030026177,-0.011710994,0.011416748,0.017497834,-0.02614213,-0.004557545,0.011142118,-0.013483009,0.0028149541,0.023343522,0.021787288,-0.025056688,0.0020760696,0.038003515,-0.038605087,0.0035440305,-0.004851791,0.017013961,0.004894293,0.009729737,-0.03732348,0.034289476,-0.0075065442,-0.023905858,0.03143856,0.013280306,-0.0036911536,0.010010906,0.017903239,-0.026181363,0.0062347474,-0.00095466507,-0.025200542,-0.025122076,-0.016530091,0.010560165,0.014921546,0.031961665,-0.008912386,-0.00046425493,-0.0002290624,0.023722773,0.0013805046,-0.0136530185,-0.019027913,-0.026704466,0.010239763,-0.010494777,-0.003290652,-0.01200524,-0.02963385,0.011599834,0.01009591,-0.01484308,0.030758524,0.0030748716,-0.021224951,-0.011887542,0.0064243726,-0.0039265505,0.0019387547,-0.010906721,-0.024363576,-0.023670463,0.0032546886,0.016843954,0.022807341,-0.011985623,-0.012397568,-0.009553189,-0.014947701,-0.01986488,-0.004949873,0.007663476,-0.019250233,-0.011606373,-0.016713178,0.005724721,0.000107277214,-0.026076742,-0.0035374917,-0.0056887576,0.010769406,-0.0112402,0.00151455,-0.010056677,-0.007316919,-0.009455107,-0.00021843685,0.03094161,-0.00090971077,0.009801663,0.06324329,-0.01838711,0.022859652,-0.0075719324,-0.027279882,-0.0019567364,0.018544042,-0.022585021,0.020348752,-0.004567353,0.027881451,0.00008413599,0.005391242,0.021408036,-0.0034851814,0.041560624,-0.0043286867,0.0031059308,-0.0152615635,-0.023879703,-0.00785964,0.026338294,-0.018269412,0.014123811,0.00088519027,0.0002650258,-0.02275503,-0.014973856,0.00085167895,-0.0042861844,-0.0036813454,-0.02564518,0.014071502,-0.019289466,-0.0019452935,0.011070191,-0.030627748,-0.0039854,0.010867489,0.0047439006,0.010893644,0.012580655,0.00014865557,-0.009043163,0.026207518,-0.0021921333,0.003743464,0.01860943,-0.029058436,0.034132544,-0.008042726,0.03159549,0.008755456,0.013966881,0.03510029,0.013823027,0.013247612,0.033818685,0.0025566714,-0.0017474948,-0.018857904,-0.011233661,-0.007382307,0.018439421,-0.008552752,-0.015340029,0.0006399852,0.0038153909,-0.015039244,-0.039651293,0.004076943,0.014594605,0.034995668,0.0054827854,0.014359209,0.017994782,0.0061857062,-0.0047504394,-0.0047896723,0.0056070224,-0.00812773,-0.0062347474,-0.014123811,-0.012377951,-0.05565828,0.026233673,-0.044123836,0.03350482,-0.017968627,0.015274641,-0.016843954,0.007840023,0.008140808,-0.016451625,-0.019420242,-0.0012350162,0.0062837885,0.008748917,0.010272457,0.0047667865,0.020453371,-0.03782043,0.022676565,0.01762861,-0.009455107,0.010560165,-0.011423287,-0.015523115,-0.0065845735,0.028169159,0.020034889,0.0027691824,0.031150851,-0.010651708,0.008251968,-0.007231915,-0.020335674,0.0216042,0.011540985,-0.0046131248,-0.03852662,0.009880129,-0.0025190734,0.02144727,0.0064570666,0.010945954,0.0012145825,0.0023261788,0.021316493,-0.008631218,-0.0174586,0.017445523,-0.0028950544,-0.01304491,-0.027986072,-0.007624243,-0.0044758096,0.07673938,0.0091216285,0.0039265505,0.024324343,0.0013053083,0.0065191854,0.01194639,-0.017864006,0.012901056,-0.008899309,-0.0063655237,-0.0044888873,-0.019145612,-0.0059241545,0.017968627,0.012175249,0.0043842667,-0.010213608,-0.0004998097,-0.030627748,0.020662613,-0.025422862,0.006532263,0.018413266,0.02308197,0.022179615,0.016909342,0.020008733,0.0049073705,0.004181564,-0.006045122,-0.008533136,0.0014058424,0.003176223,-0.02772452,0.018805593,0.023735851,0.017864006,0.012561038,0.04163909,0.013456854,0.024742825,0.0044463854,-0.013057987,0.011325205,-0.016948573,0.0035440305,0.016739333,0.014293821,-0.010187454,0.019171767,-0.009402797,-0.020270286,-0.009102012,-0.017497834,0.027436811,-0.008454671,-0.014816925,0.024860524,-0.0071403715,-0.015000011,0.0008263411,-0.02667831,-0.007957722,-0.012417184,-0.035701856,-0.019367931,-0.0349172,0.0073365355,-0.0014802213,-0.002919575,-0.0031680495,-0.01358763,0.010560165,0.0035309528,-0.009795125,0.017040117,-0.01326069,0.0026809087,0.030104643,-0.018426344,-0.032641698,-0.0056201,-0.009899746,0.0029816937,0.000106766376,-0.0053650867,0.014346131,0.016438548,0.0074934666,0.018465577,0.011671761,0.027619898,-0.023421988,0.0039755916,-0.006885358,-0.002385028,0.02853533,-0.009082396,-0.0066663083,0.026155207,0.0017998052,-0.018687895,-0.032641698,-0.011573679,0.02958154,-0.013626863,0.013993036,0.0069049746,0.0057018353,0.022284236,0.002443877,0.0061595514,-0.008219274,0.0020172202,0.015850056,0.0035996104,0.013836104,0.019289466,-0.021264182,-0.027698364,-0.0416914,0.039258964,-0.007774635,-0.01091326,0.041665245,-0.0023016583,-0.032667853,-0.019354854,0.017000884,-0.0018177868,0.0038677012,0.002205211,-0.004959681,-0.032380145,-0.018949447,0.015196175,0.012162171,0.013123375,-0.033060182,-0.020217976,-0.019734103,-0.018530965,-0.0017098966,-0.003831738,-0.034995668,0.00019892261,-0.013456854,0.007996955,0.015222331,0.00041010548,0.015444649,-0.010278996,-0.0012619888,-0.01184177,-0.031673957,-0.025514405,-0.005554712,0.0052964296,-0.0045967777,0.026599845,0.01599391,-0.0065780347,0.0039755916,0.011259817,0.0047667865,-0.02067569,-0.018177869,-0.0032792091,-0.0042306045,0.009886668,-0.0044136913,0.021512657,0.003127182,-0.02287273,0.021787288,-0.0073299967,-0.0072515314,-0.024258954,-0.020911088,-0.0049073705,0.0009652906,0.009540112,0.008650835,-0.0033053644,-0.0017720152,0.01986488,0.0067480435,0.012266792,-0.012979521,0.0054598995,-0.0054500913,0.0058914605,-0.008016571,0.012207943,-0.003890587,-0.02433742,-0.013175686,-0.011083269,0.029398452,0.022833496,0.014385364,0.003939628,0.010658246,-0.01539234,0.029843092,0.0026907169,-0.02194422,0.0000010344588,-0.021878831,-0.022951195,-0.0095858835,-0.019289466,-0.0014360844,0.018491732,-0.01735398,-0.047471702,0.014503063,-0.006891897,-0.022741953,0.0039821304,-0.009782047,0.006859203,0.020963399,0.024808213,0.046399336,0.005518749,-0.024363576,0.013679173,0.008866616,-0.009638194,-0.011933313,0.040095933,-0.017968627,-0.0077223247,0.016608557,0.009651272,-0.019014835,-0.038186602,0.00083287986,0.029319987,-0.010233224,-0.027279882,-0.0120837055,-0.020034889,0.02707064,-0.013293384,-0.012149094,0.006852664,-0.00038640233,-0.02199653,0.032667853,-0.0015537827,0.021394959,0.020531837,-0.0015930156,-0.016190073,-0.018923292,-0.0033102683,0.027672209,-0.00725807,-0.0060058893,-0.003743464,0.015640814,-0.012816051,-0.0072515314,-0.012358336,-0.01783785,0.0058031864,0.024075868,-0.0023703156,-0.007591549,0.009710121,-0.0013118471,0.025658257,-0.03319096,-0.017641688,-0.0075392383,-0.021695744,-0.0050021834,0.009912823,-0.011521368,-0.014110734,-0.0001917708,-0.00248311,0.011959468,-0.042737607,-0.011423287,0.0081931185,-0.004590239,-0.004469271,-0.03078468,0.00023437517,-0.007231915,-0.007872717,-0.0037075006,0.009363564,0.028509175,-0.013718406,0.01009591,-0.0008091767,-0.009958595,-0.039049722,0.006018967,-0.002165978,-0.031961665,0.013293384,-0.0024406076,-0.017197048,-0.023278134,0.024180489,0.023225823,0.0033740217,-0.0050904574,0.0056299083,0.031909354,0.029398452,-0.025723645,-0.007689631,0.006123588,-0.009925901,-0.017432446,0.0046490883,-0.018465577,0.020427216,-0.021852676,0.01642547,0.0028738035,-0.016660867,0.003678076,0.018831749,0.0073038414,-0.019381009,-0.023265056,-0.005486055,-0.007755019,-0.01707935,0.013783794,-0.009540112,-0.008781611,0.020021811,0.017981704,-0.011612912,0.0069769016,0.0034034464,0.00632956,-0.0291369,-0.032170903,0.00365519,-0.009598961,-0.004452924,0.020492604,0.0017393213,0.0032792091,-0.012260254,-0.007081522,-0.017785542,-0.008003494,0.01549696,0.014372286,0.011710994,-0.03274632,-0.00649303,-0.00725807,-0.018073248,0.017510911,0.0175763,-0.028587641,0.0005419032,-0.008454671,0.005790109,-0.0005533461,-0.02667831,-0.009991289,0.004047518,0.033714063,-0.0076307817,0.008153886,0.014293821,0.010828256,-0.01768092,-0.016059296,-0.0069507463,0.0013494452,0.008644296,-0.039572828,-0.03405408,0.009762431,-0.017510911,-0.0012652582,0.0036094186,0.0053650867,-0.009703582,0.01828249,-0.0291369,-0.013496087,-0.0010609205,0.004031171,0.025553638,0.018727127,-0.014280743,0.00785964,0.016621634,-0.01156714,-0.010658246,0.030549282,-0.017380135,-0.012462956,0.02636445,-0.009370103,-0.008905848,0.0000067942237,-0.000903172,-0.009219711,-0.015300796,0.0013036736,-0.012096783,-0.009827819,0.026599845,-0.014856158,-0.010945954,-0.014908468,-0.005178731,0.006695733,0.012149094,-0.012234098,-0.008546214,-0.039415896,-0.001915869,0.03436794,-0.010108988,-0.0542459,0.017288592,-0.0032481498,-0.016490858,-0.00878815,0.21907601,0.020479526,-0.014947701,0.025945965,-0.0015930156,-0.00643745,0.023121202,0.011508291,0.02292504,0.0076830923,0.009533573,-0.007951183,-0.009997828,-0.0051983474,-0.009134706,-0.0020106814,-0.06402795,-0.04414999,-0.015379262,-0.022284236,-0.016360082,-0.01009591,0.0066826553,-0.0020875125,0.019537939,-0.017000884,0.009187017,-0.015784668,0.011063653,-0.0010143316,-0.008814305,-0.022388857,0.028770728,-0.016006988,0.0011679934,-0.013666096,0.0041717556,0.0012350162,0.026691388,0.018727127,-0.015784668,-0.009507418,0.011540985,-0.011658683,-0.0011737149,0.03133394,-0.0039428975,-0.017144738,0.01707935,0.0018815402,-0.028509175,-0.008395822,0.017563222,0.014699226,0.003159876,-0.018753283,0.01762861,-0.010612476,-0.038840484,-0.0010878931,-0.014306898,0.030470816,0.015222331,0.028143004,-0.017327825,-0.006800354,0.010926338,0.002886881,0.0074411565,0.005741068,0.0130122155,-0.002975155,-0.007781174,0.01571928,-0.024598973,-0.026220595,0.0079054115,0.024219722,0.014398442,0.0017507642,-0.0029048626,0.0072122985,0.007741941,-0.018256335,-0.00009803094,-0.028090693,0.005100265,0.009082396,0.012704892,-0.01112904,0.006117049,0.008389283,-0.018740205,-0.011684839,0.020492604,-0.02389278,0.00074174535,0.0029718855,-0.0057443376,0.0010077928,-0.012358336,0.06842202,0.0136530185,0.0068722805,-0.004054057,0.015431572,-0.029816937,0.014215355,0.0014924814,-0.00052678224,-0.01309722,-0.021303415,0.0026776392,0.0068461252,-0.008644296,0.016360082,-0.0059405016,0.00011769843,0.003733656,0.0058914605,0.023644308,-0.019054068,0.011482136,0.01216871,-0.0014140159,-0.011625989,0.0023425256,-0.013077604,0.013123375,-0.03661729,0.021734977,0.007591549,-0.010540549,-0.029764626,-0.0002241583,-0.008846999,0.03183089,0.008644296,0.017314747,0.008010033,-0.020453371,0.019982578,0.011671761,-0.002994771,-0.0051918086,-0.0324063,0.013221458,-0.014921546,-0.0147253815,-0.0027953377,-0.00987359,0.0014916641,0.007774635,-0.005799917,0.03149087,0.0063884095,-0.020296441,-0.0047569782,-0.013770716,0.00035084758,-0.029450763,-0.0048452523,0.0499826,0.016817799,-0.029607695,0.004433308,-0.16519628,0.008016571,0.002275503,-0.018596353,-0.000886825,0.019786414,0.017720154,0.0048648687,-0.00802311,0.008807766,0.031752422,0.0020809737,0.0006081086,-0.02777683,-0.01986488,-0.011874464,-0.029790781,-0.018400189,0.008232351,-0.000050369206,0.017275514,-0.027410656,0.018426344,-0.022061918,0.007813868,0.023343522,0.0051035346,0.035178754,0.012691814,-0.016176995,0.016320849,-0.013142992,0.0283784,0.0075392383,0.028143004,-0.02019182,-0.0003759811,-0.005479516,0.024755903,0.019054068,0.004014824,-0.013770716,-0.016242383,-0.014659993,-0.02707064,0.029450763,0.007715786,0.01135136,0.018544042,-0.016556246,0.0034459485,-0.008820844,0.024755903,0.003678076,-0.008624679,-0.0036257657,-0.007892334,0.03143856,-0.004495426,0.001997604,0.005806456,-0.012534883,0.00075237086,0.008984313,0.009160861,-0.030052332,-0.028299933,-0.0047569782,-0.010514393,0.010331307,-0.02297735,-0.017733231,0.014882313,0.0015080111,0.011057114,-0.002331083,-0.03758503,-0.007159988,-0.018884059,0.012077167,-0.0015791206,0.013378388,-0.026861398,0.005106804,-0.018020937,0.025069766,0.0021904986,0.0037140395,0.0071796044,-0.023709696,0.0020989554,-0.013142992,-0.014646916,-0.010926338,0.0026694657,0.019067146,-0.0031402595,0.028666107,0.005299699,-0.015235408,0.03159549,0.017798617,-0.031412404,0.019537939,0.011004804,-0.024049712,-0.031360094,0.0062510944,0.018897137,-0.035021823,-0.0007184509,0.018138636,0.024546662,0.015732357,-0.005260466,0.01091326,0.005937232,0.007120755,0.0031108349,-0.0039854,0.023343522,0.006793815,0.0011769843,-0.0003379743,-0.012626426,-0.0038938564,-0.11487367,-0.014346131,-0.014267665,0.0016624903,-0.01190062,0.0055350955,-0.0012963174,0.02149958,-0.009991289,0.02777683,-0.0015766686,-0.03368791,0.009350486,0.019786414,0.01696165,-0.013326078,-0.009592422,-0.0011712628,-0.030732369,0.0052866214,-0.012809512,-0.015209253,-0.013496087,-0.016739333,-0.027541433,-0.0031402595,0.0016208055,0.021316493,0.029058436,0.004181564,0.0070422897,-0.001642874,-0.002695621,-0.026743699,0.005096996,0.0018635585,-0.017393213,-0.0034688343,0.026939863,-0.03737579,0.0024749364,0.00064938475,0.0073626908,-0.022245003,-0.0062380168,0.0017049926,-0.0035603775,0.0026482148,0.029790781,-0.023291212,-0.0016494128,0.019707948,-0.006989979,-0.029973866,0.031360094,-0.03387099,0.00009741793,0.019067146,-0.038552776,-0.0015284449,-0.010520932,0.012567577,-0.0069507463,0.0074084625,0.0036028798,-0.001822691,0.008886232,-0.008879693,0.0020777043,-0.009062779,-0.0015431573,-0.016464703,-0.0054370137,0.017066272,-0.010148221,0.0033511359,-0.0015202714,-0.0022983889,0.0036584595,0.011285972,-0.027201416,-0.0021872292,0.0015423399,-0.024886679,0.013561475,-0.005865305,0.010782484,0.015797745,0.0067480435,-0.028064538,-0.012887978,-0.00047161107,0.03782043,-0.0033576747,-0.04229297,0.014437675,0.0126198875,-0.0021005902,-0.0013518973,-0.021041865,-0.021434192,-0.010023983,-0.039598983,0.026704466,0.028796883,-0.030052332,-0.0074476954,-0.00070210383,-0.014411519,-0.012972983,-0.02127726,-0.015902366,0.0011835231,0.038003515,0.0052081556,0.0042534904,-0.00742154,-0.003073237,0.046399336,0.0023981056,0.0073626908,-0.0026923516,-0.009742815,0.0015684951,0.012207943,0.03651267,-0.0044823484,0.022506556,-0.01806017,0.0037009618,-0.009428952,-0.013679173,0.020728001,-0.030758524,0.011168273,0.017667843,0.020257208,-0.0038055826,-0.011508291,0.026599845,-0.015784668,0.009919362,0.004345034,-0.008663912,-0.0015325317,0.0020662614,-0.010651708,0.009036624,-0.037401944,0.02521362,0.016085451,0.014359209,-0.0031974742,0.0020008734,0.0035374917,-0.02892766,0.021983452,-0.01718397,-0.013031832,0.01298606,-0.024219722,-0.03329558,0.032772474,0.012024856,-0.011318666,-0.026299061,0.024206644,0.010292074,-0.006806893,0.0038546235,0.033426356,-0.025553638,-0.010704018,-0.008389283,0.012829129,0.006192245,0.009193555,-0.0013126645,0.009546651,-0.024625128,0.017197048,-0.0032808438,-0.030444661,-0.026560612,0.016935496,0.0152615635,0.03541415,0.017798617,-0.0025452287,0.024128178,-0.002007412,-0.00058317935,-0.029843092,-0.006319752,-0.000051493065,0.0010568339,0.038003515,0.014555372,-0.015418494,0.021787288,0.008180041,-0.0068265093,0.02127726,0.011547524,0.0061595514,-0.008284662,-0.016974729,0.0030585246,-0.028221468,-0.02057107,-0.02461205,0.011214045,-0.0027266804,-0.02924152,0.018648664,0.0208457,0.012927211,-0.015758513,0.0025599408,0.0007233549,-0.020950321,0.03881433,0.0134045435,-0.0071403715,0.009474724,-0.031673957,0.010854411,-0.0067545823,0.015483882,-0.0127245085,0.018099403,-0.0118679255,-0.014594605,0.0019240425,-0.009527034,-0.023696618,0.02132957,-0.0037401947,-0.031517025,0.016163917,-0.010828256,0.06857895,0.006352446,-0.0010576511,-0.005773762,0.014071502,0.013901493,0.023291212,0.0033576747,-0.012972983,-0.014803847,-0.0013829566,0.0074150013,-0.0024504159,-0.031150851,-0.012541422,0.0054598995,-0.009088934,0.009343947,0.018975602,0.00075441424,0.004047518,-0.0027054292,0.011325205,0.01893637,-0.012731047,0.014659993,0.00982128,0.006996518,-0.019551016,-0.0477071,0.020074122,0.005943771,-0.022624254,-0.0076373206,0.031517025,-0.009272021,0.0016821068,0.021800365,0.02924152,-0.0032873827,0.01146252,0.032563232,-0.032013975,-0.000038160037,-0.021159563,-0.008408899,-0.017550144,-0.010867489,-0.040462106]},{\"id\":\"9cd4fa4e-ed13-4ddf-9af4-b42e7eafb5f5\",\"text\":\"I can't post the blender was a gift for my daughter \",\"vector\":[-0.023467874,0.00973806,-0.030603467,-0.015236508,0.0025584418,0.0041841697,-0.007826974,-0.0020725173,0.01595398,-0.029064162,0.010749043,0.013305855,-0.0093336655,-0.027603125,-0.0033199412,0.012320961,0.015732216,-0.0007920734,0.007820451,-0.014388586,-0.010383785,-0.00808135,0.007957423,-0.012810146,-0.012542725,-0.016645363,0.026716068,-0.017975949,0.0052766846,0.02081975,0.016854083,-0.0045820405,-0.0070247087,-0.02937724,-0.031307895,-0.0006167818,-0.0070768883,-0.006757287,0.010722954,0.007905243,0.032977648,0.0051299287,-0.009861986,-0.0052636396,-0.021328503,0.02037622,-0.01303191,-0.0009645114,-0.03190796,-0.011186049,0.011968747,0.022332964,-0.027707485,-0.013260197,0.0133189,0.0084009515,0.016671453,-0.017832454,0.011786117,0.0175846,0.02622036,0.016867127,-0.018784735,-0.01727152,-0.027420497,-0.013605889,0.01455817,-0.0093467105,0.011401291,0.013090613,0.038873967,-0.0046081305,0.01153174,-0.01937176,-0.01629315,0.021471998,0.008824913,-0.0031764468,-0.013018866,-0.011316499,0.012164421,-0.012340528,0.013827653,0.0082118,0.03850871,-0.0055278,0.020206636,0.0069855736,-0.021015424,-0.011016465,0.002674216,0.00958152,0.010227245,0.0031030688,-0.0048951195,0.026872609,0.011877432,0.025098495,-0.0034438684,-0.011629578,0.0031128526,0.00929453,-0.023741819,-0.008655328,-0.025124585,-0.013194973,0.012921029,0.0052636396,0.02616818,-0.008166142,-0.03814345,0.027577037,-0.007168203,-0.020976288,0.0075204168,-0.017493285,-0.0011675236,-0.0105925035,-0.009601087,-0.00515928,0.024263617,0.021158919,-0.00952934,-0.0062093986,0.028646722,0.0083944285,-0.012594905,0.00292207,-0.0037243348,-0.006679017,0.023924448,0.027759666,0.0067768544,0.012712309,-0.0039819726,0.0074878046,-0.01476689,-0.022385145,-0.010651207,-0.023702685,0.010409875,0.03824781,-0.026924789,0.0147147095,-0.011831774,0.00442224,0.0063528935,-0.0053582154,0.0064507304,-0.016775813,-0.015693082,0.007259518,0.012562293,0.00088461104,0.016658409,0.017428061,-0.01631924,0.0048494623,0.0060267695,-0.011479561,0.0016069754,0.0013534141,0.0058082663,-0.0046048695,-0.006796422,0.033942975,0.008263979,-0.01463644,-0.021928571,-0.004467897,-0.006744242,0.03242976,-0.018602107,0.0020513192,-0.0047287964,0.007794361,-0.009653267,0.0029889254,-0.01608443,0.01239923,-0.047535818,-0.010716431,0.0083944285,0.015301733,0.0010223984,-0.018067263,0.006277885,-0.034412593,0.008733598,-0.008948839,0.013827653,0.024446247,0.017597646,-0.011388246,-0.65871805,-0.023689639,0.033942975,0.003398211,0.014923429,0.040387183,-0.0040732874,-0.009790239,-0.018732557,-0.005006002,-0.01097733,0.011720893,-0.011342589,-0.0032123204,0.02919461,-0.00589632,0.023102617,-0.041613407,-0.004216782,0.01631924,-0.013194973,-0.012027449,-0.0022078587,0.027864026,-0.006274624,-0.012457932,0.018015083,-0.0025046314,0.0028584758,0.008740121,-0.021106739,0.028411914,0.0006302344,0.014466856,0.06501606,0.00002546569,-0.011316499,0.028646722,0.022985213,0.0018817348,-0.04127424,-0.008374861,0.010944718,0.020624075,-0.024498427,-0.004050459,0.017258476,-0.004314619,0.023259155,-0.0062354887,-0.010585981,-0.00001573293,0.024485381,0.0019730495,0.01252968,-0.00884448,0.04119597,0.0032172122,-0.0036656326,-0.005156019,-0.021354591,0.019306535,-0.018628197,0.007618254,-0.020858884,-0.00008188767,-0.030107757,-0.0033117882,0.00407981,0.0034308233,0.01639751,-0.007807406,0.0015702866,0.0049375156,0.0118709095,0.037099853,0.015301733,0.011799162,-0.0040602423,0.0026676934,0.0147408,-0.003998279,-0.04203085,-0.017858544,0.057658702,-0.0017447628,-0.0035514892,0.0131493155,-0.008492266,0.01766287,0.02524199,0.033342905,-0.008968407,-0.004529861,-0.0009571736,-0.011355634,-0.018236848,0.024576696,0.00156621,-0.008427042,-0.010253335,-0.012784056,0.006649666,0.017623736,0.022150334,0.010488144,-0.019254355,0.0013770581,0.019697882,-0.03475176,0.0053973505,-0.0007305175,0.008524879,0.0009302684,-0.012418797,-0.036108438,-0.011929612,-0.0054625752,0.015001699,-0.00050263846,-0.009627177,0.0099859135,0.016710589,-0.0009808176,0.014427721,0.0070507983,-0.00084058434,-0.0105925035,-0.0318036,-0.00026925604,0.028724993,0.027942294,-0.010449009,-0.0047548865,0.007937855,-0.0018752124,-0.01108169,-0.015327822,0.008283547,-0.025646383,-0.036291067,0.014127687,-0.0125035895,0.018876052,-0.013221063,-0.0062681013,0.013958102,0.003616714,-0.020389266,0.010807746,-0.00945107,0.00014074284,-0.023924448,0.017075846,0.005981112,-0.010970808,-0.010735999,-0.013514574,0.015719172,0.0031226363,0.020245772,0.019971827,-0.037152033,-0.010788178,-0.014923429,0.005260378,-0.013488484,0.021158919,-0.025007179,-0.033108097,-0.00045616578,-0.0076834788,-0.005364738,0.013592844,-0.012666652,-0.008100918,-0.0025894237,-0.029820768,-0.018863006,0.0059843734,-0.008179187,-0.000059160913,0.015053879,-0.0053419094,0.028829351,0.015093014,-0.02648126,0.03819563,-0.027629215,0.021785077,-0.003861307,0.0038189108,-0.0072529954,0.009751105,-0.007031231,0.011583921,0.017023668,-0.000038956518,-0.01484516,0.031307895,0.007768271,-0.007494327,0.022646043,0.007409535,-0.0013338467,-0.04930993,0.0013093874,-0.007429102,0.009875031,-0.00007230778,0.004017846,-0.019645704,0.0032971124,-0.0064115957,0.0069529614,-0.002798143,-0.016332284,0.0026709547,0.0013175405,0.0044744196,-0.030473016,-0.0020839316,0.0019159778,-0.010879493,0.00018619635,0.014205957,-0.010651207,0.008322681,0.013932013,-0.027681395,-0.026624754,0.019867467,-0.00024133168,-0.0025551806,-0.007142113,0.006855124,0.041613407,0.0025209377,0.009066244,-0.0051168837,-0.0047744536,0.007481282,0.0041711247,0.012223124,0.015993116,0.012444887,0.0323254,-0.025829012,-0.027290046,0.013736338,0.0031487262,-0.019319579,-0.054371376,0.030499106,0.0204284,-0.03274284,-0.0026644322,0.0001918016,0.034673493,0.035977986,0.008440087,-0.000027847922,0.008700985,-0.007742181,0.012901461,0.008877092,-0.0144016305,-0.01781941,-0.02045449,-0.010879493,-0.0063398485,-0.039839294,0.012588382,-0.0055767186,0.023167841,-0.023024347,0.013866788,0.026337765,0.015471317,0.025176764,-0.016123565,-0.0530147,0.014310316,0.000011853839,0.0010835467,-0.01089906,-0.014753845,0.010553369,0.0034830032,0.014101597,0.018445566,0.00621266,0.011701325,0.0066529275,-0.0026497566,-0.00156621,0.031673152,-0.008022647,0.022554727,0.0002898426,0.007879153,-0.0075073717,-0.017388925,-0.005136451,-0.010331605,0.017258476,0.007931333,-0.016841037,-0.0027655305,-0.005436485,-0.003256347,-0.012516635,-0.0024002718,-0.02177203,0.007709569,0.004872291,0.018849961,-0.00932062,0.0005915072,0.020063141,-0.033734255,-0.0014455442,-0.026233405,0.016984532,0.092671365,0.004435285,0.015836576,0.0190065,-0.034203872,-0.011088212,-0.004438546,0.0035971466,0.006992096,0.011636101,-0.0036134527,0.018432522,0.0038352169,0.014127687,-0.012777534,-0.02505936,0.019463073,-0.020154456,-0.007272563,-0.047979347,0.011636101,0.008570536,0.0021100217,0.027159598,0.015184328,-0.0059485,0.020493625,-0.005694123,0.0009229306,0.0069529614,-0.005951761,-0.0017724833,-0.016658409,0.020115322,-0.008903182,-0.024459291,0.044300668,0.011355634,0.0031030688,0.01618879,0.022619953,0.013684158,0.019710928,0.00032143586,-0.02076757,-0.002171985,-0.007031231,0.013762428,-0.015145194,-0.0077291364,0.03318637,-0.0150408335,-0.014088552,-0.004327664,0.019619614,-0.009842419,-0.013684158,-0.033864703,0.014336406,0.021863345,-0.016814947,-0.020128366,-0.006757287,0.004376583,-0.011707848,-0.022711268,-0.017114982,0.01245141,-0.007742181,-0.006167003,-0.018341208,-0.0034308233,-0.03469958,-0.01774114,0.032821108,0.024654966,0.026259495,-0.019215219,-0.006424641,0.0011658929,-0.010181588,-0.03772601,-0.0038547844,-0.024354933,0.0032041671,0.008479221,-0.002339939,0.011988314,-0.028385824,0.0059876344,0.04414413,0.022319918,0.023415696,-0.003522138,-0.01089906,-0.000038650778,0.007931333,0.015549587,-0.009255396,0.001334662,0.0090336315,-0.005019047,-0.019854423,-0.032951556,-0.01252968,0.014375541,0.0012351943,0.02027186,-0.019932693,-0.02029795,0.031099174,-0.000047440833,0.0039004418,-0.018915186,-0.005110361,0.012842759,-0.021145873,0.007572597,0.015993116,-0.0102989925,-0.0069399164,-0.020924108,0.021119783,-0.004996218,0.004810327,0.0020105538,0.0033525536,-0.024524517,-0.006007202,0.020245772,0.015445228,0.0026725852,-0.014453811,-0.019228265,-0.020571895,-0.017310657,-0.00047614088,0.015693082,-0.0013721662,-0.019737018,-0.021354591,0.014205957,-0.009496728,-0.0320645,-0.0018099876,-0.030838275,-0.01463644,0.005961545,0.014623395,0.042787455,-0.015614812,0.0013974409,-0.018876052,-0.036891133,-0.0049994793,-0.033212457,-0.03240367,0.00202686,0.009790239,0.015236508,0.022280784,0.016814947,0.024550606,0.0031813385,-0.0077356584,-0.011818729,0.00889666,0.005309297,-0.031881873,0.015693082,0.028020564,0.019997917,0.039578397,-0.016227925,-0.008244412,0.012810146,-0.008231367,-0.0060854717,-0.019841377,-0.01737588,0.015471317,0.007990035,0.0076704337,0.008740121,-0.0056973845,-0.0040732874,0.020493625,0.009829374,0.013527619,-0.00006145397,-0.00818571,-0.0037504248,0.009731537,0.0026285585,0.007937855,0.0036819386,-0.018067263,-0.004735319,-0.009092334,-0.018184667,0.011212139,0.021341547,-0.017310657,-0.0029775111,-0.023546144,0.022815628,0.0066561885,-0.008779255,0.010194633,-0.005928932,-0.023389606,-0.019906603,-0.0175846,-0.020924108,-0.009542385,-0.016606228,-0.035951898,0.026768249,0.011212139,-0.021889435,-0.008296592,0.005899581,0.049466472,0.0061800475,0.010194633,0.028698903,0.0019502209,-0.011453471,0.009307575,0.006705107,-0.0087270755,-0.0041059,0.028151015,-0.009672835,0.007272563,-0.004940777,0.014179867,-0.02348092,-0.019684838,0.0014993546,-0.0042950516,0.001484679,-0.012601427,-0.019750062,-0.042083025,-0.008322681,-0.011818729,-0.014675575,0.0018165101,-0.005201676,-0.020989334,0.0009327143,-0.004983173,0.0056582494,0.020467535,0.010116363,0.008916227,-0.0235331,-0.01313627,0.003440607,-0.009385846,0.020089231,-0.00729213,-0.008472699,0.012907984,-0.0036786774,-0.013305855,-0.017962905,-0.0053256033,0.020728434,-0.003590624,-0.015001699,-0.010253335,0.0042657005,0.018497746,-0.009190171,-0.013631979,-0.023728775,0.002982403,-0.0075008497,0.001505877,0.0025698564,-0.027133508,-0.012073106,-0.01595398,-0.016149655,0.006049598,-0.0050027403,-0.010749043,-0.006868169,0.007742181,-0.023285246,0.008022647,0.0025356133,0.0020562112,0.0057430416,0.03866525,0.02929897,-0.019097814,0.011733937,0.015327822,-0.010259857,-0.013579799,-0.0008144944,-0.0046864003,-0.0082118,0.027185688,-0.01242532,-0.01179264,-0.0346474,0.0024752803,0.022346009,0.0059550223,-0.00019333031,0.018119443,0.0051625413,0.016827993,-0.037256394,-0.019658748,-0.0069855736,0.008335726,0.010735999,0.006483343,-0.027759666,-0.016175745,0.00029106557,0.04088289,-0.01016202,-0.0043602763,0.0074878046,-0.009522818,0.0059550223,0.010312038,-0.016541004,-0.040439364,-0.0013721662,-0.00863576,0.003564534,-0.0063268035,-0.005674556,0.0059419773,0.0064181183,-0.027055237,0.02074148,0.0020562112,0.00313242,-0.025542023,-0.014205957,-0.02216338,-0.018497746,0.0008813498,0.020415356,0.0041906917,-0.033838615,-0.016554048,-0.03449086,-0.025868148,-0.015471317,-0.011036033,0.0024394067,0.007272563,0.0034210396,-0.020898018,0.018223803,0.0029073944,0.016332284,0.0060724267,-0.024628876,-0.006757287,-0.003577579,-0.00521146,-0.0007794361,-0.019384803,-0.031829692,0.024198392,0.0072008152,0.0010990375,0.007142113,-0.0079509,0.014623395,-0.015627857,0.0153539125,0.01013593,0.021563312,0.02074148,-0.013351512,-0.024159258,-0.018393388,0.0044124564,-0.01166219,-0.02935115,0.017284567,-0.015432183,0.019880513,-0.020650165,0.02164158,-0.0121970335,-0.007840019,0.008974929,0.002716612,0.0024442985,0.035847537,0.019815287,-0.018719511,0.012894939,0.007083411,-0.030290388,-0.0027345489,0.004216782,-0.04090898,-0.0065322616,0.0056158532,-0.005361477,-0.03509093,-0.00063512626,-0.0014227155,0.0040341527,-0.03209059,0.020963244,0.0013990715,-0.007279085,-0.029455509,-0.008642283,-0.0106120715,-0.018393388,-0.037491202,0.009835896,-0.01734979,-0.01595398,0.025620293,-0.012725354,-0.0439615,0.026624754,0.019984871,-0.012236169,0.013658068,0.21999013,-0.008955362,-0.011388246,0.03884788,0.002224165,-0.0109381955,0.018249894,0.0056680334,-0.016580138,0.01774114,-0.009920688,0.014101597,-0.012516635,-0.0061898315,-0.009757627,0.015484362,-0.025659427,-0.024237527,-0.0131493155,-0.033577714,0.010944718,0.004533122,0.000042548978,-0.012979731,0.034386504,-0.012340528,-0.002074148,0.010331605,0.0060267695,-0.0106251165,-0.0067638094,-0.010905582,0.018002039,-0.030499106,0.00017264183,-0.016788857,0.014571215,-0.015079969,0.021237187,0.034569133,-0.014453811,-0.00731822,0.036995493,0.0010484883,0.0002095346,0.02053276,-0.010109841,-0.015262598,-0.005169064,0.0061376514,-0.0075008497,-0.023794,-0.01026638,0.036551967,-0.011857864,0.004004801,0.016971488,-0.012177466,-0.01637142,-0.0037210735,0.00079044275,0.024289707,-0.008479221,0.038978327,-0.0077030463,0.011844819,-0.012112241,0.008218322,0.034047335,-0.026768249,0.012203556,0.0046896613,-0.014649485,0.0318036,-0.01629315,-0.007755226,0.02061103,0.020754524,0.039734934,-0.0015955612,0.0027916206,-0.009790239,-0.019919647,-0.0020676255,-0.02950769,-0.05027526,0.018223803,0.014323361,0.026076866,-0.014153777,-0.0016974749,0.01237314,-0.019215219,0.008798823,-0.009692402,0.0006718152,0.0014398369,0.019763108,-0.0077878386,0.017062802,-0.015993116,-0.013945057,0.04401368,0.0060919942,-0.009483683,0.02079366,0.0084009515,0.025868148,0.016788857,-0.0150408335,-0.008224845,-0.03443868,0.0067116297,0.0147408,0.0003789152,0.01461035,-0.030133847,-0.028698903,0.023024347,-0.008127008,-0.0030003397,-0.028177105,-0.015471317,-0.01598007,0.011877432,0.0069660065,-0.010957763,0.022646043,0.017806364,-0.022228604,0.017506331,-0.00032000907,0.02040231,-0.020989334,0.007494327,0.012431842,0.0051136226,-0.0012229646,-0.0030835015,-0.0031731855,-0.027290046,0.019932693,0.014753845,-0.015288688,0.004425501,-0.028568452,0.025359394,-0.016723633,-0.009059722,0.0030835015,-0.035404008,0.039787114,0.011818729,-0.031073084,0.043257073,0.003740641,-0.021367637,-0.011486083,0.0053060357,0.025007179,0.0049896957,0.013879833,0.037595563,0.011433903,-0.027524857,-0.012868849,-0.16593184,0.016097475,0.010005481,-0.02622036,0.017910725,0.010683819,0.022593863,0.021106739,0.0015857774,-0.004996218,0.0061376514,0.012549248,-0.012960163,-0.009548907,-0.006049598,-0.008407474,-0.0161627,0.015732216,0.04153514,0.0026155135,0.024224482,-0.0068486016,0.022593863,-0.00731822,0.011146914,-0.017467195,0.0020105538,0.0053973505,-0.025489843,-0.030890455,-0.010905582,-0.008772733,0.033160277,0.02658562,0.04988391,0.000010522591,0.0015931152,-0.0048918584,0.016749723,0.023193931,-0.008987974,0.025972506,0.0012017665,0.008622715,-0.007963945,0.022867806,0.014258136,-0.0018442306,-0.008557491,-0.01734979,0.021732897,-0.024433201,0.0028992414,0.007996558,0.010435965,0.03203841,-0.008994496,0.014571215,-0.0060854717,-0.006662711,0.007911766,-0.0075660744,0.0121905105,-0.027029147,-0.018941276,-0.005674556,-0.014701665,0.007944378,-0.03767383,0.011675235,-0.010168543,-0.02218947,0.020467535,0.0073247426,-0.007990035,-0.0009726645,-0.02929897,0.01950221,0.015758306,-0.0071029784,0.0026122523,0.034516953,-0.0027149813,0.0061376514,-0.020245772,0.008100918,-0.0051071,-0.004568996,0.0014960933,-0.017493285,0.014310316,-0.022919986,-0.00051486806,-0.011910045,0.022045976,0.028672813,0.012979731,0.0087923,-0.00082590873,-0.0073247426,-0.00035200999,0.025489843,-0.0017773752,0.0052375495,0.031673152,0.013077568,-0.006796422,0.027733576,0.033812527,0.011133869,0.004285268,0.012092674,0.025685517,0.015079969,0.017728094,0.0320645,0.00808135,0.0005299513,0.01484516,-0.006378983,0.015523497,0.0054756203,-0.0056256372,-0.00033183105,-0.023637459,-0.0063561546,-0.10075924,-0.027029147,-0.004575518,0.022254694,-0.021889435,0.014975609,0.022750402,0.013723293,0.0052212435,0.018732557,-0.011166482,-0.025855102,-0.008237889,-0.015627857,0.003916748,0.0016673084,0.0061050393,-0.01608443,-0.00555389,0.017571555,-0.021615492,-0.00094249804,-0.0038515232,-0.010481622,-0.011675235,-0.01600616,-0.04101334,0.030342566,0.024707146,0.0075791194,0.01242532,-0.008427042,-0.0014969086,-0.02963814,-0.036264975,-0.018002039,-0.02029795,-0.000083467334,0.01631924,-0.024811506,0.010546846,-0.0032596083,-0.0093467105,-0.011962224,-0.017167162,0.015001699,-0.017493285,0.015275643,0.018275984,-0.034673493,-0.015732216,0.010246812,-0.015301733,-0.010142453,0.011218661,-0.012966686,0.01631924,0.0055343225,-0.017728094,0.027968384,-0.008224845,0.01727152,-0.005009263,0.017193252,-0.016671453,0.010892538,0.015262598,-0.010194633,0.031386163,-0.009229306,-0.011760027,0.017128026,-0.011701325,0.0008748273,-0.029872948,-0.009744582,-0.0090271095,-0.012966686,0.01598007,0.007892198,-0.014271181,-0.022854762,0.017428061,-0.018771691,0.020441445,0.013397169,-0.011988314,0.015862666,-0.0054560527,-0.027942294,-0.010540324,0.008942317,0.0011691542,-0.009196694,-0.03216886,-0.0034373458,-0.011968747,0.015393048,-0.0073899673,0.0027524857,-0.027290046,-0.011942657,-0.048892494,0.025985552,0.0032661308,-0.010077228,-0.004275484,-0.03869134,0.016527958,-0.016841037,-0.01781941,-0.019658748,0.003955883,0.017806364,-0.0047124904,0.0020871928,-0.00067589176,-0.008016125,0.02927288,-0.005009263,-0.014779935,-0.01771505,0.005064704,0.00810744,0.012673174,-0.010572936,-0.005035353,0.026820429,0.011022988,0.03556055,-0.006033292,-0.022646043,0.0046374816,-0.033238545,0.00051079155,0.01631924,-0.01939785,-0.014062462,-0.022476459,0.015666991,0.00932062,-0.0019534822,-0.0134754395,-0.04698793,0.006512694,-0.0057430416,0.010814268,0.004164602,-0.018941276,0.0015384895,-0.0039526215,0.013410214,0.028203193,0.017845498,0.021498086,-0.0022551466,0.015066924,-0.0036069301,0.011388246,-0.012066584,0.010957763,-0.0074878046,0.019997917,-0.002287759,0.00808135,-0.020037051,-0.006757287,-0.00371129,-0.036708504,0.021524176,0.017623736,-0.026924789,-0.022802582,-0.017075846,0.03814345,0.009790239,0.02653344,0.01598007,-0.012862327,-0.0204284,-0.0037439023,0.0125231575,0.028124925,0.0044581136,-0.043100532,0.012953641,0.013077568,0.034412593,-0.018771691,-0.000507938,-0.00260573,0.012470977,-0.025555069,-0.001589854,0.019619614,0.012014404,0.013234108,0.033525534,-0.0030802402,-0.0011300193,-0.02045449,0.00955543,0.007644344,0.004568996,0.0079509,-0.013077568,-0.034569133,0.015967026,-0.026285585,-0.012947119,-0.003179708,0.011453471,0.007246473,-0.018576017,0.005064704,0.026520394,-0.015066924,0.011433903,0.00037932285,-0.022489503,-0.032925468,0.022554727,0.026976967,-0.012144853,0.024433201,-0.019658748,0.044900738,0.014205957,0.0014341298,-0.010051139,0.016280105,-0.00010517496,0.006470298,0.004568996,-0.0026383423,-0.008603148,0.021602446,-0.020545805,-0.023128707,0.023937494,0.013840698,0.05609331,-0.017141072,-0.010579459,-0.013338467,0.008681418,0.015223463,0.040282823,0.0076769562,0.0060919942,-0.012412275,0.0057006455,-0.002806296,0.0041841697,-0.00051038386,0.0010998528,0.0056158532,-0.011499128,0.019684838,-0.026872609,-0.0008063413,0.011225184,0.0065746577,0.011818729,0.011277364,-0.0053549544,0.01108169,0.002090454,-0.0013020496,-0.021445908,-0.022293828,0.003385166,0.02387227,-0.018915186,-0.003003601,0.0019746802,0.0032155816,-0.0032612388,0.02218947,-0.007898721,0.027133508,0.009098857,0.019763108,-0.020102277,-0.01084688,-0.009881554,0.0036754163,0.0034732195,0.0036004076,-0.042735275]},{\"id\":\"535e3117-e5ee-4400-956d-6d25eac564d6\",\"text\":\"Where could I track my earnings? You sent a link, but it only takes me to my video. Thank you. \",\"vector\":[-0.039390538,-0.01634398,0.0037992017,-0.055940747,-0.00018639532,0.0092096,-0.01148461,-0.02086822,-0.011742402,-0.0055682957,0.015067912,0.007153713,-0.010279435,-0.011897076,-0.007869084,-0.008223548,0.008906695,-0.013624279,0.0071150446,-0.009763852,-0.03872028,-0.000051709343,-0.016073298,-0.021126011,0.0017352588,-0.013443825,0.013546942,-0.010775683,-0.023729704,-0.0050333785,-0.013392267,0.0016804781,-0.03539477,-0.023716815,-0.022750096,-0.002244397,0.013688727,0.00075001206,0.01749115,-0.0025102445,0.013766064,0.028846866,0.0014065747,-0.022595422,-0.009196711,0.012315988,-0.013675838,-0.016537324,-0.017465372,0.018470759,-0.028846866,-0.008249327,-0.04676337,-0.0332551,0.0050752694,0.01937303,0.016253753,0.013611389,-0.009892748,-0.007927088,0.0034254042,-0.0045757988,-0.033616006,-0.0043470087,-0.008945364,-0.005797086,0.0033964026,0.018045403,-0.014926126,0.0004978598,0.019733937,-0.016047519,-0.006119325,0.0070957104,0.032713737,-0.00018740231,-0.0086102355,-0.0053137266,0.019166796,0.017310698,0.0051300502,-0.0010102204,-0.00012315584,0.015248366,0.016511545,-0.006277222,0.0059034247,0.005342728,-0.020262409,-0.012657561,-0.003963544,0.022066949,0.01751693,0.013662948,0.0099507505,0.03237861,-0.021422472,0.023123896,-0.006767026,0.004205223,0.016060408,-0.003169224,0.0025698587,-0.008623125,-0.021538477,0.0058196425,-0.013198923,-0.020017508,0.0087906895,-0.004195556,-0.029491344,-0.002057498,0.016253753,-0.01602174,-0.004675693,0.01073057,0.006709023,-0.0036413046,-0.009525395,-0.008648904,0.016679108,0.0074759526,0.018638324,-0.00040944535,0.014629666,0.013637168,-0.025753368,-0.016369758,0.030934976,-0.008771354,0.0077724126,-0.002063943,0.016743556,0.023974607,-0.00619344,0.03500808,-0.018290306,-0.004021547,-0.009441612,-0.038410928,0.013405156,0.022402078,0.012631782,-0.006831474,-0.02201539,0.024709312,0.0017223692,-0.022066949,0.013443825,0.0011826183,0.012812236,0.011239708,0.018509427,0.0051719416,-0.012109755,0.023652367,0.0009151597,-0.0021493363,0.002130002,-0.0070054834,-0.002793815,0.021242017,0.00642223,-0.014062525,0.017143132,0.03900385,0.016099077,-0.040627934,-0.015003463,0.0057874187,-0.0066703544,0.009821855,-0.019476146,0.015390151,-0.033203542,0.030367834,0.0043051178,-0.012934687,0.009338496,-0.018380532,-0.008345999,-0.00032505894,0.020172182,0.016704887,-0.002940434,-0.014191421,0.032223932,-0.019166796,-0.0053620627,-0.018818777,0.0017110909,-0.011400828,0.008835803,-0.016421316,-0.6607711,-0.01750404,0.007817526,0.021847827,0.0108530205,0.030135823,-0.023742594,0.011400828,-0.042535592,0.022530975,-0.015377261,-0.0102343215,0.0023442912,0.020275299,-0.0023024,-0.004946374,0.037302427,-0.018638324,-0.008120432,0.007379281,-0.030754521,0.01042122,0.00093691086,0.042509813,0.002432907,-0.006747692,0.013714506,-0.003950654,-0.007843305,0.013250481,-0.007675741,0.009783186,0.023162564,0.015983071,0.049779534,-0.023729704,0.0068508084,-0.0104663335,-0.020133514,0.03389958,-0.036529053,0.011201039,0.01042122,-0.019398808,-0.0069410354,-0.014977684,-0.0010231099,0.0084297815,0.008416891,-0.01571239,0.0075081764,-0.013753175,-0.033435553,-0.00521061,0.015403041,0.014049635,0.033693343,-0.017168911,-0.0042632264,0.009132263,-0.01451366,0.010266545,-0.02329146,-0.02928511,-0.0076628514,0.014358985,-0.00663813,-0.002753535,0.019514814,0.013675838,0.029671798,0.010956137,-0.01178107,0.033409774,-0.0038604273,0.020803772,-0.0032965085,-0.0074501736,-0.0074308394,-0.00968007,0.014848788,-0.007340612,0.019978838,-0.008668238,0.0052234996,0.006921701,-0.019721048,-0.009905637,-0.01630531,-0.0032546173,0.0021557813,0.011433052,-0.0037250868,-0.019824164,-0.008584456,0.030806081,-0.0014613554,0.0106725665,-0.013843402,-0.015815508,-0.037405543,0.009280493,-0.010395441,-0.0064608986,0.038178917,-0.00597754,0.017014237,-0.0020607205,0.035884574,-0.018174298,-0.015506157,-0.017388035,0.013495384,0.0030773857,-0.028021934,-0.03351289,0.021100232,0.015828397,-0.0016917565,0.015854176,-0.00051638857,0.025199117,0.024167951,-0.0053201714,0.0061547714,0.00085876783,0.030290497,-0.029800694,-0.0011471721,0.022131398,-0.0019237689,-0.009080704,0.024167951,-0.0061483267,-0.0070312624,0.0096156215,0.009712294,-0.0092096,-0.013224702,-0.030187381,0.008217103,0.0000488394,0.010221432,-0.007669296,-0.001388046,-0.0016240863,0.0001968681,0.012212871,-0.011703732,0.003995768,-0.01872855,-0.013173144,-0.008313775,0.0074823974,0.0020091622,-0.0056295213,-0.022827435,-0.010943248,-0.017065795,-0.013572721,0.0021428915,0.0001961632,-0.014358985,0.017117353,0.0010956137,-0.0047723646,-0.010324548,0.010588785,-0.012161313,-0.013224702,0.002958157,-0.00035023387,-0.02210562,-0.0036477493,0.023020778,0.011297711,0.017156022,0.00008287593,-0.0046531362,-0.015158138,-0.0021090566,0.010202098,-0.011001251,0.0072052716,0.014977684,0.007907754,-0.012567334,0.037534438,-0.019824164,-0.0002986756,0.001614419,-0.0012591502,-0.02054598,-0.003899096,-0.0067219124,0.0012833182,0.012354656,0.021615814,0.01752982,-0.0032562285,0.02452886,-0.0023797376,0.02902732,0.012625338,0.00027390342,-0.016550213,-0.012328877,-0.042535592,0.012045306,0.038874954,0.026217392,-0.022247404,0.025289344,-0.020455753,0.005281503,0.015299924,0.00056391885,-0.01327626,-0.019282801,0.012618893,-0.022479417,-0.0060387654,-0.0039828783,-0.024271067,-0.0062965564,0.01905079,-0.0067799157,0.033332437,0.0030354946,-0.027532129,-0.02992959,0.020481532,0.010279435,0.026088497,0.02505733,0.00027430625,0.007740189,0.0076821856,0.006973259,0.00040622297,-0.02294344,0.007759523,0.023007888,-0.024967104,0.02452886,0.017581379,0.038823396,-0.015222587,-0.012548,0.018689882,-0.0036638612,0.031579453,-0.029388228,0.008906695,0.031244326,-0.026217392,-0.019824164,-0.004711139,0.027532129,0.032533284,0.012470663,0.0001460147,0.010472778,-0.011433052,0.0043534534,0.011072144,-0.0040569934,0.0019157128,0.022170067,0.0058454215,0.018522317,-0.0058647557,0.015879955,-0.013559831,0.02507022,-0.0092031555,0.022917662,-0.016550213,0.0012962078,0.012915352,-0.02632051,-0.02054598,0.036348596,-0.0054522897,-0.015931513,-0.020481532,0.014719893,0.02570181,-0.01101414,0.013546942,-0.0026681416,0.0012800958,0.0033770683,-0.013688727,-0.00980252,-0.008771354,0.040627934,-0.012328877,0.013366488,-0.002581137,0.008294441,-0.0038056467,-0.0001472231,0.0016418095,0.019862833,0.019411698,0.004495239,-0.013933629,-0.013037804,-0.029646019,0.0011439497,-0.014088304,-0.0029356005,-0.0018851002,0.0131667,0.0008797134,-0.017748943,-0.021345133,0.038849175,0.014823009,-0.022762986,-0.009067815,-0.028279724,0.024619086,0.07321278,-0.013179589,0.0054426226,0.019115238,-0.000888575,-0.01222576,-0.020404195,-0.033203542,0.004649914,0.0091515975,-0.006741247,-0.014655445,0.0066961334,-0.004472682,0.011329935,-0.024013275,0.021061564,-0.015467488,0.012638227,-0.020120624,-0.003899096,0.0009771908,0.0018867113,0.0178005,0.028537516,0.040060796,0.0075017316,0.0070892656,0.00085554546,-0.008926029,0.025856484,0.00025759006,0.0023491248,0.014358985,0.0033480667,0.029749136,0.008545787,0.010537227,0.017413814,0.0108530205,-0.027325897,0.015983071,0.0013582389,-0.008275107,0.0073599466,-0.007959312,0.00663813,0.010330993,0.009576953,0.0019269913,0.029491344,0.019746827,-0.008204213,-0.00832022,0.004649914,0.015055022,0.0011882576,-0.013546942,0.011574837,-0.008797134,-0.0108530205,0.018264527,-0.006457676,-0.008449116,-0.015261255,-0.011735957,-0.0052976147,-0.0029114324,-0.010601674,0.01810985,0.00010734598,0.008681128,-0.036941517,-0.019953059,0.010975472,-0.0019189352,0.012077531,-0.0057874187,0.015196807,-0.00476592,-0.009441612,-0.041633323,-0.023033667,0.0054039536,-0.019514814,-0.010633898,0.0010682234,-0.010840131,-0.021809159,-0.0051783863,0.011181705,0.02450308,0.02662986,-0.023742594,0.028253945,0.016872453,0.007778858,0.023703925,-0.0033126203,0.002063943,0.008339554,-0.044365913,-0.0027825367,-0.0075984034,0.0030661074,0.02171893,0.036451712,0.04676337,-0.022840325,0.008120432,0.018767219,0.02264698,0.01328915,0.0038765392,0.019746827,0.025044441,0.018767219,-0.016253753,0.01963082,0.00095463404,-0.0069861487,-0.021203348,0.0077272994,0.010575895,0.0098991925,0.01074346,0.0076628514,-0.023123896,-0.007707965,-0.01268334,-0.0039925454,0.0052557234,-0.01600885,-0.015441709,-0.018999232,-0.036554832,-0.037070412,-0.0053846193,-0.0011866464,-0.003351289,-0.019901501,-0.009931416,-0.027222779,-0.017143132,-0.011407273,-0.028253945,-0.0104405545,0.03596191,-0.0076306276,0.029826473,0.0142172,0.03237861,-0.037843786,-0.02717122,0.009435168,-0.011420162,-0.033667564,0.014114083,0.026178723,0.015918624,0.018599655,0.004424346,0.024709312,-0.001327626,0.012431994,-0.0070570414,0.0040118797,-0.008004425,-0.018328974,0.0050591575,0.010240766,-0.005307282,0.048799925,0.014191421,0.0027003656,-0.004579021,-0.006857253,0.015351482,-0.020391306,-0.034698732,0.01420431,0.0077917473,0.0002932378,0.00054498727,-0.0070312624,-0.020739324,0.022891883,-0.028589074,0.0017819835,0.009183821,0.022453638,-0.024361294,0.042484034,-0.0076886304,0.014088304,-0.0037057523,-0.013134476,-0.01937303,0.015531936,0.009480282,0.0020848885,0.029517123,-0.013263371,0.028228166,0.00085715664,0.035446327,0.012116199,-0.017362256,-0.00035929686,-0.010137649,-0.012818681,-0.031321663,-0.0039023184,0.019862833,0.0014363818,0.02508311,-0.020468643,-0.003219171,-0.012515776,-0.03178569,-0.026732976,-0.012709119,-0.0017948732,0.029259332,0.022866104,0.035472106,0.025895154,-0.011181705,0.007153713,0.013727396,0.019308582,0.013224702,0.02568892,-0.017014237,-0.035807237,0.0019769385,0.0021912274,-0.013675838,-0.0135985,0.02476087,0.030135823,-0.012934687,-0.020494422,-0.009499616,-0.001686923,0.035317432,-0.01937303,0.0037057523,-0.004579021,0.0018770441,-0.013108696,0.04047326,0.00065454864,0.031605233,-0.0040569934,0.0068508084,-0.01027299,0.00922249,-0.023845712,0.011626395,0.011729511,0.030702963,-0.0053298385,0.003792757,0.0010094147,0.0076628514,0.009789631,-0.03114121,-0.009576953,0.013430935,-0.01541593,-0.004176222,0.006973259,-0.025302233,0.0017094797,0.01268334,0.0032368943,-0.02263409,-0.00012849293,-0.016588882,0.029568681,0.005010822,-0.00015014339,-0.0017304253,0.0032175598,0.015983071,-0.0057036364,-0.005465179,0.042716045,-0.023111004,-0.005961428,-0.0053846193,0.03542055,0.017748943,0.006209552,0.016111966,0.0034801848,0.020881109,-0.019411698,0.013237592,-0.0100538675,0.0027664248,-0.022414967,-0.0068443636,0.014977684,-0.033074647,-0.00029082102,-0.03534321,-0.021499809,-0.028305503,0.029156215,-0.0008362111,0.03230127,0.014616776,-0.02686187,0.015235476,0.0030838305,-0.0265783,-0.019721048,0.026810313,0.0049979324,-0.0044114566,0.018844556,-0.0052557234,0.0017433148,0.0042213355,0.0035510776,0.0057455273,-0.011220374,-0.011561948,0.007160158,-0.009080704,-0.0028034823,-0.011684398,-0.0020139958,-0.0032948973,-0.023703925,0.009738073,-0.006257888,-0.0031063873,-0.00981541,0.028047713,0.005094604,0.020597538,-0.019385919,-0.021409582,0.00679925,-0.012322432,-0.009080704,-0.033951137,-0.025031552,0.023742594,0.0016853118,-0.030290497,-0.024541749,-0.012399769,-0.034672953,-0.024090612,0.008552232,0.013076472,-0.006096768,0.011259043,-0.012457773,0.02874375,-0.017130243,0.006431897,-0.019411698,-0.030934976,0.007579069,0.005552184,-0.01812274,-0.01634398,-0.02210562,-0.009596287,-0.027377455,0.0034447385,0.016356869,0.01814852,-0.016859563,-0.011909966,0.011684398,0.015776837,0.034286264,0.0031772798,-0.003399625,-0.03413159,0.013443825,-0.003203059,0.011574837,-0.0006726746,-0.005645633,0.017697385,-0.010453444,0.004785254,-0.033976916,0.0039925454,-0.0062804446,-0.010543671,0.017362256,0.0067348024,-0.010724125,0.013070027,0.004063438,-0.022157177,-0.030599847,0.020313967,-0.012077531,0.0016176414,0.021293575,-0.026964989,-0.007044152,-0.0068508084,0.002089722,-0.005842199,-0.0007774024,-0.014745672,0.0012462606,-0.016575992,0.00020482337,-0.009750962,-0.0077530784,-0.021216238,0.01073057,-0.024039054,-0.022737207,-0.011233264,0.003766978,-0.017040016,-0.018548096,0.009428723,0.0057841963,-0.039803002,0.014320316,-0.011220374,-0.017942287,0.0030532177,0.22396924,-0.0020123846,-0.009712294,0.034260485,0.009009812,0.0069990386,0.011072144,0.019953059,-0.010756349,0.0070570414,-0.0049238172,0.030677184,0.0020059398,-0.011342824,0.0042986725,-0.037869565,-0.018535206,0.013804733,-0.01664044,-0.026204502,0.009216045,0.03874606,-0.00035990105,-0.036451712,0.037018854,0.0013364877,0.0034221818,-0.003441516,-0.0042213355,0.016253753,-0.028949982,-0.0022975665,0.013430935,-0.0035607447,-0.022698538,-0.0035027417,0.0011278377,-0.0070957104,0.032713737,0.04354098,0.006012986,-0.008636015,-0.0066059064,-0.03240439,0.015531936,0.017310698,-0.01268334,-0.026165834,-0.0278157,0.017787611,-0.00642223,-0.008810024,0.018509427,0.0022959553,-0.04142709,-0.0056843017,0.011909966,-0.006953925,-0.0075210663,0.020945556,0.0039925454,0.03021316,-0.005416843,0.00006127582,-0.029697577,0.0058357543,0.0050784918,-0.015918624,0.02477376,-0.016717777,0.01206464,-0.0175556,0.014745672,0.00196566,-0.039906118,-0.01692401,0.014307426,0.01450077,0.032146595,0.026758755,0.00573586,-0.0034060697,-0.011188149,-0.017684495,-0.008623125,-0.031270105,0.008745575,-0.0069088116,-0.0024538524,0.008113987,-0.023098115,0.00020824718,-0.04472682,-0.012071085,-0.003531743,-0.0055682957,0.007649962,0.021242017,0.015055022,0.0072117164,-0.0035349654,0.02358792,0.024928436,-0.005036601,0.008719796,-0.0077530784,-0.0039925454,0.02688765,-0.008868027,-0.009989419,0.016679108,-0.018045403,0.014603887,-0.011349269,-0.010169874,-0.00085635105,0.020352637,-0.021667372,0.0020204408,0.012148423,-0.008880916,-0.032120816,0.0054136207,-0.008004425,0.008281551,0.0017803723,-0.02325279,-0.014758562,-0.012303098,-0.030135823,-0.0041375533,0.0013977131,0.0011439497,-0.028872645,-0.0051558292,0.013263371,0.02233763,0.0009240213,0.00089260295,0.018174298,-0.0211389,0.013650059,0.020043287,-0.004659581,0.0011697288,-0.031295884,0.014874568,0.009106483,-0.013224702,0.014436322,-0.011787515,0.008229992,-0.008926029,0.010066757,0.033796463,0.019811274,-0.028640632,-0.035575222,0.0091258185,-0.0025183004,-0.015802616,-0.002916266,0.029774915,-0.019772606,-0.01725914,-0.008526453,-0.16292422,0.020159293,0.013366488,-0.0005848644,-0.0018963785,0.0022379523,-0.008204213,0.010756349,-0.02144825,0.011845518,0.01662755,-0.003596191,-0.012187092,-0.01163284,-0.0071666026,-0.0015225809,-0.019553483,0.010298769,0.020004619,0.008442671,0.013778954,0.0010359995,0.00245063,-0.019695269,-0.0025666363,0.016743556,-0.023471914,0.024915546,-0.00095382845,-0.013379377,-0.019862833,0.025315123,0.013443825,0.007707965,0.014062525,0.004972153,0.007037707,-0.02505733,0.00010764808,0.0055006254,0.013920739,0.016537324,0.0016691998,0.011394383,-0.009312717,0.029981147,0.02233763,0.023923049,0.017091574,-0.005948538,0.009982974,-0.018883225,0.015377261,-0.0062353313,-0.0013131252,0.022608312,0.0028695413,0.021435361,-0.007559735,-0.006644575,-0.033616006,-0.027996155,-0.035807237,-0.027274337,-0.004185889,-0.003734754,-0.015287034,-0.012000193,-0.015338592,0.0014057691,-0.014178531,-0.037611775,-0.0049979324,0.0178005,-0.010472778,-0.0027084216,-0.018264527,-0.008255772,-0.008926029,0.0037702003,0.007082821,0.039055407,-0.015055022,0.022556754,-0.008397557,-0.002768036,0.010563006,0.024361294,0.013018469,-0.030342055,0.009280493,0.0069925934,-0.003409292,-0.026140055,0.032739516,0.01328915,0.0056649675,0.011375048,0.0022830658,-0.0077015203,-0.0023845711,-0.026810313,-0.012631782,0.04993421,0.033435553,0.018664103,-0.017542709,0.012850905,0.05320816,-0.011561948,-0.016279532,0.01327626,0.010601674,0.02084244,0.016756445,-0.00663813,-0.013405156,-0.028253945,0.016073298,-0.01934725,0.036709506,-0.002360403,-0.028821087,0.0026600857,-0.014616776,-0.0045177955,-0.09290805,-0.018264527,0.0025424685,-0.009035591,0.012709119,0.014590997,0.007527511,0.009699404,0.013443825,0.012380435,-0.028073492,-0.035549443,0.00393132,-0.009506061,-0.0034866296,-0.021345133,0.0059034247,0.0024989662,0.007398615,0.03243017,-0.013018469,-0.024077723,0.016202195,-0.015660832,-0.008223548,-0.011155926,-0.024258178,0.0017159245,0.010981916,0.0000103531975,0.024657754,-0.023948828,0.0184192,-0.028898424,-0.024606196,-0.013018469,-0.022827435,-0.015454599,0.016279532,-0.014539439,0.006953925,-0.012083976,0.010994806,-0.029336669,-0.00725683,-0.006702578,-0.01568661,0.005726193,-0.0013010413,-0.03243017,-0.02022374,0.018264527,-0.020945556,0.0053201714,0.022801656,-0.0015548049,-0.0040022125,0.0016724222,-0.021602925,-0.0027245337,-0.013089362,-0.01179396,-0.013070027,0.010401886,0.011787515,-0.008313775,-0.0056134094,-0.006251443,0.0060000964,0.019862833,-0.014410543,0.037328206,-0.017336477,0.023123896,-0.026423626,-0.031837247,-0.033358216,-0.016769335,0.01105281,-0.014191421,-0.010318103,-0.0058357543,-0.008745575,0.0050527127,-0.0095125055,-0.032533284,-0.0024232399,0.014681224,-0.0017094797,-0.02840862,-0.00011802016,0.015738169,0.007334167,-0.016215084,-0.010176319,0.005020489,-0.024554638,-0.0050075995,0.0030612736,-0.019269912,0.013740285,0.013624279,-0.047227398,0.01116237,-0.00041226496,-0.023162564,0.012148423,-0.012722009,0.004202001,-0.01450077,-0.013521163,0.02178338,-0.012599559,0.0163182,0.014578108,0.00001699309,-0.0033674012,-0.015493267,0.015222587,0.0007886808,-0.002523134,-0.0032368943,-0.0025763034,-0.021435361,0.01694979,0.0012003415,-0.011259043,0.038307812,-0.0035994134,0.0022250626,-0.0045532417,-0.030135823,0.01542882,-0.02450308,0.0041182186,0.029955368,0.0110334745,-0.01751693,0.023020778,0.016240863,0.006022653,-0.0013026525,0.00012104115,0.0011076977,-0.0020913333,-0.0075404006,0.009480282,0.001941492,-0.00294849,-0.01042122,0.011658619,0.02267276,0.030702963,0.01209042,-0.01810985,-0.0095640635,-0.0055489615,-0.013050693,0.043721434,-0.0044179014,0.0040344363,-0.032997306,0.04354098,0.004504906,0.007127934,-0.019205464,0.0368384,0.0060645444,-0.016820893,0.00429545,0.0059453156,-0.036683727,-0.015983071,-0.009905637,-0.010401886,0.01749115,0.033770684,0.010769239,0.00430834,-0.010782128,-0.004546797,-0.01331493,0.01103992,0.015209697,-0.037405543,0.02024952,0.018921893,0.032971527,0.010988361,0.007353502,0.01665333,0.012573779,-0.026049828,0.013179589,0.01448788,-0.002358792,0.009622066,0.014707004,-0.0100796465,0.0019511592,0.008055983,0.03601347,0.03243017,0.018792998,0.00080922357,-0.010395441,-0.012850905,0.031656794,-0.02391016,-0.023214122,0.00566819,0.016563103,0.011897076,0.000896631,-0.010118315,0.012767122,-0.018612545,-0.01662755,0.0070570414,-0.03266218,-0.029362448,0.026758755,0.0066639096,0.013817623,0.0016804781,-0.018535206,0.03451828,0.007334167,-0.0131667,-0.0052718357,0.010343883,0.0029452676,-0.022311851,0.008255772,0.016356869,-0.0033867355,0.011355714,-0.013044248,-0.01696268,0.009731628,-0.026758755,0.073367454,0.009473837,-0.014939016,0.0004950402,0.0067154677,0.012096865,0.025817815,0.005136495,-0.018071182,-0.012096865,0.0031144433,0.005552184,0.0060000964,-0.0089711435,-0.004823923,-0.0030870528,0.004421124,0.0110334745,-0.008642459,-0.011149481,0.012973356,-0.000013531535,-0.0005292781,-0.00891314,-0.020906888,0.012651117,-0.0006388395,-0.009557619,-0.0023201231,-0.06449942,0.010414775,0.000778208,-0.01633109,0.015403041,-0.016356869,-0.021074453,-0.014719893,0.013791843,0.013572721,0.01875433,0.02507022,0.019128127,-0.011059254,-0.01328915,-0.016279532,-0.013353598,-0.019385919,-0.00095141167,-0.021074453]},{\"id\":\"2c42d039-0935-475a-8492-25fe93bd72bf\",\"text\":\"I submitted new videos  \",\"vector\":[-0.014285643,-0.0040026633,-0.02223347,-0.019256229,0.02461015,0.033861317,-0.0082544945,-0.0236007,0.0007878347,-0.026373494,0.004798085,0.008075605,0.009142556,-0.026986832,0.012202852,-0.026028493,0.013774529,0.011046456,0.0275235,-0.034116875,-0.020508459,-0.0014638631,0.006005592,-0.018579002,0.009410891,-0.009168112,0.015512317,-0.027165722,-0.0045872503,-0.010420342,-0.006079065,-0.0028111283,-0.021109018,-0.022667916,-0.021070685,-0.013927863,-0.0016930659,-0.005609479,0.009193667,-0.009263946,0.011717294,-0.00071955303,-0.0011412223,-0.01854067,-0.020508459,0.0078008813,-0.01937123,-0.019575676,-0.011896184,0.022029024,-0.0029516846,0.0050153085,-0.049322523,-0.010707843,0.027344612,0.018796226,0.024022369,0.01429842,-0.02622016,-0.00135605,-0.005114337,0.0049194745,-0.010203118,-0.013480638,-0.0014375089,-0.015422872,-0.0005171039,-0.0003559831,-0.00039012393,-0.0060630925,0.018272335,-0.0044434993,0.0034979382,0.0126948,0.0234857,-0.0036928004,-0.007966993,-0.019332897,-0.0018240389,-0.0070342096,0.016406767,-0.01298869,0.01257341,0.030462408,0.030539075,0.010752566,-0.0044466937,0.009966727,-0.025057375,-0.03383576,0.009711171,0.0065614292,0.017633442,0.008420607,-0.020061234,0.020150678,-0.033810206,0.027395723,0.0026498078,0.006005592,0.014055641,-0.0074878237,-0.028315729,-0.0069767092,0.017186217,-0.019511785,-0.012107018,-0.02275736,-0.005571145,-0.0037886342,-0.027421279,0.001256223,0.0069319867,-0.02688461,-0.007935049,0.003539466,0.020840684,-0.009679226,-0.017888999,-0.021262351,0.0127331335,-0.0015189677,0.025440712,0.012937579,0.027191278,-0.010746177,-0.000015061399,-0.025415156,0.020457348,-0.004149609,0.024980709,0.012803412,0.010426731,0.029516848,-0.00037874363,0.010631176,0.00054226024,0.015486761,-0.024635706,-0.0377969,-0.0062675383,0.0487603,-0.02301292,0.0146306455,0.0024613345,0.00019915486,0.018400112,-0.027395723,0.017569551,0.008510052,-0.0049737804,0.0009080264,0.008541997,-0.0030331435,-0.006280316,0.008816721,0.015588984,-0.0034947437,-0.013314526,-0.0071428213,0.022144025,0.015588984,0.008669775,-0.02116013,0.0022361248,0.018055111,0.022795696,-0.025696268,-0.028162394,-0.012899246,0.006938376,0.0027232806,-0.023153475,0.00071755645,-0.032174643,0.017671775,-0.003903635,0.0011412223,0.002285639,-0.020150678,-0.023996813,0.0046447506,0.027012387,0.039662465,0.0017457745,-0.023268476,0.01691788,-0.019575676,-0.008369496,0.003325437,0.007813659,-0.010675899,-0.004207109,-0.005120726,-0.6615863,-0.015154537,0.04433916,0.013442305,0.009973116,0.018131778,0.01019034,-0.006031148,-0.055149227,0.022425137,-0.009257557,0.022207914,0.030922411,0.008510052,0.005542395,-0.00052149623,0.03051352,-0.023217365,-0.017147882,0.0014135503,-0.027855726,-0.003366965,0.0028414757,0.017837888,0.033120204,-0.020355124,-0.010797288,0.0014542798,-0.005082392,0.01955012,-0.010707843,0.011404237,-0.013748973,0.002512446,0.06465595,-0.017083993,-0.008101161,0.0031593249,0.017352328,0.026450163,-0.019256229,0.0068042083,0.008874221,-0.006133371,-0.0021019573,0.004417944,0.027370168,-0.016355656,0.0068872645,-0.020942906,0.024354594,-0.001886331,-0.01496287,-0.009851727,0.009589781,-0.006670041,0.035011325,-0.008196995,0.0076731024,0.020776793,-0.0253896,-0.02121124,-0.03772023,-0.0101520065,-0.021824578,0.002264875,-0.001988554,-0.005590312,0.019154007,-0.009085055,-0.005130309,0.007187544,-0.032404643,0.010024228,0.006341011,0.010458675,-0.020482903,-0.0030267546,-0.009883672,0.0051111425,0.027906837,0.007347267,-0.0019645954,-0.0161001,0.013940641,0.015870098,-0.018809004,0.0042646094,-0.011896184,0.022437915,0.03856357,0.017135104,-0.0009216029,-0.010477842,-0.0007287371,0.007545324,0.0015181691,0.016483434,0.029031288,0.008855054,-0.0080564385,0.0014790369,-0.0056829513,-0.0042326646,0.018067889,0.012650077,-0.0014391061,-0.0048108627,0.0039196075,-0.014707312,0.015780652,0.007538935,-0.01567843,0.013097302,-0.01961401,-0.03404021,0.01662399,0.0020748044,0.024699595,-0.015486761,0.024022369,0.007788103,0.0077753253,-0.014605089,0.005651007,0.012624522,0.016023431,-0.018668447,-0.011500071,-0.00051111425,0.0022473054,0.0078647705,0.018016776,-0.00422947,-0.006280316,-0.0018623725,0.028954621,0.01049062,-0.00381419,-0.012375354,-0.016355656,0.0024070286,-0.00805005,0.014387866,0.021799022,0.02163291,-0.0014343143,0.0005246907,-0.0010837219,0.015192871,-0.031126857,0.0034851602,0.0013105288,0.004469055,0.006829764,0.00060535094,-0.013340082,-0.0046926676,0.0004540132,-0.024329038,0.011736461,0.018310668,-0.01680288,-0.021581799,-0.000067682704,0.010407563,-0.020815127,0.023396254,-0.0017473719,-0.02413737,0.022041801,-0.004986558,-0.0029548793,-0.009142556,0.005564756,0.02652683,0.0071236547,0.0039803023,-0.007641158,0.0026625858,0.0134167485,0.0041687754,-0.008382274,0.013186747,0.012841745,0.019473452,-0.012924802,0.035854664,-0.018157333,0.016994549,0.0074367123,-0.018706782,-0.019499008,-0.00023838687,-0.02438015,0.017863443,0.01930734,0.010733399,0.019562898,0.011519237,0.005082392,-0.0134167485,0.012567021,-0.0017122327,-0.013621194,-0.045029163,-0.007935049,-0.026450163,0.011327569,0.03777134,0.03373354,-0.015358983,-0.014068419,0.0056158677,0.017901776,0.007206711,-0.005280449,-0.0020636236,-0.031612415,-0.0043189153,-0.05244032,-0.006085454,0.006107815,-0.02443126,-0.0044147493,0.025095709,0.006925598,0.026169049,0.02783017,0.010177562,-0.027804615,0.032506865,0.0060279537,0.0092767235,0.012432854,0.0045009996,-0.0034883546,-0.009404502,0.017543996,0.01174285,-0.01031173,0.009717559,-0.0043284986,0.014400643,0.031433526,0.013582861,0.0400458,-0.007046988,-0.01507787,-0.01043312,-0.017620664,0.015601763,0.0030682827,-0.018234,0.0055935066,-0.025172377,-0.0063314275,0.003916413,0.009078667,0.014745646,0.02068735,0.011161457,-0.016304545,-0.0044083605,0.007890326,0.004772529,0.0043221097,-0.0144262,0.021109018,-0.03391243,-0.022949029,-0.009072278,0.0028271007,-0.019000672,0.016726213,-0.0010581661,0.0106375655,-0.010375619,0.0128289675,0.025057375,0.006836153,-0.024009591,0.027191278,0.015985098,0.009085055,-0.023434589,-0.004833224,0.008484497,-0.015205649,0.019154007,0.001570079,0.010260618,0.0039259964,-0.0019102895,-0.012771467,-0.0073664337,0.053360328,-0.024980709,0.0067914305,-0.005727674,0.0012929593,-0.0057660076,-0.012138963,-0.012771467,0.025542933,-0.00052628794,0.025312932,-0.0040665525,-0.02597738,0.00798616,0.010030617,0.0055392007,-0.015716763,0.017773997,0.003140158,-0.0003567817,0.0061653154,-0.0014926133,0.015026758,-0.0145412,-0.037030227,0.011059234,-0.021006795,0.0018815392,0.09578281,0.007973382,0.016547324,0.015525095,-0.007903104,0.0035202992,-0.027319057,-0.00840144,0.014451755,-0.016112877,0.0010118465,-0.015141759,0.0077689365,-0.008957277,0.031203525,-0.037106894,-0.01054812,-0.016790103,0.0015381344,-0.037592452,-0.0076603247,0.014042864,0.021402908,0.027983505,0.035113547,-0.009545058,0.022361249,0.003807801,0.0036800224,0.0009918811,0.0021866106,0.00021103428,0.008650608,0.0016850798,-0.008139494,0.024827374,0.0322002,0.029823516,0.017620664,0.009628114,-0.0047310013,-0.00089444994,0.008982833,-0.028494619,-0.009289501,0.0163301,-0.013608417,0.0053443382,-0.009934783,-0.020930128,0.024712373,0.010720621,0.004440305,-0.02438015,0.03493466,0.046945844,-0.0069575426,-0.0064751785,-0.030002406,-0.010950622,-0.009698393,-0.01829789,-0.006162121,-0.017147882,-0.020879017,-0.0062962887,-0.04262693,0.014694534,-0.030130185,-0.01227952,-0.009998673,-0.013787307,-0.037285782,-0.009117,-0.0049673915,0.009302279,0.0048076683,-0.013493416,-0.009270335,-0.010650343,-0.009902839,-0.0031513388,-0.0030858521,0.015895654,-0.0072961557,0.006580596,-0.0022824446,0.004267804,-0.019767344,-0.004025025,0.0164451,0.0062196213,0.017773997,-0.0045105834,-0.0049897525,0.008957277,0.016036209,0.014413422,-0.0126948,-0.0028414757,0.0031337691,-0.03539466,-0.000049389408,-0.0050312807,-0.020930128,0.023383476,0.019984568,0.042601373,-0.025108486,-0.011736461,0.018745115,-0.0034372432,0.022322914,0.016215099,0.02997685,0.024916818,0.01537176,0.016419545,-0.0042741927,0.016176766,-0.0028526564,-0.011972851,0.011889795,-0.0015509123,-0.022834029,0.024226815,0.009110611,-0.031254634,-0.024584595,0.008145883,0.0019853595,0.025236266,-0.022259025,-0.006241983,-0.036698002,-0.010350063,0.017262883,0.017722886,-0.023690145,0.0032168252,-0.021377353,-0.028136838,0.0019837623,-0.020994017,0.0066253184,-0.032813534,-0.0075069903,0.03838468,0.008631442,0.012892856,0.008139494,-0.0036480778,-0.014847869,-0.011825906,-0.01429842,-0.023153475,-0.021402908,0.011097568,0.010867567,0.046102505,0.036621336,-0.0238307,0.015307872,-0.016278988,0.0071555995,-0.0025156403,0.0073983786,-0.011666182,-0.022182358,0.008037271,0.009142556,0.000404499,0.006836153,0.0057947575,0.00912339,0.0064687897,-0.0036193277,0.0063921222,-0.01233702,-0.03434688,-0.0020939712,0.0037982177,0.01072701,-0.0025427933,-0.007998938,-0.0056957295,0.003587383,-0.017799553,0.0018943171,0.0060950373,-0.0075644907,-0.030079072,-0.008120327,-0.0012658064,0.011877017,-0.017109549,-0.017109549,-0.028775731,0.02252736,0.039304685,-0.01722455,0.01013284,0.000032643427,-0.0027312667,-0.047686957,0.012132574,-0.0098133935,-0.022859585,0.01346786,-0.01525676,0.0047246125,-0.019920677,0.0008385468,-0.000162718,0.0066061513,-0.0022329304,-0.024967931,-0.002162652,0.00217543,-0.020482903,0.02657794,-0.009168112,0.019562898,0.021364575,0.007966993,0.02223347,0.014911758,0.0060151755,0.033452425,0.0012122991,0.0007786506,0.003223214,0.035854664,-0.012905635,-0.024916818,-0.009033944,0.021671243,-0.04232026,-0.020879017,0.034602433,0.017365105,-0.0050440584,-0.020815127,0.007193933,-0.020125123,-0.0050025308,-0.032174643,-0.015882876,-0.003970719,-0.0020396654,-0.008957277,0.024878485,0.0109059,0.003545855,-0.0051175314,0.005226143,-0.017607886,-0.010778122,-0.016087322,0.022936251,-0.020815127,0.016496211,-0.0064592063,-0.008950888,0.0041879425,0.022910696,-0.018566225,-0.016713435,-0.010362841,0.018936783,-0.0071236547,0.016215099,0.010247841,-0.007353656,0.0045744726,0.0064049005,-0.0010366036,-0.029389068,-0.0005350727,-0.012797023,0.016853992,0.0048971134,-0.01769733,-0.014438977,-0.0013632375,0.011046456,0.010158395,0.010663121,0.024993487,-0.03593133,0.0033414094,-0.00047597513,0.013001468,0.02777906,0.017352328,0.021479577,0.02974685,0.033810206,-0.013199525,0.007615602,0.009468392,-0.006305872,-0.01305258,0.0060982318,0.0045585,-0.020904573,0.023166252,-0.02216958,-0.0067211525,-0.015588984,-0.016662324,0.005341144,-0.018029556,0.023728479,0.03654467,-0.0100050615,-0.016815659,-0.03874246,-0.014694534,0.027037943,0.019575676,0.0026418217,-0.0010389994,-0.002726475,0.013301748,-0.0033222425,0.007711436,0.00017928929,-0.024827374,-0.0036640503,0.015908431,0.000048416096,0.015525095,-0.04076136,-0.0001660123,0.00506642,-0.021083463,-0.000011829499,-0.019831233,-0.005200587,-0.008989221,0.021364575,0.0064815674,0.014605089,-0.005484895,-0.011059234,-0.018566225,-0.017428996,-0.014783979,0.0034979382,-0.01597232,0.025108486,0.0039100237,-0.011129512,0.0010230271,-0.01709677,-0.022322914,0.008369496,-0.0010150409,0.023651812,0.00527406,-0.001969387,-0.022808474,0.01733955,-0.0063026776,0.00029568758,-0.008733665,-0.016943436,0.014234532,-0.0042869705,-0.018119,-0.018349001,-0.024073482,-0.006644485,0.025364043,0.013851196,0.013391193,-0.0025364044,-0.022476248,-0.012969524,-0.00923839,0.008573941,0.02246347,0.008510052,0.017569551,-0.03503688,-0.009001999,0.012285909,-0.0070278207,0.0015644887,-0.013991753,0.009883672,0.002739253,0.0028686286,-0.007979771,-0.010477842,0.0029484902,-0.016534546,0.01328897,0.0011308403,-0.0062707327,0.015716763,0.015691208,0.014260087,-0.00953228,0.029261291,-0.026450163,-0.0034883546,0.01740344,0.001301744,0.009462003,-0.010439509,0.018067889,-0.029107956,-0.0034052986,-0.0025859186,-0.011972851,0.0013488624,0.0030123796,0.009117,-0.011768405,-0.04262693,0.007379212,-0.00281592,-0.011998407,-0.010407563,0.008120327,-0.012062296,0.028162394,0.0151673155,0.0061717043,-0.030641299,-0.010873956,0.015295094,-0.016815659,0.00673393,0.22652583,-0.024265148,-0.0031353664,0.05042142,0.021569021,0.0058842027,0.01525676,-0.00020923739,-0.0066061513,0.025249043,0.007794492,-0.0045329444,-0.01751844,-0.009845338,-0.010912289,-0.005286838,-0.016470656,-0.004219887,-0.019396786,-0.016777325,0.0076794913,-0.01537176,0.005973648,0.0037311339,0.02038068,-0.0234857,-0.017032882,-0.018821782,0.012682022,0.006360178,-0.027727947,-0.016853992,0.019154007,-0.021837356,-0.017582329,0.0071619884,0.0034436323,0.018489558,0.03480688,0.01525676,0.008529219,-0.005858647,-0.0006396914,-0.033810206,0.0075708795,0.004040997,-0.0006360976,-0.011091179,-0.024354594,0.017480107,-0.011691738,-0.020201791,0.023255698,0.021019572,-0.009768671,0.010995345,0.00667643,0.002788767,-0.008631442,0.007941438,-0.0026977248,0.013774529,-0.014566756,0.027012387,-0.01888567,0.0016499406,-0.0012418479,-0.02342181,0.022144025,-0.021428464,0.0041464143,-0.03439799,-0.015448428,-0.004302943,-0.015013981,-0.03404021,0.008918944,0.012841745,0.038512457,0.021172907,0.020329569,-0.009404502,0.006187677,-0.023204586,-0.005136698,-0.03278798,0.017595109,-0.0023255697,0.012471188,-0.020725682,-0.021300687,0.0040186355,-0.012228408,-0.002410223,-0.004852391,-0.01824678,-0.009161723,-0.0020891794,-0.017837888,-0.0050280862,0.016879547,0.033529095,0.03749023,-0.0022872363,-0.015295094,-0.0042709983,0.005484895,0.0063186497,0.003160922,-0.04433916,0.016853992,-0.018285112,0.009340613,-0.006264344,-0.009014778,0.01036923,0.016981771,-0.038946904,0.0051590595,-0.014937313,-0.035956886,-0.0154612055,0.004941836,0.0011172638,0.010829233,-0.00015722752,0.0124903545,0.02301292,-0.024341816,-0.022910696,0.023447366,0.018566225,0.007276989,-0.022565695,0.0073217116,-0.0010286174,0.025197932,0.009583392,-0.008784776,0.022335691,-0.01400453,0.026002936,0.024035146,0.011832295,0.0141450865,-0.030590188,0.006906431,0.0036608558,-0.004235859,0.011020901,-0.0031481443,0.009097833,-0.007615602,0.022859585,0.036698002,0.012624522,-0.010337286,-0.037362453,-0.019090116,-0.010235063,-0.013876752,-0.0033765484,0.011710905,-0.019460674,-0.029389068,-0.0031513388,-0.16140987,0.024060702,0.03503688,-0.009743115,-0.017556773,-0.028187951,0.021671243,-0.019652342,-0.015090648,-0.014490088,0.02652683,0.0141450865,-0.011883406,-0.03557355,0.00050871837,-0.03294131,0.0017154271,-0.00016092112,0.030539075,0.012841745,0.037464675,-0.017250106,-0.00093517936,-0.01561454,0.004459472,-0.0046766954,-0.020815127,0.030027961,-0.016892325,-0.0030794633,-0.009257557,-0.014208976,0.031867974,0.01824678,0.00005774992,0.0059608696,0.009212834,-0.022361249,-0.0066636517,-0.0016611213,0.019703453,0.010822844,0.008656997,0.009877283,-0.0032998812,-0.0012402507,0.018374557,0.00870172,-0.0047054454,-0.00953228,0.002210569,-0.032915756,-0.00041687756,0.0010797288,-0.0064879563,-0.006264344,-0.011838684,0.01561454,-0.0004643952,-0.0071428213,0.0100050615,-0.0004300547,-0.018604558,-0.0008217759,-0.009378946,-0.015997875,-0.004427527,0.0011020901,-0.018080667,0.003235992,-0.010739788,-0.00077705336,0.0045808614,-0.013250637,0.011340347,-0.00072594197,-0.037618008,-0.00050632254,-0.0018352196,0.000519899,-0.0040729414,0.03588022,-0.013276192,0.014438977,0.021262351,0.02592627,-0.004552111,0.007251433,0.0054497556,0.010752566,0.028954621,-0.010286174,-0.0057819798,-0.018323446,0.0035490496,0.019805677,-0.012918413,-0.0015996279,0.007615602,-0.007903104,0.0067594857,-0.0026258493,-0.027191278,0.02145402,0.0063633723,0.0101520065,-0.015908431,0.032557976,0.052491434,-0.010235063,-0.019703453,0.023319587,0.015090648,0.011436181,0.028264618,0.010778122,0.0062962887,-0.021415686,-0.0020077205,-0.025185155,0.03695356,-0.0119536845,-0.0019773731,-0.010733399,-0.017978443,-0.0015117801,-0.096089475,-0.035496883,0.020879017,-0.0027200861,-0.015039536,0.01966512,0.006842542,0.02026568,0.011155068,0.0004947426,0.0039579407,-0.015090648,0.00093438075,-0.0011204582,0.028954621,0.006273927,-0.019524563,-0.0011811531,-0.014247309,0.014579534,-0.018234,-0.004852391,-0.0016004265,-0.029951295,-0.020585125,-0.015933987,-0.0076603247,0.018860115,0.021057907,-0.00073153223,-0.014796757,0.017135104,0.00074151496,-0.035420217,-0.016790103,0.010388397,-0.015128981,-0.017020104,0.01782511,-0.036800224,0.01662399,0.003235992,0.015180093,-0.0025092515,-0.020304013,0.0018272334,0.0051111425,0.013633972,-0.0040026633,-0.02872462,0.00043205125,0.00041687756,-0.016956216,0.00581073,0.008414218,-0.012305075,0.017837888,0.03419354,-0.016253432,-0.016853992,-0.028392397,-0.0035298828,-0.0398158,0.013455083,-0.0039259964,-0.0029149484,-0.018936783,-0.010318119,-0.0108484,-0.004798085,-0.016406767,0.031663526,-0.015742319,0.01668788,-0.010886733,0.0032040474,-0.013250637,-0.037311338,0.027676836,-0.010893122,-0.015422872,-0.00912339,0.007820047,-0.020099567,0.020840684,-0.01597232,-0.012234797,0.015806207,-0.014592311,-0.011455348,-0.0013480638,0.0004695862,-0.018195666,-0.015627317,0.001659524,0.026910165,-0.020482903,0.0030491159,0.0024613345,0.0006908028,-0.017275661,-0.022936251,-0.067773744,0.0069511537,0.014272865,0.008088383,-0.0199079,-0.009513114,0.006401706,-0.034014653,-0.0048300293,0.004673501,0.00025635574,-0.0035330772,0.0011532014,0.0065869847,0.0020077205,-0.029363513,0.021594577,0.008912555,0.013595639,-0.0063633723,-0.006494345,-0.017569551,-0.0022840418,0.004465861,-0.0060503148,0.003772662,-0.006401706,0.004082525,0.003676828,-0.013186747,0.0024565428,-0.006567818,-0.0013648347,0.03168908,0.011908961,-0.027702391,0.005762813,0.0027376555,-0.015563428,-0.012547854,0.0026338357,-0.04428805,0.011717294,0.008637831,0.001081326,-0.0036001608,-0.0075964355,0.009858116,-0.009564226,0.012253964,0.02377959,0.013723417,0.010407563,-0.01233702,-0.0074367123,-0.0019789704,0.0010645551,0.003737523,0.013812862,-0.027395723,0.023677368,0.008113938,-0.009117,0.011755628,0.023562366,0.01204313,-0.0032391865,-0.008695331,0.010554509,-0.021607354,-0.0016691075,0.0010445897,0.012420076,0.018796226,-0.0027105026,0.018106222,0.0040282193,0.005200587,-0.011103957,-0.0042646094,0.02366459,-0.000011661042,-0.022680694,0.042039145,0.017135104,0.035599105,-0.013148414,0.02610516,0.0005051246,0.0071364325,-0.04398138,0.0006540665,0.01854067,0.010465064,0.020125123,0.012848134,0.009021167,0.0045329444,0.0075964355,0.019051783,0.008970055,0.0031689082,-0.007915881,-0.0057085073,-0.014017308,0.017147882,-0.02974685,-0.022246247,-0.008420607,0.014400643,0.029312402,0.009353391,-0.018936783,0.040352467,-0.016930658,0.0005382672,0.00714921,-0.004207109,-0.015013981,0.025836825,0.016278988,0.0067019854,0.029772405,-0.027702391,0.028571285,0.02062346,-0.009704782,0.010113673,0.022080135,-0.0011324375,0.007513379,-0.004184748,-0.002127513,-0.013633972,0.0037119673,-0.018489558,-0.037745785,0.017122326,0.008267273,0.075900465,0.014323977,-0.01782511,-0.006146149,-0.012298686,0.016087322,0.020546792,0.017416218,0.0046862788,-0.015703985,-0.035215773,0.0015996279,-0.009366169,-0.01924345,-0.024546262,0.01549954,-0.001776122,0.031075746,-0.013927863,-0.018860115,0.032225754,-0.014490088,0.034474656,0.013327303,0.010707843,0.01787622,0.030539075,-0.011103957,-0.04196248,-0.032046862,-0.005577534,0.0012881676,-0.033989098,-0.004159192,-0.0042166924,-0.023856258,-0.007915881,-0.0022552917,0.0040729414,0.036979116,-0.0053794775,-0.0013999739,-0.042039145,0.0069958763,0.008982833,0.0052676713,-0.035777997,0.007558102,-0.03337576]},{\"id\":\"f88ce62a-7901-451d-a960-06ccbd3f2ec3\",\"text\":\"Why do stores temporarily disable bounties . I have a skinny mix vid I need to post \",\"vector\":[-0.028390434,-0.0053609223,-0.008883413,-0.013261967,-0.007830876,0.010511337,-0.017289676,-0.0170511,-0.006364341,-0.05243038,0.017261608,-0.0014419758,-0.01782296,-0.006560814,0.013556677,0.00691166,0.010728861,-0.010567472,0.01079903,-0.022594463,-0.011837534,0.011711229,-0.018608855,-0.0059012244,0.007255489,-0.014237318,0.03564592,-0.016728323,0.0000700595,-0.010679742,0.019563155,-0.009472834,-0.031800654,-0.0078378925,-0.018131705,-0.007178303,0.0014761832,-0.020335017,0.010553438,-0.018580787,0.001113935,-0.0014472385,-0.016784457,-0.020924436,-0.010623608,0.025401227,-0.014468876,-0.004655722,-0.0005788954,-0.0143285375,0.008623787,0.0045048585,-0.042354092,-0.014349588,0.021991007,-0.0007288819,0.013612812,0.020587625,0.0030681456,-0.016377477,-0.0064099506,0.009493885,-0.010406083,-0.008995683,-0.0076133516,-0.016124867,-0.008693956,0.012019973,0.00061704987,-0.007174794,0.012216447,-0.0081887385,0.018959701,-0.008385212,0.031660315,0.010665709,0.014889891,0.013851387,0.007241455,-0.0072905733,0.028250095,-0.0057959706,-0.0021840143,0.043111917,0.033709254,-0.0005753869,0.0136268465,0.01484779,0.008223823,-0.004725891,0.0031242808,0.02046132,0.025471397,0.016489748,-0.014595181,0.020363083,-0.020587625,0.040613897,-0.02287514,-0.00795718,-0.0060029696,0.016223105,-0.024460962,-0.0142162675,-0.00938863,-0.011970854,-0.015058297,-0.0025699446,0.0071993535,0.02580821,0.0057714116,0.002764664,-0.0028664093,-0.026874779,0.010006119,0.027758911,0.008581686,-0.011858584,-0.0020717438,-0.014525011,0.032474276,0.00091132167,-0.0016016106,-0.0053328546,0.031772584,0.00023133887,-0.007006388,-0.0076975543,-0.0016323095,-0.02046132,0.028853549,0.0130374255,-0.012630445,0.0059994613,-0.011037605,0.0006920431,0.0013937345,0.00011468268,0.00014275034,-0.005245143,0.015816124,0.036347613,-0.022173448,-0.0029207903,-0.005736327,0.017317744,-0.028151859,-0.029386835,-0.0064134593,-0.0049785003,-0.018608855,0.00775369,0.00966229,0.0028699178,-0.009058836,0.00033483835,0.0088904295,-0.013584745,-0.0094588,-0.029723646,0.012560275,0.012307666,-0.011746313,-0.0024173267,0.014033827,0.02185067,0.013872438,-0.028853549,-0.013030409,0.01580209,0.024432894,0.014012776,-0.021976974,0.031435773,-0.028713211,0.026958983,0.0059994613,0.012237498,0.003078671,-0.0017551056,-0.026257291,0.004048759,0.029274564,0.022692699,-0.011465637,-0.0030927048,0.03359698,-0.02771681,-0.0023313696,-0.016405545,-0.018468518,-0.010300829,-0.0068835923,-0.00014560096,-0.64488244,-0.00677483,0.028151859,-0.0034067116,-0.010279778,0.02507845,0.0040347255,0.0180054,-0.0057258015,0.026874779,-0.0016209071,0.021106876,-0.00431891,-0.023562796,-0.01314268,-0.014272403,0.029190361,-0.025541566,0.006136291,-0.01079903,-0.02148579,0.011191977,0.0021208622,0.040726166,0.02573804,-0.001682305,-0.0034207455,0.010665709,0.0019664902,0.019128107,-0.012384852,0.040277086,-0.013851387,0.020012237,0.065397635,0.0031084928,-0.003954031,0.01664412,0.006473103,-0.0015884539,-0.044711776,0.0040943692,0.0056556324,-0.0077466727,0.0051258556,-0.0019524562,0.018342212,0.0120480405,0.017093202,-0.025780141,0.01803347,0.011746313,0.002243658,0.0047890437,0.00043219802,0.011360384,0.025106518,-0.0054872264,-0.0029751714,0.005680192,-0.010392049,0.002873426,-0.038845636,-0.009564053,-0.037919402,0.0017910672,-0.008974632,-0.011725263,0.0198719,0.00925531,-0.000064193795,0.0055644126,-0.025724005,0.007964197,0.014195217,0.036768626,-0.012679563,-0.010700793,-0.0011235833,0.011388451,-0.013795252,0.0034926687,-0.02709932,0.0024173267,0.02027888,0.0255556,-0.008090502,-0.014258369,0.020727962,0.001896321,0.007872977,0.02123318,0.019675426,-0.017907163,-0.002726071,0.018342212,-0.010827098,0.008686939,0.018693058,0.00037452776,-0.03542138,-0.0071642688,-0.014496944,-0.008988666,0.033681184,0.0077677234,-0.004192606,-0.0019384224,0.020994605,-0.05257072,0.01561965,0.0056170393,0.0040242,0.012062075,-0.0160968,-0.0378352,0.04058583,-0.021527892,0.0030839336,-0.002312073,0.015886292,0.0020384134,0.027183523,0.0006034546,-0.0014235564,0.035140704,0.0012507648,0.0010762191,-0.010434151,-0.0006898503,0.006659051,-0.010027169,0.039575394,0.010693776,0.0029734173,-0.005283736,0.025653837,0.002341895,-0.0075993175,-0.04154013,0.0005131118,-0.028853549,0.006195935,-0.009437749,-0.016812526,-0.0036277445,0.00022826897,-0.01543721,0.006052088,0.018580787,-0.007423895,0.003355839,-0.00700288,0.0017472116,0.020629726,-0.017373879,-0.01307251,-0.03101476,0.001520916,0.0067467624,-0.016854627,0.012258548,-0.013956642,-0.004953941,-0.010784997,-0.013374237,-0.0010665709,-0.0090027,-0.014440808,-0.009318462,0.008062433,-0.021064775,-0.0104692355,0.00074993266,-0.014082946,0.019661393,0.008209789,-0.0075010806,-0.0018875498,0.012840952,-0.0020401676,-0.010034187,-0.023731202,0.008595719,0.0028821973,0.021612095,-0.013128646,0.027155455,-0.021219147,0.00966229,0.031660315,-0.010770963,0.0047785183,0.034775823,-0.000691166,-0.004490825,0.017359845,0.029583309,-0.021976974,0.02046132,-0.0019629817,0.0036698459,0.027281761,-0.013711049,0.013044443,-0.047462404,-0.007346709,-0.010714827,0.027015118,0.0032663734,0.006427493,-0.02382944,0.018580787,-0.015872259,0.010518353,0.038480755,-0.017836995,0.0046206377,-0.020264847,0.016068732,-0.011907702,-0.038761433,0.008988666,-0.00843433,-0.007585284,0.005753869,0.017696656,0.03017273,0.012497123,-0.022678666,-0.019296512,0.013697015,0.0075431825,0.0048276368,0.0068625417,-0.027815046,0.021078808,-0.005083754,0.025724005,0.0057679033,0.0021927855,0.021513857,-0.001113058,0.0086518545,0.03735805,0.020812167,0.025106518,-0.00014044791,-0.01361983,-0.000080913785,-0.0052802274,0.003147086,-0.024811806,0.025064416,0.0049574496,-0.041119114,-0.0025594193,-0.0014568868,0.010665709,0.026397629,0.0016472205,0.0038452686,0.0011244604,-0.0113674,0.002764664,-0.00795718,0.0031926958,0.0054661757,0.014539045,-0.029330699,-0.0032347972,-0.021429654,0.010588523,-0.010848149,0.024671469,0.013311085,0.017444048,0.0054942435,0.03182872,0.032951426,-0.016672187,-0.03208133,0.011662111,0.019787697,-0.01191472,-0.0057398356,-0.008946565,0.02302951,-0.018047502,0.021359485,0.004624146,0.008244874,-0.010062254,-0.0028050113,-0.02214538,0.0030277984,0.04967975,-0.030621812,0.023618931,-0.0021541924,0.017163372,0.014974094,0.0010183296,0.008679923,0.014567113,-0.003824218,-0.007318641,-0.02405398,-0.005736327,-0.0143285375,0.0027927316,-0.015633684,0.008511516,0.001758614,0.009297411,0.00022070386,-0.0008174704,-0.011135842,0.013472474,0.008595719,-0.011500722,0.010588523,-0.02739403,-0.001290235,0.09823679,0.022706732,-0.003503194,0.015198635,-0.023717169,0.010651675,-0.0038487772,-0.016447647,0.015549481,0.0051539233,0.017387912,-0.017570352,-0.0138654215,0.0020945487,0.015858226,-0.031744517,0.013500542,-0.007915079,-0.008672905,-0.014721485,0.0015375812,0.015591582,0.0043118936,0.029611375,-0.005859123,0.01653185,0.0054416168,0.0027067745,-0.0072274213,-0.00032080454,-0.029162293,-0.019703494,-0.0018296603,0.023268085,-0.0008898324,0.00058240385,0.008827277,0.013711049,0.0050872625,0.015816124,0.0105815055,-0.00092360127,0.019268446,0.004999551,0.023955744,-0.010742895,0.010328897,0.011612992,-0.0189176,0.003126035,0.037919402,0.00075387966,0.008104536,-0.022117311,0.004715366,0.019745596,0.006266104,-0.00091658434,-0.011725263,-0.039070174,-0.017472114,-0.032362007,0.005413549,0.009360563,0.0004631163,-0.036965102,-0.030341135,-0.013928574,-0.013956642,0.00084904657,-0.01782296,-0.013500542,-0.038677227,-0.02262253,-0.0005021479,0.015493345,0.023071613,-0.0041996227,0.017009,-0.017724724,-0.00766247,-0.016770424,-0.006013495,-0.029471038,-0.021064775,-0.0062766294,0.0062625953,0.0060485797,-0.021878736,-0.004353995,0.004992534,0.02027888,0.03550558,-0.0036733544,0.0064485436,-0.0005398638,0.015605616,0.02853077,0.00572931,-0.010925335,0.00010415731,0.0077045714,-0.01752825,-0.00704849,-0.011121809,-0.004662739,0.010062254,0.027225625,0.0012367311,-0.011900686,0.019577188,-0.0075080977,0.015998563,0.012925155,0.021878736,0.029723646,0.0136268465,0.01968946,0.0021401588,0.0013761922,-0.024867943,-0.02375927,0.026257291,-0.0007196722,-0.03805974,-0.006904643,0.006536255,-0.05181289,-0.018019434,0.0033154918,-0.017738758,0.011388451,-0.0108200805,-0.029134225,-0.04580641,-0.006466086,0.02192084,0.03064988,-0.0018472025,-0.011648077,0.007311624,0.007104625,-0.0062240027,-0.031211233,0.009143039,-0.031211233,-0.013837354,0.0034312708,-0.016363442,0.031407706,0.010370999,-0.021906804,-0.008855345,-0.026467798,0.0032681276,-0.029358767,-0.0011998923,0.0015033737,0.02753437,0.01994207,0.020026272,-0.005311804,0.0146793835,-0.004732908,0.010146458,-0.013935591,0.00087667565,-0.004967975,-0.0349723,0.009697375,0.025990648,0.010988487,0.008167688,-0.0038908788,-0.0017901901,0.023815405,-0.016545882,-0.010244694,-0.0062731206,-0.036459886,-0.0045188926,-0.0035312618,0.00018967595,0.009571071,-0.026229223,-0.027758911,0.0006433633,0.017079169,0.012251532,-0.0007003757,0.015353007,0.006322239,0.007872977,0.00066529115,-0.0014612722,0.005101296,-0.02144369,0.005473193,0.0072765397,0.0084764315,-0.0007126553,0.013135662,-0.0021208622,-0.017570352,-0.019478953,0.038340416,-0.00493289,-0.02089637,-0.0077466727,-0.01591436,-0.025864344,-0.009465816,-0.015998563,-0.023113715,0.0012472564,0.0059678853,-0.02218748,0.006880084,0.0053574136,-0.027857147,-0.0104131,-0.0065187127,0.01825801,0.0054661757,0.022369921,0.04081037,0.011893669,-0.026523935,0.0142162675,0.010511337,-0.017668588,-0.008308026,0.021050742,-0.014510978,-0.007865961,0.00520655,0.00078721,-0.042550564,-0.03988414,0.027801013,-0.013198814,0.0065397634,-0.009746493,-0.022285718,-0.024811806,0.006083664,-0.021612095,0.031856786,-0.017949264,-0.009921916,0.005950343,0.006427493,0.00713971,0.014195217,0.034523215,0.0045329263,-0.014875857,0.0049574496,-0.022706732,-0.007830876,-0.005311804,0.022271683,-0.008974632,0.013044443,0.019703494,0.014237318,-0.004824128,-0.015226703,-0.015002161,0.02218748,-0.03502843,0.008118569,-0.0152688045,-0.00936758,0.0208262,0.008069451,-0.007929113,-0.026748475,0.02416625,-0.0034646012,0.023464559,0.015788056,-0.012384852,0.007220404,-0.011879635,-0.01220943,-0.017401947,-0.003792642,0.038564958,-0.03612307,-0.011213028,-0.010356965,-0.0045083673,-0.004424164,-0.0057573775,0.044346895,0.023801371,0.025134586,-0.038621094,-0.008293992,-0.006757288,0.018286077,-0.028502703,0.0041013863,-0.017682623,-0.024292555,0.015535447,0.0064695943,-0.018173806,-0.03112703,0.003110247,0.008209789,0.00089334085,0.0080484,0.01734581,0.0017936985,0.024025913,-0.01616697,-0.03446708,0.01361983,0.008216806,0.007118659,0.023745237,-0.010216626,0.002480479,-0.021696297,0.04184887,0.008511516,0.005452142,-0.0109955035,-0.014581147,0.017514216,0.008841312,-0.025695939,-0.00068721897,-0.0047785183,-0.010356965,0.020770065,-0.008932531,-0.020882335,0.00029602606,0.009613172,0.012076109,0.02159806,-0.013009358,-0.0014349589,-0.012419937,-0.027506301,-0.021752432,-0.027660673,-0.034326743,0.020110475,0.012363802,-0.01759842,-0.0092412755,0.015956461,-0.0054310914,-0.019857867,0.006090681,0.006529238,0.0013989971,-0.0146793835,-0.008792193,0.046732645,0.0020682353,0.00652573,0.0078378925,-0.012714648,-0.012153295,-0.012139261,-0.006771322,-0.00038900017,-0.019619292,-0.0065502888,0.0054486333,0.018749194,0.023113715,0.024629368,-0.019142142,0.021036707,-0.014609214,0.016742356,0.033456646,-0.015282838,0.018089604,-0.036038868,-0.022313785,-0.0023313696,0.013339153,0.0012849723,-0.010946386,-0.015830157,-0.014363622,0.013395288,-0.0031962043,-0.0028207994,-0.025415262,-0.014974094,0.038873702,0.020840233,-0.0016059962,0.00023660155,0.02585031,-0.038256213,-0.029583309,0.018103637,-0.017444048,-0.000013225238,0.0064310012,-0.009823679,0.008862362,0.015170568,0.011311265,-0.010714827,-0.0000013002533,-0.0033049663,-0.026453765,-0.0015603862,0.022650598,-0.00037869407,0.016994964,-0.012932172,-0.00005465518,-0.042915445,0.015689818,-0.0017077414,-0.031070894,-0.013949624,-0.0001998724,-0.005581955,0.0180054,-0.052009363,0.000030781226,-0.0087781595,-0.009472834,0.015184601,0.22038722,-0.012181362,-0.031912923,0.042354092,0.01325495,0.004185589,-0.0066625597,-0.00031005987,-0.0069607785,-0.0012718156,0.016265206,0.003747032,-0.01157089,-0.013381255,0.011318282,-0.013640881,-0.012735698,0.0059643765,-0.024068015,-0.024545165,0.011297232,0.017430013,0.0011420028,-0.0039575393,0.02969558,-0.006939728,0.00258047,0.0043890798,-0.000026820508,-0.0008740443,-0.008946565,-0.017135303,0.019380717,-0.02159806,0.0036487952,0.006736237,-0.012272582,0.005174974,0.01998417,0.03149191,0.0131637305,0.0003854917,0.01402681,-0.00054337224,-0.003064637,-0.009893849,-0.019296512,-0.00033483835,-0.018889531,-0.012876037,-0.03163225,-0.015310906,0.01202699,0.017093202,-0.0008301886,-0.010265745,0.008574668,0.014384673,-0.014426774,0.0031277894,0.0025997665,0.021976974,-0.0041434877,0.023590865,-0.035561718,0.02739403,0.011430552,-0.0008494851,0.029274564,-0.00652573,0.03163225,0.00031861174,0.0027699268,0.01789313,-0.0049153483,-0.009949984,-0.000301508,0.01409698,0.028629009,0.0038417603,-0.0022927765,-0.019843832,0.0036908966,-0.006918677,-0.0022541836,-0.025906445,0.023534728,-0.016447647,-0.009851747,-0.0077396557,-0.012251532,0.0005705628,-0.029050022,-0.023015477,-0.0070590153,-0.0022068194,0.016209072,0.019338613,-0.0072625056,-0.018608855,-0.006087173,0.022776902,-0.009395648,-0.004690807,-0.018721126,-0.011121809,0.0017717708,0.0026278342,0.00652573,0.0022489207,0.012483089,-0.04246636,0.013711049,0.005367939,-0.011121809,0.007213387,0.026706373,-0.0140899625,-0.0023155815,-0.005090771,0.003387415,-0.01734581,0.007111642,-0.011556857,0.010111373,-0.00026357282,0.015577548,0.0010692022,-0.013332136,-0.053132072,0.016040664,0.029499106,0.0035926597,-0.022580428,-0.009171106,0.00516094,0.026173089,-0.016686222,0.0050521777,0.013507559,-0.02262253,0.015030229,0.033821523,-0.010637641,0.036319546,-0.026678305,0.0062731206,-0.033204034,0.0027664183,0.024278522,-0.0052661938,-0.0160547,-0.010041203,-0.00012433094,0.023380356,0.013219865,-0.0028892143,-0.030313067,-0.01825801,-0.0010165754,-0.021345451,-0.0074379286,0.011507738,0.0073396917,-0.028825482,-0.014202233,-0.18210295,0.0255556,0.00055784464,-0.016770424,0.020236779,-0.010672726,0.0170511,0.011009538,-0.036235344,0.0071853194,0.002110337,-0.006602916,-0.010869199,-0.02944297,-0.017921198,-0.01946492,-0.030593744,-0.012216447,0.002719054,0.009044802,0.04212955,0.0035154738,0.026229223,-0.016110834,-0.015633684,-0.016700255,-0.013023392,0.021345451,-0.010539404,-0.011149876,-0.007655453,-0.013177764,0.021513857,0.012279599,0.019352648,0.0070519983,0.0016095046,0.005336363,0.0041013863,0.025864344,0.020601658,0.023422457,-0.009613172,0.015184601,0.0062836464,0.016265206,0.0044031134,0.005511786,0.011479671,-0.01902987,0.010777979,-0.03359698,0.02819396,0.0284185,0.0006451175,-0.007725622,-0.009030768,0.00529777,-0.032979496,-0.02064376,-0.0018436941,-0.0066625597,-0.0018612364,-0.02335229,-0.0349723,-0.0055573955,-0.028769346,-0.003210238,-0.0038908788,-0.012370819,-0.006897626,0.0053223292,0.019015836,0.021976974,0.0060170037,0.036459886,-0.025317024,0.014988128,-0.014637282,0.00090956746,0.011500722,0.022047143,-0.043982014,0.014335555,-0.0017559826,0.008441348,0.031463843,-0.01345844,-0.0006381006,-0.020026272,-0.012279599,-0.0032400598,-0.01580209,-0.009374597,0.0020559558,0.021612095,0.019928034,0.014735519,0.019366682,-0.008644838,0.003655812,-0.001627924,-0.027843114,0.053889897,0.016672187,0.0033347881,-0.0039575393,0.030930556,0.015072331,-0.0044101304,0.007318641,0.015367041,-0.0019787697,0.008441348,0.00813962,0.0053924983,0.0064450353,-0.012651496,0.03421447,-0.009613172,0.039631527,-0.000756511,-0.02207521,0.012918138,-0.01818784,-0.016419578,-0.10733071,-0.030284999,0.00047802724,-0.01925441,-0.006473103,0.0416524,0.0067923726,0.026523935,-0.0029856968,0.034186404,-0.0033540847,-0.02405398,-0.0007885257,0.0023629456,0.010974453,-0.0020664812,0.009079887,0.0026120462,0.0045399433,0.024348691,-0.016742356,-0.0049434155,-0.011542823,-0.020559557,-0.0057082595,-0.010399066,-0.01089025,0.013205832,0.0019349139,0.0058170212,-0.008988666,-0.009627205,0.0004753959,-0.02321195,-0.01855272,-0.0051784823,-0.015928393,-0.030088525,-0.00918514,-0.021682264,0.015423177,-0.013149696,0.0077747405,-0.0012919892,-0.012925155,-0.006908152,-0.01211821,0.0076835207,0.014567113,-0.00993595,0.000056354587,-0.008223823,-0.010069272,-0.028446568,0.01286902,-0.0012551504,0.0120480405,0.016587984,-0.01496006,0.004939907,-0.005887191,0.0012419937,0.0036593205,0.020124508,-0.017373879,-0.013879456,-0.01866499,-0.02471357,0.00634329,-0.01059554,-0.016826559,0.032754954,-0.015647717,0.011423536,-0.03208133,-0.017219506,-0.008946565,-0.019422818,0.012146277,-0.0047750096,-0.017331777,-0.01532494,-0.010427134,-0.02335229,0.029414902,-0.009641239,-0.012840952,0.044206556,-0.007423895,-0.042073414,0.006192426,-0.017935231,0.0040206914,0.0029365784,-0.037273847,0.009627205,-0.014931993,-0.00054249517,0.014251351,0.012840952,0.007213387,-0.0031856787,-0.054900333,0.02027888,-0.004055776,0.0064941538,0.0019542105,0.015423177,-0.011423536,-0.025695939,-0.013318102,-0.0066239666,-0.0031155096,0.011949804,-0.022131346,-0.007823858,-0.00657134,-0.024797773,0.008623787,-0.02867111,0.021766467,0.01164106,-0.01782296,-0.0045574857,-0.0034260082,0.012918138,0.020475354,0.022117311,-0.0077115884,0.02867111,0.0025471398,-0.022089245,0.0041013863,-0.028993888,0.02123318,0.018721126,-0.008097518,-0.02218748,0.011725263,0.014889891,0.004045251,-0.014384673,-0.0028857058,-0.034158338,-0.008034366,-0.020854268,-0.02196294,-0.023324221,-0.009044802,0.016110834,0.0246013,-0.02196294,0.03003239,0.043953948,-0.008722024,-0.01675639,-0.01973156,-0.017977333,-0.002641868,0.012034007,0.0024559197,-0.035224907,0.002450657,0.0047820266,0.042634767,-0.0179633,0.03359698,0.008848328,-0.017612454,0.015170568,0.0217805,-0.013668948,0.003708439,0.0076344023,-0.007157252,-0.03230587,0.0077466727,0.029976256,0.014398707,-0.00075738813,-0.011563874,0.016349409,-0.014426774,0.0035768717,-0.0042031314,0.027155455,0.038873702,0.022608496,0.013297051,0.017612454,-0.007150235,0.0008578177,-0.05529328,0.011016554,-0.005852106,0.016405545,0.0055994974,0.007557216,-0.007725622,-0.009332495,-0.0045083673,0.007416878,0.02302951,-0.003947014,-0.0029664002,0.0032470769,0.0084764315,0.046451967,-0.0029085106,-0.01837028,0.0098306965,0.010378015,0.01752825,0.00069511303,0.0054170573,0.0122234635,-0.023450525,0.021626128,0.008406263,-0.028039588,-0.01994207,0.018047502,0.020489387,0.0028471127,0.013977692,-0.03208133,0.03446708,-0.0015033737,-0.014118031,-0.019114073,0.016924797,0.0035593295,0.015745955,-0.017163372,-0.00062318967,-0.008132603,0.0047399253,0.0041645383,-0.022355888,0.041455925,-0.0069537614,0.08066644,0.024587266,-0.0017121269,-0.013332136,-0.019591223,0.019633325,0.013774201,0.0016963389,-0.013023392,0.022678666,-0.004736417,-0.0058029876,0.02548543,-0.008518533,-0.020952504,0.006873067,-0.015030229,0.015647717,-0.006536255,-0.017626487,0.0015954707,-0.00993595,0.024474995,-0.010770963,-0.020110475,-0.006764305,-0.009318462,-0.0005859123,-0.027688742,-0.029021956,0.01157089,0.02089637,0.0011507738,-0.013297051,0.010658692,-0.0019664902,0.0014840773,0.039238583,-0.009837713,0.0139145395,0.0070379646,-0.007487047,-0.032418143,-0.017542284,-0.00016950232,0.0015288101,-0.030621812,-0.0022296244,-0.021289317]},{\"id\":\"92067ac1-0062-484a-ae81-bc3210e8ddf0\",\"text\":\"Haven't had time to post about early bird but I luv it its amazing up running all day🥰🥰🥰\",\"vector\":[-0.019811876,0.00023031306,-0.002527665,-0.018147679,-0.01211166,0.005269959,-0.0011812832,-0.03246506,-0.009106859,-0.0018342495,-0.003965677,0.019560926,-0.021027004,-0.026468666,-0.01661556,0.010071037,0.023774251,0.0018870812,-0.0051675974,-0.0006447115,-0.016945757,-0.01249469,-0.022440251,-0.012058828,0.016087243,0.010533314,-0.0016509896,-0.01706463,-0.0010426,-0.0020901528,0.020908132,0.0027885216,-0.034287754,-0.013617363,-0.02410445,-0.008347403,0.006759152,0.01414568,0.011959769,0.00093363464,0.018094847,0.012567333,0.00018253755,0.0071256715,-0.024368607,0.021528905,0.037457652,-0.0022486479,-0.0076341764,0.014792867,-0.022427043,-0.0047152266,-0.019745836,-0.002382378,0.011193709,-0.000019798978,0.0034571723,-0.0071190675,0.019864708,0.004923251,0.011900334,0.011814482,-0.014845699,0.004338801,0.028740428,-0.009146483,-0.018028807,-0.015321184,0.017738232,0.008294572,0.0038798256,-0.0153476,-0.009483284,-0.010678601,-0.0021495884,-0.017540114,-0.020274153,0.010738037,0.009701216,0.003675103,0.04134078,-0.010454066,0.006366216,0.010850304,0.019415637,0.009304978,0.011398433,0.0193496,-0.0064553698,-0.004005301,-0.0032640065,0.006699716,0.018464668,0.018557124,-0.00078917306,0.004460974,-0.0010913041,0.011523908,-0.017447658,-0.025979973,0.0024583235,0.017738232,-0.009780463,-0.01693255,-0.012131472,-0.00074996206,0.0033102343,-0.0014941456,0.034287754,-0.007931354,-0.0072841663,0.005946865,-0.009820087,-0.022162884,-0.014409837,-0.00052377646,-0.024751637,-0.01793635,-0.0129041355,-0.0011490888,0.013042819,0.01788352,0.028264944,-0.004355311,0.005557231,-0.00068103324,-0.0153476,-0.0014933201,0.009886126,-0.0057025184,-0.010183305,0.024619557,-0.0023526603,-0.011391829,-0.022810074,-0.0065940525,-0.03251789,0.0074162455,0.008723829,-0.007455869,0.029374408,0.03708783,-0.009238938,0.0077002156,-0.0072115227,0.0066006565,0.004451068,0.00929177,0.012573937,-0.024276152,0.019798668,-0.018279757,0.026983775,-0.008393631,-0.009456869,-0.0000018380158,-0.00673934,0.02061756,-0.020247737,0.007495493,0.0016551171,0.00545487,0.019640174,-0.00048869295,-0.0022684599,0.02567619,0.03708783,-0.0005382226,0.012540918,-0.010473878,-0.0055242116,0.030351793,-0.018504292,0.02974423,-0.007469077,0.025636567,0.0005679405,-0.011305978,-0.014409837,-0.031144269,-0.013736234,-0.010487086,0.009945562,0.018794866,-0.02829136,-0.008050226,0.011200313,-0.010500294,0.0118078785,0.008208721,-0.009734235,0.009747443,0.0056728004,-0.0017335392,-0.62045515,-0.0018292966,-0.0054020383,0.0014148981,0.0095097,0.029638566,0.0054086423,-0.017791064,-0.0059699784,-0.015757045,-0.016153283,-0.0050751423,-0.0128711155,0.0077134236,0.03309904,-0.010084244,0.02498938,-0.028581932,-0.04052189,0.004748246,-0.02283649,0.026917735,-0.0053393007,0.016694807,-0.0064982953,0.0053161867,0.02327235,0.011867314,-0.012540918,0.03526514,-0.0139739765,0.031091437,0.012276759,-0.005260053,0.06741321,-0.016813679,-0.013934352,0.03600478,0.0056959144,0.040099237,-0.034472663,-0.0037279346,0.009747443,0.020776054,-0.0070992555,0.009014403,0.022057222,-0.0030526798,0.033653773,-0.0338651,0.03259714,0.0090408195,-0.006554429,-0.010044621,0.0054812855,-0.009602156,0.031593338,-0.008320988,-0.0037609544,0.018081639,0.011147482,0.005567137,-0.0030609348,-0.032121655,-0.022493083,0.0095955515,0.002880977,-0.019428845,0.009787067,-0.022017598,0.022876114,0.0042925733,0.005745444,0.023245934,0.026178092,0.012389027,0.03558213,-0.0013736234,-0.00007713217,0.032306567,-0.023827083,0.007482285,-0.017077837,0.005114766,0.037695397,-0.003516608,-0.017275956,-0.0129107395,0.025213914,-0.017104253,0.009371017,0.013934352,0.018187301,-0.0046062614,-0.009113463,0.013155086,-0.007455869,0.008453067,0.007911542,-0.03978225,0.00020100799,0.0037708604,0.014872115,0.017791064,0.017236331,-0.0064586718,0.0101568885,0.013551323,-0.011880522,-0.016034411,0.018966569,-0.005540721,-0.012422047,0.0032755635,-0.015189105,-0.03291413,0.012752244,-0.013498492,-0.000022120681,-0.0029585734,-0.0037378406,-0.009780463,0.012626769,0.0016790564,0.002876024,0.0042628553,0.0012960269,-0.007178503,-0.0006686508,-0.014515501,0.010255948,0.005425152,0.011048423,-0.023153478,0.0013150133,-0.005468078,0.023932746,0.0016278758,0.021040212,-0.042450245,-0.010024809,0.0066270726,-0.003513306,0.017421244,-0.0139739765,-0.04001999,-0.005415246,-0.0029684794,-0.019455262,-0.0037411426,-0.02415728,-0.013604155,-0.027604546,0.01643065,-0.008010602,-0.012422047,0.0053822263,-0.005652989,-0.025993181,0.0066336766,0.010724829,0.0050091026,-0.012197511,-0.0033911327,0.0024566727,0.009489888,-0.0482089,0.015823085,-0.023179894,-0.029268745,-0.027419636,0.0101304725,0.0007181805,0.007475681,0.00048373998,-0.04007282,-0.020710014,-0.032121655,-0.0025854497,0.0112399375,0.015400431,0.013359808,-0.015558926,0.0042925733,0.022228925,0.014607957,0.0061515877,0.038910523,-0.012857907,0.015941957,0.009139879,-0.0011581692,-0.033151872,0.00697378,-0.014924946,-0.018306173,-0.015479679,0.028581932,0.019177895,0.006224231,0.02567619,-0.0022948757,0.0018623164,-0.009126671,0.015374016,-0.031117853,0.02327235,0.00040077773,0.022123262,-0.019521302,0.00075367675,0.00010824301,-0.0007086873,-0.022862906,-0.0034142467,0.015691007,-0.024461063,0.01172863,-0.036163278,-0.013115462,0.0064685773,0.019560926,-0.0047977758,-0.017117461,0.010038017,0.0150834415,0.008882324,0.007819087,0.0036222714,0.0041803056,-0.023668587,0.02200439,0.014687204,0.0060096025,0.008116265,-0.015796669,0.029797062,-0.017183501,0.020842094,-0.004302479,0.0040944545,0.010903136,0.014026809,-0.0032375907,0.028819675,0.015770253,-0.0101502845,-0.0074294535,-0.034578327,-0.013155086,-0.0064322557,0.008406839,-0.020009995,0.0126796,-0.006214325,-0.019006193,0.0002511568,0.016324986,0.00607234,0.019996786,0.007779463,0.029559318,0.002709274,-0.008882324,-0.012415443,0.004824192,-0.0059996964,-0.04369179,-0.0033944347,0.008070038,0.019164689,-0.01661556,0.0022519499,-0.024421439,0.027551716,-0.017830689,-0.01604762,0.011074838,0.0029239026,0.023668587,-0.0029139968,-0.022810074,0.019257143,0.02143645,0.0015808226,-0.0011887125,0.0050982563,0.010652185,-0.005745444,0.034155674,-0.0018672693,0.0042859693,-0.00158495,-0.00027014318,-0.016972173,-0.018226925,0.040759634,0.00022907481,0.021343995,-0.013775858,-0.0077134236,0.004834098,-0.009106859,-0.035555713,0.0123361945,-0.017843897,-0.0090408195,-0.0328613,0.018623164,0.038725615,0.00638933,-0.018781658,-0.028423438,-0.032412227,0.00031368804,0.021951558,-0.004946365,-0.021608153,0.038910523,0.0061383797,-0.043744624,-0.019243935,-0.014436253,0.021476073,0.11105217,0.022149676,0.014106056,0.02270441,-0.0014784612,0.0006265506,-0.0061086616,-0.0065082014,-0.010368215,0.009311582,0.00037787025,-0.0066303746,-0.003328395,-0.0010071037,0.0061581912,0.0022767147,-0.008611562,-0.015770253,0.013656987,-0.0026399326,0.013458868,0.01176165,-0.005127974,0.03766898,0.046729613,-0.00030398846,-0.0037510486,0.014277759,0.006567637,0.011279562,0.012356007,0.014647581,-0.0079577705,-0.022440251,-0.005940261,-0.0034769843,0.0042529493,-0.0038038802,-0.01414568,-0.02156853,0.0306952,0.026561122,0.020776054,-0.0128975315,-0.0007606935,-0.013115462,0.0061581912,0.033151872,0.0061912113,-0.009212523,0.020828886,0.009886126,-0.009569136,0.0021281256,0.008730433,0.041129455,-0.037827477,-0.010024809,-0.010665393,0.00238568,-0.012857907,-0.036242526,-0.016523104,0.0022866207,-0.021145875,-0.011768254,0.011200313,-0.015968371,0.0032111749,-0.0030923036,-0.0235233,0.0032706105,-0.026032805,0.026468666,0.040099237,0.010863512,0.011913542,0.0056728004,0.02150249,0.03264997,-0.0028974868,-0.008347403,0.008704018,-0.00039107818,-0.0016179698,0.0010417745,0.011979581,-0.00827476,0.020842094,0.0009724329,0.0235233,0.0015824736,0.06450747,-0.016879719,0.0028529102,0.009311582,0.017341996,0.020234529,-0.0031187194,0.012217323,0.039095435,0.014264551,-0.00053657166,0.009569136,-0.0056860084,0.0053128847,-0.004147286,0.014568333,-0.021383619,-0.0021248236,0.017896729,-0.007165295,-0.015545718,0.0007103383,-0.02517429,0.038778447,-0.008670998,0.008809681,0.00019946019,0.0056100627,-0.028423438,-0.0058907312,0.046518285,-0.0032128259,-0.014845699,0.032174487,0.012435254,0.0020472272,0.007805879,0.038831275,0.004342103,0.007898334,-0.004645885,-0.02644225,-0.0079445625,-0.0041869096,-0.0010838747,-0.0029486676,-0.0052138255,-0.009602156,-0.041182287,-0.0018425045,0.004157192,-0.0139607685,0.02092134,-0.024579935,-0.008254948,-0.0020505292,-0.002526014,0.019811876,0.007911542,0.009489888,-0.008538919,-0.0038633158,0.016140075,-0.0064454637,-0.008803077,0.0017896728,0.02150249,0.02022132,0.019957162,-0.02771021,0.00447088,0.015215521,0.0028083334,-0.013934352,-0.021291163,-0.03856712,-0.01673443,0.016509896,-0.00070125784,-0.00023402779,-0.00028851043,0.010216324,-0.020643976,0.013075838,-0.025319578,-0.0048671174,-0.017698608,-0.019059025,-0.0011622967,0.0012415443,0.0026845091,-0.009628572,0.00054812856,-0.021713816,0.0020505292,0.011180502,0.02866118,0.023430845,0.012659789,-0.0013554625,0.025253538,0.013604155,0.0042364392,-0.010678601,0.0013505096,-0.007171899,-0.016694807,0.03132918,0.01686651,0.018821282,0.012395631,0.0012720876,-0.00792475,-0.00034258034,0.0013835293,-0.010368215,-0.00707284,-0.01971942,-0.016892927,-0.03978225,-0.037035,-0.030932942,-0.017421244,-0.014872115,-0.0085058985,0.0079643745,-0.028370606,0.0075351167,-0.018121263,-0.012633373,0.0032838185,-0.0034109447,0.027604546,0.03690292,-0.004457672,-0.020168489,0.014238135,-0.02333839,-0.011332393,0.0038666178,-0.0031649473,-0.00443786,0.0041803056,0.015479679,0.019257143,-0.02757813,-0.04192193,0.024883715,-0.009364413,-0.009688008,-0.018438252,-0.025887517,-0.0061879093,-0.0010929551,0.020643976,0.0018953361,-0.020577936,0.0021644474,-0.038091633,0.016391026,-0.0070992555,0.014647581,-0.010480482,-0.011055027,-0.012943759,-0.0039854893,0.009806879,0.0014355355,-0.019138273,0.014343798,-0.032702804,0.0021958163,0.025702607,-0.01611366,-0.014938154,-0.014858907,-0.001911846,0.0275253,-0.02757813,-0.0512203,-0.010321988,0.022215717,-0.002400539,-0.0064289537,-0.026085638,-0.008453067,0.02048548,-0.0066006565,-0.005144484,-0.00053657166,0.0012985034,0.005246845,-0.01176165,-0.0064355577,-0.014792867,-0.016034411,-0.015255145,-0.045646563,-0.009219126,-0.0353708,-0.006234137,0.01870241,0.01686651,0.0006608086,0.0006537919,0.036163278,0.0020257642,0.023193102,-0.010044621,0.0061680973,-0.005593553,-0.005544023,0.00789173,0.0048935334,-0.0052204295,0.016166491,-0.004467578,-0.022664785,0.02365538,-0.003039472,-0.011286166,-0.014264551,0.03885769,0.005870919,0.009093651,-0.013815481,-0.039967157,0.0043916325,-0.011550324,-0.0023130365,0.022902528,0.007020008,0.01604762,-0.025412032,0.019389223,-0.0017038214,-0.015162689,0.007185107,-0.024883715,0.02415728,-0.016655184,-0.028502686,-0.02815928,-0.030932942,-0.017711816,0.032412227,-0.03811805,-0.0021859102,0.034710407,0.0019993484,-0.0076143644,0.035423633,0.0032392417,-0.0064322557,0.0013183153,-0.010335195,-0.02632338,-0.014119264,-0.022651577,0.020168489,0.03563496,-0.01598158,0.006270459,-0.0090672355,-0.039861493,-0.02372142,-0.0007338649,0.01116069,0.017857105,-0.030193299,-0.000057784637,0.027076231,0.009271958,0.024276152,-0.014304174,-0.000516347,-0.010810681,-0.0011705516,-0.00805683,-0.036163278,-0.043586127,0.011411641,-0.0006554429,-0.001761606,0.027683794,-0.00037394915,-0.019811876,0.0050850483,-0.0069935923,0.000023591094,0.01331358,0.02333839,0.015241937,-0.02288932,-0.0323594,0.011986185,-0.015109858,-0.000960876,0.011200313,0.010995591,0.02123833,-0.002879326,-0.025702607,-0.00957574,-0.012831491,-0.018306173,0.022176092,-0.0077200276,-0.012785264,0.014092848,0.024461063,-0.016311778,0.0064718793,0.010454066,-0.018187301,-0.0128777195,0.01249469,-0.0016072384,-0.016034411,-0.021343995,0.012105056,0.0010780962,-0.024236528,0.007046424,-0.027815875,-0.035978366,-0.0023493583,-0.020960964,-0.022400627,-0.0011581692,0.0077200276,0.046306957,0.032887716,0.0014512199,0.020432647,-0.017619362,-0.018160887,0.021476073,-0.008888928,-0.017091045,0.013207917,0.005547325,-0.00477136,0.0023526603,0.24091241,-0.012468274,-0.00047507227,0.04123512,0.005943563,-0.0068020774,-0.0049001374,0.015704215,0.015915541,0.0038071822,0.004150588,-0.009285166,-0.020908132,-0.0031368805,0.022691201,0.0006203594,-0.012692808,-0.017857105,-0.020472271,-0.012012601,0.016721223,-0.011550324,-0.020459063,0.0033564619,0.014423045,-0.01172863,0.00827476,-0.016272154,0.006395934,-0.0050289147,-0.021251539,-0.026363002,0.0031467862,-0.0073171863,-0.009721027,-0.007865314,0.008215325,0.003962375,0.0051642954,0.018636372,-0.010579541,0.0139607685,0.0040647364,-0.0235233,0.0036321774,0.005147786,0.0061449837,-0.01895336,0.011167294,0.010084244,-0.022625163,-0.001758304,0.017025005,-0.014251343,0.0069935923,-0.032174487,0.010249344,-0.0048638154,-0.018860906,-0.0023510093,0.0090738395,0.0433748,-0.0045864494,-0.018570332,-0.015836293,0.00036053488,-0.0010516804,-0.0060063004,0.028819675,-0.0023311975,0.0112333335,-0.008552127,-0.013267353,-0.0022602049,-0.027789459,-0.02440823,0.027313974,0.02036661,0.031857498,0.014489085,0.00789173,-0.008704018,0.0022040713,-0.045250326,-0.00019636458,-0.022427043,0.025900725,0.022347797,0.008109661,0.010777661,0.0005960073,0.014013601,-0.012283363,-0.018570332,0.011972977,-0.03037821,0.007759651,0.033283953,0.0048605134,0.00480438,-0.0046029594,-0.04313706,0.022440251,0.017949559,-0.004318989,0.008730433,-0.0038765238,0.007687008,0.006769058,-0.031117853,-0.0037378406,-0.02675924,0.012851303,0.0011201965,-0.0128777195,0.00022990031,0.016708015,-0.02542524,0.0026300265,-0.016311778,0.005240241,-0.016760847,0.004748246,-0.00028397024,-0.008618166,-0.023074232,-0.008855908,0.0008226056,0.02086851,-0.037589733,0.017606154,0.0064751813,0.010955967,-0.028898923,-0.01337962,-0.0126796,0.02111946,-0.010321988,0.0010673648,0.026349794,-0.009252146,0.0046062614,0.019362807,0.0012960269,0.011774858,-0.028080031,0.011022007,-0.019877916,-0.0275253,-0.015255145,-0.0021363806,0.014740036,-0.0036123653,-0.017223123,0.045144662,-0.024962964,-0.03695575,0.0022998287,-0.0015808226,-0.0012671346,-0.03156692,-0.021185499,0.017117461,-0.028740428,-0.012223927,0.0023526603,-0.16673675,0.011081442,0.003688311,-0.00869081,-0.008327592,-0.0021991183,0.018187301,0.0007433581,-0.031699,0.010804077,0.018226925,0.018279757,-0.036110446,-0.016853303,0.012864511,0.003533118,-0.033204705,0.03101219,0.021423241,-0.012514502,0.022981776,-0.035978366,0.0041704,-0.018292965,0.0017946258,0.017725024,0.01129277,0.025530905,-0.002374123,-0.0306952,0.0027521998,0.0024517197,0.020828886,0.0003681707,0.036823675,-0.007198315,0.013881521,0.007383226,0.016589144,0.014581541,0.020947756,0.009767255,0.0003054331,0.013353204,-0.0139739765,0.0064157457,0.017909937,0.012296571,0.011906938,-0.024236528,0.02200439,-0.019983578,0.010394631,0.005557231,-0.0010665393,0.012567333,-0.008003998,0.014924946,-0.008571939,-0.012091848,-0.0012704366,-0.010652185,-0.023602549,0.017077837,0.021317579,-0.011636175,-0.0023378013,-0.0040911525,-0.022691201,0.036480267,-0.0311971,-0.015387224,0.02086851,0.009740839,0.03885769,-0.0010913041,-0.036638763,0.021872312,0.019111857,-0.0073964335,-0.00947668,0.038012385,-0.005768558,0.025927141,-0.013841897,-0.009337997,0.0026168185,-0.0029371106,-0.005233637,-0.03209524,0.015836293,-0.030959358,-0.025596945,-0.016919343,-0.0042562513,0.046650365,0.021528905,0.004431256,0.0050091026,-0.018253341,0.015109858,0.014211719,-0.024315776,-0.0017450961,0.0048836274,0.013267353,0.03272922,0.016985381,0.02924233,-0.011332393,-0.0193496,0.016919343,0.011979581,0.024619557,0.014806075,0.02567619,-0.0034340585,-0.0216874,0.011537116,-0.026534706,0.021040212,-0.002714227,-0.028502686,0.0039194496,0.005101558,-0.016958965,-0.102493435,-0.049925927,0.023985578,-0.015836293,-0.012600353,0.008221929,0.007376622,0.021674192,-0.0056265728,0.028872507,-0.0014850652,-0.014885323,-0.008869116,0.016206114,0.052937333,-0.01578346,0.014436253,-0.013868313,-0.023681795,0.009404037,-0.00922573,0.00954272,-0.04134078,-0.018913738,-0.00985971,-0.013815481,-0.045752227,0.018860906,0.020696806,0.026230924,-0.006835097,-0.018794866,0.013386224,-0.003351509,0.0016518151,0.013366412,-0.016523104,0.001111116,0.010117264,-0.054892104,-0.010341799,-0.009628572,0.018187301,-0.003671801,-0.010295572,0.012369215,0.0036024593,0.03600478,0.04691452,-0.011748442,-0.020630768,-0.0051708994,-0.021132668,-0.049688186,0.04422011,-0.039808664,0.0074030375,0.015704215,-0.018808074,0.009456869,-0.017830689,-0.014594749,-0.0016567681,0.0090672355,-0.009668196,0.0070992555,0.022162884,-0.00573884,0.016853303,0.0076275724,-0.02365538,0.009945562,-0.018213717,0.019455262,-0.012441858,0.013894729,-0.0083408,-0.02314027,-0.0070134043,0.0016130169,-0.020842094,-0.011299374,-0.0034439645,-0.03051029,0.020234529,-0.0053260927,0.010995591,-0.000640584,-0.009912542,-0.008763453,-0.013868313,0.0012597052,0.0117946705,-0.036612347,-0.042450245,0.00119284,0.01858354,-0.0034307565,0.02181948,-0.0071256715,-0.00637282,-0.026138468,-0.063186675,0.017328788,0.017434452,-0.021159083,0.00505533,-0.026640369,-0.0012819935,-0.006686508,-0.011358809,-0.022268549,0.017804272,0.0020224624,-0.020353401,-0.0063265925,-0.011840898,-0.015545718,0.011583343,0.0058048796,0.0010648883,0.00075367675,0.0025045513,0.025266746,0.006699716,0.03278205,0.0050850483,0.0216874,-0.01623253,0.018240133,-0.008789869,-0.016655184,0.007937958,-0.025689399,0.024817677,0.041208703,0.01604762,-0.024249736,0.006075642,0.029031003,0.0139871845,-0.026363002,-0.0044081425,-0.002217279,0.0011796321,-0.010440859,-0.017051421,-0.01876845,0.004933157,-0.0014454414,0.0060195085,-0.0065874485,0.028898923,0.031936742,0.0090606315,-0.02884609,0.007376622,-0.013320184,-0.001439663,-0.0045567313,-0.004338801,-0.009747443,0.026878111,0.014660788,0.014938154,-0.024632765,0.028766844,0.0056761024,-0.024593143,-0.0007487238,0.0056926124,-0.017553322,-0.017923145,-0.014026809,0.027036607,0.010414443,0.020934548,-0.017421244,0.0027670586,-0.007799275,-0.035608545,0.012468274,0.007997394,-0.0019630268,-0.024328984,0.01661556,0.014898531,0.043533295,-0.02277045,-0.0067756614,-0.0018441555,0.013016403,-0.0487108,-0.013485284,0.0059831864,0.035423633,0.007786067,0.01680047,0.020643976,0.005956771,-0.005752048,0.020432647,0.023536509,0.00808985,0.012554125,-0.015492887,-0.0077200276,0.02092134,-0.014040016,-0.0044114445,0.0059765824,0.005411944,0.011913542,-0.008050226,0.026495082,0.024883715,-0.022228925,-0.0060954536,0.0101568885,0.0019943954,-0.008809681,0.027010191,0.00020069843,-0.009265354,0.009186107,-0.019745836,-0.0007512003,-0.017487282,0.009714423,0.0067756614,0.01147768,-0.0044939937,-0.00925875,-0.02637621,-0.014779659,-0.01643065,-0.004632677,0.0020967568,-0.016523104,0.034895316,-0.0027769646,0.077345565,-0.0014990986,-0.020393025,-0.002372472,0.006366216,0.020577936,0.020023203,0.01713067,-0.039861493,0.013604155,-0.0026679994,-0.007865314,-0.023470469,-0.011880522,-0.0512203,-0.017051421,0.0007462473,0.014647581,0.00049736066,-0.01629857,0.025293162,-0.008961572,0.030800862,0.01731558,-0.019362807,-0.014740036,0.014277759,0.0064190477,-0.00046723007,-0.054020382,0.02428936,-0.0158495,-0.026468666,-0.008948364,0.01686651,-0.018438252,0.006745944,-0.0101436805,0.013148482,0.03304621,0.005884127,-0.011992789,-0.02163457,0.012765452,0.03468399,-0.0064982953,-0.017553322,0.0161797,-0.04123512]},{\"id\":\"0c055fc6-ca15-4256-836e-f924119568a9\",\"text\":\"So my first bounty Tiktok has earned over 7800 views in the fist 48 hours set I haven’t racked up 1¢ from the video. \",\"vector\":[-0.03843408,-0.01852229,-0.011450263,-0.021366833,0.035130743,-0.008284563,-0.0076684644,-0.018378098,-0.018404314,-0.025378028,0.018771352,-0.0011330647,-0.014524203,-0.027580254,0.028157027,0.011469925,0.0101721855,-0.011417491,-0.009693725,-0.0048403083,-0.050860927,-0.0054826243,-0.030700075,0.010899706,0.0009257868,-0.010984912,0.026819963,-0.002074418,0.020501671,-0.007904417,-0.02623008,0.0045158733,-0.029205706,-0.010683416,-0.038748685,-0.013934321,-0.00939223,-0.017604697,0.0021252134,-0.0010781729,0.007360415,0.010021438,0.0063019046,0.0039882567,-0.0141440565,0.008559842,-0.005046767,-0.012092578,-0.0006218338,0.012059807,-0.0034508088,-0.012879088,-0.035602648,0.0069999313,0.0030165904,0.016818188,0.01532382,0.015599098,-0.00679675,-0.0061970367,0.0078913085,0.0026642997,-0.008192804,-0.008926879,-0.009477436,-0.006177374,-0.021143988,0.012472725,-0.017722674,0.014248924,0.00636417,0.009130061,0.012007373,-0.01852229,0.041239295,-0.0016615005,-0.025797501,0.013475523,0.019348126,0.01974138,0.019374343,-0.00038997745,0.0076553556,0.032168224,0.0075963675,0.013986754,-0.0051483577,0.023241345,-0.021760087,0.004558476,0.02553533,0.0073276437,0.023687035,0.0107227415,-0.011895951,0.023778794,-0.0358386,0.039613843,-0.033583943,-0.011306069,-0.007235884,-0.0011756673,-0.017172117,-0.014642179,-0.00588571,0.01584816,0.00869748,-0.0056071547,0.00478132,-0.01177142,-0.021681435,-0.0020236226,-0.0050369357,-0.02130129,0.01385567,0.0145504195,0.001396873,-0.007989622,-0.019361233,-0.022638354,0.032954734,-0.00031747113,0.012990509,0.008553287,0.014235816,-0.0064067724,0.006934389,-0.01870581,0.03426558,-0.0053777564,0.0077012354,0.0059741926,0.011024237,0.013449307,-0.021694545,0.032509044,-0.037595138,0.0015787532,-0.0040931245,-0.0025168294,0.020423021,0.033924762,-0.016005462,0.01991179,-0.00035720624,-0.0005128695,-0.008199358,-0.028969754,0.0051647434,0.0052532256,0.012525158,0.0045978012,0.0048665255,0.014052297,-0.02346419,0.00874336,-0.00142309,0.010244282,0.005767734,-0.009143169,-0.010119751,0.023490407,-0.0024201542,-0.007609476,0.013527958,0.017434286,0.03229931,-0.021720761,-0.02423759,-0.0010363896,0.025115859,0.031906053,-0.0038866661,0.023739468,-0.008291117,0.006256025,0.0103557035,-0.00012893425,0.0009970642,-0.026387382,-0.010762067,0.009890352,0.020527888,0.027213218,-0.008376323,-0.031303063,0.025404247,0.009359459,-0.0037981838,-0.015350037,-0.0045650303,0.012518604,-0.0010224619,-0.005440022,-0.65227824,-0.0078782,0.010984912,0.023673926,-0.004214378,-0.0054301904,-0.0062724105,0.0071572335,-0.019085955,0.036389157,0.0011158598,-0.01982003,0.009123506,0.00028183244,0.005292551,-0.013737693,0.03117198,-0.010834164,-0.022284426,0.029467877,-0.002693794,-0.0030034818,0.006475592,0.019557862,0.0037031472,-0.020121526,0.016975489,-0.0088285655,-0.019177714,0.037437838,0.00198102,0.03644159,-0.006256025,0.0027511434,0.054321565,-0.027055915,0.013711477,0.010978357,-0.018954871,0.020580323,-0.046980813,-0.020999795,-0.016385607,-0.025823718,-0.011718987,0.0007570151,0.016857512,0.0040931245,0.0021874786,-0.013436198,-0.016739536,0.0027314809,0.008808902,-0.0026331672,0.013934321,-0.012485833,0.00835666,-0.0047354405,0.007340752,-0.0006160988,-0.020252611,-0.019492319,-0.0035360141,-0.019859357,-0.037542704,0.022585921,0.0077208984,0.013003618,0.027973508,-0.002089165,-0.0071572335,0.018889328,-0.011365057,0.011174984,0.00930047,0.038905986,0.026951047,-0.028025944,0.0059414213,0.021314397,-0.019597186,-0.0045978012,-0.0073800776,0.015336929,-0.010401583,-0.005158189,-0.017775107,-0.0010961972,-0.0061020004,0.0011019321,0.0028248788,0.022795657,0.01662156,-0.017106574,0.003349218,0.042287976,-0.013016727,0.0068950634,0.02267768,-0.009634737,-0.014235816,0.005823445,0.0061970367,0.00048255615,0.036729977,-0.020213285,0.0054662386,-0.013088823,0.040243052,-0.030464122,0.0006595207,-0.004361849,0.006960606,-0.009182494,-0.00097084726,-0.039141938,0.033741243,-0.0067574247,0.031381715,0.008822011,0.012131903,-0.0051876833,0.014537311,-0.00831078,-0.0040832935,0.025299378,-0.006682051,-0.008566395,0.022651464,0.0045224275,-0.0040046424,-0.0018024169,0.03919437,-0.0029035297,-0.0032623746,0.002302178,-0.0013985116,-0.014930566,-0.017460503,-0.028733801,0.00081272615,-0.0126562435,-0.005115587,-0.0045355363,-0.02259903,-0.016962381,0.012649689,0.011011128,-0.009149723,0.016320065,0.02216645,0.0020383697,-0.014825698,-0.01929569,-0.0010429439,0.01277422,-0.01479948,-0.013829453,-0.00987069,0.0038014608,-0.003323001,0.012492388,0.01177142,-0.000469038,-0.021930497,-0.014353792,-0.009615075,0.002860927,-0.0001947839,-0.018889328,-0.01411784,-0.016647777,-0.0027560592,-0.0099690035,-0.0036048337,0.022035364,-0.006121663,0.008002731,-0.0006886051,-0.001139619,0.0026511913,-0.017106574,-0.005485901,0.0079109715,0.022651464,0.012308869,-0.033583943,0.03211579,-0.0004813272,0.011201201,0.004932068,-0.0137770185,0.006993377,0.020960469,0.0023824673,0.0032328803,0.012564484,0.017644022,0.021183314,0.016791971,0.013632826,0.02700348,0.029625177,-0.027422953,0.012086024,-0.035288043,0.0012846317,-0.0119025055,0.013816345,0.019374343,0.016071003,-0.00547607,0.029022187,0.011941831,0.010683416,0.018063493,-0.003021506,-0.012715232,0.005285997,0.020187069,-0.019610295,-0.028864887,0.0082583465,-0.01479948,0.0045486446,0.0037588584,0.009103844,-0.0035130742,0.0036277734,-0.0020449238,-0.01601857,0.029992215,0.020278828,0.016411824,0.009274254,-0.010100088,0.011397828,0.0038604492,0.011443708,0.0064592063,-0.01723766,0.016228305,0.015533556,-0.012603809,0.008985867,0.02944166,0.027658906,-0.012787328,-0.0032689287,0.028288113,0.013147811,0.012013927,-0.044018295,0.013272342,0.002939578,-0.059617393,-0.03090981,0.020567214,0.020069093,0.021170205,0.0010822694,0.010106643,0.0015353314,-0.015009216,0.013672151,0.029074622,-0.0012715232,-0.002778999,-0.0022464667,-0.0077208984,0.0013206799,-0.009857581,0.021864954,-0.008133816,0.033583943,0.004152113,-0.016909948,-0.0068033044,0.008887554,0.014629071,-0.023726359,-0.0028183244,0.017001707,0.0041684983,-0.0012297399,-0.008566395,0.0017745612,-0.01030327,-0.01662156,0.008186249,-0.016424933,-0.009621629,-0.016739536,0.0033033385,-0.0058922647,0.004456885,0.045066975,-0.031984705,-0.023962311,-0.015192735,-0.00042889328,-0.008468082,-0.0074783913,-0.016031679,0.016084112,0.0043880655,-0.0074914997,-0.020658974,-0.015074759,-0.013042944,0.0034573632,0.0054367445,-0.013908103,0.008808902,-0.0063838325,0.00352946,-0.02414583,-0.0214717,0.021117771,0.026190754,-0.0139605375,0.0027019866,-0.037700005,0.012289206,0.10927234,0.0016959104,-0.011057008,0.014222708,-0.015966136,0.009542977,-0.0061020004,-0.035288043,0.002130129,0.0052991053,0.014301358,-0.016071003,-0.008146924,0.014838806,0.01306916,-0.018115928,-0.006927835,-0.030097084,0.00055670104,-0.014222708,-0.00057718303,0.0067377617,0.0026397214,0.026426708,-0.0043552946,0.016870622,0.032089572,0.032613914,-0.006688605,-0.001268246,-0.01350174,-0.0220878,0.0016361029,0.016556017,0.005603878,-0.0030723014,0.022100907,0.013908103,0.0193088,0.012086024,-0.00917594,0.0118631795,0.021629002,-0.0030542773,0.010585102,-0.025207618,0.0055252267,0.010493343,0.008153479,-0.012072915,0.025102751,0.0020563938,0.004886188,-0.017971734,-0.0075373794,0.020121526,0.014340684,-0.00861883,0.0019154774,-0.02198293,-0.015310711,-0.04388721,0.0053777564,-0.01601857,-0.016909948,-0.02467017,-0.0024185157,-0.030464122,-0.007098245,-0.00040902573,-0.012734894,0.007766778,-0.046718642,-0.007858537,0.0026364443,0.011889397,0.018076602,-0.0012600533,0.02320202,0.010067318,-0.011732095,-0.022992285,-0.028943537,-0.00895965,-0.0069671604,-0.0046272953,0.010244282,-0.015376254,-0.006121663,-0.013088823,0.003226326,0.01808971,0.03704458,-0.008815457,0.016188981,0.00417833,-0.004234041,0.020632757,0.0074914997,-0.012695569,0.006501809,-0.0026102273,-0.019728271,0.0071900045,0.018220795,-0.0027396735,0.004778043,0.032089572,-0.026793744,-0.011935276,0.008448419,0.006075783,-0.0030296987,0.021052228,0.014275141,0.018430531,-0.004289752,0.011266744,-0.011922168,0.00943811,-0.033479072,-0.00196955,0.016765753,-0.0055645523,-0.0031804463,0.014707721,0.009411893,-0.027763773,-0.007340752,0.0026184202,-0.028602716,-0.00396204,0.0017073803,-0.017303202,-0.047059465,-0.013436198,0.0077077895,-0.0023005393,-0.014039189,-0.007360415,-0.019177714,-0.010663753,-0.01506165,-0.0387749,-0.0009765822,-0.032744996,-0.02139305,0.00072301493,0.006662388,0.015572881,-0.0014771625,0.00018075373,-0.02468328,-0.008107599,0.013128148,-0.008559842,-0.0025987574,0.005122141,0.0457224,-0.007766778,0.024460435,-0.029756263,0.015454905,0.007235884,0.0112929605,-0.00039919437,-0.005027104,-0.013868778,-0.038748685,0.013541066,0.023215128,-0.006233085,0.007819212,0.017801324,-0.00617082,0.011994265,-0.020265719,0.008998975,-0.024276916,-0.018168362,-0.019951116,-0.009483989,-0.0017761998,-0.007360415,-0.010571994,-0.01983314,-0.004420837,0.0052499487,0.015074759,0.0315128,0.039771147,-0.009228374,0.009503652,-0.004958285,0.024473542,-0.003241073,-0.026439816,-0.005938144,0.0007770874,0.0073669693,-0.0044699935,0.006881955,-0.009025193,-0.013023281,-0.008723698,0.04629917,0.0092349285,-0.03471127,0.00048870075,-0.024355566,-0.010958694,-0.04501454,0.0060004094,-0.001999044,0.0018433809,0.0058594933,-0.006763979,-0.010126306,-0.005338431,-0.018142145,0.014524203,0.007825766,0.011666552,-0.0097854845,0.027868642,0.04509319,0.014956783,-0.02198293,0.020252611,0.008317335,-0.0059414213,0.008153479,0.01878446,-0.022009147,-0.0014550419,0.02355595,-0.0012920052,-0.0429434,-0.034999657,0.014851915,0.0037621355,-0.02303161,-0.04656134,-0.0048140916,-0.017775107,0.020986686,-0.0021973099,0.0086647095,0.020580323,-0.017172117,-0.019269474,0.012145013,0.012748003,0.00991657,0.007976513,-0.0075963675,-0.019859357,0.0028035773,-0.0071441247,0.011922168,-0.002738035,0.012204001,-0.018771352,0.027239434,-0.010886597,-0.007288318,-0.0044831024,-0.030516556,-0.019466102,0.025981018,-0.012171229,0.013462415,0.0020908036,0.017303202,-0.00078650913,0.005154912,-0.007714344,-0.042523928,0.007419403,0.0044699935,0.018509181,0.0055645523,0.0076422472,0.0016844404,-0.009451218,0.025876151,0.0002955554,-0.017630914,0.02545668,-0.026020344,0.020960469,-0.0072621014,0.020187069,0.010113196,-0.010460571,0.036310505,0.009542977,0.009018638,-0.031565234,-0.007884754,-0.020881819,0.008035501,-0.010408138,0.00350652,-0.005197515,-0.0043651257,0.009621629,-0.016490476,-0.004266812,-0.028969754,0.031565234,-0.013318222,0.0052761654,0.0040537994,0.012210554,0.013790127,0.0054138047,-0.024866797,-0.0063084587,0.01311504,0.020921143,-0.005905373,0.02009531,0.008998975,0.0036834846,-0.026951047,0.028681368,-0.009136614,-0.012551376,-0.00934635,-0.0004923875,0.007203113,-0.025181402,-0.01558599,-0.02562709,-0.0018581279,-0.0055383355,0.014432443,-0.035602648,-0.0052597797,0.0015443435,0.025653306,0.0054301904,0.0099690035,0.001551717,-0.0049255136,0.0074325115,-0.014838806,-0.005233563,-0.00018362122,-0.01818147,0.00905141,0.012426845,-0.021484809,0.011954939,0.0014501263,-0.028576499,-0.031617668,-0.0005513757,0.026190754,0.004640404,-0.015363146,0.002808493,0.026374273,-0.0023709973,0.015690858,-0.021130878,-0.021104662,0.008671263,-0.018863112,-0.02284809,-0.016687103,-0.010683416,-0.016084112,0.01723766,0.032613914,0.033977196,0.01731631,-0.019964224,0.0014943674,-0.009857581,0.0120466985,0.013881886,-0.00032607358,0.024040964,-0.009451218,-0.018247012,0.0010027991,0.015874377,-0.011633782,-0.013436198,0.021511026,0.0040931245,0.020252611,-0.009431556,-0.0002099406,-0.012630026,-0.002775722,0.030568989,0.00063944835,-0.0236346,0.014262033,0.04380856,-0.052329075,-0.019557862,0.011011128,-0.030280603,-0.019505426,0.0044142827,-0.006315013,0.026872396,0.004722332,-0.0049550077,-0.01078173,-0.01034915,0.0028363487,-0.021838738,-0.010224619,0.012839762,0.02763269,-0.015559773,-0.022481054,0.0075504878,-0.0048665255,-0.012577592,0.0068098586,-0.017552262,-0.010198402,0.001583669,-0.003334471,0.016857512,-0.047242984,0.0018171639,-0.0024496482,-0.025692632,0.016844405,0.22022256,-0.0028150473,-0.028812451,0.04328422,-0.00547607,0.003241073,-0.0013075714,0.022100907,-0.0024070458,-0.00552195,0.011437154,-0.0022677681,-0.0043290774,-0.0059020957,0.0040046424,0.00634123,-0.0019629959,-0.0069474974,-0.026046561,-0.011876288,0.021170205,-0.008494299,0.015992353,-0.011070116,0.021157097,-0.02571885,-0.00024578412,-0.010132859,0.017119683,0.0057579023,-0.0023677202,-0.038827334,0.019466102,-0.0070195943,-0.024408001,0.020252611,0.0009356182,-0.01090626,0.025273161,0.023149585,0.02051478,-0.0015549941,-0.002451287,-0.014497985,0.023595275,-0.0006300266,-0.012997064,-0.0016279101,-0.020147743,-0.0051188637,-0.033531506,-0.004102956,0.020711407,0.0114764795,-0.007091691,-0.01177142,0.015520447,0.011574793,-0.013475523,-0.00653458,-0.00013169931,0.025902368,-0.0018007782,0.013056052,-0.052224208,0.013265788,-0.002711818,-0.010283607,0.010827609,-0.0034147606,-0.0002967843,-0.0068491837,-0.022664573,-0.0055252267,-0.013383764,-0.025115859,0.010421246,-0.0036048337,0.02484058,0.011836963,0.018220795,-0.029074622,-0.015022325,-0.045145627,0.001037209,-0.039535195,0.013999863,0.00013497644,0.0068622925,-0.0014206321,-0.014537311,0.0044339453,-0.035366695,-0.011174984,-0.0055645523,-0.00835666,0.006396941,0.006993377,-0.009110398,-0.009483989,0.007360415,0.019964224,0.0037752439,-0.004715778,-0.008133816,-0.013298559,0.015127193,0.0020023212,0.024408001,-0.021629002,0.01445866,-0.042392842,0.0013395234,-0.012603809,-0.005207346,0.02891732,-0.0005558817,-0.009156277,0.0052761654,0.0010912814,-0.015900593,-0.022481054,0.007792995,-0.0012731617,-0.0012092579,-0.016411824,-0.0068557383,0.0122498805,-0.015992353,-0.022310643,0.00013978971,0.020711407,0.0040832935,-0.010775176,-0.016503584,0.0019974054,0.023608383,-0.0006066771,-0.021314397,0.011115996,-0.009366013,0.01419649,0.033557724,0.0050893696,0.013154366,-0.03064764,0.021170205,-0.015795726,-0.009339796,0.007452174,0.0086647095,-0.0015402471,-0.0027593363,-0.00044896564,0.02207469,0.0071637877,-0.009739605,-0.019361233,-0.025482897,-0.0040341364,-0.042497713,0.0007664368,0.0023972143,-0.0030346145,-0.03004465,-0.0073014265,-0.165901,0.022559704,-0.006151157,-0.0003178808,0.001452584,-0.016752645,0.024696387,-0.00011121731,-0.019846248,-0.014982999,0.019282583,-0.017775107,0.008631938,-0.023018502,0.009556086,-0.028760018,-0.022179559,-0.00024312145,0.044831023,0.0031067112,0.030254386,0.005322045,-0.012675906,-0.011869734,0.009975558,0.027816206,-0.0053712022,0.015795726,-0.0009216904,-0.026819963,-0.017591588,-0.006600123,0.01923015,0.01172554,0.02397542,0.015769508,0.0026872396,-0.0034868573,0.021537242,0.009182494,0.028025944,0.0026266128,0.023909878,0.0021989485,0.0010454018,0.014209598,0.007504608,0.013816345,0.009333242,-0.012367857,0.00032668805,-0.018456748,0.0079109715,0.012118795,-0.0008520516,0.0060331807,0.0027921074,0.0065444116,-0.020160852,-0.016084112,-0.020960469,-0.020252611,-0.02700348,-0.024473542,-0.008336997,-0.004148836,-0.009837919,0.003331194,-0.012846316,0.005374479,-0.009425001,-0.01173865,0.004450331,0.025810609,-0.025378028,0.009162832,-0.023922987,0.00987069,-0.009529869,0.033793677,0.020829383,0.04061009,-0.025928585,0.011115996,0.009097289,0.011489588,0.0034639174,0.017670238,0.011751758,-0.02944166,-0.025640199,0.00039939917,-0.037359186,0.0029756264,0.004289752,0.028157027,0.0124333985,0.015874377,0.0032590972,-0.04640404,-0.004532259,0.010185294,-0.030857377,0.04268123,0.023752576,-0.00675087,0.017159007,0.024342459,0.023359321,-0.021117771,-0.026203863,0.011469925,0.01376391,0.021406157,0.003144398,0.029939782,-0.01782754,-0.004043968,0.016333174,-0.017250767,0.039325457,-0.015389362,-0.037542704,-0.0022251655,-0.021786304,-0.0033443025,-0.100463435,-0.031407934,0.0074587283,-0.012852871,-0.013075715,0.028786235,0.00082501536,0.013803235,-0.0059250356,0.028943537,0.017683348,-0.02605967,0.010807946,0.0063838325,0.0147339385,-0.016136546,0.023608383,-0.0023939372,0.016385607,0.028550282,0.01844364,-0.0151009755,0.0009675701,-0.016556017,0.004096402,-0.041947156,-0.03203714,0.038224343,-0.011456816,0.0016942718,-0.0048894654,-0.006177374,0.022664573,-0.025286268,-0.0034016522,0.010270499,-0.027475387,-0.0193088,0.0044306684,-0.033374205,0.007412849,-0.002369359,0.0023824673,-0.0044404995,-0.032089572,0.008448419,-0.008389431,-0.0067574247,0.013344439,-0.028681368,0.001046221,-0.00679675,-0.0055907695,-0.0037719668,0.014615961,-0.0038801117,0.014432443,0.038827334,0.0026003958,0.010277053,-0.01172554,-0.005338431,-0.021261964,0.026216973,-0.00023615756,-0.017775107,0.011581347,-0.014563528,-0.01983314,0.005446576,-0.028812451,0.039587628,-0.01663467,0.0107030785,-0.0076225847,-0.008874445,-0.021196421,-0.025863042,0.015481122,-0.010932477,-0.037700005,-0.016136546,0.0078782,-0.011922168,0.033715025,-0.013698367,-0.0009814979,0.03324312,0.0034606403,-0.032089572,-0.027187,-0.0029641564,-0.008907217,0.0040570763,0.010342595,0.022494162,-0.0024463711,-0.008612275,0.0069212806,0.0038670034,0.013088823,-0.0034770258,-0.035523996,0.019780705,0.010388475,-0.0051712976,0.018260121,0.0071572335,0.0018302724,-0.03437045,-0.0069737146,0.0026642997,0.002293985,0.026479142,-0.014524203,-0.005017273,-0.0059545296,-0.03038547,-0.0020678637,-0.0005001707,-0.0009683894,0.010709633,-0.008690926,-0.010650645,-0.012551376,0.0179193,0.027055915,0.023018502,0.01078173,0.009425001,0.012459616,-0.018967979,0.019020414,-0.008422202,0.018941762,0.042209323,0.028524065,-0.021117771,0.0151009755,-0.0055907695,0.006016795,-0.009287362,-0.0052827196,-0.03169632,-0.01272834,-0.025810609,-0.01940056,-0.008900662,-0.0009266061,0.007766778,0.022258209,0.014314467,0.03127685,0.02406718,-0.0048403083,-0.01376391,-0.002510275,-0.024106506,0.009929678,-0.017460503,-0.007740561,-0.044463985,0.019531645,0.010630982,0.0052171773,-0.025522223,0.030228168,-0.008192804,-0.036520243,0.009464327,0.02345108,-0.037909742,0.023123369,-0.016673993,0.0019482487,-0.017290093,0.008546732,0.0038440635,0.012715232,0.0073276437,-0.009228374,0.009044855,0.013750802,-0.0067246533,-0.02760647,0.0044536083,0.018325664,0.025378028,0.010480234,0.040714957,0.027580254,-0.017041031,-0.01974138,0.0022612137,0.006396941,-0.0064034956,0.024827473,0.007950297,-0.009582303,-0.0063313986,0.002316925,0.019033521,0.017814433,-0.0008422202,0.0005513757,0.0043225233,-0.00045060422,0.01808971,-0.0012715232,-0.034842357,0.0013788489,0.010532669,0.010578549,-0.007452174,-0.023333104,0.02275633,-0.033531506,0.005587492,0.0120270355,-0.023857445,-0.028943537,0.061609883,0.0014271864,-0.0069212806,0.012282651,-0.046613775,0.038905986,-0.005227009,0.0068360753,0.00463385,0.023136478,-0.0039358228,0.006229808,-0.00077217177,-0.020763842,-0.008487744,0.0068622925,-0.010309824,-0.016765753,0.034213148,0.011017682,0.04650891,0.0057021915,-0.008841674,0.014012972,0.004558476,0.018981088,0.03966628,0.0032017478,-0.010034546,-0.0023496961,0.0058594933,0.0075963675,0.0010535945,-0.015179627,-0.028445415,-0.012145013,0.015861267,0.016411824,-0.010499897,-0.009307025,0.00905141,0.01229576,0.028733801,0.002451287,-0.006659111,0.002775722,0.027265651,0.026295623,-0.0118828425,-0.04538158,0.018745136,-0.0006943401,-0.014012972,-0.006829521,0.014786372,-0.019439885,-0.0038112924,0.017014815,0.0046469583,0.0007586536,0.012020482,0.008540179,-0.03636294,0.004237318,-0.00040001364,-0.0034213148,-0.027265651,0.006940943,-0.025823718]},{\"id\":\"fb16c46f-1411-4723-bc6b-d99c7539c060\",\"text\":\"A more accurate description of the consistency in which brands send you things\",\"vector\":[-0.011799703,-0.00062048726,-0.0028463025,-0.015710654,-0.007026339,0.016205372,-0.010903862,-0.0018083964,-0.01843829,-0.025979403,0.009947852,0.029281983,-0.022141993,-0.018505143,-0.0044691795,0.009626954,0.04326781,0.00974729,0.0016479472,-0.010141728,-0.02872041,0.0066285585,-0.033373438,-0.0060669864,-0.0025521454,-0.007587911,0.02349244,-0.010355661,-0.0048502465,0.005395105,0.018719077,0.010623076,-0.022035027,0.017622674,-0.014467171,-0.006157239,0.009439763,-0.02020323,0.003013437,-0.017515708,0.02507019,0.035432536,0.005595667,-0.007828585,-0.022583228,0.016258854,0.02192806,0.0030970043,-0.018826043,0.008490439,0.02347907,-0.0028697012,-0.03893568,-0.0005306524,0.025297495,0.019187054,-0.00038754338,0.009332797,0.0119267255,-0.01670009,0.00530151,0.012140658,-0.02765075,0.002819561,-0.021714129,-0.0034563437,-0.027704233,0.0083634155,0.005461959,-0.005629094,0.024575474,0.009446448,0.01183313,0.030779509,-0.000083462844,0.016566383,0.013230376,0.015750766,-0.0017365286,0.0032992372,0.01599144,-0.014333464,-0.0026891958,0.02486963,0.022877386,0.017716268,-0.00085071515,0.025805583,-0.0054118186,-0.009025269,-0.00035265402,0.007200159,-0.009526673,0.018545257,-0.012942904,0.0025772157,0.015376384,0.042572528,0.012688859,-0.0009451462,0.018224359,0.026327044,-0.026220078,-0.0062909466,-0.04591522,0.010322234,-0.031020183,-0.033961754,0.008029147,-0.0036769614,-0.018384807,0.026701424,0.018344695,-0.009499931,-0.008470382,-0.009566785,-0.009092122,-0.015363013,-0.008577348,-0.01875919,0.010489368,0.01791683,0.043053877,-0.008303247,0.016914023,0.016071664,-0.026995583,-0.016298966,0.0074341474,0.005625751,0.024267945,0.012394703,-0.0024986623,0.024615586,-0.02365289,0.039951857,-0.026754908,0.02973659,0.0030151084,0.004980611,0.009446448,0.018973121,-0.0034396301,0.022636712,0.0005385913,0.010816952,0.021379858,0.004515977,-0.001965503,-0.010302178,0.03168872,0.00973392,0.005311538,0.0065449914,0.006939429,0.020631095,-0.0047098533,0.015790878,-0.014734587,-0.016820427,-0.0042051068,0.011813074,0.0039577475,-0.016820427,0.013892229,0.033854786,0.025257383,-0.0057160035,-0.0005356664,0.0018184246,-0.025498057,0.007200159,-0.044070054,0.004154966,0.0020123008,0.017849976,0.023438958,0.0043688985,-0.02052413,-0.019227166,0.0063878847,0.0041415957,0.016686719,-0.0011482148,0.008102686,0.00055446906,0.008075944,-0.018919637,0.011879928,0.0007261999,-0.003036836,0.008757854,-0.0016621536,-0.0043588704,-0.66661304,-0.0191202,-0.013357398,-0.016673349,0.013330656,0.02400053,0.008470382,0.01165931,-0.04126219,0.022128623,-0.01756919,0.0061070984,0.00033009084,-0.02000267,-0.008136113,-0.019360874,0.0057728295,0.011699422,0.0014081091,0.020256715,-0.022703566,0.010897176,-0.018478403,-0.00703971,0.016205372,0.00021685715,-0.006287604,-0.019761996,-0.011345097,0.016847169,-0.026688054,0.021994915,0.010689929,0.020136377,0.043080617,0.0060536154,0.009874313,0.032785125,-0.00015909126,0.018705705,-0.040647138,0.0024602215,0.010950659,-0.009994649,0.0017348572,0.021981543,0.015764136,0.010542851,0.009045325,-0.039390285,0.022168735,-0.01827784,-0.018745817,0.019267278,0.053322624,0.0048469035,0.03703703,-0.0016395905,0.0101818405,-0.0035098267,-0.02260997,-0.010295492,-0.032785125,-0.031073667,-0.003158844,0.025671875,-0.004863617,-0.0018167532,0.03773231,-0.014333464,0.013578015,0.0062474916,-0.021633904,0.011177963,-0.00061045913,0.029148275,0.014534025,-0.00027493644,-0.014373576,0.022810532,-0.005538841,-0.014467171,0.007006283,-0.020577613,0.00895173,0.003984489,-0.0071065635,-0.009466505,0.0036067648,0.00067229895,-0.0036134503,-0.001975531,-0.013517847,-0.018545257,-0.0076146526,0.004863617,-0.0016069993,0.015536834,-0.017809864,-0.017087843,-0.019227166,0.025752101,0.016686719,0.021419972,0.0030719342,0.01025538,-0.01312341,0.003626821,0.033293214,-0.011545659,0.029656366,-0.015697282,-0.00085990754,-0.0062374636,-0.016232112,-0.02714266,0.01722155,0.01843829,-0.015416496,-0.0004943006,-0.004388955,-0.0051778303,0.017114583,0.007460889,-0.007059766,-0.0007905467,0.010108301,0.0007926359,0.010843693,-0.013537903,0.040219273,-0.0057193465,0.0038374106,-0.014413688,-0.0037304445,-0.006504879,0.0006622709,-0.023238396,0.020042783,-0.04503275,-0.0020958679,0.009580156,-0.0065984745,-0.018906267,-0.011411951,-0.029469173,-0.023572665,0.00425859,0.0022563173,-0.014895036,-0.009506617,-0.037491634,-0.01946784,0.018665593,0.0025989432,0.000651825,-0.0051678023,-0.01929402,-0.01774301,-0.016044922,-0.0029499258,0.034844223,-0.0056324364,-0.009566785,-0.010542851,-0.020123007,0.015764136,0.0064346823,-0.000080851365,-0.016205372,0.015924586,-0.014828183,-0.0136916675,0.0396577,0.027008953,0.02938895,-0.033988494,0.006287604,0.0133106,-0.029629624,0.020550871,0.024655698,-0.026019515,0.0011097738,0.035913885,-0.0056090374,0.03848107,0.029950522,-0.020965366,0.03043187,-0.026059628,-0.006698755,-0.008570663,-0.0060870424,-0.021807725,-0.007915495,-0.00020348639,0.0050675212,0.004940499,-0.0026423982,0.035726693,-0.015911214,0.006040245,-0.025284125,0.008684314,-0.017529078,0.016847169,-0.012568522,0.032678157,0.03778579,0.018719077,-0.017515708,-0.0009000199,-0.0110442545,-0.018665593,0.013163522,-0.005318223,0.034870964,-0.009031954,-0.00332765,-0.041128483,-0.0098342,0.028613444,0.0068725753,0.009887683,0.0009033626,0.0065015364,0.019400986,0.016432675,-0.01845166,0.01982885,0.023693003,-0.00049597194,0.004706511,0.009192403,-0.010455941,0.027864682,0.00026950456,0.015804248,0.0049572126,0.016031552,0.037010286,0.027436817,0.014386947,0.0191202,-0.016980877,0.03620804,0.001743214,-0.014560767,-0.017234921,-0.018665593,0.006381199,-0.024615586,-0.0009384608,0.01261532,-0.02992378,0.004007888,0.007113249,0.022476261,0.025016708,-0.00033113544,0.013350712,0.03703703,-0.01313678,0.017275034,0.0074542034,-0.005405133,-0.035566244,-0.01702099,0.0012668803,0.023933675,-0.0118932985,-0.00067188113,-0.029308725,0.010850379,-0.00030021553,0.019400986,-0.0054552737,-0.0062274355,0.015282788,-0.008149483,-0.006885946,0.014534025,0.014734587,-0.014400318,-0.0049104146,-0.028212322,-0.008316618,-0.020390423,-0.0095601,0.017769752,0.019441098,0.0004955541,-0.024267945,0.01391897,0.035058156,0.023693003,-0.007320496,0.00587311,0.010756783,0.011151221,-0.007440833,-0.012735657,-0.016071664,0.021513566,0.027624007,-0.0058329976,0.0016437689,-0.014146273,-0.0039477195,-0.00879128,0.0002720116,-0.026393898,0.00070781505,0.023278508,0.018050538,-0.011518917,-0.0098342,0.046022184,0.008416899,0.006899317,0.010816952,-0.016766943,0.018384807,0.08573337,0.028773895,0.0060837,0.024548732,-0.014721217,-0.0042753033,-0.025163786,0.009125549,0.021620532,0.010074874,-0.027089177,0.006718811,-0.008463697,-0.016833797,-0.0025203899,-0.0026891958,-0.013196949,-0.022703566,-0.005258055,-0.03008423,-0.037598602,0.0042652753,-0.0016746888,0.011251502,-0.010369031,0.0059901043,0.005572268,0.02417435,0.0010303849,-0.036395233,-0.015363013,-0.005418504,0.004429067,0.0071600466,-0.0026540975,0.007407406,-0.0110576255,-0.004515977,0.0053249085,-0.008497124,0.027490301,0.020845028,0.015095598,-0.0156438,-0.01407942,-0.009847571,0.013557959,-0.002849645,-0.015563575,-0.009727234,0.0147747,-0.018304583,-0.0033794618,0.0026925385,0.009653695,0.007200159,0.0041817077,0.0071199345,-0.0003488935,-0.034576807,-0.028399512,0.004071399,0.014801441,-0.022583228,-0.03548602,-0.051103078,-0.024495248,-0.0018100678,0.006809064,-0.008924988,-0.034496583,-0.0060636434,-0.014828183,-0.0029566113,0.0154833505,0.018665593,0.008042517,-0.02541783,0.00569929,-0.0036736187,-0.0051744874,0.005181173,-0.007835271,-0.02799839,-0.009774032,0.0016028209,0.007968978,-0.0028897573,-0.021794353,0.0038741801,-0.0063143456,0.018063908,0.021687387,0.004736595,-0.017956942,0.02678165,0.0083968425,0.007708248,0.004883673,0.0069260583,0.012996387,-0.021847837,-0.0049171,0.0092859985,-0.000613384,0.0145875085,-0.0038307253,-0.013517847,-0.008236393,0.014854924,0.00792218,-0.011806388,0.00067229895,0.0050106957,0.004713196,0.019574806,-0.0057394025,0.014186386,-0.010262065,-0.00973392,-0.034202427,-0.029308725,0.0029599539,0.028559962,-0.027075807,-0.005298167,-0.02067121,-0.005605695,-0.02035031,0.0027226228,-0.0092859985,0.016726831,-0.0136649255,0.008924988,-0.020457275,-0.009433078,-0.016298966,0.029121535,0.004228506,-0.009125549,-0.016740203,0.0003192271,0.0014473858,-0.0041516237,0.02367963,-0.03080625,-0.020898512,0.0061405255,-0.019173682,0.034764,0.018852783,-0.0028964428,-0.015002003,-0.029415691,0.0049371566,-0.03583366,-0.0064246543,-0.010502739,0.007253642,0.042519044,0.008597405,-0.0041984213,-0.007775102,-0.010389088,-0.008717741,-0.008838078,-0.010348975,-0.02174087,0.00396109,-0.0068658898,0.0033443635,-0.025805583,0.01810402,0.0024769348,0.028586704,0.0028028474,0.0017365286,-0.008243079,-0.006137183,-0.04607567,0.020470647,0.0034463156,-0.0047198813,0.01426661,-0.02524401,-0.024254574,0.003549939,0.028078614,-0.014814812,0.011244817,0.025711989,-0.0028312602,0.026206708,-0.0028613445,0.00077717594,-0.012488298,-0.0004199257,-0.0225966,0.0026306987,0.02957614,0.0052279704,0.034362875,-0.0011615856,0.007862012,-0.024241203,-0.021887949,-0.017529078,-0.027463559,-0.00030293147,-0.019949187,-0.025925921,-0.015897844,-0.026634572,0.005194544,-0.01932076,0.013945712,-0.023184912,0.018999862,-0.009840886,-0.026113112,-0.031929396,-0.0075611696,0.02869367,0.011224761,0.005939964,0.017288404,0.002814547,-0.006230778,-0.0063878847,-0.020136377,-0.012040378,0.013618128,0.022757048,-0.004475865,-0.020096265,0.01600481,-0.00808263,-0.01827784,-0.027276369,0.021179298,0.015336271,0.020417163,-0.003573338,0.0018769216,-0.004920443,0.006224093,0.0064213118,-0.020069525,0.0038808656,-0.005799571,-0.015951328,0.017141325,-0.025564909,0.004124882,-0.0052146,-0.019066716,-0.020056153,0.007828585,0.0033477063,-0.014948519,0.008557292,0.006080357,-0.011512232,0.0012008621,-0.009814144,0.028854119,-0.00905201,-0.0018685649,0.002941569,0.025016708,-0.019187054,-0.011579086,0.0071065635,-0.016994247,0.0077349897,0.004342157,-0.0009050339,0.008717741,-0.021968173,-0.028292546,0.007340552,-0.0022329183,0.0031571728,0.013932341,-0.00008001569,0.006718811,-0.010302178,-0.022489633,0.017983684,-0.01052948,-0.01913357,-0.0118932985,0.008102686,0.0011849843,-0.0012184113,0.01052948,0.013785263,0.02049739,-0.015002003,0.0179302,0.0136782965,-0.00038775228,-0.04227837,0.009633639,0.006615188,-0.026233448,0.027356593,-0.0002722205,-0.041075002,0.014640992,-0.0003616375,0.006992912,-0.0048937015,-0.004168337,0.0010947317,0.015028744,-0.008684314,-0.0136515545,-0.027289739,-0.0006200694,-0.009553414,0.033801302,0.029201759,-0.012027007,-0.003820697,0.0028329317,0.0110576255,0.0020006013,-0.006274233,-0.026835132,0.022409407,0.0327049,-0.017529078,-0.020938624,-0.008744483,-0.0002814129,-0.025337607,0.03599411,0.013892229,-0.02000267,-0.003583366,0.012635376,0.026139854,0.0119267255,-0.012281051,-0.0068725753,-0.026514234,-0.00013245418,-0.009513302,-0.008029147,-0.016873911,0.023626149,0.016232112,-0.023358732,-0.021299634,-0.022636712,-0.011238131,-0.009687122,-0.001581929,0.008202966,-0.013043185,0.0136782965,0.00016703014,0.025658505,-0.0029148275,0.033266474,-0.029790072,-0.0052513694,0.009179032,0.0034128886,0.0073271813,0.012515039,-0.02507019,-0.01894638,0.027624007,-0.002274702,-0.004883673,0.03861478,0.0015351314,0.022035027,0.014520654,0.015804248,0.011512232,0.010074874,0.008985156,-0.031768948,0.0124415,-0.026821762,0.01670009,-0.005796228,-0.0010195212,0.028399512,0.012595264,0.006615188,-0.01357133,-0.007694877,-0.016285596,0.02000267,-0.004559432,0.018705705,-0.0145741375,0.008162854,-0.0036435344,0.0024117525,-0.0101550985,0.016954135,0.0067154686,-0.014761329,0.010576278,-0.007253642,-0.0047967634,0.0013613114,0.0077015627,0.01339751,0.004706511,-0.01739537,-0.036502197,-0.011445378,0.000008839854,-0.006317688,-0.027062437,-0.010235324,-0.005395105,0.007815214,-0.0072469567,0.002269688,0.0010462627,-0.023693003,-0.002351584,0.002796162,-0.009680437,-0.037304446,-0.022128623,0.013985824,-0.0074742595,0.007634709,0.21714129,-0.011351783,-0.004800106,0.04800106,0.0040212586,-0.0050207237,0.016980877,0.0012652089,-0.0025137046,0.016232112,0.017823234,-0.004048,0.016432675,0.003844096,0.004887016,-0.020938624,-0.002903128,-0.015536834,0.006972856,-0.0040747416,0.0024084097,0.007373979,0.012301107,-0.026741538,0.023412216,0.010883805,0.00080726016,-0.02018986,0.018826043,0.029041309,-0.029094793,0.009667066,0.006036902,-0.009486561,-0.018826043,0.0035900513,-0.02417435,0.010643132,0.022757048,0.017408742,0.013812004,-0.010228638,0.0128158815,-0.013517847,-0.0036201356,0.02626019,-0.0013755178,-0.004398983,0.004058028,0.007394035,-0.018358065,0.019935817,0.0014574138,0.012929534,-0.020992108,0.016847169,-0.008751168,-0.00877791,0.011405266,0.0037505007,-0.014427059,0.0046229432,-0.018077279,0.010208582,-0.013611442,0.003105361,-0.011284929,-0.012060434,0.01616526,-0.027757715,0.023452329,-0.00018698184,-0.009880998,0.015871102,-0.01409279,-0.016325708,0.032063104,0.03668939,0.030485353,0.03163524,-0.014654363,0.030164454,-0.018317953,-0.01321032,-0.017261662,-0.011097738,0.02973659,-0.010596334,-0.0006188159,0.016232112,0.0043622134,-0.018678963,0.0034396301,0.018745817,-0.017716268,0.017408742,-0.01530953,-0.0028312602,-0.019574806,-0.010857064,-0.011772962,0.04821499,-0.0012326178,0.0006417969,-0.011839815,-0.011137851,-0.008577348,0.027035695,0.00887819,-0.0038641521,-0.0005791214,-0.042305112,0.021887949,-0.02123278,0.01829121,0.011899984,-0.007601282,-0.004238534,0.027944906,0.011017513,-0.008055888,-0.013203634,0.022329183,0.019507952,0.031795688,-0.00808263,0.0154699795,0.012976331,0.007975664,-0.015924586,0.025324237,-0.012287737,0.01702099,-0.019628288,-0.01365824,-0.0136515545,-0.00330258,-0.006635244,-0.028907603,-0.009954537,-0.010489368,0.017288404,0.033694338,-0.015871102,0.017435482,-0.02223559,0.00020181504,0.026407268,-0.022369295,0.017475594,0.001661318,-0.010783525,-0.036047593,-0.01875919,0.022703566,0.0057160035,-0.044604883,-0.034844223,0.01530953,0.0055555543,-0.028559962,-0.031020183,0.04099478,-0.016887281,-0.004973926,0.013945712,-0.1715737,0.014681104,0.021553678,0.0012735657,-0.004800106,-0.019454468,0.0027259656,0.021500196,-0.013344027,0.00790881,0.035753436,0.01112448,-0.013945712,-0.021072332,0.00425859,-0.006451396,-0.022543116,0.019641658,0.015055486,0.007962293,0.012454871,-0.012662118,-0.009840886,-0.0020975394,-0.0046429993,-0.008463697,-0.029897038,0.008818022,0.006454739,-0.017168067,-0.0020173148,-0.008523865,0.026821762,-0.011231446,-0.01183313,0.009867627,-0.022716936,-0.002665797,-0.0038240398,0.021313006,-0.0046496848,0.0073672934,-0.012682174,0.03286535,0.019253908,0.020845028,0.015349642,0.012127287,-0.00053023454,-0.029495915,0.0005812106,-0.01810402,0.0137184085,0.0046563703,0.006254177,0.01655301,0.014306722,0.009493246,-0.009827515,-0.023599407,0.0012175756,-0.027249627,0.0019688457,-0.012428129,-0.003085305,-0.027570525,-0.007935551,-0.025083562,-0.0040981406,0.01877256,0.010328919,-0.017836606,0.0024284658,-0.014747958,0.022048397,-0.0036301636,-0.022115251,-0.0066085025,-0.00023691331,-0.01584436,-0.0092926845,0.004636314,-0.013457678,-0.0072335857,-0.001354626,0.021460084,-0.0034797424,0.019614918,-0.020738062,-0.008169539,0.010275436,-0.0009919439,-0.007046395,-0.013537903,0.0065884464,0.008296562,0.003220684,-0.0068124067,0.016780315,-0.004144938,-0.00022500497,-0.004716539,-0.027677491,0.038400847,0.008958415,-0.015710654,-0.010736727,-0.0021560364,0.016807057,-0.02573873,-0.005515442,-0.0007638052,0.020738062,0.01322369,-0.0046329712,0.04003208,0.013437622,-0.005629094,0.03741141,-0.021834465,0.06428666,-0.030405128,-0.0071266196,0.004549404,0.0119267255,-0.003539911,-0.111565694,-0.016793685,0.006123812,0.00674221,-0.0070330244,-0.0059098797,0.012127287,0.010101615,0.0058029136,0.030057488,-0.0053917626,-0.024949854,-0.023532553,-0.03286535,-0.0060870424,-0.015336271,-0.0004968076,-0.017301776,-0.009593527,0.01391897,-0.030244678,-0.01478807,-0.023265138,-0.00013558795,-0.017716268,-0.017127955,-0.040941294,-0.011010828,0.022222217,-0.00074792735,0.00913892,-0.012200827,-0.03080625,-0.027730973,-0.003810669,0.003312608,-0.0059700483,-0.0072870688,0.027276369,-0.0071266196,-0.0021660645,-0.007835271,0.009553414,-0.017368628,0.01584436,-0.010422514,-0.0068257772,0.021874577,-0.005896509,-0.009667066,-0.0043588704,-0.016472787,-0.0040112305,0.005592324,-0.011806388,0.00024568787,-0.0043388144,-0.0007650587,0.0059232507,0.0064915083,-0.016138518,0.028934343,-0.013330656,0.018077279,0.022984352,-0.0054887007,-0.02367963,-0.00792218,0.022984352,-0.011465434,0.007775102,0.0119334115,-0.01720818,0.024789406,-0.02539109,-0.00851718,-0.013644869,-0.00018802643,0.01391897,0.007862012,0.0030635775,-0.017636044,-0.0014131231,-0.047573194,0.026500864,0.006274233,-0.0031137178,0.0005707647,-0.0110576255,-0.008824707,-0.00092425436,0.022516375,0.022208847,0.0013362411,-0.009740605,-0.023693003,-0.013183578,-0.003100347,0.02540446,-0.032410745,-0.013551274,-0.007567855,-0.01946784,0.028613444,0.012321163,-0.014106161,0.016138518,-0.01304987,-0.00038127584,-0.04054017,-0.0039376915,0.0065215924,-0.011632569,0.0110375695,-0.030324904,-0.012040378,0.004636314,-0.014921778,0.0027978334,-0.023251766,0.021727499,-0.0028580017,0.009493246,-0.0054118186,0.02680839,-0.01530953,0.0071934736,0.022008285,-0.025163786,0.033159506,-0.023973789,0.001960489,0.0018668936,-0.005572268,0.007113249,0.022877386,0.006381199,0.005027409,-0.023104688,0.025016708,-0.005572268,-0.017890088,-0.0075544845,0.00013182743,0.019802108,-0.011425322,-0.024856258,0.024976596,-0.019039975,0.003274167,0.011264873,0.003907607,0.020283457,0.009025269,0.012481612,-0.0417168,-0.009854256,-0.033266474,0.03404198,0.0041750227,0.009947852,-0.030244678,0.028506478,0.024455136,0.0071065635,-0.016138518,0.0071600466,0.011565715,-0.018398177,0.004409011,0.008503809,0.00035495212,0.004027944,-0.022543116,0.0069661704,-0.029950522,0.0036569051,-0.0024652355,0.013297229,-0.019267278,-0.0243348,0.024134237,-0.0068725753,0.011017513,-0.014213127,0.00895173,0.017074471,-0.00039778036,-0.009058696,0.0066385865,0.00080726016,0.018598739,-0.017422112,0.004178365,-0.0077349897,0.0010529481,-0.010128357,0.025123674,-0.0056524924,0.017636044,0.004302045,0.012160714,0.004235191,-0.005248027,-0.0037872703,-0.00046421637,-0.010262065,0.011665995,-0.032597933,-0.03893568,-0.007581226,0.0069795414,0.015082227,-0.017997054,0.004759994,0.005645807,-0.028078614,0.01270223,-0.020457275,-0.019187054,-0.020537501,0.021700758,0.025952661,0.0026290275,0.016379192,-0.008309932,0.0084102135,0.0036502199,0.003115389,-0.030726027,0.0006635244,0.01930739,0.009065381,0.001436522,-0.0023348704,-0.0063477727,-0.023077946,-0.012882736,-0.002405067,0.030057488,0.0047833924,0.065088905,0.0037872703,-0.011498861,0.019253908,0.016245484,0.013323971,0.011599142,0.006561705,0.004546061,-0.020724691,-0.0026641258,0.0024685783,0.028239064,-0.02260997,0.0053382795,0.0065884464,-0.012067119,-0.0039042644,-0.024976596,-0.013758521,0.027008953,-0.0045092916,-0.0054118186,-0.014333464,-0.009399651,-0.0054251896,-0.009626954,-0.004515977,-0.0057728295,-0.03273164,0.0066954126,-0.012481612,-0.03896242,-0.002573873,-0.011458749,-0.0025036763,-0.020898512,-0.019267278,-0.0022345898,0.019053346,-0.008704371,0.03372108,-0.0059199077,-0.023425587,-0.0031738863,-0.002299772,0.008236393,-0.004378927,-0.03214333]},{\"id\":\"6363522a-8516-49ee-b2b8-dae78cdd66b8\",\"text\":\"I posted when I received my first order. Didn't and dont want to show my face.  I posted a pretty pic of the shaker on my desk at work. I don't need or use early bird to get up.  I need/use it to get over my mid afternoon slump when my energy declines from getting up at 5am.\",\"vector\":[-0.012203298,-0.00548707,-0.00042506965,-0.0064004497,0.0071304743,0.0016765103,-0.0009991153,-0.03498686,0.004115302,-0.0039081792,-0.009724609,0.0075922576,-0.03262362,-0.0054259514,0.0005521873,0.006383472,0.022179171,-0.009799309,-0.00042082532,0.010627802,-0.02846757,0.011721142,0.0074768118,-0.0141658755,-0.0047909995,-0.004465035,0.018620724,-0.01997891,0.002755419,0.0047332766,0.03183587,-0.01507586,-0.019734437,-0.017194629,-0.03300391,-0.0011612487,-0.006797719,0.005313901,0.00033126996,-0.011401968,0.018471325,0.002078024,-0.007728076,-0.0013641276,-0.035910428,0.026212981,0.007605839,0.0040134382,-0.005796057,0.016053753,0.013371337,-0.01661061,-0.03629072,0.0021238627,-0.0060948576,0.0032087134,0.009670282,0.01902818,0.02086173,-0.022179171,-0.010804366,0.0102950465,-0.015361079,-0.019218326,0.028386079,-0.018321924,-0.03175438,-0.011775469,-0.0030321493,-0.023320047,0.01207427,0.0014481654,-0.009941919,0.012420607,0.008386796,-0.009772145,-0.0144375125,0.0128348535,-0.0035312825,-0.019150417,0.033818822,-0.015428988,-0.026729092,0.015727788,0.023523774,0.0034735596,0.035394315,0.027462512,-0.0046280175,-0.0020253942,0.002685812,0.03327555,0.013975729,0.020834567,-0.013656556,0.017466266,0.01676001,0.013819538,-0.023890484,-0.032161836,-0.011055631,0.0013420571,-0.012726199,-0.02056293,-0.033085402,0.0058096386,-0.023034828,-0.018851615,0.0028216306,-0.013656556,-0.01251568,0.04107153,0.012454562,-0.02436585,-0.008882534,-0.009643118,-0.014111549,-0.016651355,0.0012902763,-0.01982951,0.021024713,0.0010695711,0.045770854,-0.017248956,0.015850026,0.02049502,-0.035204172,0.0021136764,0.0055244197,-0.021472914,-0.008658433,0.030206047,-0.0003433663,0.014899296,-0.025262251,0.0037078466,-0.01829476,-0.018091032,0.0075243483,-0.010003037,0.003446396,0.02854906,-0.018647889,-0.0144375125,-0.018498488,0.0022953337,0.0037655695,-0.0070218192,-0.011795842,-0.02012831,-0.0028046533,-0.008672015,0.005745125,0.009765354,0.027476095,0.023578102,0.003931947,0.030477684,-0.006397054,-0.0018097822,0.00036352687,-0.006790928,0.002191772,-0.0045906673,-0.007605839,0.027095802,0.020753076,-0.024922706,-0.011279731,0.018702215,0.003982879,0.031211104,-0.019136835,0.022152007,0.008162695,0.032324817,0.0054972563,0.0030813836,-0.03148274,-0.012210089,-0.03140125,-0.00856336,0.0226817,0.0048758863,0.00019789189,-0.009452972,0.022342153,-0.01631181,0.007850313,-0.013418874,-0.020454274,-0.014179458,-0.0021697015,-0.012542844,-0.6254173,-0.021608733,0.02393123,0.0018522256,0.010641384,0.019938163,-0.003534678,0.012115016,-0.015211678,0.009493717,0.0013878959,0.02451525,-0.022912592,-0.0028623762,0.0071101016,-0.024393013,0.016597027,-0.012719408,-0.008726343,0.0019133439,-0.0069029783,0.018647889,-0.0055074426,0.023673175,-0.0037282195,-0.012135388,0.0100234095,-0.0060948576,-0.0065023135,0.033139728,0.0017248957,0.03498686,0.013765211,0.011388386,0.05305073,-0.032813765,-0.004142466,0.0058232206,0.007259502,0.018254014,-0.045254745,-0.009289989,-0.006790928,0.0022206334,-0.017819395,-0.00391497,0.0146819865,-0.017181048,0.038002033,0.005633075,0.024433758,-0.0028182352,-0.012318743,-0.00006111835,0.017629249,-0.0051407325,0.034660894,-0.0072255475,0.0057553113,0.014328858,0.008155905,-0.014600495,-0.025588216,0.00085438363,-0.03474239,0.0030898722,-0.017656412,-0.02656611,0.011592114,0.0024243612,0.037159957,0.0065125,0.0065023135,0.032161836,0.023374373,0.029173827,0.0059658303,-0.006227281,0.007137265,0.0086923875,-0.010770411,0.006712832,-0.03433493,-0.017289702,0.014220203,-0.01097414,-0.009459763,-0.021472914,0.009059098,-0.0013912914,0.014247367,0.020169055,0.0324878,-0.007734867,-0.014736313,0.019965328,-0.017167466,0.004638204,0.010621011,-0.017466266,-0.017914468,-0.015904354,0.01632539,0.012155761,0.048106935,0.011530995,-0.003986275,0.008780669,0.015863607,-0.028141605,0.014342439,-0.005942062,-0.015266006,0.000259753,-0.005935271,-0.031075286,0.0089640245,-0.008257768,0.0023836156,-0.008006504,-0.008006504,-0.020549348,0.027897133,-0.0035618418,-0.0014906087,0.027027894,0.0067366003,0.018824453,-0.006784137,-0.0030423356,0.01852565,0.0089368615,0.013948566,-0.0020423715,0.0027910713,-0.0018861803,0.017765068,0.0038742244,0.027027894,-0.02715013,-0.019191163,-0.024827633,-0.019802345,0.008726343,-0.012977463,-0.032080345,-0.009181335,0.007347784,0.0047434634,0.017697157,-0.008787461,-0.017316867,-0.021269185,0.0038844107,-0.0038402698,-0.01954429,-0.015048697,-0.018457742,-0.004071161,0.009466553,-0.020658003,0.015578388,-0.035204172,-0.008386796,-0.027245203,-0.008142322,-0.0064513814,0.028413242,-0.0053546466,-0.038545307,-0.015198097,-0.0130997,-0.021826042,0.0035754235,-0.033764493,0.0074156933,0.0031645724,-0.008638061,0.0010424075,0.0033037865,0.008923279,0.007558303,0.003432814,0.003945529,0.04107153,0.01610808,-0.01924549,0.0132491,-0.036263555,0.02239648,0.007259502,-0.008610897,-0.015632717,0.023360793,-0.0043733576,-0.024039885,0.020820985,0.014912878,0.0016119966,0.009792518,0.020943223,-0.003319066,-0.0033903709,-0.029146662,0.018607143,-0.045635037,0.012597172,-0.01881087,0.031048123,0.019408472,-0.000398967,-0.013310219,0.0070218192,-0.041397497,-0.01647479,0.01667852,-0.018335504,0.041451823,-0.019748019,0.010695712,-0.022749608,0.0019116462,0.01354111,-0.013187982,0.0069878646,0.01836267,0.02518076,-0.0057111704,-0.00085777906,-0.017642831,-0.007273084,0.018865198,0.005415765,0.03015172,0.014546168,-0.003942134,0.015361079,-0.016705683,0.033329874,-0.00052459916,-0.001475329,0.010471611,0.011279731,0.0076941215,0.00944618,0.0044378713,0.0012758456,-0.003312275,-0.015931517,-0.004084743,-0.00016330059,-0.004420894,-0.025289416,0.01851207,-0.0031526883,-0.026742674,-0.003305484,0.010444447,0.0069267466,0.033927474,-0.0006638132,0.03346569,0.008502242,-0.030341865,0.0024056863,0.0034446982,0.015564807,-0.019680109,0.013384919,-0.014600495,0.00084419723,-0.004454849,0.0092084985,-0.0126854535,0.02188037,-0.008237395,0.013113282,0.016637774,0.021744551,0.008284932,-0.0017189536,-0.015632717,0.010865484,0.020685166,0.012536053,0.013215146,-0.010267883,0.008807833,-0.018240433,0.014790641,-0.012427398,-0.0014286415,-0.020834567,-0.006610968,-0.014804223,-0.0021204671,0.04414103,-0.015795698,0.019517127,-0.013602229,-0.0032104112,-0.0040881387,-0.007870685,-0.02064442,-0.0037078466,0.0020287896,-0.015306751,-0.013676928,-0.023170646,-0.006251049,-0.0021323513,0.0066313413,-0.017669994,0.010091319,0.0067162276,-0.0048147677,-0.0110827945,-0.017235376,0.028005786,0.0105395205,-0.014885714,0.0081491135,-0.046286963,0.010376538,0.10523222,0.0225323,0.0010203369,0.024270777,-0.012950299,0.017262539,0.008128741,-0.020182637,0.013126864,0.011680396,0.02751684,-0.020087564,-0.023605265,-0.016990902,0.010709293,-0.0229805,-0.006138999,-0.009154171,0.0023666383,-0.016787173,0.006196722,-0.0012036919,-0.023401538,0.018471325,0.025357325,0.02334721,0.035856098,0.0049268184,0.020399947,-0.005021891,-0.0052290144,-0.010064155,0.0013598833,0.013045372,-0.0052867373,0.0040236246,0.023306465,0.0060269483,-0.013323801,0.0017299888,0.032732274,0.01822685,0.030097393,-0.020250548,0.01859356,0.0076873302,0.022002606,0.008644851,0.007374948,-0.011463086,0.016732845,-0.0058809435,-0.019041762,0.0070286104,-0.0026518574,0.03849098,-0.020399947,-0.015428988,-0.016067335,0.02408063,0.0003616169,-0.019218326,-0.0027486281,-0.0069878646,-0.023768248,-0.016624192,-0.002977822,-0.017398357,-0.007802776,-0.0014897598,-0.007361366,-0.011184658,-0.023279302,0.006967492,0.008610897,0.020467857,0.0033360433,-0.009038725,0.006723019,0.0040202294,0.0051712915,-0.028847862,-0.016773593,-0.0121693425,-0.00078944536,-0.012298371,0.021893952,-0.011191449,0.012081061,-0.009996246,0.016841501,0.017941631,0.03607341,-0.01412513,-0.0011663418,-0.0024362453,0.012155761,0.0074971844,-0.00060524145,-0.00046772516,0.016732845,0.016583446,0.02019622,-0.014994369,-0.0015678555,0.0016620796,0.01464124,0.025275834,-0.018770125,-0.0073885294,0.024583159,-0.0022579834,-0.0010721177,0.015727788,0.027190875,0.024963452,0.00024892995,0.0028657715,-0.011904497,-0.005870757,-0.035177007,0.010003037,0.059760164,-0.0026959984,-0.032026015,0.022355735,-0.0039659017,-0.029092336,-0.0015890772,0.0066619003,-0.0077824034,0.025275834,-0.020236965,-0.035693116,-0.034416422,-0.025574634,0.006240863,0.005049055,0.007266293,-0.016542701,-0.008624478,-0.010430865,-0.030803649,-0.019231908,0.0010695711,-0.022722445,-0.017955214,-0.000109503715,-0.020155475,0.038681127,-0.0064344043,-0.0023513588,-0.015632717,-0.009181335,0.018376252,-0.041316006,-0.014070802,-0.0047027175,0.04405954,0.0013607321,0.012923135,0.0055719563,0.0012707524,0.017955214,-0.013799165,-0.012719408,0.006060903,-0.009609163,-0.022369316,0.028684879,0.013384919,0.009344317,0.023021245,0.041343167,0.008576942,0.00782994,-0.02188037,-0.009160962,-0.02356452,-0.03623639,0.022586627,0.014573331,-0.0072798748,0.01383312,0.006186535,-0.0077824034,0.036562357,0.026769837,0.031428415,-0.0043190303,0.0058809435,0.0009422412,0.002831817,0.019666526,-0.020209802,-0.013317009,-0.001184168,-0.0131064905,-0.014070802,0.033411365,0.015306751,0.020033237,-0.0018012936,-0.029554117,-0.016746428,-0.020101147,-0.009792518,0.0066483184,-0.019014599,-0.0064887316,-0.009181335,-0.025207924,-0.023754666,-0.013873866,-0.017832976,-0.0076805395,-0.028875025,0.011157495,-0.028060114,-0.027095802,0.00021837077,-0.021527242,0.014912878,0.024555996,0.03140125,0.024759723,0.0034277209,-0.012753363,0.00043440718,0.0052697603,-0.00067824393,0.007952177,0.02715013,-0.0066313413,0.005650052,0.01807745,0.016488373,-0.02304841,-0.021812461,0.012916345,0.012617544,-0.008576942,-0.016664937,-0.014369603,-0.015972262,-0.0001750786,0.0027859781,-0.0049064453,-0.0061525805,-0.0003949349,-0.02289901,0.012325535,-0.0037859422,0.025357325,0.006981074,-0.00035143053,-0.01814536,-0.024230031,-0.005415765,-0.0073885294,0.0015109815,-0.005619493,-0.015035114,0.024026303,0.018675052,-0.004835141,-0.0026382755,-0.029119499,-0.025791945,0.026375964,0.0058232206,-0.020549348,-0.005042264,-0.013975729,0.033791658,0.0066313413,-0.022219917,-0.0009320549,-0.00581643,-0.0028776557,0.0019693691,-0.015646297,-0.02436585,-0.006359704,-0.018620724,-0.010512357,0.0011154099,-0.016895829,0.0018573188,-0.031346925,0.02501778,-0.031238269,0.039115746,0.011442713,-0.0020508603,-0.009744981,0.01844416,0.023252137,0.0073274113,0.029472627,-0.002015208,-0.017561339,-0.018308342,0.016040172,-0.0037214286,-0.0103561655,0.009962291,-0.019231908,-0.03213467,-0.046151146,0.014912878,0.030722158,-0.006213699,0.015768535,0.020264128,-0.00035036943,0.022722445,-0.025194343,-0.019897418,-0.020875312,-0.0197616,-0.00007899759,0.02408063,-0.0005250236,-0.008610897,-0.027095802,0.037431594,-0.0035244916,-0.009459763,-0.019680109,-0.0030372425,0.042918663,-0.0039930656,-0.020603675,-0.025194343,-0.016787173,-0.02511285,0.023102736,-0.0144375125,0.0036535193,-0.0046653673,-0.0040134382,-0.0062476536,0.0037791515,-0.0030321493,0.003147595,-0.012053897,0.006807905,-0.01777865,0.00038114082,-0.0036263554,0.01500795,0.017534176,-0.019775182,0.0014558051,-0.011809424,-0.040935714,-0.007429275,0.015551225,0.0063936585,0.02011473,-0.024338685,-0.016895829,0.025778363,0.014356022,-0.011734723,-0.014111549,-0.014084385,-0.0026280892,-0.0056534475,0.005008309,-0.027109385,-0.032433473,0.0007346935,0.016664937,0.0014362813,-0.008699179,0.01368372,-0.02027771,0.004420894,0.011028467,0.0086923875,0.04112586,0.010403701,0.01580928,-0.014356022,-0.03343853,-0.008767088,-0.005775684,-0.010362956,0.018281179,0.019693691,0.0078095673,-0.010654966,-0.017656412,0.0057383343,-0.017683577,0.020359201,0.023510192,0.00033042108,0.0060099713,-0.0013225332,0.016542701,0.00026017742,0.016488373,0.0076533756,-0.022749608,-0.014193039,0.017887304,-0.015157351,0.0021527242,0.0035584462,0.006865628,-0.006960701,-0.012963882,-0.013398501,0.0052833417,0.017534176,0.009704236,0.0036331464,-0.016515536,-0.017384775,0.006424218,-0.0051780827,0.02158157,-0.0055719563,0.0039251563,-0.013547901,-0.0008552325,-0.011089586,-0.0040202294,-0.038979925,0.01375842,-0.006739996,0.00038644625,0.002419268,0.22991365,-0.018851615,-0.02121486,0.021690223,-0.00013815294,0.007850313,0.03300391,0.00629519,0.025085688,0.015551225,0.009452972,0.0035143052,-0.053756986,0.0010347676,0.014967205,-0.009996246,-0.016284645,-0.0115038315,-0.0052833417,-0.013853493,0.017507013,-0.021703806,-0.014097966,-0.016542701,0.04427685,0.01361581,0.0025516911,0.0060405303,0.034525078,0.0030100788,-0.019014599,-0.0141658755,0.005955644,-0.012053897,-0.006427613,-0.0034430004,0.0036501237,-0.0066788774,0.0013157423,0.036616683,-0.010763621,-0.01697732,-0.0041220933,-0.012060688,0.010213556,0.0075990483,-0.01954429,-0.0064174267,0.02920099,0.0013131957,-0.005181478,-0.0017198025,0.014152294,0.016882246,0.00871276,-0.004016834,0.008142322,0.00530711,-0.013765211,-0.009127007,0.0029829151,0.033411365,-0.012766944,-0.022192752,-0.022274243,0.0063427268,-0.000874332,0.003059313,0.007863894,-0.0026314845,0.015510479,0.011374804,-0.026634019,0.01610808,-0.010267883,-0.0125632165,0.02114695,0.016841501,0.038681127,0.033058237,0.0019897418,-0.010471611,-0.009099843,-0.0072866655,0.012502098,-0.0047468585,0.035367154,0.008502242,0.013025,0.0061356034,-0.011992779,0.0036399374,-0.009670282,-0.012671871,0.018349087,-0.027313111,0.029744264,0.028766371,-0.0062340717,-0.0074836025,-0.011700769,0.017588504,0.0112321945,0.016882246,-0.0034311162,-0.002755419,0.0097517725,0.0060269483,0.0018878779,-0.01083153,0.01061422,-0.043298956,0.014654823,0.0076397937,-0.021907533,0.008318887,0.021635896,-0.01354111,0.009697445,-0.033112563,-0.0077756126,-0.0025075502,0.018973853,0.024420178,0.03409046,-0.01565988,-0.012889181,-0.0141658755,0.03900709,-0.03813785,0.025887018,0.007802776,-0.011979197,-0.031944524,-0.03205318,-0.0087535065,0.00907268,0.0060065757,0.0030236607,0.014586913,-0.03694265,0.0142881125,0.03900709,-0.0030423356,0.035883263,-0.01704523,0.0008284932,-0.014777059,-0.011700769,0.0016883945,-0.0010407097,0.012929927,0.005588934,-0.012542844,0.03835516,0.0028046533,-0.037431594,-0.022545882,-0.015931517,0.006763764,-0.015687043,-0.021119786,0.008162695,-0.010335792,-0.02056293,0.014899296,-0.17286986,0.004960773,0.0052731554,-0.031346925,0.0013700697,-0.0003393342,0.031700052,0.01939489,-0.034389257,0.022477971,0.03694265,0.005371624,-0.008529405,-0.0257512,-0.010953766,-0.0032375748,-0.024270777,0.01610808,0.01866147,0.021160532,0.028875025,-0.02041353,0.0072255475,0.0030728949,-0.018104615,0.016746428,0.004369962,0.02306199,-0.036833994,-0.02501778,-0.03490537,0.012780527,0.027204458,0.015089442,0.032895256,-0.014301694,0.012699035,-0.00093969464,-0.0077077034,0.0141658755,0.014627659,0.01704523,0.005320692,0.019435635,-0.0035177006,0.0079997135,0.019788764,0.020264128,-0.015320334,-0.020264128,0.008176277,-0.03974051,0.010919812,0.005205246,0.0008947048,0.008115158,0.007374948,0.027353857,0.015673462,-0.01574137,-0.011035258,-0.0074700206,-0.025520308,-0.011463086,0.0012486819,-0.004597458,-0.011048839,0.01712672,-0.011965615,-0.00069522124,-0.0194628,-0.0060201576,0.015917934,0.0007100764,0.0068588373,0.031048123,-0.031238269,0.0048623043,0.016732845,0.00662455,0.013038581,0.017221794,-0.012393444,0.01889236,-0.019068925,-0.02341512,0.01866147,0.018838035,-0.015537643,-0.039930657,0.0033988594,-0.024596741,-0.012305161,-0.0070965197,0.006244258,0.01464124,0.016637774,0.010498774,-0.009133798,-0.019652946,0.030423356,0.026212981,-0.032324817,0.026959984,0.0149536235,0.00033169438,-0.006556641,0.009507299,0.02202977,-0.03256929,-0.0097517725,0.025887018,0.02056293,0.014586913,0.022192752,0.009724609,0.017153883,-0.024474503,-0.0008272199,-0.035774607,0.020576512,-0.002115374,-0.019965328,0.004471826,-0.019870255,-0.03476955,-0.11962899,-0.052779093,0.011517414,-0.024270777,-0.013493574,0.0018267597,0.01829476,0.034959696,-0.010261092,0.035856098,0.009249244,-0.013989312,0.009269617,-0.0058877347,0.04647711,-0.02436585,0.00014239727,-0.033791658,-0.024678232,0.038626797,-0.018607143,-0.009738191,-0.023591684,-0.008746715,0.0050558457,-0.036182065,-0.016189571,0.0040915343,0.014980787,0.0037044513,0.00457369,-0.018539233,0.021690223,-0.025357325,-0.012264416,0.004251121,-0.028847862,-0.00009507299,0.0264982,-0.037730396,0.013568274,0.005358042,0.022491554,-0.021174112,0.0038674334,0.01390103,-0.009860427,0.013446038,0.0072187562,0.0014422233,-0.022410061,0.0002777914,-0.03572028,-0.028005786,0.02583269,-0.028114442,0.0128348535,0.020060401,-0.014519004,0.008515824,0.0066924593,0.011442713,-0.004882677,-0.0064717545,-0.0059182937,-0.007823149,-0.0063461224,0.010600639,0.0101456465,0.012026734,-0.01815894,0.027530422,-0.016406883,0.023021245,-0.0054938607,-0.02780206,0.007884268,-0.020209802,0.002147631,-0.0010924905,-0.008862161,-0.011028467,-0.00490305,-0.031020958,0.029499792,0.009059098,0.02928248,0.022002606,-0.013425664,-0.018240433,-0.020060401,0.007503975,-0.002553389,-0.033981804,-0.03300391,0.040501095,0.0050151004,-0.0124409795,0.024134958,-0.0039081792,0.0053105056,-0.015116606,-0.031183941,0.021486497,0.015483316,-0.0032834136,-0.010383328,-0.019503545,-0.0031458973,-0.003813106,-0.00548707,-0.029744264,0.011211822,0.0031730612,-0.02584627,-0.01163286,-0.0018861803,-0.023944812,0.010953766,-0.009432599,0.012923135,-0.0065464545,-0.008821416,-0.00391497,0.010682129,0.010227137,0.026579691,0.01580928,-0.0060914624,0.022736026,-0.020739494,-0.0032528546,0.0027401394,-0.032243326,0.013337382,0.04156048,-0.0042035845,-0.007137265,0.012705826,0.03270511,-0.0028725625,-0.02429794,-0.01141555,-0.02319781,0.010308629,-0.027842805,-0.013181191,-0.011680396,0.0009159264,-0.008672015,0.02466465,0.00030644063,0.0055006514,0.025153598,-0.007374948,0.0003149293,-0.0064208223,0.0063563087,0.011021676,0.0005288435,-0.0070218192,-0.048188426,-0.00070073886,0.009018352,-0.004624622,-0.022382898,0.012963882,0.035883263,-0.0297171,-0.0067569735,0.021309933,-0.0046008537,-0.006315563,-0.009011561,0.025275834,0.0077959853,0.03360151,-0.02326572,-0.018131778,-0.008848579,-0.025968509,0.018987434,0.00039132722,0.023157064,-0.0010975837,0.02224708,0.026919238,0.038735453,-0.011911288,0.028386079,0.0048690955,-0.001102677,-0.019326981,-0.015157351,-0.005042264,0.017330447,0.036345046,0.01749343,-0.022939755,-0.014260949,-0.004991332,0.020617258,0.019680109,-0.01595868,-0.017900886,-0.0086923875,-0.016366137,0.012393444,-0.004465035,-0.017928049,0.007850313,-0.0005504896,0.0085429875,-0.027693404,0.012474935,0.021853207,-0.01061422,-0.011164285,0.0034650709,-0.032976747,-0.019639364,0.01097414,0.007734867,0.0055821426,-0.0032256907,-0.031808708,0.014233785,-0.0041900026,0.0225323,-0.019367727,0.024338685,0.0124409795,-0.015727788,-0.037268613,-0.0042477255,-0.004298657,-0.0147091495,-0.017479848,-0.017819395,0.034307767,0.011483459,0.071712196,-0.0012104829,-0.010349374,-0.017588504,0.008380005,0.011334059,0.015456152,0.013384919,-0.007361366,0.0036535193,0.0022511927,-0.009554836,0.002864074,-0.029662773,-0.020332038,0.0063427268,0.021758134,0.019788764,-0.02825026,-0.012814481,0.028521897,0.0019863464,0.026511783,-0.00043971257,-0.034144785,-0.030070229,0.01098093,-0.005422556,-0.007843521,-0.051176433,0.01954429,0.01265829,-0.013846702,-0.011001303,0.029092336,0.005334274,-0.008794252,0.02656611,0.0128348535,0.025425235,-0.011721142,0.011775469,-0.026837748,0.018308342,0.0015559713,-0.013133654,-0.024936287,0.024053467,-0.043652084]},{\"id\":\"715e2a0d-ea6e-4982-b838-aec48dfc33ba\",\"text\":\"I already uploaded the video to my TikTok and it still says “ready to post” what do I do next? \",\"vector\":[-0.0152372075,-0.011160695,-0.022569958,-0.002589766,0.0075751045,0.018244877,-0.025391202,-0.02873444,0.006928828,-0.010638703,0.014851928,-0.017250607,-0.023265949,-0.03862744,0.014864355,-0.025975337,0.00403612,0.004508399,0.01953743,-0.029107291,-0.024819497,0.0010579668,-0.01644276,-0.008998156,-0.0074943197,-0.01008564,0.02069327,-0.011098553,0.0031878822,-0.007786387,-0.012987669,-0.015746772,-0.025155064,-0.039795708,-0.024931353,-0.028983008,-0.012701816,-0.0373846,0.02069327,-0.016256336,0.0032158461,0.0092032235,0.006580833,-0.021277405,-0.018319448,0.0265719,-0.008656374,-0.009041655,-0.020817555,-0.0037440527,-0.0010004855,-0.023216235,-0.049440138,-0.03228896,0.0034053791,-0.0015488883,0.011558404,0.0107940575,-0.010315564,0.01684047,-0.0036943392,-0.01239732,0.0050055347,-0.007699388,0.008003884,-0.00023050782,0.0005682105,0.042157102,0.008780658,0.0011690456,0.021066124,0.0010167977,0.017747743,-0.016902613,0.034004077,0.010091853,-0.0025012137,-0.020581415,0.009880571,0.035992622,0.017884456,-0.023937082,-0.006885329,0.023067094,0.021637829,0.018667443,0.0055461694,0.012036897,0.0056393826,-0.027218176,0.004508399,0.041883677,0.029405573,0.00776153,-0.012776386,0.019661715,-0.004489756,0.021625401,-0.018145451,-0.002968832,0.012217108,-0.002968832,-0.030698126,-0.008476162,-0.003529663,0.01328595,-0.0017694922,0.00050296145,0.014590931,-0.007152539,-0.025130207,0.0061738035,-0.008097096,-0.04441907,-0.0017166715,0.011657831,0.013024954,-0.021985823,-0.024620643,-0.020519273,0.027193319,-0.00097096805,-0.006866686,-0.01723818,0.00992407,0.0011581708,0.0034675212,-0.020941839,0.020022139,0.002999903,0.032711525,-0.010178852,0.012328964,0.036862608,-0.007531605,0.022470532,-0.018816585,0.0056735603,-0.00074259634,-0.03104612,0.013459948,0.028635014,-0.021153122,0.02409865,0.0068729003,-0.012049325,0.00069521315,-0.007662103,-0.0039832992,0.005847558,0.0064938343,-0.011614331,0.009395864,-0.0062421593,-0.03300981,0.022197107,0.020904554,-0.023191378,0.027143607,-0.018331876,0.011589475,0.039895136,0.009302651,-0.0020196135,0.0099862125,0.02888358,0.028983008,-0.02572677,-0.008121953,0.0026177298,-0.026025051,0.013708515,-0.025378775,0.016716186,0.00013467328,0.032189533,0.01313681,-0.012720458,0.020494416,-0.0060588405,-0.0128261,-0.0022712885,0.013894942,0.033556655,-0.032413244,-0.019736284,0.014814642,-0.009532576,-0.0075564617,-0.010626274,-0.02015885,0.019711427,0.03020099,-0.003492378,-0.6335497,-0.016020196,0.035967764,0.0077304593,0.0079665985,0.017213322,-0.0059935916,0.0033245946,-0.017673172,0.025043208,-0.018331876,-0.0060930187,0.022495387,0.008631517,-0.0002831343,-0.01023478,0.05073269,-0.012447034,-0.03877658,0.0013943102,-0.015473347,-0.003691232,0.0023101273,0.0020165064,0.0058040586,-0.028833868,0.0074321777,0.0023023596,-0.03407865,0.037956305,-0.008600446,0.021488689,0.003781338,0.014479076,0.051254686,-0.026820468,-0.028759297,-0.006108554,-0.028485872,0.006742402,-0.04665618,-0.021973396,-0.0054809204,-0.005058355,-0.0017446354,-0.014180794,0.012950383,-0.021724828,0.01753646,0.011247694,0.0007290028,-0.017188465,0.018804155,0.010968056,-0.019189436,-0.030847266,0.030151276,0.016256336,-0.003464414,0.007947956,-0.014752501,0.017797455,-0.017747743,-0.0070344694,-0.025478201,0.021041267,-0.0015442276,0.020270705,0.013857656,-0.0038683368,-0.018008739,0.004489756,-0.033357803,0.01892844,0.0011838042,0.04200796,-0.015560346,0.009967569,0.030573843,0.010719487,0.009663074,0.001652976,0.0053846003,-0.014155937,0.008793087,0.014578503,-0.019214293,-0.009296437,0.00355452,0.026149334,0.015498204,0.02517992,0.012092824,-0.020817555,0.011490048,0.0135966595,-0.018903583,-0.010327993,0.0128136715,0.01984814,0.00403612,-0.014118652,-0.017002039,0.013957083,0.049092144,-0.011956112,-0.011384406,-0.00120167,0.009625789,-0.015274493,-0.010315564,-0.00256957,0.0016032625,0.0051888535,0.015038353,-0.029529857,0.028088164,-0.011129624,0.017959025,-0.018157879,0.01876687,-0.02015885,-0.00579163,-0.0013073114,0.003274881,0.024396932,0.010359064,0.006089912,-0.0027124963,-0.0024328576,0.0034209148,-0.011272551,0.030325275,0.010595203,-0.033457227,0.019922711,0.014305078,0.013174094,-0.005080105,-0.025925623,0.009837071,-0.008097096,0.0035669482,0.011639188,0.0033774152,-0.014727644,-0.010110497,-0.007276823,-0.026447617,0.01986057,0.008289737,-0.013845228,-0.0071401107,0.0036663753,0.0027528887,0.0019015438,0.0033587727,-0.012950383,-0.0077304593,-0.010166424,0.009781144,0.027143607,0.002552481,-0.020817555,-0.04009399,-0.01019128,-0.015771627,0.0039832992,-0.008482377,-0.021538401,-0.001515487,-0.020183707,-0.020357704,-0.011775901,-0.0056984173,0.023290806,0.01707661,-0.016877756,0.01645519,-0.011831828,-0.00384348,-0.0076186038,0.0024297505,-0.0030247597,0.004471114,0.0058941646,-0.037185747,0.028162735,-0.03614176,0.006860472,0.007885814,0.001232741,-0.000977959,0.017710457,-0.0059904847,0.018244877,0.025130207,0.030225847,-0.01900301,-0.010054569,-0.0043747937,0.026671328,0.013969512,-0.03027556,0.0023986795,-0.020220993,-0.02217225,-0.015585203,0.0051546753,0.014416934,0.026199048,-0.026124477,-0.0050303913,-0.0075129624,0.0018285271,0.021911254,0.0030589378,-0.0066926884,-0.014454219,0.039422855,-0.016790757,-0.01621905,0.01008564,-0.016032625,-0.01953743,0.03159297,0.00641305,0.030698126,0.0028973687,-0.023352947,-0.025478201,0.019810855,0.0076496745,0.014640645,0.02132712,-0.0065994756,0.0033929509,0.012521604,0.0053504226,-0.008426449,-0.021513546,0.0023023596,0.027019322,-0.010371492,0.028485872,0.021588115,0.045313913,-0.00266589,-0.009967569,-0.00012302166,-0.00069171767,-0.010762987,-0.033034664,-0.00830838,0.008898728,-0.019351006,-0.007786387,-0.0217124,0.021053694,0.022458103,0.009085154,0.015721915,-0.010079425,-0.0024064472,-0.01822002,-0.013124381,-0.014416934,-0.015485776,0.011011555,-0.007270609,-0.020432275,-0.027988737,0.040392272,-0.012304108,0.013385377,0.006866686,-0.00011030197,0.0075502475,0.01019128,-0.0038186233,-0.0047383243,-0.029107291,0.023067094,0.005337994,-0.013758229,-0.013261094,0.007537819,0.013447519,-0.007444606,0.02627362,0.0045860764,0.023191378,0.0017244393,0.0070096124,-0.010197495,0.007786387,0.025080493,0.014516361,0.03383008,0.0043344013,-0.0034737354,0.009439363,0.0035793767,-0.014006797,0.014566074,0.012496747,0.022085251,0.0008062919,0.009458005,0.008544519,0.0060526263,0.0011333139,-0.0030900086,-0.01328595,0.00081949704,0.009594718,0.00029964073,-0.023999223,0.024981067,0.020979125,-0.018182736,0.0067796875,-0.03624119,0.017250607,0.08590504,0.00088552287,0.0010859306,0.028088164,-0.02990271,0.03405379,0.0027404602,-0.03005185,-0.0065186913,-0.0021438976,-0.0028072628,0.0033991649,0.007425964,-0.0050055347,0.008078454,-0.011645403,0.013472376,-0.019425575,-0.0041231187,-0.05254724,0.0037098748,0.0047383243,0.006891543,0.006127197,0.011104767,-0.00811574,0.013000097,0.017648315,0.013957083,0.018518303,-0.012502962,-0.0011830275,-0.004511506,0.014926498,0.000107097774,0.029082436,0.01652976,0.028610157,0.010141567,0.027491601,-0.015560346,0.03067327,0.015224779,-0.0136463735,0.02580134,0.013696087,-0.0010564133,-0.0124097485,0.0027730847,0.0144045055,0.023924652,0.00015554909,-0.0571706,0.007363822,-0.0057232743,0.017350035,-0.004033013,-0.027441887,0.0072954656,-0.019785998,-0.0136215165,-0.017735314,-0.0032873095,-0.012366249,-0.0135966595,-0.021774542,-0.01019128,-0.02285581,-0.0028662977,0.01692747,-0.023601515,-0.024583358,-0.037036605,-0.022395961,-0.024720069,-0.0028880474,0.018095737,0.010719487,-0.008936013,0.0028802797,-0.02264453,-0.014143509,-0.008805515,-0.015423633,0.0029595105,0.0088241575,0.0010929216,0.010657345,-0.013298378,0.0053504226,0.028535586,0.022532674,0.02116555,-0.007755316,0.014044082,0.0017182251,0.0043779006,0.018679872,-0.017983882,-0.023626372,-0.015001068,-0.025155064,-0.012192252,-0.020506846,-0.013074667,-0.0001790465,0.017872026,0.034277502,-0.008681231,-0.025217205,0.031543255,0.014093796,0.004896786,0.0052634235,0.026049908,0.04866958,0.006922614,0.0011566172,-0.009147296,0.016393049,-0.010539276,-0.031916108,0.0006664725,0.0050987476,-0.0058351294,0.034178074,0.010762987,-0.022569958,-0.017499175,0.02409865,0.013733372,0.007370036,-0.008625303,0.001621905,-0.03104612,-0.004769395,0.0217124,0.023738228,-0.001253714,-0.013957083,0.0055182055,0.005275852,-0.020196136,-0.014802214,0.0072581805,-0.031070977,-0.021637829,0.009526362,0.0073265363,0.024732498,-0.004287795,0.02279367,-0.01436722,-0.032388385,0.012154967,-0.025378775,-0.0043747937,0.017872026,0.024695214,0.011912613,0.015796484,-0.028635014,0.023937082,0.0043592583,-0.01004214,-0.006425478,-0.005393922,-0.030374987,-0.017934168,0.020332849,0.015784057,0.0046575395,0.033457227,0.030623555,-0.008525876,0.02316652,-0.010874842,-0.013857656,-0.004129333,-0.035719197,-0.021824256,0.011440334,0.011682687,0.005689096,-0.00043499368,0.006686474,-0.023651227,0.014280221,0.01807088,0.022346247,0.010806486,-0.016641615,0.014802214,-0.004200796,0.031021263,-0.0009243616,-0.019935139,-0.013186523,0.015585203,0.027491601,-0.0011535101,0.002400233,0.0044245073,0.024459073,-0.013944655,0.02642276,0.0034178076,-0.026174191,-0.008544519,-0.012676959,-0.0020755413,-0.034824353,0.016194193,-0.0012078843,0.026323332,0.001277794,-0.019065153,0.005782309,0.009489076,-0.012913099,-0.012838528,-0.025751626,0.011278765,0.019636858,0.028287018,0.03793145,0.013161666,0.0017865812,0.020196136,0.011098553,0.0076186038,0.0043157586,0.024285076,0.009563647,-0.010421206,0.008563162,0.013720944,-0.025142634,-0.019114865,0.019301292,0.0036570542,-0.028336732,-0.015721915,0.0050055347,-0.010812701,0.029032722,-0.0104398485,-0.0011838042,0.0048128944,-0.0099862125,-0.007848529,0.006891543,-0.00026856977,0.016964754,0.039770853,-0.012502962,-0.016964754,0.00038508594,-0.0026192835,0.013012526,-0.002493446,0.004853287,-0.009290222,-0.014006797,0.012273036,-0.027168462,-0.013609088,-0.0065311193,-0.0019667929,0.01839402,-0.036042333,0.012229537,-0.0068977573,0.012639673,0.007401107,-0.003563841,0.0042784736,-0.03552034,-0.017983882,-0.010669773,0.0050459267,0.007407321,-0.017163608,-0.0027435673,0.005720167,0.013845228,0.00756889,0.0011333139,0.011825614,-0.027143607,-0.017785028,-0.012863385,0.011409263,0.00080784544,0.01692747,0.03305952,0.011682687,0.038329158,0.0006521022,-0.018816585,-0.009221866,0.014093796,-0.01239732,0.0017555102,0.0151874935,-0.040044278,0.028311875,0.0032810953,-0.016591903,-0.02788931,0.021451402,-0.002100398,-0.016281193,-0.008134382,0.00088629965,0.006350908,-0.0044928635,-0.013919798,-0.0064068357,0.03552034,0.022110108,0.0025835517,0.019276435,0.0032873095,0.0003730459,-0.021774542,0.013124381,-0.0036881252,-0.017287891,-0.0074321777,0.00857559,0.0026488008,-0.006574619,-0.016741043,-0.0143796485,0.0025944267,-0.009806001,-0.0027497816,-0.022197107,0.020519273,-0.03422779,0.029877853,0.020568987,0.026025051,-0.006674046,0.0013337217,-0.015386349,-0.028485872,-0.006642975,-0.0078112436,-0.034948636,0.023265949,0.001208661,-0.019326149,-0.01398194,0.002275949,-0.019276435,-0.016778328,0.009737644,0.012043111,0.0037316245,-0.02109098,-0.012341392,0.02317895,0.00042411886,0.021351976,0.006450335,-0.0136463735,0.0008055151,-0.009979998,-0.01923915,-0.015025925,-0.013459948,-0.010023497,0.0010781629,0.014740072,0.014889212,-0.0011100107,-0.013584231,0.012670745,-0.007929314,0.028809011,0.009060297,0.0036788038,-0.00015652005,-0.028063307,0.0047849305,0.025900766,0.03276124,-0.0017275463,0.01313681,-0.0015232547,-0.009545004,0.026223905,0.0021330225,0.009315079,-0.040914264,-0.012043111,0.037111174,-0.013957083,-0.00024973298,-0.00036411302,0.017200893,-0.03474978,-0.013174094,0.017499175,-0.026199048,-0.020332849,0.013633945,-0.0152869215,-0.014665501,-0.000028813478,-0.0018518303,-0.03435207,-0.038204875,0.030225847,-0.02378794,-0.028237304,0.023290806,0.017809885,0.0045052916,-0.041610252,0.00048820273,-0.027168462,0.0045239343,-0.014230507,0.016057482,-0.013087096,0.029852996,0.0079417415,0.009861928,-0.02664647,-0.0039584427,0.02032042,0.014665501,0.0054218858,0.25095406,-0.005527527,-0.0018533838,0.03492378,0.000107486165,0.008656374,0.015013496,0.007407321,-0.011110982,-0.00044819884,0.01150869,0.025552772,-0.009681717,-0.010700845,-0.014491504,-0.0039149434,-0.024123507,-0.022818526,-0.0032251675,-0.0127391005,0.0063198367,0.00044470336,-0.0005068453,-0.01513778,0.032736383,-0.017710457,0.027292747,0.00021031169,0.002334984,-0.021451402,-0.027715312,-0.014963783,0.024831925,0.005974949,-0.020817555,-0.0031070977,0.010787844,-0.015970483,0.032164678,0.024533644,-0.005878629,-0.004135547,-0.011937469,-0.020581415,0.012614817,0.015088066,-0.011521119,-0.0096320035,-0.012117681,-0.0050987476,-0.008525876,-0.01162676,0.003871444,0.021811826,-0.009395864,0.0076683173,0.013248665,-0.0014836392,-0.0024048937,0.015125352,0.011421692,0.026298476,-0.005872415,0.008240024,-0.02972871,-0.0030294203,0.006127197,-0.0010548597,0.03082241,-0.010203709,0.017474318,-0.009352365,0.012801243,0.027193319,-0.014752501,-0.01746189,0.0017135644,-0.0038683368,0.02843616,0.026049908,0.0021749684,0.0039832992,-0.0006047189,-0.03783202,0.0028616372,-0.027690455,0.016318478,-0.0099364985,-0.0012094378,-0.029803282,-0.01116691,0.019798428,-0.011564618,0.0010206816,-0.01093077,0.0070717544,-0.0051018544,0.009681717,0.0039273715,0.008631517,-0.011415477,0.0071587535,0.003681911,0.0066243326,-0.00020040781,-0.009700359,-0.012372463,-0.0077118166,0.025279347,-0.02286824,0.020680843,-0.03862744,0.007370036,-0.012838528,-0.013907369,0.023415089,0.007624818,-0.012415962,-0.0052603167,0.0076061753,-0.0104647055,-0.010576561,-0.023191378,0.0023909118,0.0056083114,-0.0061924458,0.0020165064,0.024570929,-0.025552772,-0.021525973,0.01922672,0.024993494,-0.011073696,0.009892999,-0.015224779,0.0031086514,0.015597631,-0.019052723,0.0021438976,0.015274493,-0.00807224,-0.0011682687,0.02055656,0.023241092,0.009886785,-0.044816777,0.0010960287,-0.015100495,0.0025913196,-0.008581804,-0.009290222,0.0024685892,-0.001766385,0.010719487,0.0063944072,0.01876687,-0.016057482,-0.012614817,-0.017176036,-0.017834742,-0.011135838,-0.017859599,0.021190407,-0.019127294,-0.028635014,-0.030399844,-0.15272006,0.01907758,0.024235362,0.008302165,-0.005853772,-0.008028741,0.0152869215,-0.010595203,-0.007780173,0.0023458588,0.025291776,0.0069971844,-0.00811574,-0.02008428,-0.008414021,-0.005536848,-0.011856685,0.013745801,0.018257307,0.0098495,0.028983008,-0.020979125,-0.0005713176,-0.010054569,-0.017337605,0.011931255,-0.013807942,0.044518497,-0.02270667,-0.02920672,-0.0019186329,-0.003691232,0.0026783182,0.0144293625,0.021625401,-0.0036943392,0.00305117,-0.029455287,0.00008238664,0.004499078,0.010340421,0.03206525,-0.01107991,0.006450335,0.016865326,0.010309351,-0.0019139722,-0.0011030197,0.0003549859,-0.014342363,0.01328595,-0.020146422,0.009495291,0.013559375,0.0060868044,-0.003781338,-0.008923585,0.006885329,-0.014503933,-0.0065249056,0.010421206,0.0054871347,-0.0070344694,-0.01692747,-0.021625401,-0.013012526,-0.012776386,0.0010424313,-0.005751238,0.026472474,-0.023104379,0.010787844,0.009818429,0.021339547,-0.0056518107,0.0067921155,-0.030847266,0.029703856,-0.008817944,0.035719197,-0.012850956,0.047103602,-0.045637053,0.015995339,0.0083456645,0.007345179,0.012863385,0.027864452,-0.028485872,-0.01861773,-0.0051639965,0.014305078,-0.026969608,-0.011831828,0.0036415185,0.023216235,0.006419264,0.0120306825,0.012353821,-0.044767063,0.012850956,0.0028165842,-0.01753646,0.018530732,0.042529956,0.025826197,-0.01112341,-0.00023749878,0.012328964,-0.010924555,-0.0127639575,-0.014106224,0.021053694,0.012987669,0.027541315,0.032612097,-0.011657831,-0.007345179,-0.0037658026,0.010253423,0.038751725,-0.031369258,0.0015411205,0.02920672,-0.027615884,-0.029604428,-0.09221866,-0.01761103,0.0026581222,-0.005720167,-0.01822002,-0.008942228,0.0031505972,0.014006797,-0.00756889,0.031617828,-0.006279445,-0.037732594,0.01691504,-0.010669773,0.0023909118,-0.0069785416,0.009159724,0.0055119917,-0.009296437,0.006667832,-0.019040296,-0.021115836,-0.018058453,-0.030847266,-0.008047383,-0.02679561,-0.01984814,-0.009458005,-0.0006074376,0.012838528,-0.016703758,-0.006829401,-0.0019108652,-0.02957957,-0.012608603,0.013348092,-0.025776483,-0.015398776,0.018667443,-0.036738325,0.0088738715,-0.01413108,-0.0071587535,-0.022731528,-0.018642588,-0.009408292,0.00084280025,0.013571803,-0.006127197,-0.016964754,-0.0036073406,0.020805126,0.0067921155,-0.012403535,0.012925527,-0.011719973,0.0075502475,0.019264007,-0.023663657,0.022085251,-0.008171667,-0.0152372075,-0.031170405,0.029331002,0.007786387,-0.00034566462,0.015647344,-0.026174191,0.028560443,0.009389649,-0.011278765,0.013273521,-0.00562074,0.01737489,-0.018257307,0.0063944072,-0.012565103,-0.008177881,0.02759103,-0.0009484416,-0.022830954,-0.016504904,0.002131469,-0.024757355,0.03174211,-0.00054257695,0.0018487232,0.010918342,0.0049744635,-0.020829983,-0.018294591,0.0079417415,-0.0054715993,0.00660569,-0.03228896,0.031891253,0.008762016,-0.005247888,0.001088261,0.023303233,-0.0011931255,-0.018580444,-0.04024313,0.011664045,0.0066367607,-0.010446062,-0.037061464,-0.0020988446,-0.017101467,-0.044394214,-0.013534518,0.002872512,0.00010768036,-0.0028740654,-0.0024281968,0.0015217011,0.0143547915,-0.013857656,0.008606661,-0.0016964754,0.0052261385,-0.046830177,-0.016393049,0.000595786,-0.01652976,0.023129236,-0.00017710458,0.017797455,0.02294281,0.022619672,-0.011732401,-0.01629362,0.03917429,-0.02711875,-0.003161472,0.045015633,0.0023256626,-0.023154093,0.02920672,0.017834742,-0.021140693,-0.01776017,0.017312748,-0.029604428,0.018655015,-0.018903583,-0.008010098,-0.015361492,-0.007438392,-0.006099233,0.017735314,0.01691504,0.04372308,0.0028321196,0.01255889,-0.0037999805,0.014802214,-0.028187592,0.01506321,-0.027839595,-0.008438878,-0.034252647,0.034849208,0.016480047,-0.0067237597,-0.025204778,0.026074765,0.02448393,-0.018866297,0.009414506,-0.0058040586,-0.039497428,-0.0016467618,0.009165938,0.002765317,-0.010122924,0.019475289,0.04876901,-0.015013496,0.0021873969,-0.0042070104,0.002895815,0.014081367,0.006263909,-0.021227691,0.018331876,0.019636858,0.029157005,-0.0011426352,0.029927567,-0.009290222,-0.015622487,-0.04339994,0.007655889,-0.005539955,0.0011519565,0.03845344,0.0053814934,-0.011751044,0.008140597,-0.0030573842,0.016082339,0.013633945,-0.00710904,-0.010334207,-0.024856782,-0.008426449,0.0057978444,-0.024272649,-0.026323332,0.004266045,0.013907369,0.0027777455,-0.03474978,-0.00600602,0.008687445,-0.013149238,-0.008078454,0.0024685892,-0.027541315,-0.021799399,0.06343451,0.006481406,-0.00112943,0.00872473,-0.01213011,0.011036411,-0.0063074087,-0.021376833,0.0010859306,0.015610059,-0.0063291583,-0.004772502,0.011384406,-0.007121468,-0.00531003,0.012652102,-0.01263346,-0.035495486,0.017437033,0.0029921352,0.061843675,0.0026270512,0.002575784,-0.0046855034,0.005266531,0.03470007,0.028560443,0.009861928,-0.007525391,0.003936693,-0.0019761142,0.011595689,0.008519663,0.007836101,-0.011912613,-0.0017694922,0.0069163996,0.017660744,-0.010135353,-0.0066802604,0.014416934,-0.011142053,0.026696185,0.013435091,-0.006580833,-0.016517332,0.04717817,-0.0054436354,-0.019959996,-0.039820567,0.014727644,-0.005772988,0.000032673073,-0.035445772,0.0031397224,0.005086319,-0.021749685,0.0124346055,0.00295485,0.022420818,0.02905758,-0.02039499,-0.022271676,-0.0027870666,-0.028684726,0.0075751045,-0.012415962,0.005365958,-0.036191475]},{\"id\":\"d8dddb56-a403-4909-9ea3-a57045f9b4f7\",\"text\":\"I still haven't received my order\",\"vector\":[-0.031540304,-0.022503616,-0.029602071,-0.0049934615,-0.0055378024,0.016990986,-0.03539159,-0.0160848,-0.0038418504,-0.016953228,0.0038733154,-0.011579041,-0.004121887,-0.016714094,-0.00012153274,-0.0014812049,0.022113452,0.006821566,-0.0028145253,-0.0065824334,-0.0016928056,-0.005389918,-0.015883425,-0.0065950193,-0.0024416675,-0.022050522,0.002866442,-0.016600821,0.0024149225,-0.0040463717,-0.013039008,0.0042288676,-0.021433813,-0.025826298,-0.02643042,-0.008495493,0.0046913996,-0.0005207422,0.009898822,-0.0030363519,0.022868607,0.040149067,0.0034202223,-0.013869679,-0.044579312,0.016953228,-0.028041419,-0.0061670984,-0.031187898,0.022037936,0.002136459,0.0004082556,-0.025524234,-0.035165045,0.008646524,0.0025124631,0.014826207,0.013391414,0.0105155315,-0.0074382755,-0.007992056,-0.0065635545,-0.009779256,0.008784968,-0.0044145095,-0.0011468915,-0.010414844,-0.036826387,-0.015417745,0.01872784,0.03453575,0.028972777,-0.017997859,0.0022686112,0.013718647,-0.0010760957,0.013202624,0.00708587,-0.0052011292,-0.017985273,0.015052754,-0.029098636,0.015908597,0.03755637,0.0059374054,0.021975007,0.024190128,-0.0027563153,-0.0017809069,-0.02298188,0.03317647,0.030608945,-0.005072124,0.020653486,-0.014222084,-0.0018375436,-0.00057305244,0.051954657,0.0026587746,0.0041250335,-0.0041376194,0.025549408,-0.004659935,-0.019910917,-0.032245114,0.023409802,-0.010270107,0.0031386125,0.0012664577,-0.016714094,-0.022868607,0.035618138,0.03425886,-0.005487459,0.010880523,-0.0111007765,0.004600152,-0.011635678,-0.018601982,-0.044151388,0.006897081,0.010244935,0.025977328,0.0008027454,0.02393841,0.0059562842,-0.023774793,-0.011421718,0.031716507,0.029828617,0.015619121,0.024945283,0.006223735,0.00070992426,0.00015437411,0.026707312,-0.046190307,0.006632777,0.0019932943,-0.023309113,-0.008017228,0.026984202,0.020351425,0.0029781421,-0.020414354,0.016751852,0.021345712,-0.029501384,-0.014360528,-0.02240293,0.013114523,-0.013026422,0.0032219943,-0.01691547,0.0070103547,0.009489779,-0.023988754,0.02106882,-0.00746974,-0.03360439,0.0044837324,0.018098546,0.02240293,-0.020162636,-0.0022104012,0.025083728,0.025486477,-0.02085486,-0.012900563,0.003155918,-0.009250647,0.009785549,-0.015178613,-0.008860484,-0.014159154,-0.0057737883,-0.001695952,-0.006922253,-0.004763769,-0.010207177,-0.02819245,0.0006717732,0.011144828,0.02461805,-0.0015000837,-0.009747791,0.02357342,-0.012416005,0.026405249,-0.0038953407,-0.0027201308,-0.00057344575,0.013202624,-0.009911408,-0.66091156,-0.023686692,0.0012231936,0.011220343,-0.0039362446,0.04057699,-0.0148136215,0.028746229,-0.0073061236,0.04349692,0.008218602,0.014989825,0.0043673124,-0.0039299517,0.010773543,-0.010924574,0.018841114,-0.018488709,-0.00027630015,0.03549228,-0.014876551,-0.0031134407,0.0054308223,0.0019870014,0.011182586,-0.00530811,0.031943053,0.008174552,-0.027462466,0.01657565,0.00921289,0.026833171,-0.0131900385,0.0053269886,0.049412303,-0.0005427676,0.0018957534,0.020515041,0.0008967464,0.033906456,-0.033251986,-0.0084892,0.016261002,-0.011931447,-0.0061545125,-0.006783808,0.0064502815,-0.007948006,0.000034193374,0.0042603323,0.034711953,-0.011849639,-0.03536642,0.0012066746,0.015820496,0.0033950505,0.028796574,0.017179774,0.025436133,-0.0053332816,-0.019973846,-0.005046952,-0.00793542,-0.016802195,-0.022503616,0.025775954,-0.032572348,-0.0009927141,0.024127198,0.020678658,0.0206409,0.029325182,-0.024756495,0.029652415,0.03629778,0.021962421,0.0014513133,0.0077718026,-0.0061859773,0.014964653,-0.0031669308,-0.004250893,-0.0129509065,-0.010698028,0.009011515,0.016625993,-0.015644291,-0.009546417,0.011805588,-0.0013333204,0.0032754843,0.024743909,0.013706061,0.0061356337,-0.0224281,0.0010076598,-0.007664822,-0.0016943788,0.019520754,-0.03549228,-0.006513211,0.026380077,0.0013309605,0.0075074984,0.037203964,0.00050147006,0.014826207,0.014612247,0.016286174,0.010484067,0.021496743,-0.008797554,-0.010175712,-0.001321521,0.00586189,-0.02987896,0.0070418194,-0.010924574,-0.031137554,0.019080248,0.0012987091,-0.011006382,0.03524056,-0.009785549,-0.0029262253,0.011421718,-0.0050375126,-0.0027327167,-0.0025879787,-0.0065446757,0.022843435,-0.012346783,0.0027453026,-0.016814781,0.008099036,0.009577882,0.033931628,0.0023488463,0.014222084,-0.026933858,-0.010653977,0.0074382755,-0.02436633,0.0017573084,0.034862984,-0.031792022,0.005962577,0.0031921028,-0.026933858,0.009716326,-0.002359859,-0.0161729,-0.016865127,0.012592208,0.0014898577,-0.0030489378,-0.007274659,-0.020389182,-0.010540703,-0.015795324,0.01021347,0.031036867,-0.000787013,-0.0035334956,-0.0017447225,-0.009420557,0.0046442025,0.024391502,-0.010779836,-0.024580292,-0.0057800813,-0.024983041,0.001232633,-0.016877713,-0.0015276154,0.008419977,-0.02106882,0.004200549,0.014209498,0.0072998307,0.0020546506,0.015430331,-0.012900563,0.022214139,0.031112382,0.0035681068,-0.020791931,0.034762297,-0.022075694,0.020099705,-0.019873159,-0.0014316478,-0.017217532,0.01740632,-0.011428011,-0.0038827548,0.012378247,0.0064502815,0.0018438365,0.019243864,0.030709632,0.005758056,0.0050626844,0.0098170135,0.0029812886,-0.019571098,0.0077592167,-0.0014096225,0.033251986,0.031540304,0.027135232,-0.0076396503,-0.012516692,-0.01238454,0.0044617066,0.019180935,-0.014964653,0.018236991,-0.013252968,0.012359369,-0.022063108,0.0105155315,-0.01389485,-0.040224586,0.0019004731,-0.0024998772,0.011981791,0.0077843885,0.007557842,0.0034485406,-0.022755334,0.02917415,0.013328484,0.008111622,0.019017318,-0.018601982,0.0018941802,-0.010314157,0.025524234,0.014536732,0.013542444,0.01629876,0.01587084,-0.012013256,0.003141759,-0.0040652505,0.024240471,-0.0064502815,-0.008407391,0.0077403374,0.024995627,-0.019407481,-0.030634116,-0.009156253,0.0020829688,-0.033251986,-0.0058839153,0.0075200843,0.030634116,0.024995627,0.021635188,0.009288405,0.025977328,-0.01685254,0.02849451,0.017066501,-0.011308445,-0.002951397,-0.004285504,-0.021471571,0.017368563,-0.01223351,0.018979559,-0.023535661,0.0323458,0.0011162133,0.018438365,0.010169419,0.0019649758,0.0062331744,-0.026052844,-0.032924753,0.0044742925,0.012976078,0.01193774,0.01417174,-0.0034925914,0.030558601,-0.027739357,0.023862895,0.0037380168,-0.0029828618,-0.00925694,0.007098456,-0.0070229406,0.010169419,0.024504777,0.0053206957,0.0142346695,-0.0050910027,0.023850309,-0.012101357,-0.01602187,-0.0056762476,0.013567616,0.0036750871,-0.011472061,-0.0028570027,0.01672668,-0.01938231,-0.0051098815,0.009653397,-0.015241543,-0.011585334,0.002215121,0.009527538,-0.02202535,-0.0151660275,0.040224586,0.018501295,0.001892607,-0.0023047957,-0.0062489067,0.006252053,0.099378385,0.010666563,-0.012806169,0.023560833,0.003253459,-0.01712943,-0.009219183,-0.012585915,0.016261002,0.0034925914,-0.0064251097,-0.013920022,0.0038764619,0.007948006,0.027261091,-0.00033215017,-0.0024353745,-0.0020341985,0.0013348936,-0.044906545,0.006601312,0.0046158843,-0.026656969,0.011887397,0.019055076,0.01712943,0.01189369,0.013844506,0.012705481,-0.007104749,-0.011088191,-0.021987593,-0.013328484,0.01879077,0.0068404446,0.044755515,0.010924574,-0.0008637084,-0.00015457076,0.051803626,0.03274855,0.01221463,-0.003838704,-0.0121517,0.008048693,-0.009087031,-0.017595109,0.019772472,0.009017808,-0.0013820907,0.0105155315,-0.021433813,-0.015090512,0.009603053,-0.005597586,0.01395778,-0.01570722,-0.01183076,0.011226636,-0.004707132,-0.004552955,-0.009244354,0.0010737359,-0.015971527,-0.010244935,-0.035441935,-0.028116934,0.0015386281,-0.0072306083,-0.007960591,-0.00035889522,0.011421718,-0.00026686073,0.0049934615,0.0051413462,0.0009872077,-0.0009612492,0.0072180224,0.0037254307,0.018010445,-0.002951397,-0.04004838,-0.011925154,0.0097037405,-0.00056833273,0.03740534,0.02489494,-0.026883515,0.017393734,-0.0007748204,0.02495787,0.00006720682,0.014096225,-0.011289566,0.003102428,0.013252968,-0.008143087,0.011918861,-0.013907436,-0.0048801885,0.018601982,0.0011752098,-0.0042414535,-0.0040180534,-0.0012051014,0.0048204055,-0.012875391,0.0012176873,-0.015002411,0.0041502053,0.016651165,-0.025713025,-0.00619227,0.003044218,-0.014712934,0.0071236277,0.010037267,0.020162636,0.00925694,0.019571098,-0.013240382,-0.024102027,0.03360439,-0.00925694,-0.02249103,0.021081407,0.0068782023,-0.023032224,-0.02476908,0.0062489067,0.0011083471,0.014977239,0.007287245,0.0030678168,-0.021610016,0.0020184661,0.005455994,0.026455592,-0.00680898,-0.02393841,-0.032572348,-0.020754173,-0.012938321,-0.026732484,0.0026210167,-0.03383094,-0.028267965,-0.012132822,-0.012157993,0.02187432,-0.018841114,-0.007966884,-0.016990986,-0.0072117294,-0.0056164647,-0.022541374,-0.006349594,-0.010207177,0.0044963183,0.04498206,0.035920203,-0.0021018477,0.008829019,-0.009634518,-0.01672668,-0.01644979,-0.012183165,-0.0035586674,-0.01851388,0.005710859,0.017280461,-0.0021002744,0.037052933,0.015014997,0.012283853,0.010389673,0.004008614,-0.0026634943,0.000106586966,-0.022478445,0.040023208,-0.015644291,-0.014058467,0.018111132,0.009401678,-0.015191199,-0.0014088359,0.0073250025,-0.0012121809,-0.0028900406,0.03894082,-0.020691244,0.017632866,-0.012567036,-0.0014056894,-0.021886906,0.0077655097,-0.00012320431,-0.0030678168,0.010024681,-0.0071550924,0.044579312,-0.011302152,-0.003555521,-0.01959627,0.021572258,-0.0047165714,-0.0077529238,-0.013869679,-0.02914898,0.00027276037,-0.020351425,-0.0039047801,-0.007866196,-0.026078016,0.0003891801,-0.010484067,0.015178613,-0.015782738,-0.035165045,-0.008866777,-0.033201642,-0.005868183,0.016676337,0.021018477,0.02738695,0.00048613097,-0.015317058,-0.0010831753,0.001971269,-0.004889628,0.003044218,0.029350353,-0.011925154,-0.018035617,0.013252968,0.002031052,-0.016928056,-0.026052844,0.01719236,0.009175132,0.020200394,-0.017230118,-0.006802687,-0.026531108,0.02372445,-0.015946355,-0.012522985,-0.025222173,-0.010037267,-0.030004822,-0.012189458,-0.025184415,0.025285102,0.017494421,-0.0085395435,-0.0005447341,-0.011132241,0.016487548,0.012409712,-0.011811881,0.029828617,0.00029832553,-0.0021474718,-0.002208828,-0.00842627,-0.02695903,-0.027160404,-0.021849148,0.016261002,-0.014133982,-0.038613588,-0.004770062,0.011843346,0.018966973,0.008778675,-0.009313577,-0.01704133,-0.004949411,0.0029262253,-0.019709542,-0.012239803,0.020993305,0.0060915826,-0.021169508,-0.021509329,-0.023837723,-0.009993216,0.0003781674,-0.007098456,-0.013857093,-0.02517183,0.012850219,0.007180264,-0.006204856,0.012749531,0.0011673436,0.010716907,-0.0038135322,0.03025654,0.0214464,-0.0014583928,-0.033856113,0.01636169,0.0058461577,-0.035190217,0.02695903,0.006242614,-0.038160495,-0.0051570786,0.020741588,-0.025650095,-0.030483086,0.0007846531,0.031011695,0.021849148,0.0019382309,-0.027537981,-0.037933946,-0.0010902549,-0.009250647,0.016462376,0.013366242,-0.013454343,0.005087856,0.0033698787,0.023699278,0.010911988,-0.0047543296,0.003621597,0.014410873,0.009634518,-0.027462466,-0.02723592,-0.012655137,-0.011774124,-0.011245515,-0.0026965323,-0.004659935,0.023850309,-0.015455503,0.037933946,0.011956619,0.019445239,0.010477774,-0.008369633,-0.006399938,0.0071550924,-0.0041596447,-0.03438472,-0.00070953096,0.0027106914,0.0061796843,-0.0030945619,-0.011018968,-0.024227886,-0.026405249,-0.010238642,0.0024841449,0.0123719545,0.000008763435,-0.0019398042,-0.025599752,0.025977328,0.00072211685,-0.0050563915,-0.009886236,-0.0048329914,0.026229046,0.019734714,-0.00607585,-0.015518433,-0.028746229,-0.0169784,0.033881284,0.023535661,0.0035681068,0.021672945,-0.039746318,0.014209498,0.009886236,-0.023095153,0.0035240562,0.003549228,0.014952067,-0.023762207,-0.022654647,-0.02174846,0.0058398643,-0.019281622,0.008344461,0.030004822,-0.009848478,-0.00029832553,-0.016953228,-0.007696287,-0.014826207,-0.0014906443,0.012296439,0.0014025429,-0.0012169007,0.0005809186,0.013920022,-0.010345622,0.022969294,0.013932608,0.014410873,-0.0002918359,-0.0003891801,-0.013605374,-0.012699188,0.0012790436,0.00084876263,-0.006500625,0.00031110807,-0.015694635,0.0014017563,-0.021547087,0.010244935,-0.004719718,-0.012006963,0.013945194,0.015027583,-0.016990986,0.034762297,-0.019923503,0.017091673,-0.031716507,-0.011547577,0.0076081855,-0.0073187095,-0.044906545,0.0035806927,-0.0055000447,-0.0046851067,-0.004103008,0.22916433,-0.00012871064,-0.008382219,0.023711864,0.021219853,-0.0073438813,0.035618138,0.0037159913,0.002773621,-0.011465768,0.0072306083,0.012711774,-0.027462466,-0.016147729,-0.00502178,-0.015669463,-0.017154602,-0.018274749,-0.0042760647,0.0009470901,-0.005220008,0.009634518,-0.01768321,-0.012548157,0.036700528,-0.01587084,-0.008331875,0.011673436,-0.008294118,-0.0037694816,-0.029375525,-0.013227796,0.021949835,-0.021370884,-0.0025124631,0.005437115,-0.009722619,-0.006519504,0.014549318,0.011063019,-0.004169084,-0.018866286,0.012239803,0.018199233,0.0026603478,-0.005887062,-0.0076270644,-0.0214464,0.0051759575,0.006985183,-0.031842366,-0.022138624,0.0065572616,0.027563153,-0.01189369,-0.006434549,0.017720968,-0.014259841,-0.0377074,-0.004911653,-0.00039036002,0.006903374,0.004515197,0.0041974024,-0.022440687,0.01193774,-0.009433143,0.006132487,-0.00016705836,0.01321521,0.013743819,0.0025549408,0.012988664,0.0064502815,-0.026178703,-0.024240471,0.015392574,0.020804517,0.011409132,0.014436045,-0.013668303,0.036549497,-0.0026587746,-0.013051594,0.0010635098,-0.048808176,0.014008123,0.015304472,0.026078016,0.00028986935,0.009282112,0.0011162133,-0.016701508,0.007683701,0.019860573,-0.00708587,0.03201857,0.019885745,-0.011761538,-0.0026918126,-0.023208426,-0.007929127,-0.014637419,-0.00429809,-0.014335357,-0.011887397,0.0036499153,0.028519683,0.00753267,-0.0061545125,-0.008117915,-0.034460235,0.0034422476,-0.0065824334,-0.008054986,-0.008300411,-0.005597586,-0.017670624,0.011333616,-0.00084482954,0.016890299,-0.015291886,-0.000060028913,0.017456664,0.0051885433,-0.0072180224,0.003351,-0.0035775462,0.008275239,-0.034560923,0.009332456,0.007098456,0.006960011,-0.0028223915,-0.005673101,0.013806748,0.00887307,0.03201857,-0.012013256,0.008533251,-0.022100866,0.018224405,0.020615729,-0.008835312,-0.004612738,-0.032849237,0.026229046,0.0043421406,-0.024051683,-0.014775864,-0.0035240562,-0.020288495,-0.013756405,-0.016550478,0.03040757,0.019520754,-0.04249005,-0.027537981,-0.005940552,0.01870267,-0.01783424,-0.02021298,0.040501475,-0.010100197,-0.0224281,-0.0074131037,-0.15787771,0.009961751,0.00021907358,-0.0030489378,0.018929215,0.02021298,0.0022056815,-0.0041313265,-0.008407391,0.025222173,0.03891565,0.011610506,-0.019155763,0.00024522867,0.0033667323,-0.0050910027,-0.0448562,0.026858343,0.028041419,0.00412818,0.0422635,-0.0054843123,-0.016550478,-0.013429171,0.023409802,0.009194011,-0.018601982,0.030785147,-0.010987503,-0.016550478,-0.0075074984,-0.0068404446,0.012667723,0.023032224,0.03423369,0.00904298,0.006289811,0.009728912,0.015266715,0.004310676,0.00033352675,0.016399447,0.0024416675,0.0076396503,-0.0007468954,0.011050433,0.010962332,0.0105155315,0.003590132,-0.017016158,0.0071236277,-0.021207267,-0.02338463,-0.005172811,0.022843435,0.02234,0.008910827,0.0147003485,-0.013177453,0.0054339687,0.0017179773,0.010591047,-0.016474962,-0.005053245,0.011295859,-0.01989833,-0.004508904,-0.020603143,-0.03259752,0.021106578,-0.023925824,-0.00998063,0.015354816,0.015531019,0.009760377,-0.00785361,-0.014247255,0.0018233844,0.0045435154,-0.014599661,0.0031511984,0.015178613,0.0018564224,0.011018968,0.0025219028,0.0000887897,0.008382219,0.008684281,0.0011225063,-0.026229046,0.002924652,-0.019394895,0.01321521,-0.017016158,0.013743819,0.027965903,0.024240471,-0.017607694,0.008017228,-0.031716507,-0.005855597,0.013466929,-0.024970455,0.03891565,0.021635188,0.021572258,-0.0067586363,0.016877713,0.022176381,-0.03330233,-0.01166085,0.0121517,0.016563063,0.016865127,0.0014937908,0.021672945,0.0024747055,-0.015908597,0.025561994,-0.024882354,0.015077926,-0.01478845,-0.011365081,0.021043649,0.0036750871,-0.012220923,-0.09021584,-0.04608962,-0.010257521,-0.0026918126,-0.012585915,-0.00046567884,0.015757566,0.046190307,-0.011780417,0.03438472,0.0001439514,-0.036952246,-0.009514952,-0.018715255,0.01417174,-0.010899402,0.005487459,-0.005717152,-0.019785058,0.0028680153,-0.04019941,0.0033163885,-0.006000335,-0.030483086,-0.011088191,-0.04279211,-0.016261002,-0.009156253,0.016701508,-0.00691596,0.0136557175,-0.010238642,-0.0074508614,-0.033277158,-0.002562807,0.016940642,-0.038689103,0.02138347,0.02517183,-0.026808,-0.0046630814,-0.023233598,0.00808645,-0.013227796,-0.019218693,0.0076081855,0.003687673,0.0087723825,0.024177542,-0.0072243153,-0.009288405,0.0059248195,-0.0034737126,-0.011251808,0.038160495,-0.011081898,-0.0068719094,0.015052754,-0.007683701,-0.00062182284,0.0029356647,0.017507007,-0.03549228,0.0295769,0.0010918281,0.012101357,-0.0017588816,-0.009407971,0.018048203,0.005185397,0.010849059,0.0072117294,-0.02113175,0.0008464028,-0.019822815,-0.014146568,-0.029803446,-0.023674106,0.00012979224,-0.011434304,-0.016185487,-0.009521245,-0.007387932,-0.018828528,0.02627939,0.01032045,-0.009282112,0.0070544053,-0.010811301,-0.008401098,-0.0071550924,0.023648934,0.01746925,-0.0023016492,-0.01032045,-0.0013789443,-0.022465859,-0.019822815,0.017884584,-0.0012271267,-0.016701508,-0.012013256,-0.05117433,0.036826387,0.0004711852,-0.019936088,-0.0028711618,-0.00607585,0.016625993,-0.022679819,-0.008268946,0.0040400787,-0.010855352,-0.00076813414,-0.00910591,-0.0155058475,-0.015090512,-0.008545836,0.027361779,0.011396546,0.02098072,-0.010591047,0.016185487,-0.010049853,-0.0046442025,0.004055811,0.0033761717,0.015933769,-0.01395778,0.033201642,-0.002819245,-0.009514952,0.017544765,-0.019168349,0.008608766,0.017481836,0.023485318,-0.02862037,-0.001350626,0.016764438,-0.0067334645,-0.016147729,0.0016849394,-0.012592208,-0.0023283942,0.00097304856,-0.014133982,-0.007236901,-0.0021679238,0.004782648,0.020942962,0.0011280127,0.021358298,0.025713025,0.008023521,-0.018073374,-0.009464608,-0.018161476,0.021257611,-0.022226725,0.014612247,-0.049160585,0.034988843,0.0063653262,-0.00921289,-0.01900473,0.044151388,0.0111007765,-0.018174062,0.012548157,0.00009970404,-0.015090512,-0.009407971,-0.03360439,-0.000018805127,-0.027009374,0.00048495104,-0.0057234447,0.005427676,-0.018815942,-0.012976078,-0.005166518,-0.012113943,-0.0022859168,-0.0030552307,0.0049808756,0.012082478,0.008331875,-0.013227796,0.006601312,0.015203785,0.0076333573,-0.03992252,-0.010345622,-0.0029277985,0.010584754,0.009892529,0.033352673,0.019999018,0.012195751,0.008904534,0.0055755605,0.0030064604,0.005893355,0.0058272784,-0.008117915,-0.03244649,-0.001416702,-0.02585147,-0.030911006,-0.021018477,0.004883335,0.016613407,-0.027059717,0.018815942,0.024655808,-0.014473802,-0.014033295,-0.00092978444,-0.02036401,-0.0108679375,0.030911006,0.005160225,0.011018968,-0.00396771,-0.032219943,0.031313755,0.0036687942,-0.004471146,0.016336517,0.013479515,0.020376597,0.018551638,-0.008457735,-0.008709453,-0.0077969744,0.0011728499,-0.011585334,-0.016525306,0.004033786,0.0028271112,0.04445345,-0.017494421,0.014247255,0.0051507857,0.0052609122,0.02132054,0.03204374,0.0060695573,0.0071487995,-0.027034545,-0.008218602,-0.006355887,-0.010100197,-0.015430331,-0.014436045,-0.024605464,-0.004008614,0.013819334,-0.024441846,-0.020011604,0.011289566,-0.0045057577,0.0077655097,0.02187432,-0.010358208,-0.011088191,0.014410873,0.0056227576,0.010295278,-0.04689512,0.015241543,-0.015757566,0.0005765922,-0.0064188167,-0.017607694,-0.007696287,-0.0027956464,0.00653209,0.045460325,0.01947041,-0.021093993,0.03848773,-0.013429171,-0.0028475632,-0.02887209,-0.012088771,-0.02517183,0.009754084,-0.02751281]},{\"id\":\"992faee3-8058-49f9-93e4-02ea9f31dff8\",\"text\":\"I never receved payment for my formless beauty post!\",\"vector\":[-0.024071623,-0.0052827923,-0.004945308,-0.020355958,-0.010625729,-0.0051925736,-0.027506607,-0.004400656,-0.0069635287,-0.033093467,0.024165181,-0.0039796364,0.00046404032,-0.02674476,0.006288561,0.0041233175,0.021772722,0.009409451,-0.024913661,0.00087879464,-0.0035285442,0.023069194,-0.024098353,0.024526056,-0.0003397811,-0.009496328,0.019006023,-0.012055859,0.01954065,0.002235413,-0.0248201,-0.009068626,-0.011481134,-0.014996313,-0.031756897,0.0029304293,0.0075315707,-0.006589289,-0.004841724,0.001881222,0.013258772,0.022708321,-0.009756959,-0.0043338276,-0.039856512,0.008667655,-0.014394857,-0.022828612,-0.018805537,0.023042463,0.010177979,-0.0060513197,-0.038920913,-0.030580716,-0.004985405,0.0150631415,0.015865084,0.012075908,0.010097785,0.001787662,0.0043238034,-0.0032478645,-0.017348675,-0.012242979,-0.010752704,-0.0183912,-0.016252689,0.014715633,-0.037504148,0.0041767806,0.027720457,0.006378779,0.007344451,-0.028843176,0.012897898,-0.016319517,0.010051005,0.0049887467,-0.0052794507,-0.005185891,0.016680392,-0.0030924883,-0.006465656,0.020997511,0.0031543046,0.013506037,0.009048577,0.024405764,0.00279176,-0.015383918,0.017014533,0.015076507,-0.0046546045,0.014087445,-0.012610536,0.022975635,0.012663999,0.0446147,0.0034483501,0.021799453,-0.026624471,0.01773628,-0.03103515,-0.03007282,-0.02097078,0.013218675,0.00014754478,-0.0062451223,0.01947382,-0.008427072,-0.014568611,0.039375346,0.022066766,0.000051661555,0.002479337,0.001210431,-0.006091417,-0.010445293,-0.0093626715,-0.023002366,0.008480535,0.007471425,0.021786088,0.0032762666,0.02038269,0.007651862,-0.014007252,-0.009977493,0.0017032911,0.0042536333,0.0140339825,0.028602593,0.022841977,-0.0035519341,-0.0032094382,0.016239323,-0.055654764,-0.015838351,-0.020837123,-0.014488417,0.019834695,0.037049714,-0.0068198475,0.013820131,0.00680314,0.011694985,0.015985375,-0.019981718,-0.010478707,-0.011661571,0.012055859,-0.004056489,0.023964696,-0.029752044,0.011360843,-0.006509095,-0.014368125,0.024258742,0.0025929455,-0.048945185,-0.0009949091,0.039428808,0.0041667563,-0.030473791,0.0086743375,0.0248201,0.028067965,-0.010071053,-0.017843207,-0.014314663,-0.0016732183,0.01637298,-0.011187089,0.012917947,-0.022040036,0.026704663,0.009295843,0.0004189311,0.010157931,-0.016266054,-0.009950762,0.021131169,0.011648206,0.033735022,-0.014702268,-0.0069835773,0.003007282,-0.026771493,0.007885762,-0.008320147,-0.0152368955,0.015891815,0.022922171,-0.001517842,-0.6389873,-0.0064756805,0.033788484,0.011173723,-0.0047047255,0.023617188,-0.016413078,-0.012416733,-0.027172463,0.0125570735,-0.010224759,0.0013950447,-0.0010208052,0.016359614,0.007945907,-0.0031142076,0.028816445,-0.027506607,-0.012964726,0.019219873,-0.018872365,-0.0021518774,0.010792801,0.02739968,-0.0024225328,0.00072258303,0.006448949,0.013171895,-0.018230813,0.005463229,-0.010278221,0.016479906,-0.016399711,0.026544277,0.05533399,-0.01541065,0.0024225328,0.013967155,-0.00225212,0.03988324,-0.03600719,0.0028351985,0.0052861334,-0.024285473,-0.008694386,0.001285613,0.014154274,-0.015397284,0.008166442,0.03598046,0.00933594,0.014555245,-0.008246635,0.01726848,0.029778775,-0.01484929,0.0065224604,-0.003919491,0.0058474927,0.02357709,0.00059059676,-0.010017591,-0.018832268,-0.012851118,-0.0000770616,-0.0125904875,-0.01095319,0.027800651,0.010264856,-0.0010609023,0.01773628,0.008714435,0.0050054537,0.035338905,-0.010478707,0.01311175,-0.002317278,-0.0027951016,0.0005901791,0.0050422093,-0.016894242,-0.0012722474,-0.000008209984,0.00094562315,0.0067597018,-0.00997081,0.000489101,-0.013633012,-0.0047147498,0.0045276303,0.009416134,0.04309101,0.0027951016,-0.0014785803,-0.0140339825,-0.0001669668,0.007832299,0.010779436,0.0024693126,-0.022561299,-0.0028435523,0.006305268,0.018845635,0.014314663,0.019487187,-0.009783691,-0.031249002,-0.006936797,0.031810362,-0.01942036,0.0028752957,-0.0053830347,0.008153075,0.005880907,-0.03737049,-0.019954987,0.009222331,-0.012363271,-0.00041955762,0.023216218,-0.005162501,0.009249063,0.015370552,-0.013993885,0.0053262305,0.025140878,0.006716263,-0.009917348,-0.005827444,0.027693726,0.013399112,0.014648804,0.042422723,-0.028843176,-0.000022397986,-0.011334112,0.011374209,0.0045075817,-0.00012968904,-0.031890556,-0.0053730104,0.027078904,-0.012169468,-0.0040264167,-0.0032662423,-0.025956186,0.0038994423,0.021037608,-0.011040066,0.039428808,-0.027052172,-0.018564954,-0.017589258,-0.01851149,-0.0114209885,-0.00933594,-0.0053696693,-0.009609937,-0.006816506,0.00485509,0.0059544183,0.013833498,-0.023122657,0.012603853,-0.02796104,-0.011561329,-0.0048350412,0.018324371,-0.0060947584,-0.012416733,0.009449548,-0.01447505,-0.013780034,-0.025956186,-0.02333651,0.0034750814,0.018939193,-0.0076785935,-0.01944709,0.0027666995,-0.0025762382,0.002601299,-0.00933594,0.0000112512025,0.03483101,0.011380891,-0.021879647,0.038600136,0.0021084389,0.010572267,0.019393627,-0.009035212,0.001428459,0.020756928,-0.005446522,-0.00037904285,0.035018127,0.013599598,0.0165601,0.027346218,0.0026163354,0.011661571,0.016947705,0.026664566,-0.0017809792,-0.023296412,-0.0040731966,-0.008453804,0.03063418,0.006482363,0.006368755,0.015464112,-0.0020449518,-0.009122089,-0.011975666,0.0068766517,-0.011260601,-0.025902722,-0.0078055677,0.017696183,-0.03662201,-0.017869938,-0.014889387,-0.024392398,0.031516317,-0.0006682849,-0.006712922,-0.007337768,0.02376421,-0.015076507,-0.02376421,0.028201623,0.005874224,0.014916119,-0.00036150037,0.0006741324,0.01144772,0.0005083142,0.010351733,-0.010358416,0.015931912,0.008493901,-0.012055859,0.012904582,0.01071929,-0.017108094,0.0126573155,-0.011434355,-0.008072881,0.0033029981,0.018925829,0.020436153,-0.047421496,-0.017816475,0.014194371,-0.01972777,-0.009523059,0.012510293,0.023136023,0.021024242,0.029137222,0.009229015,0.0028953443,-0.026317058,0.035499293,0.03520525,-0.010238125,-0.00012958462,-0.0052059395,-0.010525487,-0.009155503,-0.0344835,0.02000845,-0.030901494,0.020342592,-0.0040631723,0.0202223,0.008667655,0.0130716525,0.00014566522,-0.008473853,-0.036274504,-0.0024810077,0.023884501,0.01942036,0.006291902,0.0006925102,0.011507866,-0.004226902,-0.006455632,0.017121458,-0.0063152923,0.004888504,-0.009603254,-0.01095319,-0.011481134,0.032879617,0.00809293,0.012804339,0.009743594,0.021224728,0.0051224036,-0.011053432,0.0089149205,-0.0074981563,0.00028130616,-0.00717738,0.00029738678,-0.02507405,-0.014541879,0.016894242,0.011253918,0.002775053,0.002659774,-0.0026146646,0.013713206,-0.02873625,-0.005389718,0.035338905,0.002455947,-0.014368125,-0.00699026,-0.015023044,-0.006161587,0.1071929,0.008787947,0.0025244462,0.0055567888,0.0004419034,0.0015103238,-0.013900326,-0.015597769,-0.0137934005,0.0016180848,0.009837153,0.00823327,0.00092390383,0.02338997,0.013633012,-0.0061114654,0.0030089528,-0.003982978,0.003966271,-0.03239845,-0.02498049,-0.020396056,-0.016720489,0.049560007,0.012991458,0.014648804,0.0160923,0.01444832,-0.017255116,-0.0008508102,-0.007250891,-0.008260001,-0.0128310695,0.036087383,0.014381491,0.025180975,0.0051391106,-0.013766669,0.020516345,0.025060683,0.030687641,0.015557672,0.008600826,0.00438729,0.0027499923,-0.032532107,-0.0063319993,0.025341364,0.022948904,0.000146605,0.020155473,-0.015089873,0.002577909,-0.022320716,0.016827414,0.0018127228,-0.013439209,-0.024967123,-0.002467642,0.015263627,-0.015691329,-0.035713144,-0.007210794,-0.0071706967,-0.032478645,-0.031676702,-0.016546734,-0.0053395964,-0.004868455,-0.0015278663,0.011260601,0.0062852195,-0.031489585,-0.0041032694,0.012263028,-0.021879647,0.017108094,-0.01827091,0.034911204,0.0014376479,-0.021010878,-0.039562464,-0.0016130727,0.014100811,0.005319548,0.0073177195,0.017161556,-0.007237525,-0.0069100657,0.015611135,0.014167639,0.02310929,0.020208934,-0.008787947,0.006722946,-0.006729629,-0.007605082,0.015464112,-0.0069234315,0.022641493,0.006485705,-0.0070169913,-0.021959841,-0.015397284,-0.012263028,0.033601366,0.019754501,0.013064969,-0.007925859,-0.016894242,0.020556442,-0.0019280019,0.012603853,0.01435476,-0.00349513,0.014702268,-0.0068699685,0.025528483,0.000806954,0.007431328,-0.0154774785,-0.025862625,0.03274596,0.009843837,-0.025274534,0.0017742964,-0.018685246,-0.02087722,-0.01522353,0.011260601,-0.012029128,-0.0065157777,-0.015637867,-0.026985344,-0.030954957,-0.007959273,-0.009609937,0.0018160642,-0.007658545,-0.0058207614,-0.025595311,-0.016880875,-0.031436123,-0.039589196,0.010358416,-0.03547256,-0.015049776,-0.0062785367,-0.013459258,0.029618386,-0.009730228,-0.0007142295,-0.031088613,0.00961662,-0.008801312,-0.034349844,-0.02233408,-0.004982064,0.021639064,0.017308578,0.008667655,0.023416702,0.023256315,0.01733531,-0.014394857,0.0023891185,0.00076936296,0.00045568676,-0.016212592,0.0012588816,-0.0061381967,0.028789714,0.022628127,0.0030674275,-0.0011561329,0.008206539,-0.010685875,-0.020917317,-0.026330424,-0.015637867,0.012069225,-0.014221103,0.00682653,-0.0017091386,-0.012229614,-0.015611135,0.0073177195,0.010933141,0.006525802,0.001968099,0.019086216,-0.010398513,0.023844404,-0.005346279,0.0070437226,-0.006669483,-0.020142106,0.008313464,-0.015357187,0.002810138,-0.0041901465,0.031061882,-0.0071907453,0.0067429948,-0.030046089,0.011267283,-0.009262429,-0.0308213,-0.01857832,-0.018524857,-0.010625729,-0.006565899,-0.025327997,-0.0016765597,-0.02047625,-0.022160327,-0.019406993,0.009556474,-0.0077721532,-0.033440977,-0.013338966,-0.04485528,0.00018732861,0.018097155,0.022507835,0.01742887,-0.015905181,-0.020422786,0.030046089,-0.013359015,0.0031609875,0.01970104,0.022507835,-0.028094696,-0.014688902,0.041246545,0.0058842483,-0.038065508,-0.023978062,0.021091072,0.023897868,0.012824387,-0.0143413935,-0.02584926,-0.023991428,0.005155818,-0.019674307,-0.016025472,-0.0057806643,0.0007877408,-0.014742365,0.0113875745,-0.011928885,0.021585602,0.002200328,-0.00087461784,-0.0045978,-0.030794568,0.009723545,0.028575862,-0.008012736,0.024218645,-0.009235697,0.023283046,-0.0027382975,-0.01913968,-0.0113875745,-0.012496928,-0.018872365,0.01658683,-0.02212023,0.0110801635,-0.0023055829,0.012376636,-0.022855343,0.0011060114,-0.012095956,-0.017188288,-0.005289475,0.0030523913,0.0025478362,-0.0049319426,-0.019660942,0.0070570884,-0.02584926,0.0048183342,-0.0046880185,0.002798443,0.006335341,-0.0025461654,-0.0025979576,-0.01627942,0.0044674845,0.040631723,-0.0024927026,0.029725311,0.004447436,0.014648804,-0.0053563034,0.016132398,0.018792171,-0.018832268,-0.039589196,0.0044207047,-0.0016657001,-0.015089873,0.025154244,0.008560729,-0.032532107,-0.012677364,0.016827414,-0.0025177633,0.0054565463,-0.020730197,0.013171895,0.011641523,0.0077253734,-0.01677395,-0.0034817643,-0.0009138796,0.025154244,-0.001233821,0.0023941307,0.0027215902,0.0038560038,-0.02739968,0.01829764,0.011300698,-0.0024158498,0.0048450655,0.032050945,0.029832238,-0.01630615,-0.033654828,-0.019126313,-0.014982947,-0.010746021,0.023603823,0.0038927596,0.00026710512,-0.038707063,0.020396056,0.0071305996,0.025394825,-0.019874793,0.008734483,-0.01925997,-0.00069668697,0.005189232,-0.020529712,-0.010692558,0.03271923,0.010278221,-0.02047625,-0.013432526,-0.034750815,-0.029057028,-0.020783661,-0.0063186334,0.0005233506,0.007023674,0.0054264734,-0.0035419099,0.023189485,0.010725972,0.018912463,0.0066394103,-0.0044908742,0.0007175709,0.02118463,-0.0042068535,-0.009563156,-0.028682787,-0.0034984713,0.027453143,0.023229582,0.0174957,-0.00032349167,-0.016225956,-0.0032361697,0.016760586,-0.01606557,0.0012797656,0.007204111,0.04365237,-0.03769127,0.010946507,-0.027827382,-0.0040731966,-0.0027967722,-0.0018728684,0.019500554,-0.0081263445,0.0002209517,-0.007832299,0.00026773164,-0.023416702,-0.023844404,0.022841977,0.009837153,-0.003715664,0.027359584,0.0013658073,-0.036140848,0.007484791,-0.004464143,-0.018965926,0.005276109,0.012851118,-0.016707122,-0.02087722,0.003321376,0.0021502066,-0.01006437,-0.008440438,-0.004958674,-0.0036354698,-0.0105989985,0.014635439,-0.012343222,-0.0135528175,0.023777576,-0.002589604,-0.011160358,0.01398052,-0.01444832,-0.014314663,-0.023122657,0.0027299437,0.03868033,-0.0074914736,-0.033841945,0.026009647,-0.024713175,0.008968383,0.0014886046,0.22219136,-0.01867188,-0.010866312,0.026210133,0.016199226,0.0035686414,0.012991458,0.0119021535,0.006903383,0.019781232,0.0029922456,-0.0077521047,-0.03290635,-0.013465941,0.0037056396,-0.027052172,-0.0008416213,0.016132398,0.00443407,-0.043438517,0.01512997,0.0037758097,-0.0062785367,0.015170067,0.04728784,-0.013138481,-0.00006708954,-0.010030956,0.0033080103,0.001294802,-0.0057773227,-0.0022604736,0.0047414815,-0.027640263,-0.0093960855,0.01048539,-0.00065700756,-0.024953758,0.030286672,0.041647516,-0.011233869,-0.0047147498,0.0061281724,0.010198028,0.009456231,0.012376636,-0.007484791,-0.011507866,-0.018591685,0.0058374684,-0.028201623,-0.017362041,0.01780311,0.014261199,-0.019567382,0.013158529,0.010592315,-0.00058349624,-0.024646347,-0.0040264167,0.0043238034,0.023376606,-0.0010684205,0.014394857,-0.036301237,-0.0032595596,0.008888189,-0.018524857,0.010398513,0.002536141,0.011554645,0.0006816506,-0.0084003415,0.01705463,-0.021879647,-0.02873625,-0.009870568,0.04081884,0.02702544,0.01287785,-0.004086562,-0.005730543,-0.0069702114,-0.031142076,-0.004945308,-0.02233408,0.02554185,0.032291524,0.006071368,-0.019112948,0.0015479149,0.012951361,-0.033601366,-0.016145762,0.007511522,-0.020075278,0.029805506,0.027854115,-0.012116005,0.017362041,-0.0103918305,-0.002176938,-0.0015337138,0.005416449,0.0022437666,-0.010746021,-0.0013708194,0.02383104,0.0020449518,-0.015009679,0.018912463,-0.03103515,0.00010901397,-0.010939823,0.0017208336,0.013993885,-0.008106296,-0.0071038683,0.027854115,-0.0066026547,-0.023630554,-0.038439747,0.0059510767,-0.010258173,0.0032411816,-0.020289129,-0.0026748104,-0.0058641997,0.0076719103,-0.03961593,0.009402769,0.0073177195,0.0050422093,-0.009081991,-0.013225358,0.037049714,0.016145762,0.012095956,0.0051658424,0.02106434,-0.03140939,0.011781863,-0.003919491,-0.008066199,0.0023055829,-0.045336448,0.036889326,-0.019273337,-0.0135528175,0.0009230685,-0.02519434,-0.0047414815,-0.0065157777,-0.008767898,0.039375346,0.008326829,-0.03239845,-0.03910803,0.00025227753,-0.0014668853,-0.01799023,-0.007204111,0.047474958,-0.02423201,-0.027346218,-0.001892917,-0.16969089,0.005162501,-0.009803739,-0.011180406,-0.007598399,0.0093960855,-0.010017591,-0.0035385685,-0.027132366,0.020369323,0.031890556,-0.0030440376,-0.00492526,-0.009523059,-0.0033397537,-0.0069568455,-0.027479874,0.03811897,0.010866312,0.016814047,0.056617096,-0.0052560605,-0.004801627,-0.020730197,0.01226971,0.028495668,-0.018711977,0.037771463,0.016012106,-0.020021815,-0.0033915457,0.0015545978,0.005463229,0.01947382,0.024566153,0.02401816,-0.012710779,-0.00790581,0.014568611,0.001100164,0.023403337,0.008340196,-0.022922171,0.011481134,-0.014394857,0.014528514,0.034617156,0.0073644994,0.03563295,-0.0034483501,0.0035084956,-0.016413078,0.0089483345,0.001564622,0.017602624,0.03298654,0.020716831,0.027854115,-0.0032612302,-0.002449264,-0.009944079,-0.030019358,-0.003373168,-0.01801696,-0.008153075,-0.013739937,0.0006749677,-0.008560729,-0.024445862,0.013927057,-0.010411879,-0.0061749523,0.018805537,-0.0028351985,0.013332283,-0.021131169,-0.023911234,0.014916119,0.0005960266,-0.003762444,-0.006305268,0.041406933,-0.014368125,0.013004824,0.023095926,0.012396685,0.027880846,0.0060646855,-0.004470826,-0.007778836,-0.007204111,-0.019848062,-0.013465941,-0.022668224,0.0001315686,0.044534504,-0.011561329,0.010545536,-0.011467769,-0.014648804,0.016132398,-0.00069668697,-0.024646347,0.0349914,0.019834695,-0.004911894,-0.018417932,0.0113541605,0.043171205,-0.01351272,-0.014996313,0.007865713,0.022293983,0.028495668,0.019193143,0.007885762,-0.0038359552,-0.026771493,0.017509064,-0.027359584,0.03485774,-0.0048918454,-0.02242764,0.0047748955,-0.0046546045,0.0047047255,-0.10382474,-0.036301237,0.009442866,0.003849321,0.00036630366,0.011721717,0.015303724,0.011033383,-0.023924598,0.032879617,0.008179807,-0.01369984,0.0000064315896,-0.008928286,0.0036354698,-0.012196199,0.020756928,0.0004849242,0.0038827353,0.014862656,-0.015210164,-0.0010842922,-0.012229614,-0.029270878,-0.0013424173,-0.00016226793,-0.03582007,0.00050914957,0.004256975,-0.015464112,-0.006425559,-0.017067997,-0.007912493,-0.021799453,0.004203512,-0.004564386,-0.046646286,0.013445892,0.02650418,-0.028067965,0.0011126944,-0.019153045,0.0036956153,0.0037089812,-0.015637867,0.019126313,0.01191552,0.006786433,0.03426965,-0.018832268,-0.01494285,-0.0017809792,-0.008520632,-0.00088631286,0.053462792,-0.015370552,-0.00933594,0.046459164,0.008908237,0.009810423,0.005526716,0.011207137,-0.027506607,0.0150631415,-0.0009949091,-0.009950762,0.012770925,-0.0009556474,-0.0011486147,-0.020208934,-0.012496928,0.011280649,-0.013465941,-0.0073177195,-0.015771523,-0.019554015,-0.03654182,-0.014047348,0.0022420958,-0.014221103,-0.022788515,-0.013399112,0.015611135,-0.001529537,0.016078934,-0.0103918305,0.017121458,-0.0041600736,-0.0038860766,-0.016119031,-0.02653091,0.030233208,0.007845664,-0.023349874,0.00938272,0.013238723,-0.025688872,-0.010465342,0.0006152398,-0.006338682,-0.021024242,-0.0031543046,-0.04522952,0.035926994,-0.0002965514,-0.01954065,0.00863424,-0.01182196,-0.0003575324,0.0018210764,-0.041647516,-0.020075278,-0.014140909,0.016199226,-0.006378779,-0.025982916,-0.011314063,-0.039856512,0.0142745655,0.007351134,0.007558302,-0.007117234,0.0041300007,-0.015584404,0.0068131643,-0.022628127,-0.002775053,0.028869906,-0.0005789018,0.018551588,-0.006462315,-0.0059410525,-0.0040965863,-0.036648743,-0.0031609875,0.0047147498,0.014956215,-0.009823788,-0.009302526,0.028228354,-0.005362986,-0.0037657854,-0.010699241,-0.032451913,0.014902753,-0.014140909,-0.02230735,0.0055133505,0.012082591,0.00809293,0.018631782,0.006716263,-0.0051190625,0.032211334,-0.016974436,-0.011574694,-0.0019697698,-0.0074179624,0.0025110806,-0.0038192482,-0.007939224,-0.046646286,0.0404446,0.015891815,-0.009416134,-0.030901494,0.018965926,0.018057058,-0.035846803,0.004768213,0.0130716525,-0.02413845,-0.002235413,-0.0030089528,-0.0058775656,0.0024024842,0.026183402,0.017001167,0.0013148505,-0.025154244,-0.009162186,0.02681159,-0.012196199,-0.001881222,-0.025180975,0.029297609,0.02000845,0.017348675,-0.01067251,0.014996313,0.00055760023,0.017829841,-0.008627558,0.0025094098,0.009883934,0.01674722,0.022267252,0.038600136,0.015824987,0.025515117,-0.015357187,0.015771523,0.038012046,0.010258173,-0.0011569682,0.014675536,-0.019086216,0.030928224,-0.038386285,-0.038225897,-0.001822747,0.015824987,0.02451269,-0.000867935,0.0007994358,0.02097078,0.0023707408,-0.01724175,0.025648775,-0.023256315,-0.015824987,0.027105635,0.0054532047,0.008554047,-0.005623617,-0.025354728,0.039749585,0.0020817074,-0.009215648,0.007651862,-0.0007380371,-0.0077521047,-0.005423132,-0.017321944,-0.020997511,0.0044507775,0.015931912,0.00019338494,-0.016854145,-0.0048350412,0.0093626715,0.054852825,-0.018885732,-0.0059945155,0.028308548,0.004838383,0.0021518774,0.014007252,-0.008894872,-0.0075783506,-0.006047978,0.016145762,-0.0165601,0.011501183,-0.021598967,0.0022187058,0.01278429,-0.0009940738,0.010759387,-0.034563694,-0.017362041,0.022160327,-0.007397914,0.0202223,0.013445892,-0.020917317,0.0021752673,-0.011741766,0.013165212,0.002723261,-0.024659712,0.008313464,-0.004300413,0.006903383,-0.004343852,0.0054131076,-0.015571038,0.012343222,0.0050054537,-0.0014059043,-0.0048751384,-0.0053329132,0.044775087,-0.03485774,-0.0059076385,-0.029778775,-0.0053964006,-0.004180122,0.023523629,-0.0652246]},{\"id\":\"fb82496a-0544-453d-875b-ffd889ebc079\",\"text\":\"I am waiting for my daughter to come home from her trip. I purchased the nails for her. Is there a time limit to when I have to post? She arrives tonight but then we have a family funeral this weekend to get ready for. So it won’t be until next week some time. \",\"vector\":[-0.0060706134,0.007204103,-0.005667448,-0.0039589517,-0.0023231579,0.014434643,-0.013549001,-0.00011029217,0.0065894406,0.002000956,0.0032914157,0.0032583694,-0.010151837,-0.0030154788,0.00067125383,-0.022735884,0.019920336,0.011414207,0.007085136,-0.015769714,-0.015531781,-0.0011838853,-0.009695797,0.014804762,-0.019100787,-0.016761106,0.007580831,-0.02050195,0.0028122438,-0.0054460373,0.0025445684,-0.013350722,0.0036350978,-0.016020868,0.0061598383,-0.011182883,-0.0056806663,-0.013185491,0.010013042,0.004583528,0.018453078,0.0075874403,-0.001370597,-0.0009872596,-0.002792416,0.0050990507,-0.021400811,-0.007924513,-0.029239405,-0.0069529507,0.015069133,-0.008651532,-0.051023554,-0.018413423,-0.009272804,0.004315852,0.0334429,0.007673361,-0.010634313,0.025736492,0.015796153,0.003225323,-0.0054625603,0.008063308,-0.0026172705,-0.015227755,-0.024401419,-0.0031278364,-0.011506736,0.008406989,0.033019908,0.010350115,0.011764498,-0.005720322,0.016324893,-0.0023776845,0.0060970504,0.0106144855,0.0015151749,0.004309243,0.012306458,-0.01282859,-0.011652141,0.02223358,0.036536038,0.00903487,0.0089423405,0.011143227,-0.00060144346,-0.02937159,0.015650747,0.025234187,-0.0022355851,0.003266631,0.0065464806,0.023700837,-0.011163055,0.02765318,-0.011744671,-0.0256704,-0.0030485252,0.006939732,-0.0013160706,-0.00059772574,0.0012706319,0.010951558,0.004372031,-0.0095702205,-0.0006282936,-0.02582902,-0.037461333,0.02177093,0.022550825,0.0005229584,-0.008274804,-0.020898508,0.019034693,-0.027335934,0.0014399944,-0.019444467,0.03341646,0.020924944,-0.0063184607,-0.025961207,0.011500128,0.0013540739,0.005069309,-0.011632313,-0.005488998,-0.0072437585,-0.015584655,0.00994034,0.009385161,0.0058458983,0.020845633,0.008017043,-0.022537606,-0.009854419,-0.013879464,-0.0027098001,0.02738881,0.031301495,-0.01165875,-0.0011508389,-0.0133308945,0.011916512,0.002637098,-0.0101254,0.022378983,-0.015756497,0.025049128,0.0052907197,0.017223755,-0.03336359,0.006516739,0.020647354,0.013641531,0.0029378198,0.0008055046,-0.009550394,-0.01292112,0.013178881,0.016166272,0.014738669,0.019378375,0.02746812,0.009418208,-0.012194101,-0.0040349583,-0.005508825,-0.017950773,-0.021043912,-0.034394633,0.0077923276,-0.01066075,0.034473944,0.012299849,-0.012365942,-0.006182971,-0.021506561,-0.035637178,-0.0033195051,0.024427857,0.034738317,-0.02068701,-0.026450293,0.029556649,0.00042464552,0.0007365204,-0.0171841,-0.0052808058,0.024282454,0.05070631,-0.018016865,-0.64929456,-0.009920512,0.027679617,0.011757889,-0.009252976,0.020303674,0.022378983,-0.005403077,-0.025366373,0.026767537,-0.008433427,0.031407245,0.0056641432,0.008235149,0.005809547,-0.01806974,-0.005548481,0.0017332807,-0.004282806,0.0007166926,-0.0090811355,-0.0044579515,-0.0066191824,0.0018968601,0.0049668653,-0.0015135225,0.017659966,-0.005743454,-0.039179746,0.019523779,-0.026556041,0.030772755,-0.0053799446,0.004709104,0.063131735,-0.006625792,-0.0026040517,0.031671613,0.000100481535,0.008777109,-0.032861285,0.006288719,-0.008380553,-0.0009096006,0.005059395,-0.007428818,0.012650141,0.00094595156,0.016100178,0.013641531,0.007798937,0.010898684,-0.016205927,0.0018555522,0.0015093917,0.003569005,0.031327933,-0.002480128,-0.0115199555,-0.014011649,-0.0006026827,-0.010740061,-0.009801545,0.00015521454,-0.028789975,-0.00018464644,-0.018162271,0.005750064,0.00095999625,0.0021942772,-0.0024883896,0.029239405,0.0005828549,0.016972601,0.030111827,0.016430642,0.0011524912,0.029847456,-0.016404204,0.012868246,0.0035491772,-0.0135225635,-0.036298104,-0.0054460373,0.03968205,-0.0002651969,0.0090811355,0.014223146,-0.0053964676,0.014381768,-0.0055352626,0.033760145,0.005231236,-0.009887466,0.002875032,0.009662751,-0.013773716,0.00216784,0.013813372,0.01843986,0.022458294,-0.019893898,-0.0070256526,0.002020784,0.013667967,-0.0042134086,0.0008356594,0.013866246,0.01002626,-0.010098962,0.012478299,-0.011870246,0.008473082,-0.011354723,-0.03748777,-0.030429073,-0.0029989555,0.015254192,-0.011764498,0.002412383,0.010878856,0.009596658,0.0010335244,-0.0062953285,0.007911295,-0.0052543688,-0.009358725,-0.0036516208,0.005674057,-0.013892682,0.0061003547,-0.00058987725,0.0082285395,-0.019589873,-0.010515346,-0.009887466,0.010158446,-0.028578477,0.022749102,-0.042352192,0.0020819197,0.020026084,-0.010911902,0.0126699675,-0.015849026,-0.029530212,-0.0011962776,0.008102964,-0.047057994,0.018809978,-0.0030815715,0.004391859,-0.018307675,0.01582259,-0.0024239493,-0.008241758,-0.014143835,-0.024189923,-0.0005502216,0.0022835024,0.016470298,0.024890505,-0.010673969,-0.0041704485,0.0039986074,-0.01690651,0.002719714,0.019920336,0.007957559,-0.027441684,-0.0029659092,-0.019140441,-0.020092176,-0.024520386,-0.0017729363,-0.023211751,0.0053832494,-0.0049007726,-0.02231289,0.030164702,-0.008459864,-0.021612309,0.0036251838,0.010766499,0.019933553,0.013106179,-0.01734272,0.038175136,-0.021665182,0.04274875,0.0011962776,-0.023053128,-0.019299064,0.007646924,-0.009266195,-0.001265675,0.010198101,-0.0010112181,-0.013026868,0.011916512,0.0026949293,-0.023251407,0.014249583,0.0106144855,-0.01780537,-0.010885465,-0.011215929,-0.012881464,0.050838493,0.018624919,-0.0044447333,-0.04140046,-0.020713449,-0.012636921,-0.010971386,0.005945037,-0.031935986,0.0017911118,-0.013549001,0.023687618,0.005717017,0.011843809,0.0063680303,0.014527173,-0.028869286,0.0004506695,0.0060772225,0.012636921,0.0135754375,-0.002506565,-0.021678401,0.015862245,-0.011995822,0.01436855,0.022616917,-0.018915726,0.0355843,-0.018360548,0.017567435,0.0038003295,0.0043422896,0.017263409,0.018942164,0.02432211,0.010548392,-0.0037342368,0.019470906,0.0032484555,0.007865029,0.004262978,0.00795095,-0.012081743,-0.03669466,0.015756497,0.020118613,-0.021612309,-0.016681794,-0.014580047,0.04084528,0.04861778,0.014672576,0.013601875,0.011434034,-0.024745101,0.017963992,0.0018803369,-0.017091569,-0.012630313,-0.020832414,-0.013244974,-0.008360725,-0.025458902,0.022709446,-0.0027031908,0.026886504,-0.0014201666,0.033839457,0.00016863961,0.020594481,0.014553609,-0.022894507,-0.036985468,0.009252976,0.01373406,-0.020039303,-0.008598658,0.0263842,0.018928945,0.015320284,0.01346308,-0.0059053814,0.021731276,-0.0023842936,0.0022157573,-0.013549001,0.007633705,0.049120083,0.011004432,0.024454294,0.010885465,0.021480123,-0.0068075466,-0.026212359,-0.02720375,-0.02738881,0.009325678,0.008545784,-0.027098002,-0.006992606,-0.01391912,-0.0051552295,0.0039919983,-0.026463512,-0.007204103,0.0011805806,0.01988068,-0.0030832237,-0.0209646,0.009266195,0.009312459,-0.0027478035,0.0080897445,-0.030376198,0.0063349837,0.11103571,-0.010449254,0.023647964,0.030746318,-0.01535994,-0.0028849458,0.008770499,-0.0033740315,0.016113397,-0.003360813,0.005059395,0.0120420875,-0.02251117,0.023079567,0.015148444,0.011400988,0.01580937,-0.016020868,0.006658838,-0.0101254,-0.0075676125,-0.02412383,-0.011751279,0.015386377,0.007957559,0.014765106,0.026912943,0.0004866074,-0.0017200621,-0.005069309,-0.024018083,0.0008732496,-0.013760497,0.023211751,-0.013324286,0.015888682,0.0159019,0.0029890416,0.015782934,0.004851203,0.005059395,0.007884857,0.0048776404,-0.01580937,0.010726843,0.015095569,0.0050560907,-0.0019365157,0.0062920237,-0.011077134,0.0544075,0.01824158,-0.010555002,-0.015426033,0.01734272,0.034183137,-0.027943987,-0.02042264,-0.005095746,0.011063916,-0.0037077996,-0.017937556,-0.028789975,-0.009186883,-0.032464728,-0.030032517,-0.04319818,-0.0008798589,-0.008182274,-0.029080782,0.0033178527,0.0038631174,-0.015677186,0.0017068436,0.010112181,0.014685795,0.01644386,0.0009864334,0.031433683,0.0060309577,-0.021202534,-0.01627202,-0.0011367942,-0.0027775452,-0.012141227,0.0058227656,0.01869101,0.005221322,-0.027996862,0.0015820937,0.026053736,0.020092176,0.0018555522,0.0012351071,-0.016020868,-0.0032154091,-0.015796153,0.039444115,-0.03524062,0.001906774,0.013628311,-0.009788327,-0.011553002,-0.046529252,-0.0068736393,0.0022835024,0.0017630224,0.03217392,0.0026172705,-0.01002626,0.03101069,-0.008790327,-0.0032963727,0.016020868,-0.029953206,0.025789367,-0.011308459,0.024507169,-0.00623254,-0.004325766,-0.020343328,-0.01535994,0.03833376,-0.010766499,0.0009773456,0.016113397,0.0027758928,-0.024692228,0.027891114,0.01717088,0.01129524,-0.013535782,-0.0016333155,-0.022352546,0.0081294,-0.013443252,0.0073032416,0.015346722,0.025974426,-0.021744493,0.0063151564,0.0041770576,-0.009867638,-0.036800407,-0.010832591,-0.022471514,0.007818765,-0.0039027731,0.019457687,0.021096785,-0.020039303,-0.008393771,-0.018624919,-0.019748494,0.005449342,-0.016774323,0.0025792671,0.023370374,0.0022967209,0.028049735,0.01670823,-0.021466905,0.0008133531,0.009675969,0.016523171,0.0032220185,-0.0067811096,-0.013119399,-0.009827983,0.0046397066,0.0131921,0.007660142,0.021004256,0.007891467,-0.014090961,0.020449078,-0.03624523,-0.018651357,-0.00564762,-0.021612309,-0.01156622,0.0012805458,-0.005531958,0.026212359,-0.0023479427,-0.00075221737,0.009775109,0.0012541087,0.0078055463,-0.00173989,0.012227147,-0.018823197,0.024533605,-0.010059306,0.010310459,-0.014632921,-0.010303849,-0.011427426,-0.010323677,-0.006886858,0.017065132,0.024229579,-0.022749102,0.0049734744,-0.00767997,0.012987213,-0.008102964,-0.023119222,0.009675969,-0.00939838,-0.0070388713,0.0075874403,0.009206711,-0.039417677,0.0050825276,-0.009471082,-0.021559434,0.005528653,0.0028899028,-0.03687972,-0.038888935,-0.00497017,0.017104788,-0.0055716136,0.024256015,0.020885289,-0.014328894,-0.0128616365,0.0019150355,0.0051915804,0.0025627438,0.0039986074,0.051472984,-0.005488998,0.0090811355,0.04399129,0.013112789,-0.017554218,-0.0267411,0.0105087375,-0.010085744,0.005429514,-0.02223358,-0.0075213476,-0.030376198,-0.012028869,-0.021057129,-0.016655358,-0.0067645865,-0.008208712,-0.030799191,-0.02223358,-0.008188884,0.022246799,0.009636314,0.014090961,-0.011050697,-0.014157053,-0.00578311,-0.020845633,0.0016407509,0.018466296,-0.005221322,-0.006860421,0.020211143,-0.0077857184,-0.019576654,-0.01762031,-0.0074883015,0.027785365,-0.01870423,-0.003839985,-0.009662751,0.015082351,-0.0037441507,-0.019285847,-0.0047057993,-0.017091569,-0.014170272,-0.0150030395,0.007944341,0.0061102686,-0.027150875,-0.010132009,-0.009404989,-0.028948596,-0.0134696895,-0.010621095,0.020158269,-0.014685795,-0.033125654,-0.01689329,0.0005303938,-0.0016192708,-0.021678401,-0.00519819,-0.0027593696,0.0067745005,-0.009186883,0.032676224,-0.021123223,-0.009735453,-0.014090961,0.0028320716,-0.0111366175,-0.052266095,0.027256623,-0.006840593,-0.0076403143,-0.013654749,0.024705445,0.018770322,-0.005297329,0.0032765449,0.01238577,0.012002432,-0.0003172449,-0.012769107,-0.04814191,-0.000027366503,-0.008473082,0.0083673345,0.008122792,0.010667359,0.0068141557,-0.012207319,0.014130617,-0.0034368197,-0.015108788,-0.013562219,-0.0050197397,0.009834591,0.011156445,-0.024903724,-0.023608308,0.0006539045,-0.012009041,0.027230186,-0.034526818,-0.0105616115,-0.000047297577,0.0021447076,0.016232364,0.009100962,0.005432819,0.012359332,0.0013565524,-0.03968205,-0.030799191,-0.0051519247,-0.015108788,0.020991037,0.012815372,-0.032834847,0.008783718,0.010191492,-0.012432034,-0.016655358,-0.020581262,0.006985997,0.018902509,-0.014897292,-0.005502216,0.031512994,-0.0105087375,0.031380806,-0.027283061,-0.010528564,0.0034665614,-0.017937556,-0.016232364,-0.011777717,-0.026397418,0.007884857,0.0032996773,0.014262802,-0.013853027,0.026212359,-0.006202799,-0.0018885985,-0.030931378,-0.0035194356,0.015967993,0.021678401,0.004861117,-0.00024454293,-0.004814852,0.00090299133,-0.012934338,-0.025247406,0.013502736,0.02892216,-0.008638314,-0.0011376203,0.004372031,-0.0019381681,-0.014870854,-0.006017739,0.036721095,-0.013800153,-0.0021694924,0.0027990253,0.016602483,-0.03442107,0.0031955813,0.0034467336,-0.03341646,-0.02701869,0.0009021652,-0.019140441,-0.009292631,0.008658142,0.0019679097,0.0063482025,-0.014765106,-0.0060243485,-0.019827805,-0.01834733,0.012656749,0.002030698,-0.006985997,0.0039589517,0.0049007726,-0.0015977906,0.020184707,-0.02359509,0.01039638,-0.028023299,-0.0002672623,0.015478907,0.0048644217,0.009226539,0.01662892,-0.009722234,0.009973386,0.019193316,0.23328075,-0.012359332,-0.013800153,0.030878503,-0.008962168,-0.015690403,0.0379372,0.018730666,0.0011268803,-0.008770499,-0.008334287,-0.007402381,-0.02585546,-0.002407426,0.012372551,-0.03045551,-0.018572045,-0.0068339836,-0.021480123,-0.008935731,0.021400811,-0.013218537,0.005693885,0.008268195,0.049807448,-0.0057071033,0.013853027,-0.0014350375,-0.02042264,0.008519347,-0.00214636,-0.03481763,-0.0015746582,0.0047487593,-0.0029444292,-0.001552352,0.03161874,-0.01824158,0.0095173465,0.032702662,-0.0065398715,0.026318107,-0.0067943283,-0.013615093,-0.022564042,0.019299064,-0.00070099556,-0.032861285,-0.029926768,0.0074750828,-0.030217577,-0.031037126,-0.01763353,0.00686703,-0.0011797545,0.010019652,0.012537783,0.0065630036,-0.022987036,0.010455863,0.0044017727,0.022167487,-0.026648572,0.02042264,-0.027891114,-0.009689188,-0.016351331,0.0035359587,0.016377768,-0.01165875,-0.002891555,0.01943125,0.028657788,0.009946949,-0.002157926,-0.0049206004,0.016377768,0.020131832,0.03875675,-0.0041902764,0.011176273,0.012134617,0.011176273,-0.0082285395,0.0005303938,-0.029688835,0.02918653,0.022378983,0.0113282865,-0.018096177,0.020012865,0.022722665,-0.01699904,0.01002626,-0.0056905802,0.023833023,0.001547395,0.024983035,0.00695956,-0.0017184098,-0.01806974,-0.003000608,0.023515778,0.016774323,-0.015796153,-0.0029163398,-0.020885289,0.03209461,-0.006126792,-0.025895115,0.022696229,-0.010079134,0.0104756905,0.011334896,-0.0027775452,-0.00010559339,-0.030164702,-0.03399808,-0.0041968855,-0.012405598,0.0015870506,-0.015399596,-0.0073693343,0.023555433,0.020316891,-0.024507169,-0.031565867,0.004761978,0.015293848,-0.026172703,0.029583087,0.003912687,0.0050560907,-0.022973817,-0.013760497,-0.002828767,0.009814763,-0.0037705877,0.0008509433,0.00086003105,-0.023502558,-0.007673361,-0.0014829546,-0.008565612,-0.002599095,-0.034738317,0.0089423405,0.00713801,-0.02692616,-0.00859205,-0.024454294,-0.0011896683,0.006381249,-0.032596912,0.023026692,-0.0017927641,-0.038836062,-0.0035194356,0.024203142,0.008334287,0.0051552295,-0.01210818,0.010885465,0.0047487593,-0.014447861,0.009094354,-0.16761105,0.03341646,0.0047586733,-0.0063316794,0.013145835,-0.0053468985,0.018823197,0.011242365,-0.023925552,0.0033360284,0.022458294,0.0128087625,-0.014593265,-0.0029725186,-0.013430034,-0.004768587,-0.017303064,0.01201565,0.0348705,0.008724235,0.011169664,-0.00686703,0.026820412,-0.011579439,-0.011057306,0.011493518,-0.0016680142,0.016457079,-0.008810155,-0.004861117,-0.030614132,-0.0023429857,0.018228363,0.021004256,0.021083567,0.0011268803,-0.005911991,0.0054196003,0.008915903,0.032649785,-0.012128008,0.014051305,-0.02855204,-0.00016378594,-0.01608696,-0.0082285395,-0.01472545,-0.0070520896,-0.0035227402,-0.031486556,-0.029133655,-0.020607699,0.0109449485,-0.012676577,0.00071256177,0.018902509,-0.004795024,0.009986605,-0.0045042164,-0.0056178784,0.009312459,0.0067447587,-0.011414207,0.01535994,0.012689795,-0.030429073,-0.025419246,0.0029493861,-0.041638393,0.011176273,-0.020012865,-0.018453078,0.01853239,-0.014104179,0.016932946,-0.0017613701,-0.018677793,0.014394987,-0.01472545,0.023965208,-0.010859028,0.06942376,-0.01670823,-0.0028618134,0.010991214,0.01871745,0.0030402637,0.016562827,-0.020026084,-0.017250191,0.004068005,-0.020620918,0.004355508,-0.026965816,0.028076174,0.021506561,0.009087744,-0.0045042164,0.0013259845,-0.028604915,-0.0044711703,0.01870423,-0.0061499244,0.020092176,0.005303938,0.0063680303,0.018862853,0.0213215,0.027996862,-0.017276628,0.006701798,0.020647354,0.029265841,0.024414638,0.018836416,0.01446108,0.025339935,-0.011215929,0.009338897,-0.0066390103,0.022378983,-0.011586048,-0.03616592,0.018995037,-0.0039655613,-0.029926768,-0.120024316,-0.00214636,-0.0037805017,0.005793024,-0.0012028869,0.015426033,0.027996862,0.002499956,0.0015837459,0.009735453,-0.009775109,-0.010819373,-0.0081756655,0.0038465944,0.029768147,0.0036582302,0.007210712,-0.019285847,-0.011486908,0.010132009,-0.009259585,-0.0020703534,-0.020409422,-0.010640922,0.0000052958057,-0.05847881,-0.034659006,0.0064737787,0.019589873,0.027058346,-0.017673185,-0.0058855535,0.004590137,-0.028604915,-0.029662397,0.006708408,-0.042907372,0.020911725,0.017990429,-0.02548534,-0.005495607,-0.013449862,-0.0036483163,-0.0024289063,0.019047912,0.003126184,-0.011348114,0.014989821,0.017118005,-0.007898076,-0.00071132253,0.011513346,-0.008644924,-0.014646139,0.035769362,-0.019285847,0.0048313756,0.0019530389,-0.022008864,0.018016865,-0.00912079,0.010951558,-0.010779717,0.026225578,0.019351939,0.02593477,0.0070058247,-0.0001984846,0.0073032416,0.011044088,-0.008261586,0.032332543,-0.0070256526,0.008935731,-0.03595442,-0.0039325147,-0.00074271654,-0.004804938,0.0003856095,-0.014381768,-0.0083673345,-0.009675969,0.009418208,-0.024070956,0.013337504,0.009286023,0.0073032416,0.030772755,-0.018545607,-0.0037805017,0.0052378452,0.014196709,-0.003678058,0.00012774477,-0.011334896,0.01851917,-0.020885289,0.011592657,0.010006432,0.0020918336,-0.03090494,-0.02548534,-0.044493597,0.026807193,0.003839985,-0.012438644,0.0029576477,-0.027005471,0.008711016,0.005736845,-0.012412206,0.006860421,-0.017051913,0.012874856,-0.018598482,0.018955382,-0.02042264,0.00078030676,0.013515954,-0.010449254,0.021017475,-0.016192708,-0.030164702,-0.0016275324,0.0084202085,-0.00858544,0.0036284884,0.014315676,0.0024090784,-0.00045975726,0.0044876933,-0.026939379,0.03172449,-0.031433683,-0.0023281148,0.014712232,0.00089472975,-0.027124438,-0.009233148,0.0016713188,0.007455255,0.0057698917,-0.009530566,-0.04454647,-0.01391912,0.0033062866,0.00063531596,-0.0149501655,0.0104823,0.012551001,0.008737453,-0.008532566,0.033839457,0.016324893,0.02477154,-0.010072526,0.010409598,0.0018324198,-0.010825982,-0.006672057,0.0018307674,-0.0063515073,0.014527173,-0.014077743,-0.0032583694,0.0053270706,0.021731276,-0.0022636745,-0.040765967,-0.011553002,0.004500912,-0.019457687,-0.007422209,0.010224539,0.00018154834,-0.0020224361,0.034553256,0.020131832,0.0013144183,-0.031248622,-0.002744499,0.004312548,0.010250975,-0.005479084,-0.029926768,0.023449685,0.011691797,0.016853634,-0.0048941635,0.0024966511,-0.008083136,0.012246975,-0.031777363,0.006724931,-0.0038003295,0.014923728,0.034949813,0.03135437,-0.0159019,0.004276197,-0.0065266527,-0.007375944,-0.0060243485,0.0021496646,0.020475514,0.0035855281,0.011308459,0.017369159,-0.025551433,-0.0113282865,0.011341505,-0.01851917,0.0047586733,-0.0034103827,0.020541606,0.03370727,-0.0059186,0.005188276,0.019100787,-0.02158587,-0.026992252,0.045286708,-0.0031179225,0.0014102526,-0.010376552,-0.04150621,0.03526706,-0.019047912,0.01328463,-0.012888074,0.016285239,0.0055517857,0.003704495,-0.011348114,-0.026357763,-0.023780148,0.024374982,-0.006933123,-0.005908686,0.030587696,-0.0025759623,0.0574742,-0.0038829453,-0.01545247,0.0024768235,-0.00036949944,0.021255407,0.019140441,0.010541784,0.0068472023,0.017712839,0.008711016,-0.018135833,0.012306458,-0.0150559135,-0.01734272,-0.018096177,-0.010402989,0.0073693343,-0.009907294,0.006966169,0.0087506715,0.010495518,0.012504736,0.013839808,-0.010799545,-0.0124254245,-0.0048974683,-0.009067916,-0.008109572,-0.03706478,0.01481798,0.025511777,0.010911902,-0.0032550648,0.007904685,-0.008413599,-0.011942948,0.01744847,-0.007818765,0.047560297,-0.02582902,0.008796937,-0.026172703,-0.00080880924,-0.023092784,0.0111366175,0.0028981643,0.0343682,-0.04962239]},{\"id\":\"4b2cda62-6387-423a-b046-46bc29929111\",\"text\":\"How do I get in touch with customer service so I can discontinue these orders and stop charging me! I do not want any more of the product as it has an adverse reaction and makes me sleepy!!!!\",\"vector\":[-0.0107563455,0.00093293155,0.0014872462,-0.008367513,-0.026673097,0.03159594,0.0011721448,-0.028190864,0.006203046,0.0037317262,0.023175636,0.009304569,0.0077604065,0.00085621834,0.009971066,0.0032285536,0.033206094,-0.0025307108,-0.0006594861,0.003523858,-0.023320813,0.0065131984,0.003952792,0.018120814,-0.006671574,-0.005826904,0.015388833,-0.011257868,-0.02250254,0.0048535536,-0.013673097,-0.025973605,-0.0003652126,-0.013659899,-0.0035601524,0.0009898478,0.003952792,0.008182742,0.0025604062,-0.034631476,0.020931982,-0.0021248732,-0.0009906726,-0.006552792,-0.020800002,0.028507616,-0.0030652287,-0.018477159,-0.0049162437,0.008341117,0.012828427,0.010320812,-0.013871067,-0.014267006,0.011343655,0.014029442,-0.00019642292,0.018767513,0.016075129,-0.014544163,0.0008108503,0.01014264,-0.03830051,0.002380584,0.0012455585,0.022212183,-0.007245686,-0.020654824,-0.00061288074,-0.024495432,0.0002940673,0.021618275,0.0073182746,-0.028982744,0.02288528,0.000017812104,-0.01026802,0.012432488,0.0068233507,-0.014715737,0.028665992,-0.021143148,-0.026646702,0.026514722,0.022964468,0.024429442,0.02561726,0.019097462,-0.0046456857,-0.004286041,-0.0055497466,0.023400001,-0.014135026,0.017632488,-0.0069685285,0.03167513,0.0127954325,0.047803048,-0.017843656,0.0057015233,-0.011904569,0.01827919,-0.018952286,-0.014029442,-0.029537058,0.0068695433,0.003609645,-0.008539087,0.021829443,-0.018582743,-0.01345533,0.045823354,-0.0059588836,-0.02171066,0.0048733507,-0.004319036,-0.009476143,-0.010769544,-0.041388836,-0.03745584,0.008367513,0.009007615,0.033971574,-0.0033522844,0.013336549,0.01768528,-0.03257259,-0.008809645,-0.0002715895,0.0052395943,-0.00046316627,0.018424366,0.014227412,-0.009047208,-0.01078934,0.017434519,-0.031463962,0.017936042,-0.012043148,-0.0025158632,0.016233504,0.040069036,0.0030206854,-0.0028920053,-0.009456346,0.051155332,0.0035601524,0.0063977162,-0.022594925,0.0001217719,0.004754569,-0.03505381,0.000890863,-0.0139106605,-0.0147817265,0.008070559,-0.00042810917,0.014253808,-0.019414214,-0.001625,0.0034017768,-0.014082234,0.014267006,-0.009489341,-0.0033786804,0.02061523,0.02048325,-0.01397665,-0.0020110407,0.009344163,-0.0075822338,0.033285283,-0.0029662438,0.002411929,0.006430711,0.0019434012,0.016035534,-0.008624873,-0.0012802031,0.011026904,-0.014478173,0.0055365483,0.0059027923,0.038326904,-0.022001017,-0.02165787,0.0008661168,-0.026237564,0.023175636,-0.0054342644,-0.0078659905,-0.0029200509,-0.02691066,-0.019387819,-0.63434726,-0.03595127,0.012161929,-0.0006805203,0.019546194,0.028454823,-0.003942894,-0.0056421324,-0.011231473,0.041626398,-0.005510153,0.022608124,0.0024696703,-0.020865992,-0.009324366,-0.0028309645,0.013541117,-0.016537057,0.013686296,0.010584773,-0.0061304574,0.012571067,-0.0026230966,0.0045038075,0.011818782,-0.00032685598,0.015718782,0.009865482,-0.0112446705,0.025247717,0.006961929,0.0138578685,0.015573605,0.021816244,0.0455066,-0.025511676,-0.009462944,0.00871066,-0.000050884362,0.019559393,-0.05411168,-0.009020813,0.022053808,-0.027451778,-0.017262945,-0.0057774116,0.00533198,-0.012610661,0.0032945434,0.01515127,0.013296955,0.017777666,-0.02710863,0.0039000001,0.024310661,0.0019120559,0.019203046,0.009126397,-0.006288833,0.014003047,-0.008341117,0.0023442896,-0.0010187184,-0.013448732,-0.01859594,0.020047717,-0.033021323,0.014992895,0.03114721,-0.0175533,0.031068021,0.00095685286,-0.020971574,0.0448731,0.012188326,0.022766499,-0.014148224,0.028982744,0.01410863,0.021723859,0.0051670056,-0.010037056,-0.017975636,-0.030619292,0.03621523,0.00904061,0.0014270305,-0.024271067,0.0009609772,0.003550254,0.005652031,0.023307616,0.008723859,-0.02372995,-0.01131066,-0.0016002539,-0.02139391,0.0023690357,0.009680711,-0.024851779,-0.004962437,-0.0147817265,-0.02243655,-0.003998985,0.039593913,-0.00035820116,-0.033417262,0.000102490485,0.037535027,-0.01717056,0.013791879,0.010261422,-0.00007243417,-0.011825382,0.016220305,-0.008961421,0.027821321,-0.002106726,-0.015494417,-0.013593909,-0.0068695433,0.01515127,0.0143066,0.013211168,0.010611168,0.015045686,0.0019796956,0.027029444,-0.006843148,-0.008552285,-0.005371574,-0.016484264,-0.01592995,-0.020100508,-0.014412183,0.013541117,0.026343148,-0.00028932426,0.033417262,-0.004246447,-0.0012455585,-0.0047677667,-0.0028705585,-0.009654315,0.010301015,-0.000442132,0.0060743657,0.021037566,-0.0126040615,0.02061523,-0.016629443,-0.025023352,0.0011539975,0.020021321,0.025670052,-0.006090863,-0.011099493,-0.0077340105,-0.014055839,-0.0009898478,0.022964468,0.025326906,-0.02159188,-0.0099908635,-0.029273098,-0.024917768,0.022396956,0.0033555839,-0.027715737,-0.028243657,-0.0036261424,-0.03692792,-0.015547209,-0.0022980967,-0.029246703,0.011013706,0.0014179569,0.00034335346,-0.005305584,-0.005619036,-0.0053616753,0.026712691,-0.014464975,0.032730967,0.027689341,0.020272082,0.0042827413,0.030487312,-0.043817263,0.032335028,-0.022014214,0.027319798,-0.016167514,0.022080204,-0.012326905,-0.010505584,0.015468021,0.009330965,0.014636549,-0.016576651,0.03998985,0.0034182742,0.01631269,0.0014542514,0.0227533,-0.00058029825,0.010908122,-0.01410863,0.02255533,0.012782234,-0.014385788,0.009113198,0.0009255077,-0.027319798,-0.004526904,-0.0024284266,-0.016669037,0.008763452,-0.008657869,0.003395178,-0.0073050763,-0.004757868,0.025960408,-0.021789849,-0.005157107,-0.0058500003,0.012076143,-0.005833503,0.014596955,-0.00851929,-0.0051505077,-0.0052560917,0.011779188,0.014227412,-0.0009997463,0.004546701,0.006988325,-0.005619036,0.043606095,-0.007100508,-0.012749239,0.011845178,0.03283655,-0.000034026016,-0.013673097,0.01918985,0.008789849,0.007503046,0.015045686,-0.0055629443,-0.011383249,-0.01781726,-0.032018274,0.0014690991,0.008255331,-0.017526904,-0.0008718909,0.01768528,0.036452793,0.009713707,0.0012521574,-0.0073248735,0.02308325,-0.008895432,-0.00299099,0.007898985,0.00799797,-0.001788325,0.001391561,-0.009713707,-0.0029926398,-0.0026032997,0.017645687,-0.046931982,0.024614215,-0.0011869925,-0.0035337566,-0.009245178,-0.006292132,0.009238579,-0.001170495,-0.007714214,0.015639596,-0.009370559,0.010657361,0.0048865485,-0.008327919,0.0279533,-0.0016670686,0.035317767,-0.0043685283,-0.0036789342,-0.01866193,0.012571067,-0.003784518,0.007489848,0.018345179,-0.019361421,0.025960408,-0.015520813,0.0025983504,0.0028045687,-0.016207108,-0.015494417,0.01196396,-0.014557362,-0.006061168,-0.012650254,-0.012016752,-0.030672083,0.0070345183,0.004460914,-0.013501524,-0.024680205,-0.0028590104,0.018186804,-0.009667513,-0.009713707,0.040148225,-0.008763452,-0.0025175128,-0.014398986,-0.0059390864,-0.008308122,0.07448935,0.03998985,-0.01735533,0.019282235,-0.012703046,0.018622337,-0.010782742,-0.027610153,0.00513401,-0.007892386,0.0000021572366,-0.005018528,-0.00077538076,0.011957361,0.006658376,0.008479696,0.014544163,-0.014332996,0.0013437184,-0.025247717,0.010492386,0.018371575,-0.01899188,0.034420308,0.02262132,0.019942133,0.040623352,0.021697463,-0.0068827416,-0.003946193,-0.012802031,-0.0053880713,-0.021961423,0.043975636,-0.013336549,0.017804062,0.017328935,-0.002867259,0.0052098986,-0.003830711,0.013818275,0.010446194,0.0073050763,-0.032282237,0.026145179,-0.012670051,0.0022057109,0.0054111676,0.0006417513,0.014926905,0.014662945,-0.011587818,-0.013296955,0.0051142136,0.010400001,0.016959392,-0.026329951,-0.010960914,0.0047050766,-0.0080045685,-0.030117769,-0.016801016,0.033364467,-0.001631599,-0.022291372,-0.029774621,-0.034869038,-0.004051777,-0.0078659905,-0.012538072,0.020377666,-0.009779696,-0.032915737,0.03217665,0.004903046,0.027689341,0.0012010153,-0.0067771575,0.02243655,0.022660915,-0.005882995,-0.01612792,0.007140102,0.0077472087,0.018569544,-0.0074700513,0.020100508,-0.0011746193,0.014768529,0.020905584,-0.004088071,-0.0009766498,0.022132996,-0.028850762,-0.0025719544,0.01339594,0.012201523,0.03180711,-0.024350256,-0.00474797,-0.018318783,0.008077158,0.02465381,-0.013607107,0.0052923863,-0.010413199,0.009001016,-0.00377132,-0.01899188,0.007687818,0.014135026,0.0017833757,-0.022410154,-0.0028639596,0.04479391,0.01768528,-0.02028528,0.017764468,-0.008459899,0.0043355334,-0.00858528,-0.04363249,0.030408124,-0.0029546956,-0.03856447,0.0021562183,-0.01079594,-0.02438985,0.0027732234,-0.0031906094,-0.018490355,0.0009090102,-0.019018276,-0.018094417,-0.038194925,0.0022782995,-0.030434519,0.01775127,0.011066498,-0.017460914,-0.027293403,-0.0045631984,-0.013923858,0.01332995,0.014003047,-0.029774621,-0.014900508,-0.005226396,-0.012524874,0.035344165,0.005091117,0.002119924,-0.014253808,-0.010221828,0.0034446702,-0.018714722,-0.0078000003,-0.0018147209,0.052580714,0.019559393,0.019005077,0.0023525383,0.01924264,0.001547462,-0.019216245,-0.026026398,0.004414721,0.027016245,-0.0012389595,0.014755331,0.026541118,0.004401523,0.043606095,0.010604569,0.009568528,0.0023772845,-0.022119798,-0.026884265,-0.008756854,-0.015560407,-0.0052560917,0.0054078684,0.009291371,0.032783758,-0.0022865483,0.008334518,0.018371575,0.01631269,-0.0051538073,-0.029589849,0.012175128,-0.012637056,0.017698478,-0.008941625,0.0072654826,0.0073182746,-0.019981727,-0.012524874,-0.016853807,0.010393402,-0.017843656,0.014583757,0.0182132,-0.0061370563,-0.00851929,-0.0112446705,-0.0040286803,-0.017804062,-0.013897463,0.00014528078,-0.021090357,-0.024376651,-0.021420306,-0.00053204317,-0.011389849,0.021103555,-0.007945178,-0.0015458122,-0.0481198,-0.02029848,-0.010413199,-0.059654824,-0.009852285,0.022027412,0.026263962,0.016207108,-0.015943147,0.010281219,0.012406092,-0.011521828,-0.0066286805,-0.0009782995,0.043474115,-0.018582743,0.0011234772,-0.011211676,0.0012348351,-0.01599594,-0.019810153,-0.0013387691,0.012683249,0.004259645,-0.015573605,0.0010310914,0.011462437,0.060446706,-0.008704062,-0.0043058377,-0.00023818213,-0.0067144674,-0.039356347,0.005619036,0.0009815991,0.009014213,0.020839594,0.0068629445,-0.029299494,-0.00949594,0.005975381,-0.0003742862,-0.02068122,0.035555333,-0.034631476,0.0022931474,0.0079187825,-0.0072852797,-0.0019813452,-0.012036549,-0.000656599,0.02184264,-0.0134223355,-0.018582743,-0.0052098986,-0.012802031,0.026541118,0.0048271576,-0.02457462,0.0040715737,-0.0059984773,0.006783757,0.0041078683,0.003711929,-0.024337057,-0.014425381,-0.013831473,-0.01020863,-0.020338072,0.0013593909,0.016998986,-0.015877157,-0.004259645,-0.016814213,-0.006315229,-0.0065461933,0.008829442,-0.00025076143,0.0007003173,0.010888325,0.009053808,-0.004903046,-0.0040154825,0.02679188,-0.03193909,-0.0021710661,0.00068464474,-0.04460914,-0.0050053303,-0.0013610406,-0.048172593,-0.01619391,0.010927919,-0.0152172595,0.0061403555,-0.016880205,0.025366498,0.012082742,0.028692387,0.0053484775,-0.02594721,-0.0035304572,-0.027979696,-0.0003507773,0.011475635,-0.015943147,-0.0026824875,-0.025986804,-0.010591371,0.008822843,0.00033964153,-0.0018576143,-0.010182234,0.00008130156,-0.005533249,-0.026514722,-0.0059720813,-0.0143066,-0.0076086298,0.041995943,0.0020654823,0.0041903555,-0.012722843,0.011653808,0.025788834,0.02347919,-0.00468198,0.02023249,-0.024996955,-0.022515737,-0.031226398,-0.030804062,-0.0013247463,0.027346194,0.0068365484,-0.008618275,0.0020852792,-0.017447717,-0.010531981,-0.008664467,-0.020192895,0.002009391,0.0061337566,0.019717768,-0.016352285,0.0044048224,-0.010670559,0.0061535537,-0.007661422,-0.015613199,0.016761422,0.005417767,0.009139595,-0.022858884,-0.050680205,0.015969545,0.026356347,0.005249493,-0.011046701,0.006443909,-0.017434519,-0.0028507616,0.025577666,-0.0068827416,-0.008374112,-0.010162437,0.007852793,-0.020377666,-0.008855838,-0.011073097,-0.00025736043,-0.01118528,-0.0040715737,0.020430459,-0.029088326,0.0031312185,-0.01619391,-0.015230457,-0.026541118,0.0020077412,-0.009601523,0.023571575,-0.006816752,0.004520305,-0.0032978428,-0.029959392,0.010419797,0.002378934,0.020865992,-0.001781726,0.02119594,-0.03687513,-0.014161422,0.022911677,-0.015652793,-0.00611396,-0.008948224,-0.024680205,0.019097462,-0.039250765,0.01930863,0.015177666,-0.0024300762,-0.008750254,-0.00968731,0.0052131983,0.008030965,-0.015758377,-0.0071796956,-0.03270457,0.016985787,0.017460914,-0.015494417,-0.02503655,0.015006092,0.008143147,-0.006582488,0.039937057,0.21898073,-0.010703553,-0.008882234,0.028402032,0.018516753,0.0036030458,0.0017899747,0.0034281728,-0.007450254,0.0060479697,0.020166498,-0.008532488,-0.025709646,-0.0076482235,-0.012630458,-0.024812184,-0.050548226,-0.0286132,0.013488325,-0.015045686,0.002392132,0.007536041,-0.011812183,-0.0078000003,0.03811574,0.005104315,-0.01183858,-0.0027352793,0.021380711,-0.0045730965,-0.027161423,0.011944163,0.0080045685,-0.007892386,0.002002792,-0.007093909,-0.012260915,0.0055761426,0.016457869,0.009911676,-0.003946193,0.0038934012,0.0017982235,-0.017408123,-0.03431472,0.006344924,-0.007635026,-0.009878681,0.009073605,0.012445686,-0.033628426,-0.0019500001,0.033628426,0.03204467,0.010419797,-0.012280711,0.00539467,-0.003147716,-0.017130965,0.009509138,-0.014332996,0.0066253813,0.013633504,-0.0012934011,0.00041697337,0.016629443,-0.012960407,-0.03220305,0.024825383,-0.010604569,-0.0016744925,-0.013026397,-0.009449746,0.033390865,-0.016801016,-0.010604569,-0.010215229,0.038590863,0.008783249,0.018780712,-0.0071467008,0.008525888,0.017764468,-0.0012191625,-0.0134751275,-0.021473099,0.03017056,0.010644163,-0.014557362,0.008855838,-0.0017949239,-0.0051538073,-0.012584264,-0.009429949,0.020575635,-0.00032500003,0.012927412,0.021301525,-0.0003821225,0.010531981,-0.008770051,0.041652795,-0.01281523,0.005160406,-0.009680711,-0.006008376,0.0069487314,0.023109647,-0.021420306,-0.012716244,-0.0038835027,-0.035449747,0.016299494,-0.021737058,-0.013765483,0.00007506346,0.010215229,-0.015652793,0.016827412,-0.02054924,0.02563046,-0.018252794,-0.0019483503,0.019664975,0.0071730968,-0.00702132,-0.00513731,-0.02594721,0.0351066,-0.019915737,0.011455839,0.013382742,0.0038010154,-0.018820306,-0.032467008,0.013250763,0.012089341,0.01437259,0.0034710662,0.011792387,-0.008968021,0.004121066,0.013593909,-0.0017239848,0.0054936553,0.0006516498,0.017117767,-0.015745178,-0.005546447,-0.02366396,-0.008935026,-0.014214214,0.0072588837,-0.00044378176,0.030012185,0.025538072,-0.03687513,-0.035792895,-0.0007077411,-0.00016899589,-0.03671675,-0.011937564,0.015573605,-0.0069751274,-0.003134518,-0.010894924,-0.16650559,0.016576651,-0.0014963199,-0.013098986,0.034182742,0.011073097,0.0017008884,-0.010103046,-0.022872083,-0.01937462,0.044318784,-0.0156000005,-0.010175635,-0.005038325,0.012696448,-0.0018163706,-0.028058885,0.022449747,0.0047710664,0.022383757,0.014755331,0.02061523,-0.009535533,-0.0143461935,0.022911677,0.008176142,-0.020905584,0.023584774,-0.020905584,0.00046399113,-0.027979696,-0.008077158,0.003942894,0.015428428,0.043078177,0.0035799495,0.00054647843,0.007984772,-0.0111918785,0.0175533,-0.0019384519,0.017922843,0.013105584,0.039752286,-0.022647716,0.008895432,0.023518782,0.01606193,-0.0047413707,-0.029035535,0.020126905,-0.028138073,-0.01404264,0.0073050763,0.0077274116,0.021156346,0.014570559,0.005807107,-0.017460914,-0.012452285,0.02295127,-0.008657869,-0.0033770306,-0.0030190358,-0.004883249,0.008050762,0.0013379442,-0.0050812187,-0.024191879,0.018556347,-0.010716752,0.003302792,-0.0012653554,-0.007621828,0.016022336,0.0065626907,-0.020008123,-0.010584773,0.003291244,-0.013765483,-0.021697463,0.023122843,-0.025511676,0.024535026,-0.013989848,-0.0146761425,0.020470051,-0.011059899,0.0033473352,-0.0124984775,0.032335028,-0.009773097,0.030513708,-0.011851777,0.013897463,0.0069091376,0.0061799497,0.0006413389,-0.0051736045,0.008162945,0.020087311,0.0018279189,-0.014583757,0.025089342,0.04363249,-0.010254823,-0.02054924,0.015665991,0.011482234,-0.039118785,-0.0033341371,0.01932183,0.02301726,0.03017056,0.010070051,-0.005714721,-0.019612184,-0.006754061,0.0026032997,0.009126397,0.03864366,-0.018688327,0.024812184,0.017579697,-0.026118783,-0.012122336,-0.11424163,-0.039884266,-0.002893655,-0.026224367,-0.016932996,-0.0066088834,-0.00643731,0.037693404,0.0018048225,0.022911677,0.008479696,-0.040280204,-0.022225382,-0.02697665,0.013,-0.020008123,-0.0016398478,0.000024655974,-0.013145179,0.025445687,-0.0143066,-0.010762945,-0.001130901,-0.0030388327,-0.026250763,-0.030328935,-0.0149533,0.004761168,0.010531981,0.025155332,-0.013580712,-0.008327919,-0.0009255077,-0.009086803,-0.014913706,0.009918274,-0.018582743,-0.0012010153,0.03310051,-0.0487797,0.01150863,-0.0032796955,-0.024337057,-0.020390864,0.0011201777,0.0056223352,-0.023888325,0.019862946,0.0044708126,-0.0004578046,-0.020456854,-0.0066088834,-0.0048304573,-0.035660915,0.046668023,-0.0041276654,-0.0073182746,0.021737058,-0.037033506,-0.009839087,0.022132996,0.008116752,-0.01735533,0.0053022844,-0.0023591372,0.0042563453,-0.005909391,-0.0077934014,-0.0007180521,0.010182234,-0.008321321,0.0010979061,-0.02685787,-0.0001533233,-0.044107616,0.008948224,-0.005681726,-0.011337057,0.0068497467,0.004546701,-0.020496449,0.008605077,-0.022740103,0.0038076143,0.02035127,0.0020456854,0.003758122,0.015494417,-0.027821321,-0.019598985,0.0035205586,0.020192895,0.01014924,-0.010459391,-0.011660406,0.015309646,-0.017051777,0.002060533,0.039250765,0.00428934,-0.03719188,-0.013468529,-0.04078173,0.01866193,0.011937564,0.0050020306,0.00097087567,-0.0074700513,0.044160407,0.008209137,-0.0059786807,-0.011759391,0.004850254,0.029246703,-0.008261929,-0.0033654824,-0.02697665,-0.035872083,0.04363249,0.013131981,0.031173605,-0.009251777,-0.017064976,-0.030830458,0.011455839,0.021829443,0.018965483,0.0061106603,-0.0010409899,0.033470053,-0.007549239,-0.010538579,0.000048873735,-0.01723655,0.0097533,-0.00396599,-0.031886294,-0.013131981,-0.0069355336,0.044318784,0.0077208127,-0.03434112,-0.017117767,-0.0125512695,0.011112691,-0.019876143,-0.009020813,0.018925888,-0.035449747,0.023400001,0.028692387,0.014768529,0.0015317894,0.015639596,-0.016748223,-0.018094417,-0.035608124,-0.04012183,0.009443148,-0.039620306,0.019427413,-0.008763452,0.00858528,0.0021562183,0.017975636,-0.012980204,0.0080045685,0.022093402,-0.002626396,-0.004091371,0.015784772,-0.009641117,-0.005424366,-0.006417513,-0.0035139597,-0.021143148,0.037930965,-0.00812995,-0.033918783,-0.010116245,-0.02497056,0.007159899,0.0121157365,0.0033539343,-0.039937057,0.012346701,0.02652792,0.015375636,-0.0046918783,0.011409645,0.0027847716,-0.006407615,-0.03236142,-0.007872589,-0.01963858,0.0058697974,0.016471067,0.040808123,0.019836549,-0.0012901016,0.0037284265,0.013646701,0.019414214,0.03270457,0.01177259,-0.02061523,-0.006351523,0.013270559,-0.004896447,-0.0324934,-0.019282235,0.011086295,0.014029442,0.00012713358,0.035001017,0.009680711,-0.0002851999,-0.0053286804,-0.011178681,-0.003329188,-0.01697259,0.04709036,-0.007714214,-0.0010880077,0.00877665,-0.0006825825,0.02698985,-0.0074370564,0.0032417513,-0.0049525383,0.01912386,0.0221066,-0.011970559,-0.011911168,-0.024627412,-0.006354823,0.0063284268,-0.007978173,-0.03621523,0.030856855,-0.011231473,0.07237767,0.0033852793,-0.029299494,-0.016497463,0.020126905,0.019717768,0.012010153,0.0031906094,-0.026356347,-0.0038703047,0.021288326,-0.003916498,0.0058368025,-0.024257869,0.0016241752,0.0026676396,0.00981929,0.022001017,0.011607615,0.00799797,0.021420306,-0.0025835028,0.0050878176,-0.002840863,-0.03497462,-0.011224873,0.010881727,-0.008215737,-0.016075129,-0.047882237,0.025868021,0.017262945,0.003738325,-0.0076482235,-0.0002864372,0.017896447,-0.014003047,0.010301015,-0.0029678936,-0.008116752,-0.00041078683,0.05384772,-0.031437565,0.010993909,-0.02932589,-0.013554315,-0.006041371,-0.007509645,-0.04120406]},{\"id\":\"c00deeb8-6ae6-43a8-a869-e5c5520a912b\",\"text\":\"you guys can improve by actually delivering my order.\",\"vector\":[-0.012723106,-0.010262948,-0.019855553,-0.022657586,0.004896854,0.012180129,-0.024212781,-0.010370203,-0.0038846366,-0.0101691,-0.0046119583,0.026277438,-0.0052688946,-0.011348903,0.014962051,-0.022764841,0.026196996,0.0062911673,-0.0026344473,-0.031747434,0.0083524715,0.0077491626,0.019842146,-0.012575631,-0.014305116,-0.024105527,0.009994811,-0.0029344256,-0.00027965865,0.018139476,-0.010953401,-0.00036428942,-0.01654406,-0.02669305,-0.03509915,-0.012937616,0.007434102,-0.000737796,0.009284248,-0.017093742,0.030111799,-0.018059036,0.022483297,-0.025915453,-0.042151157,0.010986919,-0.017871339,0.001313034,-0.034428805,0.019587416,0.024105527,0.0064486978,-0.0115701165,-0.03850449,0.006703428,0.040622775,-0.016115041,-0.0020529248,0.00086306635,-0.0034053414,-0.010611527,0.004427614,-0.02549984,-0.010209321,-0.01394313,0.012099688,0.0066498006,-0.02187999,0.013306305,-0.012589037,0.020794034,0.032739542,-0.014935237,0.018823225,0.035581797,-0.0028640395,-0.0013607959,0.017160775,-0.0052353772,0.006244243,0.021437563,-0.019815333,-0.005895665,0.01300465,0.0018501461,0.016329551,0.0053593908,0.007923452,-0.009049628,-0.011918695,0.015753055,0.011355607,0.010537789,0.01871597,-0.009820522,0.026357878,-0.0101691,0.03190832,0.008566981,0.011670668,0.010812629,0.007052006,-0.030594446,-0.005620824,-0.0263981,-0.0066263387,-0.0027802468,-0.030540818,0.03670797,-0.02354244,-0.025298737,0.018917074,0.015216782,-0.005413018,-0.0023947996,0.0025623853,-0.021182833,-0.0060263816,-0.028958809,-0.012568927,0.018394206,0.0043538767,0.035823118,-0.0011730999,-0.01394313,-0.00049731054,-0.018367393,-0.0058319825,0.007722349,-0.001453806,0.021169426,0.014519625,0.030969838,0.0012996271,-0.018126069,0.015592174,-0.037726894,0.008828415,-0.01842102,-0.033624396,-0.012850472,0.022858689,-0.0064654564,0.015753055,-0.027148884,0.009854039,0.038370423,-0.0122136455,-0.013420262,-0.024212781,0.02319386,-0.021303494,0.02315364,-0.004890151,0.01736188,-0.0036835338,-0.016115041,0.02810077,0.006612932,-0.01726803,0.0213169,-0.008111148,0.011348903,-0.028797926,0.014224675,0.033195376,0.02149119,0.016155262,0.009364689,0.0065727113,0.022577146,0.016704943,0.006710131,0.0014445888,-0.020244353,0.008151368,-0.0019607528,-0.008091037,-0.014868204,0.00069799443,0.006938048,0.025915453,0.020230945,0.028583417,0.0072262953,-0.00018109729,0.02025776,-0.013172236,0.019091362,-0.014345336,0.026317658,0.0017244569,0.009304358,-0.0154715115,-0.65811574,-0.023958052,0.015082713,-0.0076486114,-0.01110758,0.028476162,-0.0065794145,0.01411742,-0.012823658,0.013118609,-0.01411742,0.004256677,-0.0005438156,-0.02767175,0.006763759,-0.009579198,0.024869718,-0.001253541,-0.0013708511,0.0019205321,-0.024266409,0.00040702376,-0.0040957946,-0.0011772895,0.011911992,-0.0019004218,0.0012200238,-0.01106736,-0.009793708,0.0018685806,-0.01582009,0.024132341,-0.016691536,0.0034271276,0.04716532,0.0020797385,-0.031666994,0.004957185,-0.0048599853,0.032176454,-0.027349986,-0.021611853,0.013628069,0.00018025936,0.0046019033,-0.0075882804,0.026076335,-0.0038779331,-0.02076722,0.0041159047,0.020659965,-0.017723864,-0.032390963,0.013587848,0.0075078392,0.0003881704,0.025580281,0.008620609,0.020190725,0.019185212,0.0019590768,-0.021987244,-0.019734891,-0.051160563,-0.017080335,0.0057850583,-0.016195482,-0.009143475,0.014640287,0.009351282,0.0049035577,0.0024819442,-0.029736407,0.024722243,0.023260895,0.044618018,-0.0037639749,-0.0076486114,-0.012408045,0.003924857,0.0135208145,-0.005071143,-0.0025590337,-0.020351607,0.03126479,0.019037735,-0.0046689375,-0.023877611,-0.004642124,0.0017546223,0.00942502,-0.008064223,0.001159693,-0.004709158,0.031077093,0.0136884,-0.0034723757,0.0049370746,0.036868855,-0.030272681,-0.009089848,0.0020361661,0.025647316,0.008111148,0.037753705,0.029950917,-0.013440373,0.019252244,0.022738028,-0.01765683,0.02976322,-0.013681697,-0.025432806,-0.022416264,0.0078966385,-0.02802033,0.0015476539,0.010879664,-0.016825603,-0.014050385,-0.025928859,0.000063682564,0.04032782,-0.031318415,-0.004900206,0.01726803,0.017777491,-0.0067302417,-0.010423831,-0.0035327065,0.027832633,-0.004169532,0.011878475,-0.020378422,0.013467187,0.018179696,0.006515732,-0.009371392,0.033222187,-0.024789277,-0.015913937,-0.006736945,-0.011724295,-0.0036164995,0.012904099,-0.022268787,0.0043639317,-0.004253325,-0.00031820335,0.00096277986,0.005215267,-0.019453349,-0.010859554,0.027014814,0.017790899,-0.0033936105,0.0018183049,-0.011630448,0.0070385993,-0.018729378,0.0040957946,0.030862583,-0.009351282,-0.0028204673,0.004434318,-0.02549984,0.008553574,0.022523519,-0.019480161,-0.024655208,0.04421581,-0.022161532,-0.0024082065,0.010443941,-0.017174182,0.02810077,-0.023475405,0.009740081,0.005775003,0.0067570554,0.002170235,0.026170183,-0.022309009,0.006964862,0.023609472,0.0008329009,0.0012853823,0.0263981,-0.01658428,0.026746677,-0.022630773,-0.00004862604,-0.0024517789,-0.012850472,-0.0013038168,-0.00032951537,0.027349986,0.005506866,-0.003435507,0.010859554,0.022362636,-0.02217494,0.014640287,-0.015257002,0.0037338093,-0.0051046605,0.008962483,-0.038102284,0.028637044,0.033972975,0.00051490706,-0.0061705057,-0.0018484703,-0.025137855,0.008566981,0.018917074,-0.003703644,0.0312916,-0.010665154,-0.014546439,-0.0014144233,-0.021370528,0.012870582,-0.0025607096,0.0021249866,0.008285437,-0.005520273,0.04089091,0.018917074,-0.0020529248,0.0007088875,0.022617366,0.014305116,0.021544818,0.023073198,-0.02767175,0.013594552,-0.0146000665,0.018447833,0.007031896,0.025674129,0.031077093,0.0060330853,-0.02456136,0.015417884,0.006539194,0.03134523,0.0023177103,-0.009103255,0.006643097,0.0011337172,0.033785276,-0.0050074607,-0.024749056,0.0021618556,-0.024373664,0.010738892,0.009585902,0.028073957,0.029200133,0.004407504,0.022805061,0.04081047,-0.031023465,-0.0099747,0.0064654564,0.01744232,-0.0038980434,0.0100350315,0.0046957512,0.0024919994,-0.011704185,-0.005191805,-0.02174592,0.017683644,-0.011188021,0.0020143802,0.03662753,-0.01765683,0.011201428,-0.013380042,-0.019654451,-0.0026863988,-0.0062777605,0.0020998488,0.0074005844,-0.014559845,0.012421452,-0.03633258,0.0075748735,-0.0050476813,0.010216025,0.014224675,0.0021115798,-0.006187264,0.017898154,0.013138719,-0.015511733,0.019641044,0.013983351,0.010531086,0.007427398,-0.020230945,-0.023435185,0.01697308,0.024802683,-0.023475405,-0.013621366,0.0031020113,-0.018769598,-0.032793168,0.01535085,-0.013809062,0.0038176023,-0.0004910261,-0.016624501,-0.03437518,-0.018957295,0.017469134,0.028181212,-0.00091250415,-0.016262516,-0.006984972,0.03450925,0.11594249,0.027336579,0.010484162,0.0043873936,0.0008957456,-0.0041326634,-0.020539304,-0.010450644,0.020566117,-0.006964862,0.008064223,0.009961294,0.010229431,-0.004782896,0.003257866,0.00850665,-0.009324469,-0.016490433,0.009693157,-0.0035796305,-0.011456158,-0.0025003785,0.018407613,-0.000995459,0.013983351,0.040917724,0.04906909,0.01249519,0.008781491,-0.035286844,-0.014318522,-0.0030735217,-0.011355607,-0.01390291,0.0075078392,0.056308795,0.010142286,0.00062006706,0.016396584,0.02946827,0.011369014,0.02495016,0.012133204,-0.0026294196,0.016812198,0.006535842,-0.008627312,0.028556604,-0.021088984,-0.0152435955,0.01535085,-0.0031103906,-0.038584933,-0.011369014,-0.012314198,0.016825603,-0.009740081,-0.024829498,0.017603202,-0.0063112774,-0.008580388,-0.009854039,0.0016817225,-0.041400373,-0.027148884,-0.027913075,-0.028261652,0.007963672,-0.010966809,-0.0018116015,-0.004782896,0.014734135,0.0055470867,-0.013386746,-0.011127691,0.019279059,0.0022942482,-0.01415764,0.0160346,0.0068978276,-0.0012518652,-0.023167048,0.0037572715,-0.021504598,-0.012702996,0.0033114934,0.0031941833,-0.024708835,-0.00850665,-0.004699103,0.012367825,0.0040354636,0.015444698,-0.033222187,0.0035058928,-0.009585902,-0.0010800898,0.009176993,-0.012421452,-0.0054699974,0.0018350634,0.0004420073,-0.0024651857,-0.02319386,0.013849283,0.009170289,-0.010195914,-0.011844957,-0.009733377,-0.0035561686,0.028047143,-0.0017294844,-0.014962051,-0.003727106,-0.0046454757,0.040354636,-0.0027618124,0.010021625,0.0025255166,-0.0031020113,-0.008935669,-0.018434428,0.026813712,-0.0137688415,0.010732188,-0.0037002922,-0.0038276573,-0.0440013,0.00051490706,0.010262948,-0.0064051254,-0.00068961515,-0.0054901075,-0.00614034,-0.01157682,-0.025794791,-0.0036030926,0.00436058,-0.009398206,-0.028502977,-0.025888639,-0.021062171,-0.0096395295,-0.011724295,0.016852418,-0.03346351,0.0137688415,0.002413234,0.002041194,0.019574009,-0.0045717377,-0.013152125,-0.013654883,-0.022845283,-0.01824673,-0.035689052,0.001605471,-0.013393449,-0.001018921,0.048264682,0.02336815,-0.014130826,-0.010423831,0.007829604,-0.0052119154,-0.004434318,0.0055940105,-0.00055764144,-0.021263273,0.015806682,0.023140233,0.007863121,0.018729378,0.009807115,0.006964862,0.0071324473,-0.011053952,-0.015900532,0.005215267,-0.016007787,0.017093742,-0.0031388802,-0.016101634,-0.0023478756,0.0037907886,-0.024266409,-0.0031606662,0.017200997,0.0018937184,-0.025727756,0.030111799,-0.010135584,0.018917074,-0.0048700403,0.011670668,-0.012408045,-0.013313008,-0.017254625,0.005134826,0.017884746,0.015364257,0.013574442,-0.01718759,0.00754806,-0.032873612,0.004863337,0.0063246842,-0.0156458,-0.0055001625,-0.02852979,-0.014908424,-0.0016205537,-0.022469891,-0.00094853505,-0.0043806904,0.013547628,-0.023086606,0.012702996,-0.012622555,-0.026331065,-0.016182074,-0.012555521,-0.015203374,0.007407288,0.020110283,0.0048432266,-0.009626122,-0.0040321117,-0.011335497,0.0146000665,0.0031506112,-0.010216025,0.024802683,-0.012696292,-0.01846124,0.0042265113,0.01415764,-0.016235702,-0.026331065,0.007159261,-0.00042336338,0.027779005,-0.004796303,-0.01177122,-0.027644938,0.012991243,-0.013534221,0.00625765,-0.008781491,-0.019801926,-0.037753705,0.008674236,-0.018340578,0.02068678,0.010645044,-0.008734567,-0.008949077,-0.0026545576,-0.015444698,0.005272246,-0.01347389,0.018943887,-0.00027253624,0.017911559,-0.022738028,0.0027031573,-0.014613473,-0.019265652,-0.0043170075,0.020579524,-0.030272681,-0.018045628,0.0023026275,-0.010591417,0.024936752,-0.012032653,-0.010584713,-0.009787004,-0.027148884,-0.015967565,-0.009967998,0.0066632074,-0.01744232,-0.0027785709,-0.014573253,-0.01846124,-0.018769598,-0.007232999,0.023931239,-0.0055604936,-0.01341356,-0.0048499303,0.010484162,0.004618662,0.002133366,-0.0021752624,0.0049035577,0.018018814,0.0050208676,0.023904424,-0.013983351,0.02485631,-0.044886153,-0.0021618556,-0.007521246,-0.021518003,0.00921051,-0.02780582,-0.037163805,0.010859554,-0.000468821,0.00353941,-0.033972975,0.006736945,0.02379717,0.00995459,0.0135208145,-0.037244245,-0.03828998,0.011657261,-0.016892638,0.022965943,0.028958809,-0.013286194,-0.016624501,0.014104012,0.01795178,0.0093915025,-0.0050208676,-0.008962483,0.0059291823,-0.0003764394,-0.006716835,-0.013969944,-0.008714456,-0.024936752,-0.017817711,0.013507407,0.0060531953,0.007487729,-0.0044108555,0.017107148,0.0041527734,0.026545575,-0.025955673,-0.0020914695,-0.0066531524,-0.012113094,0.013876096,-0.041400373,-0.003797492,0.012401341,-0.00007206185,-0.020056656,-0.019801926,-0.021866582,-0.027644938,0.004082388,0.015686022,0.017281437,0.008861932,-0.00068584445,-0.025392585,0.015659207,-0.007145854,0.032712728,-0.03172062,-0.0008488216,-0.0002530544,0.006331388,-0.004983999,0.014211267,-0.03373165,-0.016182074,0.026076335,0.03354395,0.0010298141,0.036600716,-0.003316521,-0.0132928975,0.004608607,-0.015203374,0.0011328793,-0.0035025412,-0.01065845,-0.03493827,0.005627528,-0.014465998,0.01272981,0.00018392531,0.0046354206,0.019212024,0.0012594066,0.013138719,-0.0066598556,-0.023891017,-0.00029662668,-0.0066833175,0.004407504,-0.0015518436,-0.015793277,0.023770357,0.0035662237,-0.009317765,-0.005778355,0.017214403,0.0081044445,0.010497568,-0.0031489353,-0.017174182,-0.0314793,0.016463619,0.0065894695,-0.010698671,0.0017194293,-0.008493244,0.010785815,0.014935237,0.00040639532,-0.011637151,-0.022295602,-0.001019759,0.005168343,-0.012461673,0.0038410642,-0.012374528,-0.008473133,-0.0053895563,-0.0022355933,-0.007930155,-0.002589199,-0.052125856,0.010289762,-0.0046789926,-0.0174021,0.018447833,0.22416264,0.013185643,-0.023998272,0.04566375,-0.013064981,0.0061906157,0.024400478,0.007454212,0.008003893,0.0037572715,0.00923062,0.008848525,-0.019171804,-0.008982593,0.014036979,-0.02289891,-0.02520489,-0.018689157,-0.020311387,0.0019842146,0.013654883,0.0087881945,0.008339064,-0.010376907,0.02661261,0.008573685,-0.004434318,-0.0044678347,0.0077558663,0.023260895,-0.02673327,-0.016088227,0.021343715,-0.0068173865,0.0026059577,0.0028053846,0.015404478,-0.023287708,-0.00068123586,0.003844416,0.0029310738,-0.010477458,0.014546439,-0.008084334,-0.009887557,0.017978594,-0.0068240897,-0.009270841,-0.0022808413,0.02217494,-0.021464376,-0.02788626,0.03408023,0.02622381,-0.0070050824,0.0047426755,0.00019052399,-0.0098473355,-0.006656504,0.020659965,-0.0064956215,0.018823225,-0.0048666885,0.0148279825,-0.044296253,0.0039349124,-0.0056778034,0.002145097,-0.0037907886,-0.0023143585,0.012381231,-0.01675857,0.012944319,0.008030707,-0.008030707,-0.030943023,0.031184347,0.011663965,0.018474648,0.028771114,-0.012863878,0.012548817,-0.010886367,-0.031532925,-0.002565737,-0.032980867,0.018273545,0.011074063,-0.00074827013,-0.004534869,-0.014935237,-0.036895666,0.00012663195,-0.014988865,0.0013775545,0.022148127,0.018555088,0.023529032,0.020807441,0.005402963,0.00848654,-0.017495947,-0.024239596,0.01607482,-0.0046555307,-0.027859448,-0.007581577,0.030138612,-0.0046722894,-0.0073067364,0.027537683,-0.0026327714,0.015659207,-0.0022858689,0.011865067,-0.007407288,0.014734135,0.007708942,0.017764084,0.00004011583,0.032176454,-0.020713592,0.005134826,0.016611094,0.013809062,-0.020445455,-0.014895017,0.0139565375,0.00705871,-0.02618359,0.01181144,-0.013715214,0.01982874,-0.005506866,-0.017241217,-0.00018151625,0.009867446,0.012830361,-0.024628395,0.0068307933,-0.030326309,0.019935995,0.004548276,0.00046086067,0.010986919,-0.024507733,0.023703322,0.0059459405,-0.020445455,-0.0030617907,-0.001992594,-0.014559845,0.0043773386,-0.012160018,0.046334095,-0.0017546223,-0.035823118,-0.037297875,0.0050342744,0.010886367,-0.0055604936,-0.0036734785,0.02780582,-0.018112663,-0.028342094,0.01106736,-0.17203678,0.010423831,0.009498757,-0.023823984,0.032739542,-0.010296466,0.006468808,-0.0016230675,-0.015257002,0.017066928,0.024695428,0.022764841,-0.019399721,-0.00967975,0.0066397456,0.017174182,-0.054485463,0.016061414,0.0128772855,0.008694346,0.019815333,-0.0011546655,0.0043069525,0.0030617907,0.00080189755,0.012595741,-0.03316856,0.03437518,-0.020834254,-0.021598445,-0.011409234,-0.0005450725,0.022670994,0.004112553,0.016235702,-0.0021585037,-0.010691968,-0.0070855236,0.003717051,0.013621366,0.011911992,0.04284831,-0.00048935023,0.0046354206,0.006314629,-0.0030165426,0.010142286,-0.00014433319,-0.0049605365,-0.024547953,-0.002847281,-0.02844935,-0.0066498006,-0.014573253,0.023006165,0.009652936,-0.0019356149,0.021424156,-0.02460158,0.0014110716,-0.0067570554,-0.0293342,0.014104012,-0.0047728405,-0.000738634,-0.01181144,-0.014734135,-0.01390291,-0.0246418,0.017562982,-0.0051247706,-0.013527518,-0.0039550224,0.0113220895,0.0096395295,0.003209266,-0.03220327,0.014935237,-0.014868204,-0.02234923,-0.0025959024,-0.002450103,-0.0013976648,0.023059793,0.0039550224,0.0009619419,0.011489675,0.00087395945,0.0028053846,-0.004253325,0.008218403,-0.01761661,0.0035528168,-0.019399721,0.014707321,0.0125153,0.009471944,-0.011737702,-0.00080483034,-0.011992433,-0.009498757,-0.008727863,-0.03670797,0.04456439,-0.0013809062,0.024480918,0.0003435507,0.02358266,0.0124415625,-0.027510868,-0.01325938,0.027215919,0.009646233,0.029843662,0.004169532,0.00082326477,-0.0006058223,-0.0021618556,0.029629152,-0.007266516,0.014385557,-0.01462688,-0.0052923565,0.018179696,0.028663859,-0.016959673,-0.114977196,-0.033195376,0.019198617,0.01577987,-0.014693914,-0.0030198942,0.015082713,0.024749056,-0.0150156785,0.02187999,-0.005322522,-0.022670994,-0.021169426,-0.013835875,0.021357121,-0.015806682,-0.00850665,0.012374528,-0.017965186,0.014908424,0.0030534114,-0.007675425,0.020378422,0.018917074,-0.0032897072,-0.016168669,-0.016249109,0.0032511626,0.020096878,0.000020332858,0.014023571,-0.008882042,0.018072441,-0.032417778,-0.017093742,0.0063783117,-0.012575631,0.006250947,0.010102066,-0.0307017,-0.0010105418,-0.0076620183,0.010745595,-0.021544818,0.0015141368,-0.012072874,0.0071324473,0.021343715,0.01893048,-0.013038168,-0.026813712,0.02332793,-0.01769705,-0.021370528,0.028717486,-0.01906455,-0.009840632,-0.015806682,-0.024655208,-0.00874127,-0.012434859,0.009492054,-0.012642665,0.01846124,0.0024048549,-0.0012216998,-0.015940752,-0.008204996,0.023877611,-0.0068609584,0.026196996,0.028047143,-0.010598119,0.009156883,-0.024413886,-0.0002471889,-0.03590356,-0.026371285,0.005858796,-0.011911992,-0.0070385993,-0.029575525,0.030219054,-0.030353121,0.019037735,-0.0077759763,0.0111545045,-0.007152558,0.013862689,-0.012863878,0.011261759,0.010122176,0.0103635,-0.013105202,-0.008634015,0.011114283,-0.012997947,-0.009036221,0.039416157,-0.022590552,-0.019761706,0.002543951,-0.020056656,0.032685913,-0.012522004,-0.010376907,0.012951023,-0.008064223,0.0015241919,-0.009378096,0.005051033,-0.0026947781,-0.0069916756,0.01846124,-0.022228567,-0.029173318,-0.020633152,-0.014586659,0.030004544,0.00436058,0.046763115,-0.013695103,0.019480161,-0.014479404,-0.0020780626,0.009880853,-0.0072933296,0.01885004,-0.0033232244,0.024413886,-0.0012795168,-0.029495083,0.003093632,-0.020566117,0.009733377,0.0055940105,0.016892638,-0.033758465,0.0022355933,0.019600824,0.010738892,-0.0021417453,-0.006073306,-0.025875231,0.0006946427,-0.010899774,-0.007232999,0.01343367,-0.025700944,0.012119798,0.007950266,0.0027266194,0.0040522222,0.017348472,0.004699103,-0.023073198,-0.006596173,-0.041507628,0.020633152,-0.0008186561,0.00019827484,-0.026599202,0.024199376,0.01607482,0.014010165,-0.025017193,0.045234732,0.014077199,-0.0037773817,0.014988865,0.0011211484,-0.01304487,-0.014975458,-0.0059157754,-0.0016741811,-0.018823225,0.019077957,0.013742028,-0.0014906748,-0.028958809,-0.005272246,0.02192021,0.0028456051,-0.0041762358,-0.013809062,0.03236415,-0.0019959456,0.0036634235,0.0040019467,0.008828415,-0.0062308363,0.008674236,-0.04695081,-0.0051515843,0.0067302417,-0.0003035396,0.015364257,0.03834361,0.011529896,0.008392692,0.017857932,-0.001628095,-0.0043672835,-0.01931928,-0.007501136,0.004893502,-0.011020436,-0.0028757707,-0.022027465,-0.023917831,-0.008345768,0.015444698,0.020820847,-0.010450644,0.020217538,0.012180129,-0.009170289,-0.006964862,0.0073670675,-0.021947023,-0.026344473,0.040354636,0.013286194,0.004618662,0.002763488,-0.004531517,0.032712728,-0.0004382366,0.0019171804,0.0006217429,-0.022791656,0.02516467,0.006173857,-0.012468376,-0.020177318,-0.0013934751,0.0026947781,0.007487729,-0.012012543,0.028824741,-0.00731344,0.043518655,-0.0048097097,0.0037874368,0.010041735,0.017790899,0.016812198,0.020029843,-0.0013951509,0.009780302,0.000029013274,-0.0078094937,-0.007454212,0.012997947,-0.02694778,0.005097957,-0.0032913832,-0.0000424725,0.028181212,-0.017415507,-0.01658428,0.0049437783,0.009418316,0.007434102,0.008640719,-0.03198876,-0.038987137,-0.012367825,0.020861069,-0.012870582,-0.03826317,-0.0038377126,0.0034288035,0.0015065954,-0.0041326634,-0.022309009,0.004813061,0.0042600287,-0.010068549,0.012991243,0.024789277,0.0070922268,0.013138719,-0.01705352,-0.025137855,-0.008861932,0.008734567,-0.003854471,0.008848525,-0.015525139]},{\"id\":\"cb71667f-cde1-4938-a19d-65dbe7b2cac1\",\"text\":\"I have not received my payout via stripe express and it’s been months \",\"vector\":[-0.033626016,-0.03566705,-0.007998298,-0.032222807,-0.0090124365,0.017259484,-0.013687677,-0.0040501747,-0.01310088,-0.007481661,0.013993832,-0.015090887,-0.005201445,-0.0004612256,0.010996065,-0.0070032943,-0.0021080044,0.008329966,0.009197405,-0.004467949,-0.016672688,-0.010670776,-0.037708085,0.0060242363,0.0030503876,-0.015090887,0.018866798,-0.004321249,0.014197935,-0.01889231,-0.013470817,-0.002579993,-0.016443072,-0.019032633,-0.039749116,-0.013419791,0.017170189,0.0025831824,0.0067928126,-0.0027474216,0.011825235,0.014555116,-0.007411501,-0.022629952,-0.022910595,0.022591684,-0.018956093,-0.038677573,-0.015843518,0.025168488,0.013981076,-0.0036866157,-0.028421383,-0.028472409,0.0053609004,0.00030356378,0.011187412,0.015626658,-0.0071691284,-0.012380141,0.007960028,-0.0039002863,0.0023296478,-0.019121928,-0.017578397,0.002152652,-0.008744551,-0.002548102,0.0063654715,0.01169767,0.05633251,-0.0009248431,-0.018560642,0.008240671,0.0026150735,-0.010881257,0.0047103213,0.004649728,0.010619749,-0.015499094,0.011493566,0.0097204195,0.012003825,0.0138790235,0.020856805,0.0077941944,-0.0012102687,-0.003606888,0.0045189746,-0.009318591,0.017336024,0.014478577,0.0007119697,0.023369826,-0.0024635906,0.014032101,-0.0003567821,0.03689167,0.008948654,-0.013139149,-0.014197935,0.012188793,-0.024198996,-0.019453594,-0.030385878,0.0152949905,0.0064834687,-0.0022052722,-0.0024922926,-0.021405334,-0.02055065,0.022119695,0.004949505,-0.0065823314,0.005899861,-0.012207928,0.004566811,-0.023331558,-0.021749757,-0.01634102,-0.006754543,0.0003250903,0.0006613425,0.016761983,0.016315507,-0.005622408,-0.03145742,-0.013891781,0.013521844,0.015971083,-0.00025672367,0.018509617,0.0038556387,-0.0043021147,0.011684913,0.017272241,-0.04207079,0.004703943,-0.00020749173,-0.011735939,0.015014349,0.024301048,-0.0013936427,0.002579993,-0.006285744,0.012322736,0.02511746,-0.02890613,-0.003300733,-0.03138088,0.025933875,-0.0135346,0.0014119803,-0.03523333,-0.010670776,0.013228444,-0.01853513,0.011008821,0.007998298,-0.033957686,0.005431061,0.020639945,0.025040923,0.009108109,-0.0020474112,0.017259484,0.006301689,-0.032426912,-0.021737,0.004467949,-0.018560642,0.007641117,-0.015562876,-0.0073732315,-0.016162429,0.016889548,-0.002304135,0.007188263,0.0018018493,-0.010071222,0.020652702,0.017846283,0.0021654083,0.027655996,-0.016787495,-0.008017433,0.0241097,-0.017157434,0.0119017735,-0.017323267,0.009114488,-0.0027729345,0.008113106,-0.022311041,-0.66007006,0.011461675,0.005287551,0.019211223,-0.005010098,0.026086953,-0.02303816,0.0140831275,-0.042478997,0.032809604,-0.00038309232,0.0002284203,0.0063367696,0.00529074,0.00935686,-0.022438606,0.032375883,-0.0022004887,-0.009701285,0.020537894,0.008827467,0.0064707124,-0.023522904,0.027528431,0.0062985,-0.01893058,0.03130434,0.00089853286,-0.007826085,0.039213344,-0.0063877953,-0.014912297,-0.0013115231,-0.008597851,0.04352503,0.0077304123,0.019912828,0.0020250874,-0.018675452,0.04582119,-0.029799081,0.01130222,0.0075582,-0.029620491,0.010198787,0.014465821,0.018241731,-0.007621982,0.0013306577,0.0050738803,0.0102625685,-0.013483574,-0.025091948,-0.0046114586,0.01958116,0.0070160506,0.034467943,0.01954289,-0.014644411,0.012839373,-0.006250663,0.0010380566,-0.011640266,-0.025589451,-0.0141213965,0.017297754,-0.021099178,-0.0022212178,0.033268835,0.027962152,0.0093122125,0.020244496,-0.012979694,0.009994683,0.009771445,0.015664928,0.0039034756,0.0007689751,0.011461675,0.016927816,0.0001716142,-0.008719037,-0.0145678725,-0.02314021,0.016583392,0.012278088,-0.008744551,-0.010568724,0.009171892,0.010198787,0.01299245,0.021864565,0.020231739,-0.008967789,-0.011091738,0.02724779,-0.015779736,0.0047485908,0.002224407,-0.021316038,-0.022362066,-0.003970447,0.00004970533,-0.011665779,0.040386938,-0.003523971,-0.0023471878,-0.0010651641,0.01972148,-0.023918355,0.0201552,-0.025742527,0.00683746,0.0069586467,-0.01889231,-0.040029757,0.02108642,-0.020895075,-0.013056233,0.024785794,0.014580629,0.013560113,0.01896885,-0.011314976,-0.0070734546,0.0074370136,0.0040724985,-0.015792493,0.023599444,0.012227063,0.011576484,-0.006990538,0.030156262,-0.019836288,0.002940363,-0.008661633,0.027758047,-0.004477516,0.0003159216,-0.042657588,0.0072903144,0.038932703,0.00095035596,-0.0015642603,0.018037628,-0.042530023,0.020537894,0.0011672158,0.0022594873,0.009140001,-0.007717656,-0.029314335,-0.023624957,-0.0020777078,0.00044807052,-0.005061124,-0.00176358,-0.019223979,-0.014912297,-0.022349311,-0.0041522263,0.02163495,0.0019070902,-0.010377377,-0.015307747,-0.01713192,-0.004187307,0.019121928,-0.017361537,-0.00827894,-0.00946529,-0.003807802,-0.0052237688,-0.009382374,-0.01677474,0.022629952,-0.00705432,-0.01393005,-0.04967364,0.018012116,-0.004707132,-0.0034920797,-0.013598382,0.003750398,0.024734767,0.010020196,-0.004321249,0.059292007,-0.027375354,0.037095774,-0.0146061415,-0.013738703,-0.0019820344,0.036381412,-0.02566599,0.010740936,-0.0073030707,0.014657168,0.01742532,0.014210692,0.024135215,0.008814711,0.009988305,0.022438606,-0.007245667,-0.016787495,0.00878282,-0.02404592,0.035820127,0.018088654,0.014886784,-0.006996916,-0.0027203143,-0.01691506,-0.0049654506,0.005762729,-0.018024873,-0.0064707124,0.0075263088,0.024824062,-0.028319333,-0.02217072,0.0006410119,-0.030768571,0.008795576,0.014912297,-0.0030360364,0.0041554156,0.011168277,-0.015881788,-0.011136386,0.020014878,-0.014797489,0.012010203,0.0077431686,0.015409798,0.019670455,-0.024262778,0.021749757,0.008616986,-0.0061167204,0.015103644,0.032044217,-0.00022682574,0.03908578,0.0016097053,0.027400868,-0.020793023,-0.018700965,0.018101411,0.010606993,0.009407886,-0.013751459,-0.0062060156,0.012909533,-0.038575523,-0.010453915,0.0071755066,0.030156262,0.028013177,0.007704899,0.006971403,0.03275858,-0.00072552345,0.03704475,0.010594237,-0.023497391,0.0022722436,0.0015833951,0.0013792918,-0.009082597,-0.029059207,0.028931642,-0.022285528,0.03530987,0.009305835,0.018649938,-0.00089853286,0.010919526,-0.0016615284,-0.014963322,-0.027707022,0.011429785,0.025525669,0.0072903144,-0.0021095988,0.0066461135,0.016060378,-0.014363769,0.012884021,0.01367492,-0.0100776,-0.0012126606,-0.007889868,-0.018803015,-0.00529074,0.028140742,-0.0045476765,-0.0027952583,-0.0061964486,0.027222278,0.015103644,-0.012450301,-0.0033103002,0.023522904,0.008310831,-0.023331558,-0.019951098,0.013445305,-0.013164663,0.015703198,0.00035399164,-0.0092739435,0.032044217,0.022808542,0.01691506,-0.011225681,-0.027298816,0.047428504,0.013228444,-0.0062761763,0.008967789,-0.021060908,-0.008840224,0.079039,0.02400765,0.006432443,-0.010721801,0.0027458272,0.005064313,-0.019096414,-0.02436483,0.026329326,0.0005026841,0.016749227,0.0020936534,0.00023679172,0.0246965,0.014478577,-0.008534069,-0.0102625685,-0.012431166,-0.0019262248,-0.02724779,-0.0114361625,0.0015762196,-0.011168277,0.036662053,0.032605503,0.028421383,0.023714252,0.008948654,0.0055203564,-0.010664397,-0.008884871,-0.014363769,0.004337195,0.023382584,-0.0062761763,0.03969809,0.0008905601,0.0047581582,0.01853513,0.024824062,0.014146909,0.014402038,-0.01331774,-0.005041989,0.020308279,-0.025614964,0.00017031861,0.028523436,-0.004397788,0.013560113,0.016455827,-0.025359834,-0.011021578,0.012086742,0.0050388,0.043576054,-0.00016374108,-0.009248431,-0.012424788,-0.019172953,-0.016659932,-0.01871372,-0.010013818,-0.014095884,0.012699052,-0.030615494,-0.014886784,0.0010587858,-0.008495799,0.008827467,-0.0015243965,0.00033465764,-0.018024873,0.010696288,-0.0022531091,-0.013725947,0.016506854,0.0007924948,0.010779205,0.031610496,-0.017489102,-0.028651,-0.02155841,0.00996917,-0.01691506,-0.0012852129,0.019593917,-0.007494418,-0.015473581,0.005628786,0.008151376,-0.006103964,0.008693525,-0.017718717,-0.0032417343,0.012756456,0.0023264587,0.03130434,0.00226746,0.011397894,0.019415326,0.00088019547,-0.016060378,0.011378759,0.0024986707,-0.012220684,0.00683746,0.017540127,-0.017578397,-0.017195702,0.011882639,0.022349311,0.0031380882,0.013202932,-0.006754543,0.01738705,-0.008597851,0.019695967,0.0021877321,0.02638035,-0.009650259,-0.02839587,0.01752737,0.011729561,-0.018382052,-0.006378228,-0.0018704153,-0.032324858,-0.008616986,0.0023137021,-0.022872325,0.0029020938,0.004222387,-0.00640693,-0.034314867,-0.00640693,-0.004168172,0.006971403,-0.024275536,-0.017233972,-0.024313806,-0.007564578,-0.024262778,-0.030156262,0.017540127,-0.038141802,-0.006438821,-0.005906239,-0.0080812145,0.012871264,-0.01572871,0.0025688312,-0.013419791,-0.0022722436,-0.00041099708,-0.02217072,-0.0100776,-0.02011693,-0.009120866,0.0347741,0.030972674,0.012303602,0.01742532,-0.014070371,0.005306686,-0.015409798,0.0064994143,0.001817795,-0.011653023,0.029212283,0.024926115,-0.0003595726,0.022183476,-0.015346017,-0.0060242363,0.012635269,0.013687677,0.010772827,-0.02090783,-0.035794616,0.011066225,-0.008999679,0.010230677,0.0071436153,-0.009114488,-0.023803547,0.016047621,-0.0007119697,0.019836288,0.0070734546,0.019032633,-0.0070415637,0.025423616,0.005874348,0.0087700635,-0.005344955,-0.029237797,-0.024237266,-0.0016838522,-0.008451152,0.019504622,0.030079722,-0.016277237,0.0014837353,-0.0056670555,0.0270692,-0.013292227,-0.0039608795,-0.009082597,-0.021456359,0.0058424566,-0.021303281,-0.0072073974,-0.009937279,0.012450301,0.0047677252,-0.007991919,0.013381522,-0.02108642,-0.030181775,-0.0133942785,-0.024568934,0.0059955344,0.007111724,0.015626658,0.028421383,0.0025656421,-0.018649938,-0.014044858,-0.020512382,-0.010007439,0.017718717,0.029416388,-0.01130222,-0.024479639,0.012278088,-0.0011855531,-0.035105765,-0.028753052,0.020346547,0.015409798,0.0067354087,-0.022591684,-0.010147761,0.00020490057,0.023765277,-0.005989156,0.0027601782,-0.0023982136,-0.008438395,-0.0018911446,0.0056606773,-0.008240671,0.0294419,0.007385988,0.0074625267,-0.026686506,0.0054087373,-0.004059742,0.018841285,-0.013738703,0.018828528,-0.0030025507,0.023714252,-0.022438606,0.026865097,-0.007564578,-0.01893058,-0.0056925686,0.017718717,-0.019428082,-0.02465823,-0.005899861,0.005485276,-0.022311041,0.0073668533,-0.010453915,-0.0201552,-0.008157753,0.0066971392,0.01393005,-0.006075262,-0.00052899425,0.00590305,-0.0034282976,0.0064707124,0.008897628,-0.011971934,0.012424788,-0.012807482,-0.0012557136,-0.022413094,-0.014351013,-0.00074107037,-0.010147761,0.029926645,0.0056064622,0.0018098222,-0.0010157328,0.026278298,0.017182946,0.00025134205,-0.026609967,-0.008489422,-0.005064313,-0.02803869,0.030768571,-0.00008954434,-0.014312743,0.008776441,0.023484636,-0.019096414,-0.009599233,-0.005456574,0.0009846389,0.03538641,0.0020777078,-0.012399275,-0.018445835,0.030436903,-0.01191453,-0.012271711,-0.014453065,-0.0055618146,0.0028478787,-0.025257783,0.0049973414,-0.00748804,0.010734557,-0.01673647,0.009701285,0.011493566,-0.023471879,-0.013598382,-0.0033995954,-0.030258313,-0.013853511,0.021188473,-0.02537259,0.011691292,0.012086742,0.039749116,0.013368766,-0.00820878,-0.0072839363,-0.0007402731,-0.0009471669,0.0029483358,0.010970552,-0.019032633,-0.017693205,0.017718717,0.0152567215,-0.020091418,-0.024390344,-0.021303281,-0.026278298,-0.004216009,-0.0070351856,0.034238327,0.03426384,0.020780267,0.008463908,0.018879555,0.0001519812,0.02400765,-0.00655044,-0.0037663437,0.027196763,0.0030886568,-0.015486337,-0.00935686,-0.019504622,0.017795255,0.02995216,0.033064734,0.027298816,0.018241731,-0.0010077601,0.005887104,0.011863504,-0.008463908,0.0034729452,-0.0047772927,0.006824704,-0.03944296,-0.0088083325,-0.00031313114,-0.0063431477,-0.015983839,0.010562345,0.00014141727,-0.010071222,-0.007277558,-0.024709255,0.0072648018,-0.027273303,-0.041050274,0.016991599,0.028242793,-0.0060242363,-0.0016535555,0.010734557,-0.023203993,0.0074625267,0.007960028,-0.0140831275,-0.0078005726,0.011123629,-0.024173483,-0.0072648018,0.022706492,-0.0073796096,0.02011693,-0.008616986,-0.0061773136,-0.016800253,-0.0072966926,0.015282234,-0.011563728,-0.022323798,0.0071691284,-0.00439141,-0.012437545,0.023803547,-0.022298284,-0.0076730084,-0.042530023,-0.0070606982,-0.0018943337,0.016392047,-0.06169022,0.00056247995,-0.009082597,-0.002310513,-0.007022429,0.21124691,0.00038867327,-0.01641756,0.015703198,0.026482401,0.0051918775,0.012679917,0.0014127775,-0.010632506,0.007634739,-0.0002682842,-0.00036395763,-0.02007866,-0.014095884,-0.0033230567,-0.030998187,-0.024454126,-0.012597,-0.02066546,-0.0031540338,0.0031508445,0.019287761,-0.013151906,-0.0023200803,0.027273303,-0.01691506,0.012207928,0.028804077,-0.008380991,0.010606993,-0.022081425,-0.0054438175,0.02317848,-0.015626658,-0.011346867,0.0087700635,-0.014274474,-0.00917827,0.019772507,0.024352074,-0.01565217,-0.018063141,-0.004831508,-0.015601145,-0.021711487,0.00683746,-0.015639415,-0.01958116,-0.015014349,0.01151908,-0.02638035,-0.000256923,0.014287231,0.022617197,-0.0017476345,-0.010230677,0.02620176,-0.010128626,-0.041739125,-0.007724034,-0.0055203564,0.021737,0.0017540127,0.004439247,-0.025181243,0.020997126,0.00392261,0.0037153177,-0.0028622297,0.0060816403,-0.005083448,0.0050866366,0.020512382,0.013445305,-0.03898373,-0.040846173,0.007564578,0.015971083,0.0151164,0.013827998,-0.0024109702,0.019874558,0.010791962,-0.01393005,0.00065576157,-0.020129688,0.015205695,0.005383224,0.012533218,0.00493037,0.001943765,-0.0039672577,-0.020882318,-0.006521738,-0.0020043582,-0.01770596,0.020193469,0.0310237,-0.024824062,-0.00023101144,-0.007411501,0.034442432,-0.0019852235,0.0044296794,-0.020499624,-0.020614432,-0.0028351224,0.024326561,-0.015397042,-0.018905068,0.004340384,-0.038703088,0.002653343,-0.02181354,-0.000102549944,-0.0028207712,0.02066546,-0.014223448,-0.00655044,0.009643881,0.017182946,-0.030003184,-0.008329966,-0.0080620805,0.003189114,-0.021737,0.008100349,-0.028880617,0.000017888937,-0.023433609,0.032095242,0.0046337824,0.017182946,-0.032044217,-0.009127244,0.019657698,0.007934515,0.018879555,0.003858828,-0.010326351,-0.017859038,0.01310088,-0.0060019125,-0.020920588,-0.014644411,-0.02365047,0.012928668,0.012182415,-0.0177825,0.019491864,-0.005427872,-0.014261718,-0.009962792,-0.006544062,0.037708085,-0.024275536,-0.034978203,-0.027094712,-0.0007470499,0.014759219,-0.02339534,-0.016315507,0.044545542,-0.0006673221,-0.032784093,0.015167426,-0.16011903,0.021685975,-0.007392366,0.014644411,0.003893908,-0.0015674495,0.014453065,-0.012909533,-0.00006921374,0.022119695,0.008521313,-0.0027250978,-0.022527901,-0.01673647,0.0016017325,0.006913999,-0.035641536,0.015601145,0.004892101,0.0022881893,0.023318801,-0.0077367905,0.004053364,-0.021826295,0.021941105,-0.0003252896,-0.039009243,0.028574461,0.0022323797,-0.04985223,-0.011072604,-0.002447645,0.0050802585,-0.0041522263,0.026737532,0.011276707,-0.0022802164,-0.016085891,0.013445305,0.006362282,0.0071691284,-0.012737321,-0.004180928,0.0046624844,-0.012699052,0.031253316,0.027553944,0.009344104,0.012233441,-0.013968319,-0.00081521727,-0.014797489,-0.0008793982,-0.008247049,0.004216009,0.008642498,0.014287231,0.010670776,-0.014823002,0.00092803215,0.00906984,-0.013764216,0.0004389018,-0.01270543,0.0009918144,-0.009203783,0.0077623036,-0.0025927497,-0.029288823,0.029671516,-0.020614432,0.0013657381,0.011812478,0.002843095,0.019708725,-0.02072924,-0.02368874,0.004085255,0.006773678,-0.0067098956,-0.009701285,0.04872966,0.0010372594,0.02090783,0.009943658,0.03148293,0.023816302,0.0034888906,0.025640476,-0.02339534,0.013011585,-0.014657168,-0.004684808,-0.009490803,0.004959072,0.021277769,0.002631019,-0.011971934,0.020780267,-0.00417455,0.021252256,0.0073030707,-0.033983197,0.012884021,0.014146909,0.012520461,-0.0032943548,0.018586157,0.041407455,-0.027911125,-0.014044858,-0.005373657,0.018522374,0.037912186,0.009140001,0.007870733,-0.014695437,-0.021622192,0.04311682,-0.014746463,0.025359834,-0.008400126,-0.03321781,-0.0010755287,0.0062251505,0.018241731,-0.0916934,-0.034187302,-0.0070925895,-0.0014295203,-0.00986074,-0.016532367,0.017693205,0.041381944,-0.018662695,0.037733596,0.005654299,-0.008125862,0.0035749967,-0.003973636,0.0027777182,-0.0036611028,0.0028159877,-0.00921654,0.009714041,0.016787495,-0.04344849,-0.02890613,0.0008865737,-0.011461675,-0.028013177,-0.01839481,-0.015358773,0.008731794,-0.0018257677,-0.002450834,0.022081425,0.0011927286,0.011104495,-0.028574461,-0.0004062134,-0.0010540022,-0.03829488,-0.0026948012,0.04135643,-0.031789087,0.0019070902,-0.007634739,0.019874558,-0.00539917,-0.024964385,-0.018369297,0.0015363557,0.027758047,0.036126282,-0.025742527,-0.015473581,-0.005418305,0.002418943,-0.027707022,0.022451362,0.002433294,0.003120548,0.03908578,0.002691612,-0.006607844,-0.0133942785,0.00734134,-0.032248322,0.01572871,0.008189645,-0.014618899,-0.008036567,-0.0050292327,-0.00090251927,-0.015078131,-0.013764216,0.00314925,-0.025946632,0.02803869,-0.023624957,-0.012412031,-0.018841285,-0.021698732,-0.0068055694,-0.010504941,-0.03627936,-0.015129156,-0.0027091524,-0.03574359,0.040437967,-0.008093971,0.022732005,0.011831612,-0.02663548,-0.004423301,0.004585946,0.012960559,0.024645472,0.002965876,0.008967789,-0.01853513,-0.0185734,-0.011078982,-0.003976825,-0.012367384,-0.016902303,-0.022043156,-0.041381944,0.041050274,0.009331347,-0.005236525,0.0138407545,-0.014797489,0.0047166995,-0.016978843,-0.010345486,-0.010205165,-0.0025401292,0.018522374,0.00795365,-0.00032548895,-0.0021351117,0.0075709564,0.019593917,0.0040469854,0.019989366,0.0073987446,0.02339534,0.0037344524,0.0065887095,0.014057614,0.007966407,0.026482401,-0.023535661,0.028242793,0.0044711377,-0.0030456039,0.0034729452,-0.03740193,0.0063590934,0.025933875,0.04592324,-0.034621023,0.018024873,0.011837991,-0.009567342,-0.008291696,-0.0041777394,-0.01879026,-0.021826295,0.010058465,-0.02638035,-0.007755925,0.005931752,0.0050228545,0.012839373,0.016149674,0.03505474,0.030564468,0.014363769,-0.006381417,-0.007940894,-0.026227273,0.023471879,0.0110152,-0.017284997,-0.031074727,0.03375358,0.0037185068,0.010645262,-0.0310237,0.029237797,0.007826085,-0.030360365,-0.0014925053,0.013419791,-0.0310237,0.014197935,-0.016366532,-0.021545654,-0.013215688,0.015639415,0.017910063,0.002336026,-0.026788557,-0.0005995534,-0.0005270011,0.0049176137,0.00036276173,0.0016742848,0.02116296,0.03602423,0.015065375,0.001623259,0.01472095,-0.012029338,-0.0006410119,-0.009701285,-0.020818535,-0.025308808,0.01594557,0.019606672,0.022948865,0.0092867,0.0133942785,-0.0159073,0.0035303491,0.00300574,-0.014414795,-0.0068119476,0.0011560539,-0.0005313861,0.009930901,-0.05633251,-0.02396938,-0.01975975,0.015894543,0.024849577,-0.010288082,-0.0012405653,0.021316038,-0.0052971183,-0.01576698,0.0018305514,-0.013662164,0.0024572122,0.025181243,0.017935578,0.003951312,-0.013266714,-0.025168488,0.03321781,-0.019236736,0.0004600297,-0.008298075,0.017629422,-0.0015331665,0.010211543,0.00289731,-0.011774208,-0.022936108,0.008272561,-0.026788557,-0.029416388,0.01796109,0.0013753053,0.054393526,0.00025871687,-0.009018814,-0.01472095,0.011378759,0.0063463366,0.027579458,0.0048633986,-0.004225576,-0.015205695,0.01583076,-0.0051121498,-0.009905388,-0.028523436,-0.019695967,-0.0035048362,0.00017649753,0.016149674,-0.016927816,-0.0069522685,0.0047741034,0.0039863926,0.006633357,0.00640693,-0.009771445,-0.0023615388,0.0025783987,0.015320503,0.017144676,-0.035794616,0.016200699,-0.008680768,-0.0055522476,-0.0009623151,-0.000027780172,-0.026941635,0.010192408,0.002289784,0.042912718,0.020869562,-0.018598912,0.018815773,-0.011136386,0.0039321776,-0.007252045,-0.017450832,-0.031610496,0.027018173,-0.029161258]},{\"id\":\"42cd35df-e18b-400e-8711-b94749547f93\",\"text\":\"I did not receive my warranty by email.\",\"vector\":[-0.031230137,-0.010360123,-0.010744314,-0.008341494,-0.022817014,0.0076056714,-0.021371417,-0.004102374,0.0060428623,-0.015068086,0.006309842,0.012274564,-0.00635868,-0.0098001165,-0.0068307784,0.004281446,0.01851929,0.007885675,0.016370427,-0.0020007214,-0.017321136,0.0243668,-0.025656117,0.015133202,-0.008803825,-0.0186365,0.019183483,-0.005033548,-0.025447743,0.0015261809,-0.007039153,0.0011590834,-0.04654567,-0.026515663,-0.029589187,0.0023604932,0.018467195,-0.025187274,0.012580615,-0.018818827,0.009858722,0.03227201,0.005720533,-0.030005937,-0.035527863,0.041674912,0.009513601,0.016891362,-0.020759316,0.025525885,-0.0010076864,-0.032480385,-0.014039236,-0.008973129,-0.017008573,-0.0012746663,-0.009552672,-0.0035195765,-0.0010435007,-0.021670954,0.004786103,0.0061177467,-0.00066093804,-0.026554734,-0.009454995,-0.0045061,0.0061991434,-0.020238379,-0.014872734,0.0076056714,0.040268384,0.01355737,0.0029758492,0.011317343,0.0038744644,0.0062772837,0.00410563,0.019261623,0.0061503053,-0.010314541,0.0060168155,-0.006420541,0.003734463,0.026958458,0.014338775,0.026984505,0.015575998,0.009552672,-0.030865481,-0.013505276,0.0054861116,0.016995551,-0.01183828,0.021397462,0.0027511953,0.027349161,0.0064824023,0.03284504,-0.0038353943,-0.013388066,0.008634521,0.008628009,-0.014794594,-0.017125783,-0.0417791,0.01248945,0.0028163125,0.008543357,0.012150842,-0.0393307,-0.041622818,0.028547315,0.0023718886,-0.013987143,-0.0124047985,-0.0074949726,-0.018037423,-0.029432908,-0.019990934,-0.0016661825,0.00048023826,0.008549869,0.020980714,-0.024536105,0.022426313,0.011284784,-0.03982559,0.0033405046,0.009116387,0.023116553,0.0019942096,0.013544346,0.008888477,-0.009077317,-0.014924828,0.0364395,-0.038393013,0.009988955,-0.01764672,-0.0071693873,0.012124795,0.041127928,0.015263436,-0.006856825,-0.0038777203,0.010815942,0.027583582,-0.004724242,-0.0014236216,-0.022465382,0.015419718,0.005694486,0.01080943,-0.022491429,0.0006601241,0.020629082,-0.03865348,0.010881059,-0.003379575,-0.042065613,0.00084896357,0.01478157,0.02818266,-0.004323772,0.0026209613,0.030917576,0.0055056466,-0.019756513,-0.028286846,-0.00635868,-0.03169898,0.042117707,0.0027902657,-0.003244457,-0.0135313235,0.022634687,-0.007957304,0.0034284126,-0.020238379,-0.0014431566,-0.019483022,-0.0022774688,0.019951865,0.0114606,-0.032454338,0.0012331541,0.009708952,-0.0198607,0.024119355,0.00092629006,0.018050447,0.015250414,0.009305227,-0.012261541,-0.65387934,-0.016044842,0.00018955166,0.00006755894,0.0041219094,0.038288824,-0.018766735,0.042768877,-0.036647875,0.050088037,-0.0229212,0.010073608,0.013108063,-0.012775965,0.012919223,-0.009103363,0.020043029,-0.0017288576,0.0033470164,0.029589187,-0.010561986,0.007468926,0.0013812954,-0.0051800613,0.0073452033,-0.0072345044,0.010913618,0.0035065531,-0.02516123,0.02760963,-0.003597717,-0.003333993,-0.0035781818,0.0034544596,0.04521728,-0.016500661,0.0021977006,0.012313634,-0.0010622219,0.0274273,-0.037455328,-0.002034908,0.01851929,-0.005007501,0.0010044305,0.003288411,0.013375042,0.009748022,0.00024622385,-0.009188016,0.028156612,-0.0033128299,-0.014078306,0.006856825,0.040242337,0.0039656283,0.03966931,-0.010828965,0.008484752,0.0006507635,-0.0430033,-0.0030360825,-0.016682988,-0.012671778,-0.018532313,0.004418192,-0.0015595533,0.008015909,0.037637655,0.006381471,0.0046265665,0.013348996,-0.01932674,0.021202112,0.012391775,-0.011512695,0.001106176,0.010913618,0.009246621,0.011108968,-0.017229972,-0.032376196,0.0015294367,-0.03982559,0.027818004,-0.032011542,-0.03047478,-0.013166668,-0.015536929,-0.0026828225,0.010451287,0.018336961,0.03818464,-0.004353075,-0.02792219,0.015784374,0.005254946,-0.014937852,0.00005891058,-0.014521102,-0.026502639,-0.0077163703,0.0031402698,-0.003819115,0.03464227,0.008654056,0.00036709738,-0.025916586,0.017620673,0.0097675575,0.014989945,0.013583417,0.013016898,-0.00088396395,-0.01691741,-0.027818004,0.00269259,-0.003421901,-0.009539648,0.02543472,-0.020368613,-0.01248945,0.026671944,-0.008719173,-0.0062740277,0.0430033,-0.0032607364,-0.008308936,-0.020746293,-0.010451287,0.008549869,-0.011662464,0.0111024575,-0.00043587724,-0.0052516903,-0.011532229,0.012307122,-0.01565414,0.007612183,-0.0060982117,-0.018115563,0.028729642,-0.005743324,0.0003970105,0.008849408,-0.014638313,-0.008048467,0.006075421,-0.019417904,0.031151997,-0.0018069982,0.008777779,-0.008732197,0.010001979,0.003913535,-0.0044702855,-0.010627103,-0.030344546,-0.020251403,-0.019808607,0.0040470245,0.03432971,-0.002627473,0.030344546,0.005189829,-0.0038288825,-0.0019844421,0.023767723,-0.010275471,-0.017816026,-0.021397462,-0.0009694301,-0.013140621,-0.0053298306,-0.0022921201,-0.0068307784,0.012945269,0.006316354,-0.0045809844,0.011278274,-0.0021097925,-0.0115973465,0.0009352436,0.019430928,0.043628424,-0.00016035074,0.0013829233,0.030500827,-0.024119355,0.018363008,-0.024015168,-0.029458953,0.0059484425,0.01715183,-0.014065283,-0.013492253,0.00339911,0.008934059,0.020876527,0.013726674,0.031334326,0.020954667,0.018284868,0.011701534,0.014078306,-0.028521268,0.0075926483,-0.009741511,0.03758556,0.019652326,0.00026881133,-0.012977828,0.008934059,-0.023090506,0.0020837456,0.0014521102,-0.009617789,0.0014032724,-0.0066354275,0.015015991,-0.035736237,0.013830861,0.0022009562,-0.022934224,-0.004528891,0.007442879,0.02322074,0.019639302,0.0084652165,0.0030198032,-0.02784405,0.01756858,0.009741511,-0.0056912303,0.021566767,-0.012788989,-0.008471728,-0.02616403,0.009331273,-0.000639368,0.005990769,0.0052712252,-0.00035041114,0.014312727,0.024991924,-0.0057693706,0.0065670544,-0.013635511,0.00047128464,0.03326179,0.0057661147,-0.0016222285,-0.010535939,-0.011408507,0.014364821,-0.036074847,-0.0012103632,0.0074038086,0.0282608,0.01814161,0.026932413,0.021123972,0.035892516,-0.010223377,0.026255194,-0.0032623643,0.0017288576,0.0025509605,0.015836466,0.004307493,0.0061926316,-0.014338775,0.02867755,-0.032454338,0.017855095,-0.011135016,0.027323114,-0.0034381803,0.018037423,0.0051507587,-0.023116553,-0.0319334,0.01458622,0.011154551,0.0014765292,0.004242376,-0.022712827,0.02891197,-0.034277614,0.038445108,-0.00084000995,0.013570393,-0.010314541,-0.015029015,0.0001279957,0.008894989,0.031985495,-0.008491264,0.014469009,0.028286846,-0.013687604,0.0036758576,-0.039200466,0.0068307784,0.005017269,0.012150842,-0.026320312,-0.008315448,0.010060584,-0.019443952,-0.008276377,0.0014732733,0.004437727,0.0065540313,-0.0051377355,-0.004261911,-0.025708212,-0.02634636,0.03229806,0.0033730632,0.0020153727,-0.00339911,-0.01638345,0.0036921368,0.06584636,0.019548139,0.010822454,0.0071368287,-0.007039153,-0.0009425693,-0.0062903073,-0.049697332,0.0036628342,0.004304237,-0.011922932,0.000025601685,0.018831851,0.016513685,-0.00041878404,-0.0038028357,0.019730465,0.0015123435,-0.009754534,-0.04654567,0.0056196013,-0.009565694,-0.022087704,0.023012366,0.021097925,0.021371417,0.045269374,0.012990852,0.009174992,-0.0073386915,0.0005347738,0.011642928,-0.003026315,0.023051435,0.021110948,0.03995582,0.0045386585,0.002406075,-0.0035456235,0.04414936,0.012893176,0.014885758,0.006534496,0.010347099,-0.0007769278,-0.004340051,0.007709859,0.010477333,0.0034284126,-0.0021016528,0.014651337,-0.016305309,-0.00044076104,-0.027661722,0.010679197,0.010379658,-0.018441148,-0.02883383,0.006221934,0.013231785,-0.024314707,0.00045297047,-0.0070977584,-0.015719255,-0.033730634,-0.034277614,-0.0112457145,0.016969504,-0.012495962,0.006694033,0.0038842321,0.013804815,-0.034616224,0.007853116,0.030526873,-0.009533136,0.012808524,0.011310832,-0.0047958707,0.026411476,-0.02391098,-0.027896143,0.032141775,0.0053754123,-0.009481043,0.0049098255,-0.010158259,0.011655952,0.02211375,0.011695023,0.025564954,-0.006316354,0.01019733,-0.009259645,0.0057758824,0.007019618,0.0032363173,0.030735249,0.0028374754,0.0097675575,-0.005587043,-0.02768777,-0.007846605,-0.003112595,-0.0035879496,0.009982443,0.007299621,0.015706232,-0.007950792,0.010431752,-0.006339145,0.0045842403,0.001810254,-0.0031614327,-0.03440785,0.01932674,0.01523739,0.008595451,0.005209364,0.011903397,-0.026724037,-0.03472041,0.028521268,0.008452193,-0.0044051684,0.0068828724,-0.010978735,-0.026906366,-0.02104583,-0.012873641,0.013186202,-0.004089351,-0.003114223,-0.008940571,-0.015497858,-0.02215282,0.006843802,0.0017288576,-0.00079646293,-0.015341577,-0.0081135845,-0.0091684805,-0.009376856,-0.015341577,-0.0071498523,-0.018428124,-0.020863503,-0.022764921,-0.0019730467,0.038054403,0.0068177553,0.0010483845,-0.027974285,0.0019128134,-0.028755689,-0.04243027,0.008849408,-0.009441973,0.028573362,0.008491264,0.016709035,-0.0040991185,0.015641116,0.006355424,-0.006182864,0.008771267,-0.014260634,0.0017060668,-0.000102050624,0.0043823775,0.01764672,-0.0143778445,0.049098257,-0.002388168,0.004743777,0.006182864,0.011128504,-0.0050921533,0.0044474946,-0.019834654,0.032506432,-0.0031028274,0.0015994376,0.018206727,-0.0003575333,0.0026567758,0.000994663,0.011206645,0.020016981,-0.02398912,0.012515497,-0.019001156,0.0270366,-0.028703596,0.0044735414,-0.009611277,-0.02543472,-0.009839186,0.018297892,0.013296901,0.017321136,0.033209696,-0.015146226,-0.0033502723,-0.006247981,0.01099827,-0.015432741,-0.015133202,0.013726674,-0.017933236,-0.0107182665,-0.03578833,0.013388066,0.015081109,-0.010737802,0.0000021636793,-0.017659744,0.023950052,-0.026489615,-0.010308029,-0.011219668,-0.0033291092,0.019847676,0.0027137531,0.015510881,0.039018136,-0.0102950055,-0.01715183,-0.0065898453,-0.011603858,-0.012495962,0.023350975,0.030865481,-0.025812399,-0.023702607,0.009402902,0.006329377,0.012762942,-0.0109266415,0.008986153,0.0021602581,0.0135313235,0.0015978096,-0.012235493,-0.020498848,0.009083829,-0.0018737431,-0.01099827,-0.0034772505,0.0010524543,-0.031021763,-0.0031305023,-0.028859876,0.020915596,0.020095121,-0.0032314337,0.0016507172,-0.012118283,0.0021928167,0.0022335148,-0.011493159,0.012281076,-0.017803002,-0.0025818911,-0.005196341,0.004196794,0.00410563,-0.015745303,0.001212805,0.01691741,-0.0049326164,-0.022882132,-0.0069675245,0.009832675,-0.008393588,0.032636665,-0.0061307703,-0.009285691,-0.019652326,-0.004841453,-0.002362121,0.017842071,0.032376196,0.0036953925,-0.025838446,-0.008367541,-0.012476427,-0.008120096,-0.015211343,0.008803825,-0.0102950055,-0.027062647,0.010874547,0.0017516486,0.0028179404,0.03227201,0.01760765,-0.006534496,0.0047209864,0.00063896104,-0.003952605,-0.01703462,-0.03112595,0.011740604,0.013726674,-0.0043140044,0.033131555,0.012658754,-0.03654369,-0.031412464,0.008764755,-0.0054633208,-0.0025704955,-0.013153644,0.021814212,0.02035559,0.024457965,-0.02600775,-0.0143778445,0.027635677,0.0011647813,0.023507256,-0.007801023,-0.0026697991,0.009754534,0.0123722395,0.02092862,0.010666173,-0.009494066,-0.009949885,0.021058854,0.021084901,0.004857732,-0.041023742,-0.01665694,-0.0011957118,-0.010965711,0.020629082,0.0034479478,0.013687604,-0.0045321467,0.011258738,0.003688881,0.032219917,-0.009871745,-0.00045744728,-0.008393588,-0.010757336,-0.0074884607,-0.033131555,0.0011338507,0.01760765,-0.0063879825,0.0014903665,-0.02302539,-0.029693374,-0.037273,-0.0034479478,0.008842896,0.013791791,-0.006772173,0.014273657,-0.015380647,0.026632873,-0.0024418894,0.022022586,-0.007267063,-0.024575176,0.00149932,0.0033860866,-0.006329377,-0.01058152,-0.010308029,-0.007527531,0.015758326,0.01810254,-0.008569404,0.011434554,-0.030526873,-0.020303497,0.0021749095,-0.011584323,0.0054340176,0.014820641,0.030865481,-0.03571019,-0.0028374754,-0.030839436,-0.011323855,-0.024015168,0.00093849946,0.027635677,-0.009708952,0.0042098174,-0.017099738,-0.0072735744,-0.02486169,-0.024718432,0.017282065,0.00847824,-0.021097925,0.007110782,-0.006824267,-0.017386252,-0.0016059492,0.009520113,-0.015575998,0.010034538,0.017829048,-0.017360205,-0.019365812,0.0055316933,-0.0109592,-0.0021814213,-0.010321053,-0.020303497,-0.008035444,-0.03784603,0.0072279926,-0.00935732,-0.010659661,-0.0010264075,-0.00729311,0.0041381884,0.015302507,-0.026906366,0.018584406,-0.02527844,-0.0029856167,0.016735082,-0.001346295,-0.01970442,0.016696012,0.004063304,0.013134109,0.02150165,0.21837655,0.008217772,-0.003600973,0.014299705,0.018297892,0.013277367,0.021241182,-0.015393671,0.007957304,0.0063684476,-0.013199226,0.005762859,-0.013648534,-0.0038842321,0.004688428,0.00011660022,-0.037872076,-0.0086410325,-0.021853283,0.014351798,0.015406694,-0.011603858,-0.010711755,-0.02387191,0.02654171,-0.015172273,-0.037273,0.033131555,0.011962002,0.017698815,-0.02612496,-0.0102364,0.020993738,-0.026450546,-0.012841082,-0.005411227,-0.020642105,0.0053070397,0.020095121,0.018740688,0.003290039,-0.01653973,-0.008054979,-0.007814046,0.00521262,0.039252557,-0.0020837456,-0.020616058,-0.00905127,0.0050726184,-0.020941643,-0.027401255,0.008966618,0.036752064,-0.00866708,-0.011532229,-0.01248945,-0.030761294,-0.018206727,0.008361029,-0.010216865,0.0023360741,-0.012476427,0.006856825,-0.02711474,0.03281899,0.0038712088,-0.012202935,-0.0013422252,-0.027375208,-0.0009995467,0.009487554,0.012841082,0.03784603,-0.023272835,-0.026724037,0.011480136,0.025786351,0.004952152,-0.0005758789,0.01107641,-0.009832675,-0.004437727,-0.026828226,0.003646555,-0.023233764,0.008699638,0.031516653,0.016370427,0.0009344297,0.0023344462,-0.0045842403,-0.019730465,0.007729394,0.026033796,-0.015875537,0.004457262,0.015081109,-0.009513601,0.011108968,-0.006681009,0.034121335,-0.0019404881,0.004154468,-0.010887571,0.0019453719,0.00763823,0.04292516,0.0006076235,-0.01233317,0.022022586,-0.032610618,0.0039005114,-0.010001979,0.009682906,0.009383367,-0.00626426,-0.015081109,0.030578967,-0.0067005446,0.033782724,-0.029276626,-0.0051572705,-0.0056033223,0.015068086,-0.018532313,-0.007260551,-0.020225355,0.008673592,-0.0397214,0.006863337,0.018701617,0.016201122,-0.024444941,0.010438263,0.010151749,0.025773328,0.020681174,0.0023132833,0.029927796,0.005124712,0.0036660898,0.011141527,-0.0042684227,-0.031829216,-0.042143755,0.036361363,-0.0057042534,-0.019365812,0.00059744896,-0.0147294765,0.0021944446,-0.016201122,0.01653973,0.02899011,0.008790802,-0.045061,-0.029771516,-0.02290818,0.018962085,0.005404715,-0.016487638,0.039096277,-0.005320063,-0.02940686,0.016227169,-0.16472009,-0.0027267765,-0.019469999,-0.009181504,0.023559349,0.016565777,0.014390868,0.00094908103,-0.015419718,0.02398912,0.01909232,0.0050465716,-0.022465382,-0.0023539814,0.007879163,0.0029042205,-0.027140787,0.0352153,-0.009207551,0.0108940825,0.04849918,-0.012365728,0.0065247286,-0.042247944,0.0135183,0.0022237473,-0.026671944,0.006583334,-0.017190902,-0.012495962,-0.0017776955,0.00020013319,0.034616224,0.011323855,0.020902574,-0.005720533,-0.01879278,0.0069870595,0.022634687,0.01890999,0.006850314,-0.010763848,0.017855095,0.010978735,-0.010835477,0.015471811,0.021254206,0.01577135,0.014937852,-0.026177054,-0.006576822,-0.026294265,-0.0039428375,-0.020186286,0.012443868,0.012040143,-0.0006959385,0.02719288,-0.03047478,0.003555391,-0.009826163,-0.014299705,0.013987143,-0.0125480555,-0.0012990852,-0.006869849,-0.026645897,-0.023116553,-0.006065653,0.016031818,-0.009982443,-0.026502639,0.019925818,0.011200133,0.017750908,-0.02566914,-0.032141775,-0.005990769,-0.006049374,-0.022751898,0.004864244,0.0033958543,0.0059744893,-0.01302341,0.005232155,0.021853283,0.0053070397,0.0074233436,0.00035956822,-0.0043660984,0.0013292017,-0.021801189,-0.009904304,-0.027062647,0.026724037,0.039695352,-0.0070782234,0.0071433405,-0.0044735414,-0.0020039773,0.013778768,-0.01871464,-0.026502639,0.02417145,0.004336796,0.009969421,-0.0243668,0.01073129,0.041023742,-0.01970442,-0.0027007298,0.023728654,0.020550942,0.030500827,0.021215135,0.011629906,-0.011519207,-0.011551765,-0.0027902657,-0.02398912,0.0075405543,-0.03219387,-0.011753628,-0.00053518073,0.017881142,0.008471728,-0.09033037,-0.034381803,-0.012437357,0.0103666345,-0.002318167,-0.017477416,0.0041805147,0.026750084,0.0035293442,0.02956314,0.009174992,-0.027218927,0.012313634,-0.028026378,0.003091432,-0.013948072,0.015159249,-0.015575998,-0.030084077,0.013231785,-0.017216949,-0.01932674,-0.0017858351,0.0022009562,-0.02035559,-0.015146226,-0.019274646,0.00710427,0.0062805396,-0.03367854,-0.0050595948,-0.0060103037,0.007462414,-0.02367656,-0.033939008,-0.009695929,-0.019886747,0.0017076946,0.0348246,-0.015901584,0.017086715,-0.018740688,0.012066189,-0.03753347,-0.02161886,0.008549869,0.011004781,0.0127955,0.0043888893,-0.02867755,0.006407518,0.020811409,-0.032115728,-0.0019844421,0.006947989,-0.030318499,-0.008269865,0.02990175,-0.024431918,-0.0023751445,0.0007016362,0.0056651835,-0.031099902,-0.01187735,0.0033502723,0.012495962,0.009044758,-0.025994727,-0.008628009,-0.008452193,0.03669997,-0.00030727108,-0.021332346,0.008484752,-0.0075145075,-0.016070887,0.0026177054,-0.0064726346,-0.006928454,-0.00082698656,-0.022712827,0.00096373237,-0.00485122,-0.01638345,0.0052451785,0.028807783,0.00039762098,0.020056052,-0.002121188,-0.00016808338,-0.012587125,0.019001156,0.024770526,0.0030393384,0.0019128134,0.0015212971,-0.013303413,0.0031891076,-0.005814953,-0.022934224,-0.018766735,-0.0013389693,-0.060272343,0.04282097,0.004157724,-0.02768777,0.009787093,0.0040730713,0.005642392,-0.021449557,-0.010288494,0.01458622,0.010509892,0.025122158,-0.00006486269,-0.024470987,-0.0012917595,-0.0019307205,0.031360373,0.008139632,0.023858888,-0.005743324,0.011388972,-0.023624467,-0.00004403032,0.01764672,-0.021879328,0.012261541,-0.033548303,0.026372405,0.0074103205,-0.021241182,0.014416915,-0.008836384,0.00074681116,0.015055062,0.026294265,-0.00626426,-0.017985329,0.009324762,0.0024044472,-0.008888477,0.010360123,-0.020824432,-0.0036953925,0.004704707,-0.011063387,0.0018656035,-0.009969421,0.005114944,0.006160073,0.018089516,0.013700628,-0.000069492104,-0.020108145,-0.010086631,-0.018037423,-0.033053413,0.009155457,-0.015055062,0.019118367,-0.022322126,0.042378176,-0.0028065448,0.00813312,-0.03505902,0.035762284,-0.0055805314,-0.010705243,-0.0008322773,0.009148946,-0.019548139,-0.017776955,-0.005049827,-0.0079377685,-0.010933152,-0.0045158677,-0.0012714104,-0.0000034911388,-0.0231426,-0.00737125,0.01214433,-0.011538741,-0.014156447,-0.015719255,0.01745137,-0.0019714187,0.003159805,-0.009194528,-0.0125480555,0.009155457,0.0036726017,-0.049853615,0.015862513,0.0057661147,0.012495962,-0.016409496,0.018962085,0.013427136,-0.002515146,0.0011818744,0.0119489785,0.0027918934,0.0119489785,-0.0014928083,0.013375042,-0.008237307,0.02359842,-0.011030829,-0.017399276,-0.012066189,0.010874547,0.013440159,-0.0066517065,0.0030425943,0.026593802,-0.009494066,-0.017685791,0.016435543,-0.015302507,-0.0315427,0.039278604,0.00013348996,0.0017239739,0.0019518835,-0.014299705,0.03180317,0.0035456235,0.0025949145,0.0077424175,-0.002471192,-0.00005265324,0.016526707,-0.0045809844,-0.0123722395,-0.007846605,-0.00033718423,-0.00089291757,-0.002607938,0.014677383,0.005909372,0.05292714,-0.0017695558,-0.00023604931,0.012697825,0.022387242,0.009682906,0.027583582,0.006713568,-0.0054437853,-0.02154072,0.02592961,0.010907106,0.02165793,-0.0054340176,-0.050999675,-0.0033063183,0.0038712088,0.0074233436,-0.02478355,-0.0018118819,0.015497858,-0.005280993,0.02997989,-0.0010068724,-0.019066272,-0.008751731,0.010249424,0.012561079,-0.0003095095,-0.05167689,0.009363832,-0.020642105,-0.021683978,-0.0061112354,0.009253133,-0.019053249,-0.005587043,0.003600973,0.024848666,-0.00551867,-0.003558647,0.045034952,-0.010659661,-0.0006605311,-0.00870615,-0.026059844,-0.0076968353,0.011929444,-0.040841416]},{\"id\":\"6bea9527-f525-415d-aeeb-e0e8bcf8dacc\",\"text\":\"I have not purchase products yet. Income required. Thanks for your time\",\"vector\":[-0.02157287,-0.032263283,-0.006881553,-0.03105981,-0.013430231,0.015811568,-0.034798253,-0.010159093,-0.0041225306,0.0009442131,0.019025095,-0.015811568,0.008238659,-0.023160428,-0.0019828475,-0.0024869612,0.020062128,-0.03154632,0.009218081,-0.00925649,-0.01608043,0.0059917523,-0.010043867,-0.017475944,0.0063982443,-0.023314063,0.017130267,-0.018615402,-0.018282527,-0.0052939947,0.009832619,-0.0075024934,-0.004372187,-0.029088166,-0.013622275,-0.017219886,0.020241369,0.014249616,0.028832108,0.012604445,0.008123433,0.037461255,0.0059789494,-0.00788658,-0.016464517,0.011561009,-0.0015715547,-0.00076137186,-0.020241369,0.016182853,-0.013839924,0.004945116,-0.02511927,-0.009058044,-0.017975258,0.017924046,0.022443466,0.036180966,-0.007624121,-0.013916741,-0.002410144,0.00438499,-0.020305382,0.00086099433,-0.0074320775,-0.00076937367,-0.024095038,-0.0049195103,-0.004068118,0.014915367,0.010984879,0.035412792,-0.025592977,0.018244117,0.04683297,-0.006836743,0.015913991,0.0008825992,-0.0055852607,-0.009198876,0.0071120053,-0.015670737,-0.018013665,0.012534029,0.024824804,0.030803753,0.004529022,0.018231316,0.0011890684,-0.028191963,0.019818872,0.014492871,0.022545889,0.032801002,-0.008302674,0.019063503,-0.02091992,0.0314695,-0.014313631,-0.012738875,-0.011637826,0.0040297094,-0.010063071,0.00062814174,-0.0146209,0.021342417,-0.008565133,-0.013430231,-0.0012042718,-0.0035656048,-0.0128092915,0.024863211,0.014339237,-0.010165494,0.019690843,0.0112729445,0.013225385,-0.00055532536,0.00451942,-0.009378117,0.010075874,-0.011925892,0.025055256,0.0029334622,0.031699955,-0.014723323,-0.0057805046,-0.014633703,-0.00024845608,0.0020372598,-0.015709145,0.008481914,0.013737501,0.010133487,-0.01838495,0.021905744,-0.030650118,0.025631385,-0.0031111022,-0.012175548,-0.0016323684,0.03141829,0.02007493,-0.015030593,0.012764481,0.026079487,0.0067727286,-0.0037768525,0.0045610294,-0.02627153,0.015209833,0.011087302,0.02711652,-0.0091476645,0.007611318,0.0022357046,-0.009826218,0.010107881,0.010882456,-0.00074456807,0.004055315,-0.0060845735,-0.0085587315,-0.014544083,0.014544083,0.03597612,0.041686207,-0.017207084,-0.023250047,0.0055756583,-0.014608097,0.013315005,-0.021841729,0.010626398,0.00026305937,0.009775006,0.0002994676,0.0027846284,0.008117032,-0.02888332,0.004817087,0.0044554058,0.014147193,0.004701861,0.009090052,-0.03531037,0.016464517,-0.011554608,0.010255114,-0.0292418,0.0011858677,0.020369397,0.02663001,-0.0035688055,-0.6612436,-0.00948054,0.006074971,0.003459981,-0.0018628205,0.026079487,-0.0073872674,0.006990378,-0.01656694,0.027551819,-0.006862349,-0.00536121,-0.011996307,0.0010410349,0.03730762,-0.008629148,0.0113945715,-0.016323684,-0.017834425,0.026962886,-0.013327808,0.013366217,0.0021236793,0.009954247,0.0093909195,0.013443034,0.027807876,0.0020484624,-0.0072272313,0.025349721,0.012649255,0.017744806,0.017847229,-0.011010485,0.045783132,-0.018717825,0.020062128,0.029702704,-0.0100950785,0.04931673,-0.061249025,-0.003978498,-0.010504771,-0.022174604,-0.018858656,0.013891135,0.013724698,0.0095061455,0.009198876,0.00020924723,0.005326002,0.010351136,-0.01917873,-0.0029878744,0.04877901,-0.014979381,0.005281192,-0.0139935585,0.007713741,0.03735883,0.0013162971,0.013084553,-0.023646938,-0.02551616,-0.053055175,0.0037992576,-0.01692542,-0.012373993,0.013122962,0.011727447,-0.0044362014,0.0101014795,-0.0310086,0.02826878,0.021496052,0.013839924,0.0014819345,-0.0047530727,-0.0125724375,0.026156304,0.0032999448,-0.018448964,-0.00008736972,-0.009807014,0.009064446,-0.026348347,0.0142240105,-0.025836231,-0.012066724,0.0050539407,0.0074320775,0.035924908,0.011349762,-0.018244117,-0.02086871,0.006836743,-0.010299925,0.008091426,-0.00045890358,-0.027321367,-0.007464085,0.007470486,-0.0021316812,-0.003469583,0.044656478,-0.018897066,0.018986685,-0.011778658,0.016029218,-0.022123393,0.010415151,-0.021111965,0.010223107,-0.008763578,0.015824372,-0.040124256,0.016490122,-0.027321367,-0.0030278834,0.0045642303,-0.011368966,0.025797823,0.03597612,-0.018845854,-0.018064877,0.025272904,-0.0007097602,-0.012962926,0.0018788241,0.008693162,0.0010434355,-0.024312688,0.013878332,-0.009486942,-0.010716018,0.015453088,0.0035464005,-0.00009282095,0.0035496012,-0.023813374,0.008161842,0.0020516631,-0.0025253699,-0.015325059,-0.011906687,-0.041993476,0.0077329455,0.01519703,-0.0026582,-0.0051019513,-0.04125091,-0.023237245,-0.020202959,-0.009742999,0.005790107,-0.017143069,-0.0064302515,-0.021496052,-0.028704079,-0.0067535243,0.010844047,0.032596156,-0.007252837,0.016592545,-0.012098731,-0.00033547572,-0.002490162,0.023634134,0.012143541,-0.01014629,-0.0036360207,-0.023774967,0.012943721,0.006676707,-0.0024789595,-0.014787338,-0.010075874,-0.0063470327,-0.007944193,0.0017940049,0.0075345007,-0.012124336,0.0006809537,0.022046575,0.034977496,0.001364308,-0.010933667,0.018000863,-0.038690332,0.03646263,0.014544083,0.0054956404,-0.009698189,0.013724698,0.0040425123,0.0018180104,0.006574284,0.003562404,0.0035143932,-0.00004235956,0.00039308873,0.011375368,-0.0015851578,-0.0054508303,0.023582922,-0.025452144,0.0072016255,-0.0051819696,0.014672112,0.025567371,0.007656128,-0.023928601,-0.0010106281,-0.004426599,0.010395946,0.0070735966,-0.015133016,0.010338333,-0.009557357,0.0203822,-0.004730668,0.00068255403,0.0146977175,-0.031341475,-0.024223067,0.012201154,-0.002800632,0.020830302,0.001838815,0.006103778,-0.03269858,0.021368023,0.02942104,-0.022033773,0.010780033,-0.0025493754,0.0021780916,-0.02074068,0.02472238,-0.001479534,0.026962886,0.023019595,0.006388642,0.0036488236,0.033031456,0.0016531731,0.008520323,0.0017491948,-0.004612241,0.038741544,0.023006793,0.008085025,-0.01076723,-0.015440285,0.01125374,-0.055718176,-0.0130461445,0.013302202,0.012354788,0.021175979,0.0029958761,0.0076433253,0.031239051,-0.005601264,0.02600267,0.023070807,-0.002250108,-0.020625455,0.00023285256,-0.018128892,-0.011304951,-0.011503397,0.02663001,-0.014159996,0.03039406,-0.00509555,0.0057388954,-0.01798806,0.00288065,0.009218081,-0.019678041,-0.012956524,0.014723323,0.0069967792,-0.0032775397,-0.00009992255,0.016951026,-0.009205278,-0.0030294838,0.016093232,0.012482817,-0.007828967,-0.0049291123,0.011106507,0.011484192,-0.0074896906,0.037102774,0.012777284,-0.0005529248,-0.0011818667,0.022084985,-0.0004833091,-0.0013611072,-0.006135785,0.031648744,0.0050315354,-0.010613595,-0.01705345,-0.006161391,0.00788658,0.0122203585,0.0031303065,-0.02140643,0.014185602,0.022737931,-0.011324156,-0.021726504,-0.031930406,0.01519703,0.022776341,0.0022677118,-0.018628204,-0.013212582,0.017245492,0.07640765,0.010133487,0.008520323,0.006907159,0.013942347,-0.00043849897,-0.022712326,-0.012162745,0.011324156,0.0015995611,-0.010619997,-0.0017347916,-0.00014823346,0.00085619325,0.009051643,-0.012444409,0.010261516,-0.0055372496,-0.0032407315,-0.00903884,0.0101911,0.019524407,0.0059917523,-0.014864155,0.026169106,0.04585995,0.020049324,0.023800572,0.025913049,0.007035188,-0.0036136156,-0.011932293,-0.015312256,0.005514845,0.0007217629,0.039176844,-0.0049771233,0.013903938,0.014019164,0.0060557667,0.027014097,0.023403682,0.004762675,-0.021380825,0.003096699,-0.019242743,-0.022609903,0.014595294,0.0015883585,-0.002707811,0.027654242,0.0043337783,0.0012178749,0.018372146,-0.021035148,-0.004887503,-0.0004545026,-0.032288887,0.0037512467,-0.016413305,-0.04281286,0.0042729643,0.0025733807,-0.0014019164,-0.023941403,-0.02906256,-0.018154498,-0.014940972,-0.028729685,-0.005511644,0.009422927,0.006263814,-0.022840355,0.0072272313,-0.0013098957,-0.007496092,-0.016887011,0.011439382,0.029753916,0.008814789,0.0052075754,-0.052338213,0.0056972858,0.011151317,-0.008552331,0.0319048,-0.0101014795,-0.0013899137,0.0063470327,0.002285316,-0.0071184067,-0.00029126575,0.026886068,-0.029753916,0.015824372,0.017155873,-0.011189725,0.0011738649,-0.006708714,0.0005197173,0.0061069783,-0.0115226,0.0030022776,-0.038869575,-0.008270667,0.022341043,-0.0004669054,0.006065369,-0.005962946,0.0055820597,0.0019108313,-0.010107881,-0.008213053,-0.010869653,0.004324176,0.012252365,-0.007656128,0.025836231,0.021022344,0.0070159836,-0.023595726,-0.0159524,0.034849465,0.005486038,-0.012591642,0.0074576833,0.0019188331,-0.022814749,0.007182421,0.0142240105,0.010664807,0.01076723,-0.008885206,-0.035950515,-0.019383576,-0.006295821,-0.019562816,-0.009467737,-0.03379963,-0.017783213,-0.00788658,-0.026681222,-0.0069135604,-0.019127518,0.022187408,-0.03070133,-0.00023285256,-0.00061533885,-0.008225856,-0.00429857,0.008590739,0.009813415,-0.021611277,-0.0055180453,0.0067535243,-0.034183715,-0.030266032,-0.0203822,0.014966578,0.044067547,0.010575186,-0.007240034,0.014300828,0.0021460843,0.025797823,0.004356183,0.014723323,-0.010223107,-0.0064142477,0.005658877,-0.0016771785,0.0051083528,0.052645482,0.0077201426,0.0046954597,0.000053312033,0.016656559,-0.004941915,-0.022366649,-0.0026101891,0.0038536699,-0.007137611,-0.0066382983,0.0068111373,0.001302694,-0.012047519,0.04009865,-0.0028870516,0.018103287,0.018884262,0.024274278,-0.013122962,0.027014097,-0.01652853,-0.010363939,-0.035515215,0.0124572115,-0.013711895,-0.0124508105,0.019396378,0.010472763,0.014736126,-0.017949652,0.014057573,-0.0060845735,0.006295821,0.007905784,-0.039100025,-0.0029542667,-0.012354788,-0.011855476,-0.022289831,-0.0017908042,0.0094997445,-0.015273848,0.020715075,-0.011202528,0.017949652,0.0025157677,0.0044298,-0.00054532307,-0.011400973,0.012393197,0.021790517,0.023582922,0.020676667,0.012386796,-0.022072181,0.008027412,0.0035015903,-0.01413439,0.02007493,0.04537344,-0.030547695,-0.019012291,0.025836231,0.009448533,-0.016426107,-0.018909868,-0.015811568,0.0079762,0.03979138,-0.015811568,0.0066831084,-0.027859088,0.0109208645,-0.006353434,-0.00037808533,-0.0027830282,-0.01980607,-0.010395946,0.025733808,-0.01586278,0.013135765,-0.0060589677,0.011215331,-0.009717394,-0.020651061,0.00043129735,0.022046575,0.0123355845,0.0292418,-0.0019172328,0.033953264,-0.008449907,0.01249562,-0.018551387,-0.007892981,0.0020580646,0.01634929,-0.0019188331,-0.040252283,0.0038696735,-0.014672112,0.010031064,0.0055948626,-0.013001335,-0.03792216,-0.012713269,0.0117530525,0.009326905,-0.03208404,-0.01847457,0.0033223499,-0.00199405,-0.0073424573,-0.023058005,-0.0031975217,0.010037465,0.012655657,-0.018717825,-0.002843842,0.0017155872,0.007771354,-0.011234536,0.016963828,0.008270667,0.0054956404,-0.017104661,0.00899403,-0.0030054783,0.02485041,-0.015312256,0.023582922,0.0030630913,-0.038613517,0.012188351,-0.02059985,-0.020587046,-0.0024549542,0.030650118,-0.023070807,-0.015606723,-0.00076617295,-0.0118618775,0.029753916,0.015619526,-0.004705062,-0.018807445,0.009128461,-0.00059653464,-0.013033342,0.009864626,-0.011074499,0.0079697985,0.006331029,0.014915367,-0.0072144284,-0.0177192,-0.01559392,-0.009205278,0.018743431,-0.0005821314,-0.010139888,-0.013942347,0.00633423,0.00028026325,0.016323684,-0.026681222,-0.00053812144,0.0072272313,0.024427913,-0.017936848,0.009000432,-0.00007551705,-0.0103319315,-0.007035188,0.00040429126,-0.03216086,-0.022174604,-0.025913049,0.035156734,0.021662489,-0.0243639,-0.00046970602,-0.018039271,-0.03805019,0.0059117344,-0.023109216,0.033620387,-0.012162745,-0.004570632,-0.003690433,0.039228056,0.0009442131,0.012021913,-0.027090915,0.00090180355,0.013391823,-0.0071184067,-0.0019252346,0.010248713,-0.024837606,-0.034132503,0.02663001,0.020087734,0.0044233985,0.02153446,-0.020638257,-0.0111641195,0.014339237,0.027372578,0.004096925,0.011176922,0.028166357,-0.026681222,-0.018576993,-0.0066126925,-0.020676667,-0.00024965635,0.0027414188,0.0029318617,0.0014435258,-0.02954907,0.009922239,-0.013852727,-0.0043657855,-0.0327754,0.010760829,-0.0013883134,0.011221733,0.0072464356,0.0033607585,-0.035771273,0.0074320775,0.0015355466,-0.020356594,-0.006251011,-0.0070735966,-0.035284765,0.0028022325,-0.0017924046,0.0051019513,0.000075817115,-0.010696814,-0.017309507,0.0018356143,-0.0029910752,-0.006875152,0.00024005419,-0.003331952,0.01917873,0.016771786,0.00314631,-0.0038952793,-0.024069432,0.018769037,-0.040405918,-0.014057573,0.024120644,-0.0043401797,-0.030931782,0.00018574193,-0.034900676,-0.0078481715,0.015478694,0.20187597,-0.005015532,0.008533126,0.0154018765,0.0336716,0.010306326,0.03282661,0.0217137,0.0039176843,0.01674618,-0.009275693,0.005233181,-0.01187468,-0.002755822,-0.013199779,-0.011612221,-0.037461255,-0.018538585,-0.020087734,0.0066831084,-0.0020740682,0.015363468,-0.0034183715,-0.009807014,0.04107167,0.001249882,-0.012060322,-0.003863272,0.008296273,0.008347484,-0.026079487,-0.011618623,-0.001856419,0.0046666535,-0.025721006,0.008117032,-0.0068303416,-0.007553705,0.007067195,0.02600267,0.006907159,0.026809251,0.0078481715,-0.029523464,0.0022661116,0.0062702154,-0.014121587,0.0003916884,-0.013186976,0.0047370694,-0.015312256,-0.023288457,0.02954907,0.0038728742,-0.020996738,0.00093061005,0.008091426,-0.0047082626,-0.049854454,-0.0010178298,-0.020369397,0.019191531,-0.027090915,0.0020836703,-0.021393629,-0.005905333,-0.019511605,-0.025631385,0.008360287,0.011593017,-0.015555511,0.009730197,-0.010869653,0.016733376,-0.037205197,-0.014723323,0.03863912,0.013174173,0.019742055,-0.011945096,-0.017527156,0.0112729445,-0.0050475392,-0.01656694,0.020817498,-0.031162234,-0.012470014,0.005242783,-0.014147193,0.010389545,0.0019108313,0.005082747,-0.033953264,-0.027987117,-0.0063822404,0.0012210757,0.00055612554,0.0061709927,-0.0046506496,-0.010274319,-0.011036091,0.053464867,0.018333739,-0.0054796366,-0.021291206,0.01275808,-0.0041065267,0.024645563,0.0078545725,-0.0141087845,-0.00016073628,-0.040841218,0.016106036,-0.0063598356,-0.011368966,-0.008552331,-0.012239562,-0.024440717,-0.009736598,0.0013875131,0.026527587,-0.006939166,-0.002534972,-0.0035367983,0.012764481,-0.0038216626,0.0016547735,-0.023672543,0.03239131,-0.038818363,0.0051051523,-0.0039913007,-0.0019908494,-0.024133448,-0.012207556,0.006894356,0.013839924,0.0090324385,-0.0028598455,0.011932293,-0.020932725,0.023186034,0.020907119,-0.014275222,0.012207556,-0.017552761,0.019998113,-0.0013859128,-0.017591171,-0.0050923494,-0.012745277,0.0074448804,0.017655184,-0.030778147,0.027551819,0.015248242,-0.020983936,0.0016163648,0.005223579,0.0058669243,-0.022456268,-0.033825234,0.017847229,0.003482386,-0.0154018765,0.0043753874,-0.16100913,0.02499124,0.0008281869,-0.009890232,0.009467737,0.0065870867,0.010850449,0.022968384,-0.0151714245,0.0013571063,0.04900946,-0.013801515,0.005060342,0.0027174132,0.008232258,-0.0019364371,-0.04276165,0.007380866,0.025490554,0.011042492,0.015619526,-0.01741193,-0.0030902976,-0.014953775,0.017437536,0.009410124,0.0026998094,0.033517964,-0.013980756,-0.005313199,-0.018615402,-0.0060141576,-0.0020836703,0.024107842,0.02675804,0.0046506496,0.009538153,-0.0034215723,0.014211208,0.005258787,0.020036522,0.00908365,0.011650629,0.010780033,-0.0010250313,0.022712326,0.02144484,0.0009498144,0.0066446997,-0.02108636,0.005127557,-0.03774292,-0.021636883,0.005338805,0.012636452,0.018244117,-0.0023013195,0.016182853,-0.009640576,-0.004625044,-0.0076433253,-0.021508854,-0.006366237,-0.0022132995,0.0093845185,-0.014864155,0.0070031807,0.0064750616,-0.020548638,0.012962926,0.0065870867,-0.023582922,0.011554608,-0.005082747,-0.0009530151,-0.008398696,-0.015709145,0.0064974665,0.0043625846,0.01129855,-0.008968424,0.028704079,-0.0030054783,0.001856419,-0.0130461445,0.00420895,0.029779522,-0.006074971,0.015965203,-0.038741544,0.014518477,0.008264265,-0.019037897,-0.005732494,0.023006793,0.021956956,-0.0019524407,-0.029216195,-0.012188351,-0.0041353335,-0.0057260925,-0.0052395826,-0.024709577,0.028345598,0.03902321,0.015030593,-0.0004453005,0.023736557,0.018858656,-0.017117463,0.00784177,0.0019396378,0.01719428,0.02888332,0.0060589677,0.019742055,-0.029190589,-0.008072222,0.005028335,-0.021828927,0.0190507,-0.021483248,-0.023557317,0.01701504,-0.0010746425,0.024491929,-0.09684106,-0.03136708,0.0019204335,0.013929544,0.011215331,0.008853198,0.008693162,0.035873696,-0.018397752,0.013571063,-0.018679416,0.000163937,-0.01492817,-0.0072592385,0.010050268,-0.027679848,-0.0027334169,-0.0027350173,-0.022469072,0.0035848091,-0.0034983896,-0.03507992,0.0021284805,-0.020945527,-0.015875584,-0.030752541,-0.022277027,0.00039308873,0.008257864,-0.003066292,-0.011093704,-0.02401822,0.0039464906,-0.018845854,-0.00846271,-0.008757177,-0.05059702,-0.013001335,0.029164983,-0.00474027,-0.0025893843,-0.00903884,0.023582922,-0.005300396,-0.010600792,-0.013609472,-0.015798766,0.011234536,0.0102167055,-0.029702704,0.0048843026,-0.018858656,-0.029702704,-0.0389976,0.020817498,-0.003224728,0.0015347464,0.036539447,-0.0018196107,-0.020343792,-0.008315477,-0.00793139,-0.028729685,-0.007579311,0.009314102,-0.008590739,0.0007389668,-0.010229508,-0.008962023,0.0041001253,0.0053932173,0.049803242,-0.019242743,-0.011106507,-0.023147624,-0.016272472,-0.0067151156,-0.030368455,0.022648312,0.0055628554,-0.018807445,-0.021598475,-0.018781839,-0.013481443,0.010908062,-0.008635549,0.0018404154,0.01865381,0.01054318,-0.018935474,-0.011804264,0.0046346462,0.01492817,0.009903035,-0.014723323,0.0018068078,-0.0050347364,-0.008270667,0.023147624,-0.011759454,-0.00965978,-0.014159996,-0.0544891,0.022520283,0.0062222043,-0.029216195,0.0074896906,-0.0029878744,-0.0027990318,0.004913109,0.007912186,-0.010613595,-0.024299884,0.016989434,-0.014505674,0.0059117344,-0.012860503,0.0064142477,0.02308361,0.005037937,0.02778227,-0.0018644208,0.009698189,-0.019690843,-0.00024285482,-0.008936417,-0.008526725,0.03216086,-0.021137571,0.0112729445,0.025272904,-0.0112729445,0.008661155,0.0016787789,0.010299925,0.0048074853,0.008987629,-0.02202097,-0.0060493653,0.030163608,0.012540431,-0.020049324,-0.0043529826,-0.021201584,-0.010773632,-0.019870084,-0.024581548,-0.007464085,-0.0017283901,-0.009909436,0.025759414,-0.0067983344,0.0159524,0.02220021,-0.009915838,-0.016899815,0.004647449,-0.022801947,0.013814318,-0.013801515,0.014416054,-0.028166357,0.044502843,-0.00012372792,0.0018932273,-0.034260534,0.016093232,0.012303577,-0.007208027,0.024914423,0.00903884,-0.032647368,-0.025362525,-0.019818872,-0.0062862188,-0.012284373,0.02220021,-0.0072336327,-0.0037960568,-0.0038440677,-0.008251462,0.016093232,0.011618623,-0.00917327,-0.010479165,0.007047991,0.036744293,0.028038329,0.0016819796,0.020369397,0.0021300807,0.010837646,-0.039100025,-0.005674881,0.022584297,0.00020724678,0.035592034,-0.005754899,-0.0026325942,-0.00394329,-0.014262419,0.023314063,0.03669308,0.0071888226,0.014480068,-0.012143541,0.0011282547,0.01559392,-0.036846716,-0.030291637,-0.015837174,0.01293732,0.014352039,0.0034983896,0.004759474,0.0061389855,-0.02675804,-0.0076177195,-0.00084419054,-0.052107763,-0.00615819,0.032135252,0.004970722,0.01386553,-0.0049291123,-0.046295248,0.036821112,-0.0064302515,-0.0015883585,-0.01719428,0.03646263,-0.008776381,-0.023685345,0.0025157677,-0.0064654592,-0.032596156,-0.01471052,-0.015248242,-0.01586278,0.027500607,-0.001931636,0.06570443,-0.004685858,0.012201154,-0.021726504,0.014838549,0.0155043,0.016336488,0.0039881,-0.019268349,0.008737972,0.028806502,0.0032487332,0.009179672,-0.018986685,-0.016887011,-0.026834857,-0.012649255,0.020881513,-0.014761732,0.00181641,0.011996307,-0.01005667,0.015235439,0.006276617,-0.026194712,0.0017523955,-0.0010242312,0.010850449,0.026809251,-0.04803644,0.025106467,0.019409182,-0.002542974,0.026655616,0.00775215,0.00013953149,-0.009781408,0.026501982,0.018717825,0.022046575,0.0011258541,0.018781839,-0.020023718,0.015632328,-0.02954907,-0.012566037,-0.025631385,0.008789184,-0.016694969]},{\"id\":\"af1e7658-4a46-4b3e-b623-a60056804bf9\",\"text\":\"If I signed up for the post to get paid how to I order the product?\",\"vector\":[0.0025278924,-0.013645645,-0.02222556,-0.024546249,-0.035619244,0.010913864,-0.0261641,-0.010953647,-0.0064382516,-0.002035575,0.029943505,0.00008842443,-0.0259254,-0.014388266,0.009528082,-0.010257441,0.022424476,-0.0018233977,-0.02111163,-0.0011661457,-0.026813893,0.019520301,0.01037016,-0.0006920623,0.012385843,-0.008984378,0.022265343,0.008951225,0.0032937194,0.018340066,0.016112205,-0.0005312718,-0.02776869,-0.04073802,-0.017637229,0.021522723,0.0075720735,0.004823716,0.0029936875,-0.0009987246,0.015860245,0.016748738,0.00987287,-0.031932667,-0.019719217,-0.0031296136,-0.014733054,-0.026694542,-0.009488299,0.013420207,-0.011875292,0.000075992175,-0.03790015,-0.02185425,-0.0005250557,0.0122797545,0.025699962,0.00069993606,0.0133008575,-0.009879501,0.033789217,0.0029671653,-0.016616127,-0.009508191,0.0024300918,-0.009700476,-0.02035575,0.0071875025,-0.043231104,0.004638061,0.015409368,0.0041739233,0.0046480065,0.0029423009,0.030447427,-0.004591647,0.002053809,0.00010002787,0.009488299,0.00025817653,0.02678737,-0.0019576661,-0.0051552425,0.012849981,0.016655909,0.0024168307,0.027503468,0.02308753,-0.009660693,-0.020209877,0.0065310793,0.020382272,0.007890339,0.023790367,-0.001926171,0.029810894,0.0038788642,0.039968878,-0.000657252,-0.010171244,-0.008997639,0.01766375,-0.04110933,-0.01161007,-0.029466107,0.015038058,-0.024320811,-0.02467886,0.033921827,-0.0017322279,-0.0135594485,0.0437085,0.006113355,-0.02763608,0.015024797,-0.010476248,-0.013194769,-0.008937964,-0.01407,-0.02444016,0.019202035,0.0056094346,0.031747013,0.0034710863,0.010012111,0.003104749,-0.014467832,-0.0068957587,0.02729129,-0.000046310157,-0.008487088,0.024121894,-0.004037997,-0.0041142483,0.00045626384,0.021562507,-0.027211724,-0.005649218,-0.021005541,-0.007366527,0.02752999,0.023193618,0.017332224,0.0076715313,-0.00084290706,0.012133883,0.021071848,0.002764934,-0.020939237,-0.013711951,0.0108807115,-0.02396276,0.018353326,-0.013314119,0.033046596,0.0059674834,-0.018472677,0.018061584,0.012631173,-0.021522723,0.022000123,0.010821037,0.002302454,-0.020050744,0.0026671335,0.045883317,0.0446633,-0.018313544,-0.007625118,0.0076450096,-0.023021225,-0.007552182,-0.01210073,0.008865029,-0.0073731574,0.018180933,0.011815617,-0.018233977,-0.007472615,-0.0023505255,0.000018052673,0.005334267,-0.0049198586,0.025275609,-0.009123619,-0.02406885,-0.00056732533,-0.016271338,0.014003694,-0.002574306,-0.015488935,0.008195344,0.0023952816,-0.0062658577,-0.64501864,-0.036680132,0.041374553,-0.006222759,0.019904872,0.011716159,-0.018565504,-0.005529868,0.0011678033,0.031906147,-0.01283672,0.00450545,-0.0053243213,0.0071543497,0.009793303,-0.015197191,0.03752884,-0.006570862,-0.008201974,0.014083261,-0.027423901,-0.0042203367,-0.005347528,0.04447764,0.019122468,0.011649854,0.017173091,-0.015528718,-0.01147746,0.013884345,0.0077113146,0.029810894,0.020687276,0.009561234,0.04256805,-0.030341338,-0.014706532,0.0077577285,-0.018472677,0.03431966,-0.030765692,-0.023763845,0.0016858141,-0.043496322,-0.018379848,-0.02654867,0.014998275,-0.01111941,0.036759697,0.032860942,0.0069952165,0.021894034,-0.017677013,0.0046148538,0.02074032,-0.016894609,0.028856097,0.0070946747,0.009196555,0.0177831,-0.009673954,-0.0012216765,-0.03731666,-0.045220263,-0.017464835,0.012107361,-0.014772837,0.016231555,-0.0024400377,0.019533562,0.017464835,0.009236339,-0.00017477681,0.04185195,-0.0031677391,0.02605801,0.000107953434,0.020846408,-0.0022328333,-0.004100987,-0.0091037275,-0.015011536,0.009408732,-0.013307488,0.010535924,0.0053508435,-0.013347271,-0.024917558,0.0033649977,0.01751788,-0.0035373915,0.03121657,0.021456419,0.0020455208,-0.011311696,0.003467771,0.000831718,0.011775834,0.003839081,-0.012763784,0.0067167343,0.0035937512,-0.017690273,-0.0024649021,0.033497475,0.0048668142,-0.01061549,-0.008314693,0.03797972,-0.012684218,0.005191711,0.00056608213,-0.0051220898,0.004853553,0.0038357656,-0.0261641,0.0043529477,0.013267705,-0.016258078,-0.011291805,-0.0039716917,0.012697479,0.035619244,0.00024781632,0.004455721,0.012598021,0.010257441,-0.0006858462,-0.010489509,0.00838763,0.008937964,-0.0056591635,-0.003544022,-0.009581126,-0.013764995,0.016271338,0.009415363,0.0042667505,0.013459991,-0.014401527,-0.018379848,0.006494611,-0.0031992341,-0.0063620005,0.0006228561,-0.02580605,-0.006962064,0.0076715313,-0.021509463,0.020010961,-0.004949696,-0.035698812,-0.025699962,0.0049430653,-0.015343063,-0.0062525966,0.008792092,-0.010933756,-0.027423901,-0.0160459,0.0075123985,0.024174938,-0.031826578,0.0050624153,-0.021787945,0.0029389856,0.020276183,0.006358685,0.0012183612,-0.023379274,0.012246602,-0.01469327,-0.0120941,-0.007837295,0.00064191886,-0.0033898621,0.0072803297,-0.0021880772,-0.0014496011,0.0029986603,-0.010032003,0.023511885,0.012936178,0.015170669,0.024241244,-0.013367163,-0.029068274,0.056492176,-0.031534836,0.00950156,-0.014958492,-0.00032676116,0.022676436,0.022676436,0.005901178,-0.009919284,0.012246602,-0.004233598,0.0031495052,-0.005635957,-0.0027185201,0.006415045,0.028405221,-0.0051519275,0.012007902,-0.008798723,0.0064117294,-0.032834418,0.018737897,0.019944657,0.007857187,-0.0033832316,0.028882619,-0.017438313,0.00065517996,0.000026457397,-0.017146569,0.012995853,-0.006739941,0.047342036,-0.007976537,0.0024947396,0.023432318,-0.033285297,0.0011064709,0.012001272,0.0074129407,0.012113991,-0.007260438,-0.02332623,-0.0070814136,-0.0012987565,0.01308205,0.026270188,0.038112327,-0.02617736,-0.008261649,-0.0056956313,0.018101366,-0.0021466364,-0.0078240335,0.02282231,0.013778256,-0.008818614,0.016390689,0.006580808,0.013035636,0.009143511,-0.011676376,0.016563082,0.008964486,-0.0026853676,-0.040976718,-0.00037483254,0.014985014,-0.021708379,-0.007472615,0.0034346182,0.011324957,0.014162827,0.014958492,0.010655273,0.032436587,-0.028431743,0.010323746,0.011271914,-0.0027218354,-0.0010625436,-0.0090109,-0.03309964,0.007611857,-0.00032738276,0.0063122716,-0.028670443,0.01889703,-0.0044391444,0.011868661,-0.013095311,0.00035597695,0.011152564,-0.026813893,-0.0069554336,0.011470829,0.019069426,0.0006017212,0.0021764738,0.011159194,-0.0145739205,0.021217719,0.0026936557,0.010204396,-0.0028710226,0.006345424,-0.0048933364,-0.011450938,-0.0051220898,0.035725333,0.004100987,0.030526994,-0.005974114,0.0036965245,0.006209498,-0.023379274,-0.025646918,0.024798209,0.015038058,-0.021217719,-0.02087293,-0.0055961735,-0.022557087,0.020687276,-0.0007380617,-0.011663115,-0.017836144,0.0362823,-0.013413576,-0.009839717,-0.014136305,0.021496201,0.00305502,-0.0029141211,0.003530761,-0.011046475,0.009156772,0.08566654,0.028856097,0.0036965245,0.025713224,-0.030155683,-0.0073598963,-0.008871659,-0.027556513,0.022424476,0.021443157,0.0060802028,-0.013672167,-0.023617974,0.00088683434,0.013506404,-0.0036799482,0.012816829,-0.025859095,0.003091488,-0.03211832,0.00913025,-0.0047242576,-0.01506458,0.023366014,0.028219566,0.02469212,0.03087178,0.02481147,-0.00087771734,-0.0007111251,-0.0076980535,-0.022530565,-0.009176663,0.025156258,0.011948228,0.030898303,-0.0019609814,0.025275609,0.007883709,0.027848257,0.01198138,0.014043477,0.0056425873,-0.024957342,0.017186353,0.0020886192,-0.003368313,0.01344673,0.028723488,0.011828878,0.0068824976,-0.0070681525,-0.024798209,-0.0035141846,0.0037727756,0.009196555,0.005692316,-0.010761362,0.0017836145,0.010197766,-0.022848831,-0.018101366,0.01814115,0.0045518638,-0.028378699,-0.022000123,-0.027238246,0.00030604072,-0.0010434808,-0.0033567094,-0.010522663,-0.012578129,-0.028166521,-0.009269491,0.02752999,0.0064581432,0.022278605,0.015449151,0.013473252,0.011742681,-0.008354477,-0.03935887,-0.0042203367,0.0014429706,0.004233598,0.03299355,0.017212875,0.0044623516,0.016125467,0.007989797,-0.0028478156,0.020528143,0.029227408,-0.032622244,0.011941598,0.0009349057,0.0060105817,-0.004604908,-0.0106287515,0.008652851,-0.022994703,-0.008752309,0.016112205,-0.015780678,-0.011590179,0.013347271,0.020925974,0.013128463,-0.022437738,-0.004790563,0.019785523,0.005589543,0.00851361,-0.0032473055,0.009461776,0.029731328,0.0014885556,0.021933816,-0.005559705,-0.008155561,0.003653426,-0.049092498,0.03965061,0.0074527236,-0.035088804,0.013605862,-0.013526296,-0.027450424,-0.0011321643,-0.008235127,0.0005113802,0.02272948,-0.012239971,0.0124123655,-0.0154624125,-0.0053375824,-0.0067963004,-0.001663436,0.0017239397,-0.022371432,-0.003925278,-0.031428747,-0.025713224,-0.017875928,0.016483516,-0.033921827,-0.015541979,-0.0037694604,-0.023856673,0.03355052,0.008533501,-0.011378001,-0.026919981,-0.022623392,0.011444307,-0.03246311,-0.009945806,-0.015144147,0.035592724,0.025036909,0.0049662725,0.019467257,0.008075994,0.023405796,-0.016722215,-0.012127252,0.009899392,-0.02136359,-0.00875894,0.008440673,0.017875928,0.0070548914,0.027821735,0.027211724,0.0082086045,0.0014222502,-0.018313544,-0.007426202,-0.015502196,-0.030023072,0.020342488,0.012299647,-0.017968755,-0.00084870873,-0.022119472,-0.019705957,0.016098944,0.004100987,0.016430471,0.0021831044,0.018247237,-0.0030715964,0.032754853,-0.0015938154,-0.012684218,0.0028992023,-0.009952436,-0.017438313,-0.0010849216,0.025607135,0.018538982,0.012903025,-0.0028909142,0.012372582,-0.02739738,0.0015631492,-0.0070416303,-0.017478095,-0.016072422,-0.0076450096,-0.013380424,-0.03148179,-0.0110133225,0.010827667,-0.015144147,0.0032307291,-0.0020869616,0.008924703,-0.013347271,-0.02925393,-0.01567459,-0.028378699,0.00024097858,0.011318327,0.014587182,0.022026645,0.012657695,-0.005022632,-0.01049614,-0.0058547645,0.0024483257,0.005135351,0.05174471,-0.019918134,-0.024387116,0.0068427143,0.0090109,-0.016523298,-0.019957917,0.00152751,0.02654867,-0.007737837,-0.008606438,0.006060311,-0.0056425873,0.020912714,-0.0021317177,-0.002270959,-0.0027467,-0.011782465,-0.020435315,0.012637804,-0.020753581,0.03036786,0.003925278,0.009302644,-0.012724001,-0.0392793,0.0065244487,0.0047706715,-0.005834873,0.0036368496,-0.00031308568,0.018817464,0.009335796,-0.010774623,-0.0036335343,-0.014600443,-0.006037104,0.016006116,-0.003050047,-0.0031030914,-0.0023140574,0.008228497,0.0016128782,0.015369585,-0.018446155,-0.016350904,-0.008188713,-0.008772201,0.012604651,-0.011881922,-0.02875001,0.010429835,-0.004780617,-0.0030517047,-0.0153298015,0.014229133,0.018830726,0.0079566445,-0.007764359,-0.0045220265,0.0057320995,0.0044888738,0.009959067,0.018578766,0.018300282,0.010317116,0.0007699711,0.008732418,0.0030699386,0.0028743378,-0.01222671,0.010807776,-0.005606119,-0.026628237,0.029174363,0.0036501107,-0.027423901,-0.006786355,-0.0026488996,-0.0035937512,-0.0026919981,0.0055630207,-0.0011495694,0.019440735,0.007983167,-0.0011230472,-0.013499774,-0.022848831,0.009070575,-0.0063354783,0.01061549,-0.008579915,-0.008089256,-0.029598719,0.0070548914,0.008686003,0.0033716282,-0.031640925,0.024121894,0.018366588,-0.0039716917,-0.014308699,-0.017120047,-0.012485301,-0.00838763,0.038961038,0.0028345545,-0.013884345,-0.014348483,0.025859095,0.02223882,0.019891612,-0.015117625,-0.008493718,-0.02689346,-0.002846158,0.0056956313,-0.017690273,-0.017557662,0.04890684,0.0006091806,-0.036600564,-0.014494354,-0.015117625,-0.0474216,-0.010217657,-0.0022494097,0.005069046,-0.0036036968,-0.0004492189,-0.01307542,0.01407,-0.01123213,-0.0009092124,0.012147144,-0.010728209,-0.019546824,-0.020276183,-0.015130886,0.0009978958,-0.039411914,0.0062857494,0.020700537,0.004429199,0.019281602,0.013764995,-0.027065853,-0.008533501,0.021628812,-0.00034188706,0.0020422055,0.009395471,0.037131008,-0.025527569,0.005712208,-0.013532926,-0.0032804583,-0.015011536,-0.021071848,0.012200188,-0.013108572,-0.004764041,-0.009488299,0.0016253104,-0.023286447,0.02233165,0.021801205,0.0029671653,-0.00025776212,0.007293591,0.009793303,-0.025328651,-0.011079628,0.024837991,-0.003177685,-0.01889703,0.0051419814,-0.023830151,-0.011948228,-0.002474848,-0.013738473,-0.0063918377,-0.024334071,-0.020395532,0.020103788,-0.0006286578,0.0029306975,0.0099855885,-0.016602864,-0.0037230465,-0.019812046,-0.00876557,-0.0019974492,-0.036255777,0.0068228226,0.0032754852,-0.022994703,0.005649218,0.0002905004,-0.028723488,0.027848257,0.015661329,-0.004028051,0.021469679,0.24697424,0.0010094993,-0.005874656,0.03408096,0.029147841,0.038616247,0.025381695,0.028670443,0.0066239065,-0.011669746,0.016801782,0.023392536,-0.016616127,-0.004760726,0.0017338855,-0.048615098,-0.024400376,-0.00690902,0.010157983,-0.0010658589,0.016165249,0.021164674,-0.016098944,-0.020899452,0.025540829,0.01246541,0.0009274464,-0.0050160014,0.0066570593,0.013135094,-0.02654867,0.010283963,0.0058083506,-0.0002942301,-0.002869365,-0.00029775256,-0.0009423651,-0.0014985014,0.016350904,0.01654982,0.027317813,0.008613068,-0.014149566,-0.005254701,-0.000861141,0.008487088,-0.0077113146,-0.006196237,-0.014613704,0.0162846,-0.036680132,-0.015502196,0.029863939,0.015767418,-0.013029005,-0.00962754,0.011888553,-0.0012233341,-0.008997639,0.014985014,-0.0092496,0.022026645,0.0043761544,-0.01074147,-0.008042841,0.008095886,-0.008049472,-0.01369869,0.014202611,0.008831875,-0.0009813195,-0.0029754536,-0.00071651244,0.011928337,-0.01147746,-0.019281602,0.016271338,0.02531539,0.030288294,0.020236399,-0.0066073304,0.021628812,0.014733054,-0.02136359,0.013532926,-0.015727634,0.010821037,0.008686003,0.0024367224,0.009329165,-0.0031876308,0.0033898621,-0.042992402,-0.015966333,-0.023366014,-0.008168822,0.020077266,0.026084533,-0.010489509,-0.0053839963,-0.017425051,0.066623636,-0.005171819,-0.0047872476,-0.017372007,-0.011656485,-0.0065476554,0.03567229,0.011152564,-0.00839426,0.020315966,-0.04036671,0.014931969,-0.0030848575,-0.010462987,0.0025162888,-0.0051287203,-0.013910867,0.009030792,0.0042766966,-0.0055663357,-0.033232253,-0.019944657,-0.00031122085,0.030447427,-0.02223882,0.0079036,-0.0044789277,-0.0056226957,-0.02566018,0.010900603,0.02729129,0.0020040798,-0.009030792,-0.03355052,-0.0040346817,-0.0132014,-0.011815617,-0.01913573,-0.0088517675,-0.029837416,0.005589543,0.018525722,-0.019467257,0.021801205,-0.012498562,0.007950014,-0.0062525966,-0.007764359,0.00900427,-0.011046475,-0.009189924,0.014918708,-0.030182205,0.014467832,0.0035639137,-0.040764544,-0.037131008,0.0061431928,-0.016907869,-0.002846158,-0.0353275,0.0353275,-0.015343063,-0.030182205,-0.015144147,-0.16868086,0.0059343306,0.024652338,-0.010476248,0.013566079,0.033364862,0.004926489,0.00518508,-0.018936815,-0.0015971307,0.034027915,-0.016032638,-0.020846408,0.005940961,0.008579915,0.008414152,-0.030023072,0.039120167,0.0072869603,0.013068789,0.039226256,0.010462987,-0.010927125,-0.01875116,0.00045792147,-0.0022195722,-0.02124424,0.0076184873,-0.0029058328,-0.023684278,-0.007459354,0.008334585,0.008162191,0.0014247367,0.029413063,-0.007910231,0.0018167672,-0.01123876,0.004604908,0.0057818284,0.00426012,0.0020057375,-0.009408732,0.027264768,0.00028449149,0.028696965,0.01949378,0.012730631,0.0065973843,-0.028060433,0.029704807,-0.029333496,0.0040081595,0.011948228,0.02949263,0.015846984,0.015303279,0.01333401,-0.027583035,-0.016443731,-0.005901178,-0.014388266,-0.011039845,-0.016602864,-0.0144413095,-0.025275609,-0.0063984683,0.011928337,-0.027980866,0.0055663357,0.0011247048,-0.015144147,0.020170094,-0.0042302827,0.009912653,0.013897606,-0.022530565,0.004366209,-0.006464774,0.02543474,0.0044391444,0.038191892,-0.0022643285,0.026217144,0.0054005724,-0.0056425873,-0.006037104,0.016815042,-0.007426202,-0.021297285,0.0010940386,0.0012307934,-0.009282752,-0.0042170216,0.01913573,0.009315904,0.0048170853,0.0028345545,0.00075505243,-0.026641497,0.022689698,-0.0023985968,-0.048588578,0.031402223,0.032834418,0.014043477,0.0070946747,0.020713799,0.0237108,-0.023379274,-0.023472102,0.03299355,0.015913289,0.03591099,0.029068274,0.018233977,-0.017345484,-0.010071786,-0.014123044,-0.008308063,0.03442575,-0.011397894,-0.005539814,0.0073731574,0.0001838938,-0.017822884,-0.10492162,-0.015727634,-0.0096076485,0.00092413113,-0.015886767,-0.0015788967,0.015197191,0.026973026,-0.0021698433,0.018870508,-0.016523298,-0.046944205,-0.009534713,-0.016032638,-0.003253936,-0.009846347,0.006567547,-0.035778377,0.004840292,0.001305387,-0.022039905,-0.023233403,-0.0034777168,-0.02875001,-0.016218293,-0.022596871,-0.023259925,-0.0013285939,0.016151989,-0.01543589,-0.000015527372,-0.03097787,0.002053809,-0.014507615,-0.0013111887,-0.0007670703,-0.02814,0.0022013383,0.024174938,-0.021390112,-0.00045129092,-0.013725212,-0.014043477,-0.016377427,0.0024847938,0.007936753,-0.021018803,0.004850238,0.02295492,-0.012657695,-0.01531654,-0.0012324511,-0.024148416,-0.019586606,0.0010849216,-0.0030749117,-0.02345884,0.035194892,-0.021429896,0.015886767,0.0070548914,0.016125467,-0.023909718,-0.0028295817,0.0023836782,0.0036733176,-0.0040910416,-0.020554665,0.020687276,0.014534137,0.0024649021,0.012796937,-0.021429896,0.000734332,-0.023790367,-0.015396107,-0.0068228226,-0.0022096266,0.012485301,-0.008904811,-0.009402102,-0.029545674,-0.014348483,-0.02641606,-0.0061034095,-0.010164614,0.0044756127,0.0053839963,-0.0007894483,-0.032860942,-0.0016932734,0.026575193,0.0044524055,0.011683007,-0.015767418,-0.007293591,-0.006889128,-0.012007902,0.0034246724,-0.004336371,-0.017358746,-0.014136305,-0.048562054,0.024572771,-0.0009829771,-0.012034425,0.008878289,-0.0049695875,0.020408792,-0.018048322,-0.0033368177,0.005102198,-0.0025627026,0.008195344,-0.008878289,-0.012001272,-0.0008528528,-0.012843351,0.0145739205,-0.0020737005,0.027503468,-0.020899452,0.013154985,-0.022000123,0.004213706,-0.0124123655,-0.005161873,0.027211724,-0.003263882,0.011583548,-0.012047686,-0.013645645,0.009368949,-0.010933756,-0.0021383483,0.030208727,0.0005238124,-0.009362319,-0.011988011,0.032516155,-0.00024097858,-0.0130488975,-0.004213706,-0.007333374,-0.005403888,-0.017942233,0.0013725212,-0.007432832,-0.0036998398,-0.010144722,0.022543827,-0.0028312393,0.014003694,0.017398529,-0.017425051,-0.02099228,-0.0030284978,-0.020753581,0.016231555,-0.023140574,0.00089595135,-0.036467955,0.02680063,-0.0055331835,0.017703535,-0.019705957,0.01184877,0.0011205608,-0.007505768,0.005035893,0.0031395594,-0.03317921,-0.016006116,-0.006981956,0.00863296,-0.032038756,0.030076116,0.021642074,0.0025693332,-0.022915136,-0.021496201,0.03211832,-0.0012788648,0.006123301,-0.029439585,0.016655909,0.023167096,0.036255777,-0.0047971937,-0.0019410898,-0.0041904994,-0.011152564,-0.015276758,0.00036447233,-0.0034147266,-0.0076516396,0.027715646,0.01579394,0.014878925,0.003431303,-0.0018913607,-0.0030666234,0.041931517,-0.0003242747,0.012637804,0.0036600565,-0.022862092,0.011079628,-0.018061584,-0.049702507,-0.0007761872,0.0077113146,0.00802295,-0.01344673,0.02975785,0.014454571,-0.022888614,0.005211602,0.015992856,-0.037131008,-0.04113585,0.031269614,-0.011397894,-0.018950075,-0.02011705,-0.012365952,0.020382272,-0.007691423,0.01197475,-0.016390689,0.020050744,0.024665598,-0.026071273,0.0012175324,-0.014003694,-0.019798784,0.022371432,-0.0085865455,-0.011537135,0.012896394,0.024506465,0.069488026,0.020647492,0.010171244,-0.007147719,0.0029074906,0.01283009,0.038059283,0.00033857182,-0.009428624,-0.004270066,0.017597446,0.0064846654,0.012074208,-0.014268916,-0.013738473,-0.008705895,0.007843926,0.02099228,-0.028988708,-0.0055663357,0.025302129,0.0134334685,-0.017504618,-0.008705895,-0.024586031,-0.0071742414,-0.016655909,-0.011311696,-0.00089097844,-0.040287144,-0.0006879182,0.008049472,-0.024466682,-0.012113991,0.0055994885,0.010695056,-0.01357271,0.0030517047,-0.0023588135,-0.00013457918,-0.00401479,0.03543359,-0.025779529,-0.012087469,-0.0392793,-0.008619699,-0.015608285,-0.0034478793,-0.011755942]},{\"id\":\"78fedd8f-00ae-4951-a255-bebf6f6621c6\",\"text\":\"I'm noticing scratches on the inside of the blendjet containers and I just bought it. Could have used better quality plastic. \",\"vector\":[-0.012015511,-0.0051129833,-0.011928052,-0.007958762,-0.013394671,0.009035179,0.0028205505,0.00024976252,0.006502235,-0.0042989426,0.013159204,0.017653247,-0.007561833,0.0063744104,0.0010318471,0.0028407332,0.009223553,0.018218366,0.010125052,-0.021259246,-0.03264236,0.0062465854,0.0012883373,-0.02108433,0.0062163114,-0.0116858585,0.00672761,-0.018029993,0.007723296,0.02271241,0.006051485,0.0010032548,-0.027085356,-0.0038683757,-0.011134194,0.014935293,0.0034748104,-0.017585972,0.0054729106,0.012365347,-0.0020031459,0.01407416,0.009277374,-0.011907869,-0.0077367513,0.024421223,-0.014141436,0.038455017,-0.0069698035,0.012950649,0.03756697,0.009781945,-0.02333135,-0.0050591626,0.022591313,-0.011329295,0.005597371,-0.01286319,0.025120895,0.004769875,0.011336022,0.015352406,-0.009263919,-0.011066918,-0.024811424,0.008288415,0.006236494,-0.005186987,-0.009835766,-0.008375874,0.01502948,-0.0023849376,0.020075187,-0.019294785,0.014302898,0.006502235,-0.01747833,-0.0092168255,0.007642565,-0.0024858518,0.03388024,-0.0072658183,-0.022201112,0.017491786,0.019765718,0.0041475715,0.0130852,0.016159719,0.0034310808,-0.0023832556,-0.0018803669,0.024044476,0.007494557,0.0015456683,-0.007339822,0.02142071,-0.002568265,0.03611381,-0.016482644,-0.023748463,-0.020721039,0.01711504,-0.022900783,-0.018648934,-0.04604376,0.009701213,-0.005442636,-0.0003515176,0.007844393,-0.015433136,0.0005310607,0.013139022,0.009876131,-0.009983772,-0.003535359,-0.0008581907,0.015096757,-0.0127622755,-0.010373974,-0.02051921,0.016967032,0.033907153,0.021622537,-0.015998255,0.018837307,0.028363602,-0.020613397,0.019604255,-0.0032477535,0.017128494,0.025336178,0.037593883,0.019510068,0.0038717394,-0.011665675,0.004494043,-0.04052712,-0.008093314,0.0099770455,0.009983772,0.009095728,0.016805569,-0.0055401865,0.032238707,-0.021272702,0.008712254,0.0116858585,0.011349478,-0.0028642798,0.002257113,-0.010696899,-0.023627365,0.012674817,0.0019947363,-0.001104169,0.010266332,-0.0010453024,-0.0072321803,-0.014356719,-0.004584866,-0.022456761,-0.0040432937,0.032857645,0.007904941,-0.0050053415,0.025847476,0.003501721,-0.018595112,0.011914597,0.012641178,0.0068554343,0.016280815,-0.0010638033,0.027515924,0.008496971,-0.008375874,0.010521982,0.000690421,-0.036059987,-0.029224737,-0.012594085,0.007306184,0.0120020555,0.010717082,0.0064080483,-0.037889898,0.020505754,-0.007460919,-0.001430458,-0.022228023,0.008974631,0.010696899,-0.01593098,-0.0154869575,-0.65618414,-0.055596966,0.026668245,-0.0069765314,0.022241477,0.04981122,0.016428823,-0.00038620684,-0.006808341,0.025255447,-0.017424509,0.009829038,-0.010898728,-0.00423503,0.016173175,-0.0060313023,0.03490284,-0.03562942,0.011894414,0.008618068,-0.022295298,-0.008005856,-0.009761762,0.018904584,0.010622895,-0.013724323,0.0073129116,0.009970318,0.012378802,0.012620996,-0.030597169,0.012156791,-0.01685939,-0.0062499493,0.056673385,-0.00206874,0.0015246446,0.017639793,0.03681348,0.020573031,-0.03439154,0.0024454861,0.013979973,0.0023681186,-0.017007397,-0.0015919206,0.039639078,0.0106094405,-0.020842135,-0.01812418,0.020438477,0.0047429646,0.016469188,0.0114974845,0.009297556,-0.0033402583,0.031727407,0.0076492922,0.027260274,-0.01193478,0.006465233,0.011423482,-0.014666189,-0.027542833,-0.015971346,0.0152313085,-0.038105182,-0.014370174,0.022672044,-0.018554747,0.016375002,0.0016852663,-0.010400885,0.016872846,0.011477302,0.039988913,0.013347577,-0.022550948,0.023479357,0.0012446078,0.007904941,-0.0025060347,-0.0059909364,-0.005604099,0.023587,-0.020277016,0.0031485213,-0.013710869,-0.016267361,-0.0142221665,-0.0073196394,0.020021366,0.011995328,-0.028740348,-0.0067881583,-0.019187143,-0.00816059,-0.01472001,0.00923028,0.00035677355,-0.009526296,0.012405712,0.020653762,-0.0038179185,0.014370174,0.00021759613,-0.011490758,0.0047665113,0.014168346,-0.017855076,0.010966004,0.030704811,-0.010347064,-0.0014590503,-0.0017491785,-0.030193513,0.010003956,0.0018400012,-0.009129366,-0.0066401507,0.001068008,0.011127466,0.025457276,-0.0036497284,-0.0031165653,0.011490758,0.01029997,-0.0007740956,-0.009586844,-0.0031333843,0.024528865,0.005520004,0.008564247,0.00078881223,-0.0083287805,0.0008502017,0.0009990501,0.0011832183,0.017532151,-0.026237678,-0.013731051,-0.013515768,0.0029551026,-0.0063845017,0.01384542,-0.0082009565,-0.0015313722,0.0076291095,0.0114974845,0.01528513,0.0070236246,-0.0028861447,-0.026896983,0.012802641,0.0004187937,0.013529223,-0.011235109,-0.018137636,-0.010548892,-0.013091928,-0.0071581765,0.038939405,-0.028336693,-0.0031165653,-0.0054729106,-0.01933515,0.016469188,0.009109183,-0.018877672,-0.028417423,-0.011928052,-0.021151604,-0.00026847367,0.02085559,-0.0092168255,0.018971859,0.0008119384,-0.008806441,0.0038313738,-0.0031754319,0.004504135,0.012378802,0.020303925,0.012116425,0.014908383,0.0043494,0.020048277,0.030139692,-0.015473503,0.04413312,0.0017508605,-0.0065426,-0.012836279,0.0076492922,-0.02513435,-0.032534722,0.0050591626,0.017020853,-0.010656534,-0.011322567,0.027031535,0.014195257,0.019227508,-0.013872331,0.014572003,-0.027717752,0.005721832,-0.00768293,0.015984802,0.02761011,-0.002743183,-0.03492975,-0.0023058883,-0.02276623,0.0037741892,-0.0072994567,0.0020973324,0.011430209,0.0064215036,-0.010918911,-0.019214053,0.016980486,0.01719577,-0.0152313085,-0.030704811,0.0074541913,0.005530095,0.015217853,0.03492975,-0.0048640617,-0.0038549204,0.0113696605,0.029843677,0.0030173329,0.0110534625,0.0055906437,0.025120895,-0.0069832588,0.0145989135,0.012466261,0.017868532,0.018137636,0.0012143336,0.0062835873,0.018474016,0.006202856,0.038912494,-0.007676203,-0.027744662,0.019200599,0.013300484,-0.025282357,-0.02366773,-0.01804345,0.01624045,-0.041765,0.0040634763,0.023506269,0.020976687,0.0130179245,-0.015446592,-0.0007736751,0.02392338,0.0034344448,0.032938376,-0.009580116,-0.031808138,-0.035333406,0.0038717394,0.010427795,-0.0029719216,-0.030085871,0.0072860015,-0.030274244,0.009526296,0.0018870946,0.03436463,0.011598399,-0.005116347,-0.004292215,-0.024152119,-0.03907396,-0.011282202,0.011127466,0.008994814,0.0051768958,-0.022241477,0.015715696,-0.031539034,0.02724682,0.0073869154,0.027044991,0.00022831825,0.013145749,-0.004951521,-0.001826546,0.008618068,-0.015904069,0.0083287805,0.0057991995,0.0017390872,-0.019442791,-0.0022268388,-0.019792628,0.008988086,0.010071232,-0.006495507,-0.014585458,0.00011542055,-0.013300484,0.021124694,0.0109256385,-0.029036364,0.0010982823,0.007030352,-0.0088939,-0.0067511564,-0.011726224,0.021259246,0.021070873,-0.009916496,-0.024179028,-0.016226994,0.0016785386,0.07077445,0.030301154,0.005671375,0.021017052,0.024932522,-0.0076223817,0.00098139,0.00013781089,-0.00098139,-0.0037741892,-0.0027970038,0.013381216,0.024031023,0.016482644,-0.0021696542,-0.023963746,-0.003706913,-0.0072119976,-0.021191971,-0.029762946,0.01564842,-0.0074407365,0.00706399,-0.003619454,0.012695,0.016455734,0.018420195,0.004961612,0.016751748,-0.010656534,-0.00020025151,-0.010145236,-0.022631679,0.0042989426,-0.03234635,-0.0075416504,0.015312039,0.0033873515,-0.0090890005,0.014356719,0.0020620124,0.03003205,0.0117935,-0.015433136,-0.0012883373,0.00923028,0.0075483783,-0.0015044617,-0.014773831,-0.016442278,0.012203884,-0.0025817202,-0.00021675517,-0.012042421,0.01956389,0.017585972,-0.025040163,-0.022806596,0.003276346,-0.021689814,-0.003979381,0.0048539704,-0.0062970426,-0.0065257815,-0.018931493,-0.03186196,-0.02814832,-0.01930824,-0.021837821,-0.0005827792,-0.00020004126,-0.00081446127,-0.002381574,0.015217853,-0.009250463,0.010690172,0.009728123,-0.023546634,0.00482706,0.010003956,0.027906125,-0.030328065,-0.006340772,-0.032023422,0.01570224,0.009391743,-0.007494557,-0.0056141904,-0.008806441,0.022900783,0.034203168,0.007750206,0.014989114,0.0048337877,0.0017130176,-0.013219753,0.015096757,0.033342034,-0.011490758,-0.012351891,-0.0026590878,-0.017088128,-0.009311012,-0.016805569,0.013347577,-0.0051264386,-0.042141747,-0.004551228,-0.0053148116,0.03355732,0.014652734,-0.013609954,-0.022214567,0.007857848,-0.018796941,0.02454232,-0.0044503137,0.0023008424,-0.01716886,0.0042484854,0.0003670752,-0.03791681,0.046877984,0.010871817,0.014208712,-0.0042114835,0.010939093,-0.023412082,-0.04612449,-0.0030425615,-0.013576317,-0.0074541913,-0.0023748463,-0.014235622,-0.028686527,-0.040823136,-0.012170246,0.02946693,-0.0048909723,-0.029628392,-0.027421737,-0.015540779,-0.010616168,0.012015511,-0.0057319235,-0.025686014,-0.025497641,0.013461947,-0.008355691,0.01103328,0.00423503,0.012123153,-0.022470217,-0.016105898,-0.02296806,-0.026668245,0.0030812453,-0.008187501,0.041899554,0.024407769,0.039047047,-0.015634965,0.0009620482,0.008819897,-0.010743992,-0.008833352,-0.014881473,0.0071245385,-0.01776089,0.024031023,0.013219753,-0.018339464,-0.0011605127,-0.016819024,-0.02474415,0.014195257,-0.007669475,-0.004292215,0.005324903,-0.032265615,-0.0059875725,-0.0053047203,0.014491271,0.004504135,-0.02023665,-0.011410026,-0.006653606,0.024448134,0.002482488,0.0017441328,0.019510068,-0.0012605859,0.0028575521,-0.0029231464,0.016361548,0.010017411,-0.0065560555,-0.009351377,-0.018433651,0.011026552,0.008745893,0.015984802,-0.02769084,-0.002914737,-0.011564761,0.014195257,0.0076963855,-0.01362341,0.01694012,-0.012076059,-0.011046736,-0.039531436,-0.019160232,-0.004581502,-0.013771417,-0.00077157276,-0.012681544,0.0028340055,-0.017155405,-0.02366773,-0.005139894,0.002553128,0.013347577,-0.017626338,0.020142464,0.057157774,-0.028390514,-0.033315122,0.0034108981,0.012668089,-0.02175709,-0.011295657,0.048035134,-0.034660645,-0.004692508,-0.0041273884,-0.0052038063,0.00044234033,-0.034041706,-0.00037106973,0.010616168,-0.0037540062,-0.017330322,-0.010555619,-0.037028763,0.023008425,0.0007438213,-0.008813169,-0.009903042,-0.011914597,-0.011699313,0.002292433,-0.0007631632,0.030839363,0.026103126,-0.0060615763,-0.018810397,-0.0005138212,-0.0073196394,-0.0046285954,0.010844907,0.009432109,-0.013354305,0.010239422,0.007602199,0.00023462539,0.005294629,-0.021905098,-0.0064753243,0.027166087,0.0035992712,-0.01384542,0.007864576,0.0037472786,0.021487985,-0.033611137,-0.011410026,-0.009075546,0.023237163,-0.015460047,-0.0053215395,0.035279587,-0.017828166,-0.0208825,-0.021434164,-0.0056444644,-0.009721396,-0.025632193,0.00234289,-0.01593098,-0.012143335,0.0125739025,-0.013428309,0.004120661,0.015473503,-0.014154891,0.036652017,0.017801255,-0.006545964,-0.010225967,-0.008261505,0.011524395,-0.043029793,0.008544064,-0.0030879728,-0.012769003,-0.0038549204,-0.019752262,-0.034122437,-0.019792628,-0.006549328,0.02691044,0.010898728,-0.025147805,0.012123153,-0.01654992,0.026950805,-0.01755906,0.0021057418,0.017545607,-0.032669272,0.009721396,0.008046221,-0.009257191,-0.031000825,-0.0022386122,0.012076059,-0.013576317,-0.009519568,0.000534845,0.0076223817,0.021232337,0.0010360519,-0.028605796,-0.022779686,0.010616168,-0.00900827,0.017384144,0.006915983,0.008577703,0.018151091,0.004413312,-0.00892081,0.003034152,0.0015641693,-0.0021242427,-0.00014506408,-0.009452292,0.0055099125,0.004877517,-0.009196643,0.012096242,0.0019728716,0.0016146264,-0.031377573,-0.027906125,0.00015137122,-0.005859748,-0.0011504212,-0.007602199,0.020653762,0.00872571,-0.018245278,0.04416003,0.009364833,0.0021780636,0.005795836,-0.010649806,0.015258219,-0.024179028,0.007272546,-0.011948234,-0.025847476,-0.035225764,0.0046958714,0.04354109,0.007380188,0.0005617554,0.016805569,-0.006290315,-0.006532509,0.008907355,0.017263047,0.015890613,0.017007397,-0.023573544,-0.013354305,-0.0038280098,0.028417423,-0.011739679,0.011120738,0.03315366,-0.000594973,-0.0086988,-0.0208825,-0.0071312664,-0.0054325447,-0.011766589,0.008813169,0.0019526887,0.018554747,0.017209226,0.007104356,-0.005792472,0.0018063632,0.0054560914,-0.0009200006,-0.021743635,0.008577703,-0.017518695,-0.004275396,0.007992401,0.0029382836,-0.012970831,-0.008988086,0.000982231,-0.00074213947,-0.02817523,0.0293862,-0.01840674,-0.00920337,0.0088939,0.0043359445,-0.0147872865,0.002965194,-0.012943921,0.00844315,-0.052556086,0.008550792,-0.010003956,0.0058799307,-0.030704811,0.0088939,0.0150429355,0.0035891798,0.016845934,0.21108548,0.019590799,-0.014450906,0.03501048,0.007918397,-0.002706181,0.01621354,-0.0058059273,-0.0039188326,0.022510583,0.014423995,0.023412082,-0.021057418,-0.005984209,0.018837307,0.031565946,-0.028309781,-0.010158691,-0.015890613,0.00012319935,-0.011006369,-0.020532664,0.035844706,-0.002702817,0.022873873,-0.019348605,-0.00968103,0.023963746,0.017599426,-0.0044368585,-0.007985673,-0.008032766,0.01621354,-0.026331864,0.027906125,-0.014652734,-0.0010747357,0.002760002,0.009647393,0.02356009,-0.010454706,0.025511095,0.0047126906,-0.010562347,-0.020990143,0.0020031459,-0.007481102,-0.0062835873,-0.0014548457,0.002756638,0.010979459,-0.022456761,-0.0026052669,0.009876131,0.00019941056,0.010030866,-0.0015843521,-0.012970831,-0.0012656315,-0.020532664,0.003308302,0.02761011,-0.020949777,0.01438363,-0.033315122,0.010447978,-0.0046958714,-0.0006702381,0.00931774,-0.02510744,0.011376388,0.00613558,-0.013771417,0.03121611,-0.028363602,-0.010811268,0.013488857,0.0074003707,0.03880485,0.013186115,0.013912697,0.0015137122,-0.012917011,-0.024098298,-0.014302898,-0.054439817,0.009418653,-0.004016383,0.02080177,-0.012896827,-0.010447978,0.010669989,-0.00830187,-0.012176974,0.052448444,0.0057251956,0.0056781024,0.007716568,-0.016697926,0.025686014,-0.038831763,0.0038044632,-0.00040723063,0.012446078,-0.01367723,0.028336693,-0.013139022,0.03207724,0.026210768,-0.0073196394,-0.008786258,-0.023815738,0.00513653,0.010044321,0.000018014753,0.019469703,-0.005143258,-0.0067847944,0.018850762,-0.007925124,0.026076214,-0.014773831,0.018568203,-0.011477302,-0.018393286,-0.026412595,-0.0072860015,0.027219908,0.0065089623,-0.042706866,-0.003723732,-0.0048337877,0.034149345,-0.038858674,-0.018527837,-0.021487985,-0.0029349197,-0.0008287574,0.0039087413,0.00016798,-0.018514382,0.018299099,0.022268388,-0.026923895,0.008335508,-0.0104210675,0.015016025,0.002117515,-0.013993428,0.0003420569,-0.024111753,0.02026356,-0.022456761,0.004258577,0.0122577045,-0.01685939,-0.044402223,-0.01624045,-0.016913211,0.003895286,-0.033503495,0.003962562,0.02206656,0.017263047,-0.018299099,0.0036026349,-0.17211917,0.017236136,0.009115911,-0.013287029,0.025295813,0.0077434788,0.0113091115,0.0074205534,-0.0064484137,0.01474692,0.018770032,0.024219396,-0.023465903,-0.017061219,0.006707427,-0.008994814,-0.017236136,-0.004514226,0.048358057,0.014935293,0.03175432,0.00093681965,0.021070873,0.0032628907,0.021555262,0.01196169,0.0005167645,0.016953576,-0.0012034011,-0.018191457,0.018568203,-0.03207724,0.041765,0.010030866,0.02645296,-0.009997228,0.0033352126,-0.006512326,0.0047126906,0.017357234,0.022860417,-0.0004948998,-0.00011205675,0.0070438073,-0.00886699,0.0422763,0.035252675,-0.031592853,-0.005745379,-0.016226994,0.015567689,-0.011665675,-0.013831966,0.015971346,-0.00027162724,0.009055363,0.015850248,0.02170327,-0.0056781024,-0.01801654,-0.0164961,-0.013737779,0.0041778455,-0.00089477206,-0.007137994,-0.0028827807,-0.01334085,-0.0017113357,-0.014275988,0.006690608,-0.0075820163,-0.0078107547,0.012896827,0.0098492205,-0.005358541,0.020021366,0.0028575521,0.016899755,-0.007945307,-0.009109183,-0.011214925,0.045371,-0.0069832588,-0.010535437,-0.002156199,0.017653247,0.0029853769,-0.009311012,-0.012526809,-0.02059994,0.012520081,-0.020129008,-0.022914238,-0.010077959,0.011591672,0.037620794,0.0018383194,0.003136748,0.011759861,0.0005226512,0.01303138,0.021622537,-0.027219908,0.032615453,-0.00007952245,0.002499307,-0.010037594,0.018218366,0.03388024,-0.025524551,-0.020142464,-0.005553642,0.022631679,0.026076214,0.010939093,0.025349634,0.009472474,-0.009331195,0.03751315,-0.016388457,0.0076089264,-0.01106019,-0.018608568,0.020895956,-0.010367246,-0.009728123,-0.1129162,-0.020438477,-0.001292542,0.02294115,-0.019631166,0.0027885942,0.016132807,0.026896983,-0.011658948,0.039396882,0.011262018,-0.008604613,-0.013091928,-0.018689299,0.003878467,-0.001568374,0.020034822,-0.013872331,-0.02446159,-0.013939607,-0.0039221966,-0.008954449,-0.009465747,0.010966004,0.015581144,-0.0072052698,-0.028309781,0.024797969,0.021999285,0.0017693613,0.026735522,-0.0035420866,0.0056646476,-0.023573544,-0.025268901,0.0021747,-0.017774345,0.017155405,0.027031535,-0.047523834,0.010138508,0.007339822,-0.012123153,-0.022483671,-0.017034307,0.025968574,-0.015836794,0.021393798,-0.011262018,-0.011403298,-0.02575329,-0.004087023,-0.034687556,-0.022012739,0.021205425,-0.010791086,0.008382602,0.03126993,-0.006690608,0.010212512,-0.033611137,0.012991014,-0.03915469,0.004985159,-0.02023665,-0.021272702,-0.020734493,-0.025793655,0.00016650834,-0.027004626,0.0075820163,0.036517464,-0.018527837,0.015742607,-0.020492299,-0.0067444285,0.0022133836,-0.010629623,-0.006909255,-0.014881473,-0.014208712,-0.0038851947,0.0005651192,-0.03366496,0.029009454,0.0168863,0.009210098,0.009048635,-0.0029769673,0.00015441967,-0.013858876,0.009465747,0.012661361,-0.01891804,-0.02147453,0.022564404,-0.0067948857,-0.029305467,0.022201112,-0.015473503,-0.011854048,-0.022927694,-0.035225764,0.02724682,0.0021259247,-0.00875262,0.014262533,-0.0025110804,-0.0035084484,-0.011759861,-0.0055065486,-0.0032544811,-0.01835292,0.0025413546,-0.008786258,-0.016536465,-0.010858362,-0.013387944,0.026547147,0.027139178,0.019214053,-0.006535873,0.0055065486,-0.0045949575,0.006650242,0.017532151,-0.0017996356,0.007911669,-0.0016314454,0.0133341225,-0.008322054,-0.005442636,0.009903042,-0.009755034,0.012647906,0.012661361,-0.00017607416,-0.01891804,-0.02062685,0.0026759068,0.012641178,-0.05029561,-0.011107284,-0.03135066,0.033987883,0.011477302,0.0046723248,-0.020196285,-0.02142071,-0.011840593,0.00172395,0.015190943,0.034633733,0.022254933,0.0038078271,-0.016428823,0.009432109,-0.004927974,-0.0055099125,0.0072994567,0.000965412,-0.04529027,0.015809882,-0.004423403,0.004120661,-0.03487593,0.020438477,0.016415367,-0.027098812,-0.009169732,0.0028205505,-0.037136406,-0.009169732,-0.019832993,0.011598399,0.0062835873,0.0059909364,0.010791086,-0.00047681935,-0.005785744,-0.000526015,0.020721039,0.006532509,0.010831452,-0.035979256,0.0009923225,0.02144762,-0.020303925,-0.01367723,0.02769084,0.019604255,0.011975145,-0.012365347,0.008564247,-0.002499307,-0.003636273,-0.005637737,0.031243019,-0.0066838805,0.009391743,0.017411053,0.02884799,0.007709841,0.008402784,-0.00041059442,-0.030920094,-0.035817795,0.024192484,-0.03379951,-0.018944949,0.017908897,0.023802282,0.031619765,-0.020869045,0.020909412,0.010057776,-0.015836794,0.0032258888,-0.018164545,-0.0016903119,-0.0059909364,-0.0046958714,0.0019425973,0.012156791,0.025834022,-0.013926152,0.029009454,0.001843365,0.009506113,-0.010743992,-0.0068520703,0.03135066,0.005620918,-0.03291147,-0.02361391,-0.0053518135,-0.0019880086,-0.035979256,-0.010111597,0.02642605,-0.004964976,0.06372392,-0.015581144,-0.008604613,0.007992401,-0.012062605,-0.008093314,0.030328065,-0.00072616135,-0.010824724,-0.033987883,0.00070766045,-0.010696899,0.027435193,-0.0000047007857,-0.019577345,-0.009001542,-0.0024421224,0.02214729,-0.027098812,-0.011288929,0.008490243,-0.0034579914,-0.0017357233,0.013603227,0.00651569,0.0052038063,0.0014186847,-0.021313068,-0.005533459,-0.01595789,0.0061086696,-0.006465233,-0.038751032,-0.0150429355,0.009452292,-0.002359709,-0.040930778,0.01410107,-0.020788314,0.024838336,-0.0037809166,0.026816253,-0.04531718,-0.014612368,-0.022456761,-0.019806083,-0.026789341,-0.010326881,-0.01812418]},{\"id\":\"98cd52fd-823e-44ce-8a8c-abe7dab96d34\",\"text\":\"Why? You speak in bad English, why?\",\"vector\":[0.006635228,-0.01479288,0.0139048,-0.032757476,-0.01932209,0.016099626,-0.017609363,-0.013004033,-0.010111428,-0.01499587,0.01632799,0.02897679,0.0029909275,0.011132721,0.0030242305,0.0011687771,0.048438437,-0.026617035,0.0009935398,0.0059215925,0.004411856,0.0200833,0.00014124045,0.02231619,-0.007028521,0.015198859,0.01684815,-0.022125885,0.005556845,-0.0005962825,-0.01287082,-0.0178631,-0.010777488,-0.0038282603,-0.024079662,-0.01089167,-0.005801067,-0.019918373,0.020984069,-0.028545437,0.03613218,-0.008696843,0.012883508,-0.02498043,-0.01543991,0.028012589,-0.007009491,-0.00047337852,-0.018814616,0.036411293,-0.0013162618,0.00933753,-0.031641033,-0.019588513,-0.020362413,-0.008722217,-0.0058898753,0.018370574,0.0045831287,-0.008252803,0.0020235544,0.006647915,-0.021770654,0.010377852,-0.008455793,0.0016207465,-0.013245083,0.0078912275,-0.013790618,-0.0097625395,0.0058074105,0.016340677,-0.011481609,0.0028037962,0.03285897,-0.013410012,-0.011373771,0.00893155,-0.016759343,-0.0061087236,0.029052911,-0.029712629,-0.011862216,0.009090136,-0.0017000394,0.007922945,0.0014050698,0.024993116,-0.004411856,0.00039131037,0.006330744,0.015668273,0.014044356,0.013156275,0.008880802,0.0059469664,0.009787913,0.035548586,-0.011919306,-0.01000359,0.00913454,-0.023153521,-0.027327498,-0.0019426756,-0.0040597958,-0.0068001575,-0.0074598743,0.0016017163,-0.018154899,-0.027657358,0.004890785,0.029484265,0.00597234,-0.015351102,0.0012076306,0.00028783316,0.019055665,-0.000063731655,-0.014488395,-0.017660111,0.04704288,-0.01458989,-0.012699548,-0.010212923,0.037045635,-0.002207514,-0.009058419,0.004782947,-0.041029308,-0.009267752,0.036639653,-0.0039805025,0.033848546,-0.00414226,0.0003760465,0.022037078,-0.026743904,0.012921568,-0.026337923,-0.011938336,0.014843628,0.0098196305,0.012179387,-0.0196012,0.011265933,0.033011213,0.012985002,-0.0022249583,0.0051667243,-0.0028672307,0.0034571697,0.007853167,0.02583045,-0.0013559082,-0.010136802,0.024993116,-0.0020235544,0.013333891,0.009851348,-0.0062451074,-0.016353363,0.035345595,0.011189812,-0.02546253,-0.0013440143,-0.0004242169,0.016366052,-0.006279996,-0.010174863,-0.014475709,-0.014653324,0.02146617,-0.017977282,0.024663258,-0.003219291,-0.015706334,0.0054521784,-0.01111369,-0.0013971406,-0.012166699,-0.036284424,0.017507868,0.01455183,0.018522818,-0.029129034,-0.004957391,-0.0009792671,-0.026287176,0.03217388,-0.013042093,0.006907996,0.0076248036,-0.01089167,-0.025437156,-0.6686483,-0.020755704,0.019385524,-0.003631614,0.01329583,0.026794652,0.00599137,0.0278096,-0.013118214,0.01394286,0.0010197065,-0.00031162103,-0.01349882,-0.023838611,-0.0049922797,-0.01778698,0.00870953,-0.025246853,-0.006229249,0.0009816459,-0.007846824,0.037172504,0.011031225,-0.013042093,-0.0061436123,0.011202498,0.0059786835,-0.021187058,-0.021897523,0.014894375,-0.036893394,0.0015612768,0.018116837,-0.016226495,0.052726597,0.012598053,-0.0034000787,0.008163995,0.004827351,0.004453088,-0.013790618,-0.0027815944,0.0052523604,-0.017076515,-0.009940156,-0.010777488,0.0034127657,0.016898898,0.009794257,-0.002697544,0.0014122062,0.008328924,0.0011275448,0.031641033,-0.0012678932,-0.0052967644,0.02740362,-0.03171715,0.00024323091,-0.0040502804,0.0079483185,0.005874017,-0.019816877,-0.015148113,-0.013511507,-0.016708596,-0.030651456,-0.004085169,0.024155784,-0.021110937,-0.0106696505,0.0029893417,-0.020971382,0.0076057734,0.0032240485,0.032300748,0.007865854,-0.027733479,0.01580783,-0.0068889656,-0.008899833,0.0019918373,-0.035015736,0.015071991,0.04077557,-0.010308075,-0.008138621,0.0002652347,-0.020717645,-0.002962382,0.007732642,0.0041041994,-0.0050937748,-0.002017211,0.008183026,0.025310287,-0.039050158,-0.003653816,0.02966188,0.006359289,-0.004120058,-0.005969168,0.015985444,0.009280439,0.02416847,0.017583989,0.001838009,0.027327498,0.014057042,-0.019296715,0.0032256343,0.013752557,0.036436666,-0.016239183,0.0001108118,-0.01939821,-0.00045791638,0.0027800084,0.02246843,-0.022658734,-0.004240583,0.0012163528,0.030981315,-0.031869397,0.0013884184,0.026972266,-0.026693156,0.013752557,-0.01762205,0.00080442626,-0.007910258,0.0041708057,0.019816877,-0.02106019,0.042780094,0.0020774736,0.02069227,-0.0027482912,0.0023914734,-0.0008119591,-0.003990018,-0.01839595,0.011557731,0.0065210466,-0.0098006,-0.007053895,-0.019715382,-0.018180272,0.013511507,0.03755311,0.019575827,-0.0068699354,-0.033899292,-0.017165324,0.0076057734,-0.012731265,0.000051540374,-0.010986822,-0.024193844,-0.0028894327,0.028240953,0.017685484,-0.01127862,0.0022439884,0.0052840775,0.004034422,0.008398702,0.00095389335,-0.026261803,-0.016911587,0.018129524,-0.0074789044,-0.0039709876,-0.012280881,0.002675342,-0.0029592104,-0.01020658,-0.031184305,0.016746657,-0.01346076,0.0026531399,0.02409235,-0.016467545,-0.0075930865,0.012686861,0.007066582,0.009825974,0.026414044,-0.01414585,0.03483812,0.012242821,0.000070768896,-0.02910366,0.010485691,0.008627065,-0.006429067,0.013739871,0.01875118,0.006391006,0.0043515936,0.00824646,0.03341719,0.027911095,-0.0034222808,0.0021234634,-0.010415913,-0.016302617,-0.0045831287,0.029712629,0.022290815,-0.025551338,-0.02024823,0.0025024833,0.0061087236,-0.019791503,0.0086905,0.0155160315,0.011475266,0.0025468874,0.021148998,-0.020514654,-0.0055790474,0.012052518,-0.009508803,-0.009946499,0.019550454,-0.00697143,0.008747591,0.009927468,-0.027987216,-0.011836842,-0.011158095,0.014133164,0.032960463,-0.016150374,0.010174863,-0.005014482,-0.0026737559,-0.000029809167,-0.015389162,-0.006438582,0.011545043,0.008988641,-0.0031574427,0.018319827,0.017051142,0.024701318,0.0022027562,-0.02610956,0.018434009,-0.011183468,-0.011906619,0.005506098,-0.014234658,-0.002830756,-0.027631983,0.00913454,0.02052734,-0.010618903,0.018903423,0.009565894,-0.001347186,0.022024391,0.009895751,-0.013232396,0.005357027,-0.009445368,0.015097365,0.011196155,-0.018357888,-0.025107298,-0.020793766,0.019436272,0.0018538676,0.01107563,0.010060681,-0.004097856,0.012731265,0.005648825,0.02821558,0.0061975317,-0.022481117,0.027327498,0.012401407,0.012160356,-0.026261803,-0.034584384,-0.00051976484,-0.04935189,0.033823173,-0.0139048,0.013321204,-0.019537766,0.001180671,-0.015046617,0.013346578,0.01370181,-0.00025631423,0.011995427,-0.008214743,-0.0055663604,-0.010625246,-0.00087063585,-0.006540077,0.009515146,0.0041010277,-0.011151751,0.003707735,0.022328876,-0.01778698,-0.024396833,0.008937893,-0.019372838,0.008677813,0.012166699,-0.0003526551,-0.038669553,-0.0047607445,0.0367919,-0.005068401,-0.0069333697,0.0005764593,0.0046497346,0.027175257,0.09099017,0.00937559,-0.0016794233,-0.0050049666,0.0074789044,-0.00697143,-0.004652906,-0.051889263,-0.004453088,-0.008157652,0.013815992,-0.0043293913,0.010885327,0.004690967,-0.003685533,-0.01523692,0.004782947,-0.005870845,-0.012858134,-0.009400964,0.008563631,0.01458989,0.020400472,0.008785651,-0.0012282467,0.024549076,-0.0006505981,-0.016860839,0.016632475,-0.023546815,-0.019220594,0.0018966857,0.022493804,0.014691385,-0.012591709,0.022189321,-0.0009967115,0.005563189,0.009724479,-0.004976421,0.039506886,0.011633852,0.0038821795,-0.0134734465,0.01924597,-0.0040502804,0.0066225417,0.025614772,-0.013803305,-0.03313808,0.018205646,-0.018649686,-0.016619788,-0.035269473,-0.0041739773,0.004763916,0.005981855,-0.0042818156,-0.008639753,-0.00067914353,0.0045260377,-0.03346794,0.0040312503,0.0056107645,-0.030752951,-0.017025767,-0.023876673,-0.008956924,-0.005956481,0.027961843,0.012236478,-0.015389162,-0.03565008,0.0061848448,0.0104983775,0.026540913,0.020704957,-0.009286783,-0.0042627854,0.007364723,0.007072925,-0.024105037,0.010333449,-0.02041316,-0.035700828,-0.018446697,-0.0025056552,0.017875787,-0.025284914,0.024650572,0.02137736,0.022696795,0.016556354,-0.01592201,0.003609412,0.012217447,0.024308026,-0.0032605233,-0.013029407,-0.005391916,-0.0042120377,-0.024942368,-0.013828679,0.0027911095,0.023496067,0.016759343,0.010568155,-0.005290421,-0.009794257,-0.010212923,0.010162176,-0.020387786,-0.0062546227,0.003241493,0.008240116,0.018332515,0.0032922404,0.03605606,0.016188435,0.0022915644,0.018002655,-0.041003935,0.029560387,0.008386015,-0.00026087358,-0.011995427,-0.00033441774,-0.022252755,-0.0076248036,-0.0027657356,-0.015325728,0.017748918,-0.00030369175,-0.04186664,-0.03953226,-0.019068353,0.011526014,-0.0016136102,-0.020717645,-0.03311271,-0.014539143,-0.009940156,-0.01899223,-0.029915618,-0.029027538,-0.028418569,0.001114065,-0.0023740288,-0.022024391,0.021669159,-0.0017761606,0.013613002,-0.019207908,-0.0032478364,0.012839103,-0.03237687,0.009045732,-0.0042564417,0.021719906,0.019207908,0.034330647,-0.02659166,0.024688631,0.0030718062,-0.013245083,-0.003565008,-0.01000359,-0.011411832,-0.017723545,0.010352478,0.025652833,0.01762205,0.0114054885,-0.021719906,-0.014006294,0.007440844,0.0076565207,0.008804682,-0.008455793,0.0009491358,0.021681845,0.012927911,-0.013270456,0.020907948,0.0103271045,-0.02699764,-0.0077136117,0.01305478,-0.0026864428,-0.019854937,0.0067367232,-0.0112913065,0.020337038,-0.021225119,0.015909323,-0.012877164,-0.009654702,0.020514654,-0.0007378203,0.020996755,0.008398702,0.016632475,-0.03278285,-0.007675551,-0.007846824,0.0022804632,-0.007675551,-0.010758459,-0.0056075924,-0.005290421,0.005743976,-0.037197877,-0.022354249,-0.017114576,0.016137687,0.0033239576,-0.013663749,-0.0015977515,-0.002675342,-0.02590657,-0.01693696,-0.022075139,0.0054870676,0.003065463,0.039151654,0.02890067,-0.0031495132,-0.01198274,0.0071427026,0.026667781,-0.0109233875,0.0047480576,-0.009178944,0.0067430665,-0.002316938,-0.01198274,0.036918767,-0.0055980776,-0.020375099,0.019728068,-0.0059437943,0.00010090019,0.008132278,-0.012058862,-0.016467545,0.013714497,-0.0060199155,-0.00643541,-0.04143529,-0.014666012,-0.023496067,0.011158095,-0.005835956,0.009534176,0.023584874,-0.0033715332,-0.0068635917,-0.020298978,0.0022455745,0.020540029,0.007383753,0.022443058,-0.0053062798,-0.000913454,-0.014171224,0.007028521,-0.008417732,0.021732593,0.014767506,0.01871312,-0.009902095,0.003999533,0.002251918,0.010764802,0.008170338,-0.0052301586,-0.025805075,0.0016508778,0.0039392705,0.0043389066,0.009001328,0.016518293,0.00014332189,0.012642457,-0.022975905,-0.022024391,0.00045434822,0.01802803,0.022544552,-0.007307632,-0.017000394,-0.0058771884,0.0027054732,0.023534127,0.003707735,-0.004288159,0.0038219169,0.0029354226,-0.013790618,0.027936468,0.014691385,0.013283144,-0.005905734,0.011697286,0.006362461,0.0041930075,0.03450826,-0.010212923,-0.017317565,-0.012357003,-0.016023505,-0.0021155342,-0.0132197095,-0.032960463,0.0070348643,0.015757082,-0.0062895115,-0.030905195,-0.0041708057,0.003308099,-0.01547797,0.038238198,0.01976613,-0.035193354,-0.0031003517,0.00092138327,0.017393686,0.0037933714,0.0126805175,0.021834088,0.023978168,0.00911551,-0.0040629674,-0.036842644,-0.024650572,-0.016099626,-0.013841365,0.016886212,0.0133592645,-0.0029259073,0.020717645,0.017304879,0.0057154307,0.0033905637,0.005423633,-0.016797405,-0.000087668195,0.008868116,-0.01725413,-0.0005883532,-0.022138573,0.041892014,-0.008804682,-0.024587138,-0.008633409,0.011792437,-0.03136192,0.010783832,0.020501968,0.0049605626,0.015503344,0.015947385,0.011310337,0.049174275,0.007066582,0.0072124805,-0.017723545,-0.00741547,-0.028342448,-0.024802813,-0.014615264,0.02222738,-0.028393196,-0.0028704023,0.017685484,-0.010365166,0.016962333,0.01823102,-0.011665569,-0.030549962,-0.01026367,-0.0012266609,-0.00026880286,-0.00143758,-0.009324843,-0.014183911,0.0014907062,0.0015144941,0.01875118,-0.018611625,0.005188926,0.021022128,-0.036715776,-0.007218824,0.0010688681,-0.01891611,0.018510131,0.006685976,0.011912962,-0.0065147034,-0.033797797,0.038390443,-0.0028767458,-0.013092841,-0.015224233,0.00761846,-0.022925157,0.01346076,0.018852675,-0.03557396,-0.021237805,-0.013892113,0.005648825,-0.015084678,-0.030524587,-0.02857081,0.02651554,-0.012959628,0.03313808,0.0108092055,-0.0011267519,0.021732593,0.014488395,0.0018665545,-0.0041137147,-0.025931943,-0.010549125,-0.013663749,0.0025579883,-0.0028862609,0.000012476239,-0.0456727,0.0045863003,0.011475266,-0.00697143,0.019537766,0.21313927,-0.028317073,0.006806501,0.044277146,0.012160356,0.013346578,-0.01261074,0.010371509,-0.008589005,-0.01305478,0.0022535038,0.015909323,-0.0112913065,-0.0017951909,-0.014843628,-0.01370181,-0.03925315,-0.047398113,-0.0040122196,-0.03265598,-0.009305812,-0.005312623,0.00003967122,-0.005055714,0.015579466,0.012090579,-0.026946893,0.0080625005,0.031387296,-0.007218824,-0.017748918,0.01218573,-0.0034349677,0.02514536,0.010580842,0.0072441977,0.015160799,0.0054109464,0.010346135,0.0010847267,0.009984559,0.007675551,0.0024755239,-0.038974036,-0.026896145,0.011475266,0.0052143,-0.006673289,-0.009559549,0.016886212,-0.006660602,-0.030346971,0.007015834,0.020184796,0.015960071,0.005271391,-0.019474331,0.018522818,-0.02303934,-0.0045926436,0.013879426,0.022810977,0.011659225,0.005667855,-0.034863494,0.052371364,-0.015744396,-0.011215185,0.0020457564,-0.012357003,0.012579023,0.010117772,0.008614379,0.025284914,-0.030397719,-0.0057090875,0.0013598729,0.024637884,-0.0026039782,0.03585307,-0.041080058,0.006762097,-0.02045122,-0.013042093,0.018116837,-0.020514654,0.0015620698,-0.017926535,0.010098741,-0.018839989,0.0028878467,-0.020159421,-0.020387786,0.0058200974,0.010720397,0.026490167,0.010339792,0.01455183,-0.0010625246,-0.0026864428,-0.02917978,-0.012845447,0.020095987,0.01924597,-0.005582219,0.023255017,0.009064762,0.017913848,0.0024533218,-0.0093185,-0.0110946605,-0.023115462,0.008132278,0.0075233085,-0.011456235,-0.011843185,0.012521932,-0.013245083,0.023458006,0.0103588225,0.019487018,-0.028951418,-0.009400964,0.011906619,-0.0061150673,-0.01826908,-0.020235544,0.01192565,-0.0019854938,-0.021770654,0.0072695715,-0.011310337,0.023673683,-0.023216955,-0.0068382183,0.015795141,-0.0049986234,0.0042564417,0.0030876647,0.007497935,0.019994494,0.0052428455,0.0068572485,-0.010022621,0.010523751,-0.015782455,0.020222856,-0.010238297,-0.025982691,0.00036712605,-0.019512393,-0.0027815944,0.009299469,-0.012299912,0.040674075,0.005712259,-0.029940993,-0.02361025,0.013168962,0.016810091,-0.005782037,0.009381934,0.010625246,-0.005499754,0.011874902,-0.035015736,-0.16015893,0.022722168,0.020032553,-0.031260427,0.04354131,0.02651554,0.010701368,-0.0027879376,-0.006438582,0.012458498,0.005931108,0.0026578973,-0.019042978,-0.010403226,-0.022455744,-0.026642408,-0.012160356,-0.0019553625,0.020349726,0.013815992,0.018319827,0.008094218,0.013371952,-0.012115953,-0.012230135,0.010473004,-0.012807386,0.016898898,-0.025335662,-0.015820516,-0.022823663,-0.009147227,0.0059533096,0.005071573,0.01823102,0.0013099184,-0.0027371903,-0.008639753,-0.012769326,-0.0017571303,0.017571302,0.024650572,0.0071807634,-0.029864872,-0.010986822,0.0055156127,0.031463414,0.0068255314,0.01810415,-0.00850654,0.002507241,-0.0278096,0.0034317959,0.007631147,-0.0038821795,0.024384147,-0.0050969464,0.027378246,-0.0012044589,-0.0024136754,-0.03148879,-0.019575827,0.008132278,-0.018142212,-0.007041208,0.0107267415,0.00087142875,0.016480232,-0.019258656,0.0059152488,-0.0048749265,-0.020463906,0.02130124,-0.014615264,-0.0088554295,0.005027169,0.008906176,-0.0056329663,0.00055861834,-0.0067747836,-0.018040717,0.0047480576,-0.01887805,0.028037963,-0.008366985,-0.01932209,0.010238297,0.0075867428,0.0005538608,-0.031006688,0.010961448,-0.022582613,-0.011443549,-0.017901162,0.008614379,0.008075187,0.021567663,0.009584923,-0.019499706,-0.02113631,0.0048622396,-0.026743904,-0.017634736,0.014602577,0.050823566,0.010568155,0.010847266,0.0109233875,0.030397719,-0.013524194,-0.022024391,-0.010904357,-0.008132278,0.016239183,0.0020346553,-0.013803305,-0.0046053305,0.005058886,0.021174371,-0.0026372813,0.06277459,-0.023356512,-0.0026769277,0.0045070075,0.012249164,-0.010174863,-0.09560818,-0.033899292,0.00028347207,0.007440844,0.004767088,0.023419946,-0.0024120894,0.025538651,-0.00038238993,0.033493314,-0.008341611,-0.022138573,-0.007745329,-0.026033439,0.0072124805,-0.015059304,0.025513278,-0.025259541,-0.030803699,0.028773801,-0.011912962,-0.017292192,-0.0041803205,0.003017887,-0.01984225,0.0048939567,-0.023064714,-0.0060770065,0.022379624,0.008963267,0.0014899132,-0.0230774,-0.020578088,-0.009914782,-0.004310361,0.00478929,-0.0016255041,-0.016201122,-0.01329583,-0.010745771,0.009813287,-0.0069777737,0.020819139,-0.041308418,-0.013663749,0.00589939,-0.023293076,0.007263228,-0.0069904607,-0.0070792683,-0.02978875,-0.015110051,-0.028621558,-0.005763007,0.027428994,0.021313926,0.004411856,0.013600315,-0.012039831,0.003888523,0.0043833107,-0.015833203,-0.021250492,0.003298584,0.009940156,-0.012965972,0.002462837,0.0006002471,0.012192073,-0.026845397,-0.0238513,0.024434894,0.0053728856,0.0074471873,-0.036690403,0.005058886,-0.0103841955,-0.003898038,-0.0084875105,-0.0068001575,-0.033772424,-0.017634736,0.01592201,-0.015389162,-0.025373721,0.009096479,0.0065464205,-0.008443106,-0.005661512,-0.021732593,0.0000401668,0.032605235,0.0036918765,-0.01891611,-0.0020980895,0.013384638,-0.016353363,0.0029877557,0.01656904,0.0022439884,-0.0017967767,-0.006705006,-0.041206926,0.019867625,-0.00891252,-0.0008777722,0.024790127,-0.003230392,0.0025912914,-0.021199744,-0.0062102186,0.011481609,-0.012953285,0.028037963,-0.010485691,-0.008018096,-0.011526014,-0.009946499,0.03585307,0.012604397,0.019613888,0.026287176,-0.013613002,-0.020045241,0.008785651,0.02699764,0.006391006,0.006384663,-0.014716759,0.02174528,-0.0058962186,-0.025868509,0.0031717152,-0.021402735,0.012109609,0.004513351,-0.0047068256,0.009952842,0.014818254,0.024066975,0.015389162,0.028748427,-0.026033439,-0.023990855,0.028342448,-0.033924665,0.0008198884,-0.0042278967,-0.005068401,-0.00510329,0.028596185,-0.017875787,0.006641572,0.009927468,-0.015249607,-0.014767506,-0.022582613,-0.02113631,0.012128639,0.030321598,0.011443549,0.007383753,0.015033931,-0.008100561,0.012268195,-0.004354765,0.029281275,0.024384147,0.008563631,-0.0022772916,0.0027863518,-0.035548586,-0.009178944,0.006559107,0.011411832,0.021009441,0.019791503,0.017939221,0.00020834204,-0.0019632918,-0.006448097,0.0317679,0.012471184,0.007941975,-0.013892113,0.008328924,0.023356512,0.0018998574,0.010143146,-0.028723054,-0.009990904,0.006597168,-0.012579023,0.0057756933,-0.023559501,0.01899223,-0.019372838,0.014615264,0.0014439233,-0.010815549,-0.021897523,0.019905685,0.015554092,-0.008982298,-0.022620674,-0.0028212408,-0.0155414045,0.019791503,-0.018078778,-0.005255532,0.0022424026,0.009242378,0.009267752,-0.010929731,0.03709638,0.0057281177,-0.007130016,0.0046180175,-0.016112315,-0.022366935,-0.010371509,0.02368637,0.017063828,0.03981137,0.03293509,-0.011779751,0.019068353,0.0013868326,-0.00018911352,-0.026464792,0.0009546863,0.011145407,0.0022931502,-0.019169847,-0.0208572,0.0065210466,-0.020298978,0.0065020164,-0.0103588225,0.017774293,0.005693229,0.051153425,0.008379672,-0.0103017315,0.0016033021,0.014666012,0.015566778,-0.0052491887,-0.023026653,-0.039100908,-0.028748427,0.011627508,-0.009413651,0.026693156,-0.029915618,-0.012096922,0.025716268,-0.01087264,0.028545437,-0.01871312,0.0031796445,0.022189321,0.0043515936,-0.0056171077,0.022785602,-0.05978049,0.013866739,0.021288553,0.023572188,-0.016340677,-0.036969513,0.01222379,0.012636114,-0.021973643,0.014602577,0.0022202006,0.007466218,-0.019715382,-0.029890245,0.017406374,0.01701308,0.023191582,0.019499706,-0.008405046,-0.02917978,0.005480724,-0.007980036,-0.004564098,-0.002753049,-0.010143146]},{\"id\":\"aa3260f5-c089-4f5e-9bba-d824f4d84503\",\"text\":\"I have sent two emails with no response as I would like to exchange one of the three rings I purchased. When will I hear back or get a response on email?\",\"vector\":[-0.032840032,-0.01713112,0.00017595761,-0.007679913,-0.0071304245,0.01665274,-0.009664537,-0.02256136,-0.002143006,-0.0136273205,0.004208437,-0.0010391802,0.020880572,-0.031598836,0.006684369,0.01998846,0.026918484,0.006487199,0.0007486784,0.00041454076,-0.033046898,-0.0014593775,0.0034262238,0.015489117,-0.011009169,-0.030926518,0.0064354828,-0.0015878609,-0.017325057,-0.0118237045,-0.003778543,0.012373193,-0.033512346,-0.022160558,-0.010996239,0.012049965,0.011054421,0.0070075975,0.021229658,-0.009050403,0.027073633,0.023000952,0.015980424,-0.007511834,-0.009263733,0.024487805,-0.0027813828,0.006800731,-0.009961908,0.009574033,0.019652303,0.011474618,-0.027642516,-0.0016153352,-0.006664975,-0.010724727,0.0016888698,0.023259535,0.013407525,-0.002345024,0.0011280681,-0.010420892,-0.0052363044,0.014286707,0.008365158,0.008190614,-0.004050055,-0.0237767,-0.016924253,0.0068395184,0.020867642,0.010246349,-0.0020040178,0.0053882217,0.015734771,-0.012360265,0.0019345236,-0.00069170934,0.018294742,-0.022238132,0.0038076336,-0.01847575,-0.005940943,0.011778452,0.010841089,0.04589847,0.018036159,0.012476627,0.004163185,-0.014002265,0.0147392275,0.032943465,-0.00016110929,0.01833353,-0.022600148,0.007498905,0.00024828003,0.04651907,-0.017816365,0.00674255,0.013601462,-0.006383766,0.004295709,-0.013194194,-0.041605994,0.020815926,-0.0041211657,-0.036253326,0.016613953,-0.024436086,-0.031159243,0.042666186,0.043235067,-0.01742849,-0.031107526,-0.0018165451,-0.0033195585,-0.032969326,-0.021100366,-0.02545749,0.0052524656,-0.001206451,0.025095474,-0.03682221,0.038115125,0.0028007764,-0.031081669,-0.013730754,0.008016071,0.020247044,-0.0111126015,0.027564941,-0.012056429,-0.0024516894,-0.011998248,0.023893064,-0.032814175,0.0016064465,-0.0071174954,-0.00034625872,0.022742368,0.016239008,0.014454786,0.0034262238,-0.010492003,0.021733895,0.006610026,-0.0045445953,-0.027332217,-0.007272645,0.016807891,0.003384204,0.04830329,-0.023815488,0.012360265,0.020221185,-0.02862513,0.02561264,-0.0021365415,-0.049415197,-0.008578489,0.008546166,0.010453215,0.002403205,0.001848868,0.024901537,0.021152085,-0.0038528857,-0.029426739,-0.00870778,-0.02862513,0.0012121075,-0.0029349162,-0.015941638,0.0072015347,0.028159682,0.002524416,-0.013278234,0.029194012,-0.013898833,-0.0062641716,-0.0071692117,0.002797544,0.019755736,-0.024022354,-0.02800453,0.015631339,-0.023531048,0.025741931,-0.00439591,-0.004926005,0.008222938,0.012696422,-0.0015401846,-0.6491466,-0.011235428,0.003416527,0.006865377,-0.0029559261,0.013691966,-0.0022706813,0.04830329,-0.031676408,0.023233676,-0.008281118,0.011409972,-0.0024630025,-0.00023312868,-0.0051264064,-0.02500497,0.013136013,0.0015676591,0.0070011327,-0.021475313,-0.032633167,0.006833054,0.014157415,-0.0025098706,-0.0056565017,-0.014713369,0.0008068596,0.00020333103,-0.013000257,0.02106158,0.0015611944,0.024565378,0.012017642,-0.002558355,0.04163185,0.0072015347,0.010679475,0.008901717,-0.015178818,0.034882836,-0.02196662,0.027202925,0.019794524,-0.028599272,0.002808857,0.010679475,0.008972827,0.0027361307,0.005831045,0.0001792909,0.015346897,0.0037042005,-0.026155664,-0.018824838,0.054198984,-0.0077898107,0.0439591,0.016122647,0.008274654,0.0028557254,-0.015721843,-0.004896914,-0.02576779,-0.0045058075,-0.0051684263,0.0019587658,-0.015437401,0.009186159,0.01190128,-0.01864383,0.024966182,0.0064775026,-0.029013006,0.026052231,0.0070334557,0.0068976996,0.0053429697,0.014467715,-0.0036363224,0.022768227,-0.016626883,-0.02483689,-0.012405517,-0.022716511,0.02091936,-0.008727174,-0.0266599,-0.015230535,-0.00032504683,0.010058876,0.004253689,0.025470419,0.0010925129,0.0035070311,-0.035400003,0.022393283,0.00014454382,-0.015437401,0.0072079995,-0.010744121,-0.00002749969,-0.022354495,-0.009819687,-0.015941638,0.01294854,-0.0023773469,-0.028185539,-0.0051587294,0.04393324,-0.0071627474,0.014273778,-0.004990651,0.01819131,-0.013834187,-0.004376516,-0.03061622,0.016394159,0.014816802,-0.002965623,-0.007563551,0.007880315,0.0044670203,0.025211835,-0.010058876,0.0053591314,0.009237875,-0.022199344,-0.01484266,-0.009334844,-0.0015418008,0.002884816,-0.00575347,0.009386561,-0.023505189,-0.0163683,-0.004499343,0.012437839,0.00575347,0.011390578,-0.014053983,0.0008355461,0.025379915,-0.0038625826,-0.0070399204,0.01484266,-0.014403069,-0.0071886056,0.022716511,-0.0069752745,0.00063958875,0.017312128,-0.00999423,-0.018126663,0.008824143,0.008998686,-0.00013717017,-0.03227115,-0.032529734,-0.022600148,-0.008306976,0.022962164,0.032219432,-0.024772245,0.0066585103,0.005637108,-0.021346021,-0.011649162,0.0071239597,0.0025955262,-0.014002265,-0.02303974,-0.019936744,-0.010323924,-0.008319906,-0.01332995,0.007389007,0.0151400305,-0.006632652,-0.0040145,0.008016071,0.011222499,-0.014959022,-0.025690215,0.031262677,0.024604166,0.0062221517,0.0013171568,0.04465727,-0.04225245,0.03589131,-0.032090142,-0.012967934,-0.013232982,0.00081453624,0.00094301964,0.00061211427,0.009205553,0.0011531182,0.016006283,0.023000952,0.026478892,-0.008016071,0.018669687,0.00832637,-0.0057567027,-0.011455224,0.009147371,-0.000086059634,0.04788956,0.033589922,0.0030771368,-0.016264867,-0.009134443,0.00040625804,-0.027513225,0.007408401,-0.014661652,0.02831483,0.00082059676,0.03074551,-0.019910885,0.013459242,0.013207124,-0.0132265175,-0.017919797,0.0017987675,0.012683493,0.008216472,0.006645581,0.011707342,-0.013730754,0.01280632,0.014519432,0.0027070402,0.011248358,-0.00826819,0.016264867,-0.011228964,0.024371441,0.013860045,0.023996497,0.009341309,0.017777577,-0.006383766,0.012586525,0.006619723,0.022186415,0.026866768,0.00070302235,0.034650113,0.006551845,0.0013963479,-0.03105581,-0.0269702,0.01470044,-0.006561542,-0.011287145,0.022328636,0.0063966955,0.012185721,0.0018747263,0.01773879,0.040080354,-0.0013559442,0.011054421,0.026052231,-0.0027280499,-0.014144487,0.0006100941,0.0069041643,0.008914647,-0.031753983,0.011144924,-0.015346897,0.024901537,-0.004896914,-0.00093736313,-0.027358074,0.00031696612,0.025017899,-0.00033110735,-0.029504312,0.027564941,0.0037397556,0.0006577703,-0.013821258,0.0028007764,0.035089705,-0.024513662,0.044450406,0.015889922,0.0033454166,-0.0086883865,-0.02045391,0.010938058,0.026052231,0.033227906,0.01470044,0.025858294,0.010563113,0.011791382,0.0070722434,-0.027513225,-0.010789373,0.028987147,0.008526772,-0.0009939282,-0.034908697,0.015243464,-0.010860483,-0.0071692117,0.026789192,-0.018669687,0.009535246,0.018294742,0.0063352818,-0.029659463,-0.009380096,0.022884589,0.0014020044,0.009729183,-0.0048775207,0.00011252398,0.010673011,0.0879182,0.031728126,0.010666546,0.00849445,0.012366729,0.0005038327,0.0027345144,-0.034624256,0.026996057,0.0014900841,-0.00575347,0.005976498,-0.004273083,0.022212274,0.009237875,0.0026908787,-0.0021785612,-0.010123522,-0.0075376923,-0.010621294,0.014674582,0.0029607746,0.0010020089,0.022651864,0.0130713675,0.012211579,0.015695984,-0.008817678,0.007440724,-0.012586525,0.022651864,-0.004305406,-0.005087619,0.0143384235,-0.016251937,0.046001904,-0.02243207,-0.022457927,0.0091538355,0.0043151025,-0.0022432068,0.011248358,0.006483967,-0.01741556,-0.0034456176,-0.008875859,-0.02060906,0.005973266,0.023543976,-0.005737309,0.029426739,-0.01470044,-0.0071627474,-0.0045381305,0.002592294,0.009328379,-0.030099053,-0.022328636,0.0016824052,-0.007227393,0.0086431345,0.008869395,0.010685939,-0.0052007493,-0.026401317,-0.035322428,-0.0126705635,-0.024966182,-0.009477065,-0.0045445953,0.00051554973,0.012502485,0.0015757397,0.0189412,0.03015077,0.0014278627,-0.0023644178,0.017648285,0.008003142,0.02865099,0.0016710922,-0.02044098,0.018462822,0.0015822044,-0.023905993,0.013562675,0.012179256,0.0038981377,-0.012573595,0.026388388,0.0013163488,-0.017544853,-0.014558219,-0.017945655,-0.005692057,0.016575165,-0.006577703,0.045820896,-0.004948631,0.004227831,-0.003752685,-0.009961908,-0.003697736,-0.019109279,-0.01666567,0.0071045663,0.0019264428,0.017777577,-0.011196641,-0.014170345,-0.022057123,-0.0018925038,0.009373631,0.0030076427,0.0013947317,0.017001828,0.013614391,0.027590798,0.011985319,0.011532798,-0.022315707,-0.06123244,0.026026372,-0.010647153,-0.025509207,-0.0054657967,0.008656064,-0.03333134,0.012554201,0.0122697605,-0.006393463,0.0063061914,0.0068847705,-0.01576063,-0.02878028,-0.005921549,0.0083393,0.0052718595,0.016885465,-0.0077380943,-0.009425348,-0.0189412,-0.013847116,-0.02164339,-0.01726041,-0.022315707,-0.01771293,0.010388569,-0.027590798,0.033564065,0.0036589485,0.00496156,-0.026091019,0.010873413,-0.012812784,-0.039459754,0.0062092226,-0.015385685,0.007712236,0.013510958,0.007608803,0.0054722615,0.0119142085,0.010498467,0.013317021,-0.011332397,-0.0198721,0.003878744,0.00014333171,0.006833054,0.0055078166,-0.004783784,0.023660338,0.0054173125,-0.0061639706,0.013459242,0.00983908,-0.007427795,-0.02940088,-0.050242662,0.0018811908,0.005646805,-0.004476717,-0.0007119111,-0.001814929,0.0143384235,0.028857855,-0.0051587294,0.006684369,-0.022845803,0.015799418,-0.0148943765,0.014222061,-0.027487366,-0.005242769,-0.011002704,-0.015256393,-0.022354495,0.017454349,0.008462126,0.02000139,0.0058924584,-0.013317021,-0.00579549,-0.0014125092,0.0061187185,-0.03131439,-0.0055175135,0.0018795747,-0.009218481,-0.005701754,-0.0130261155,-0.02407407,0.024293866,-0.023169031,-0.00089615147,-0.008500914,0.0031240052,-0.040183786,-0.034934554,-0.0015215989,-0.02893543,0.023065597,0.040287223,0.013549746,0.003765614,-0.000013749845,-0.022509644,-0.013006722,-0.0116233025,-0.01848868,0.01120957,0.03046107,-0.017467277,-0.02196662,-0.009186159,-0.0031708733,-0.002391892,-0.013136013,0.01939372,-0.0029575422,0.0053429697,-0.0017325056,-0.0037591495,-0.0077768816,0.035063844,-0.019600587,-0.01159098,-0.013704895,0.009658072,-0.020634918,0.011687948,-0.020195328,0.022238132,0.021992479,-0.021759754,-0.019316144,-0.026634041,-0.020802997,0.013575604,-0.003190267,0.023737913,0.004017732,0.008513843,-0.019148067,-0.0055336747,-0.011099672,-0.005546604,0.003326023,0.021733895,-0.014493573,-0.0055272104,0.008067788,0.0035684444,-0.022251062,0.011028562,-0.011907744,-0.015282251,-0.026427176,0.008701316,0.015191747,-0.023750842,0.0016856375,-0.013911761,-0.022535503,0.014325495,-0.046622504,0.014959022,0.016058,0.009651608,-0.011325932,-0.030228345,0.0018197774,0.017467277,0.01970402,0.020984005,0.03382265,0.009580498,0.011810776,-0.01318773,0.0022108841,-0.004997115,-0.022884589,0.018152522,0.020091893,-0.03700322,0.008998686,0.0027070402,-0.0420973,-0.029814612,0.022509644,-0.013304092,-0.0049098437,-0.016937181,0.013446312,0.026608184,0.010647153,-0.009115049,-0.026103947,0.02289752,-0.005107013,0.016885465,-0.0052977176,0.00022605805,-0.0031094598,-0.009438277,0.024811033,-0.010563113,0.0069817393,0.0029963297,0.01468751,-0.003878744,-0.006664975,-0.02138481,0.0069494164,0.0028589575,-0.010563113,0.047656834,0.008287583,0.014209133,-0.005220143,0.025935868,0.02862513,0.021255517,-0.015993355,0.0021349255,-0.025729002,-0.018113734,-0.019005846,-0.010815231,0.02530234,0.015812347,-0.020828856,-0.011487546,-0.02592294,-0.018385246,-0.0076928423,-0.02528941,-0.010569577,0.010666546,0.012450769,0.0030512786,-0.0011458456,0.0140281245,0.0043571224,0.015243464,-0.03421052,-0.003033501,0.019600587,-0.0012807936,0.004845198,-0.0014125092,-0.02197955,0.0034585467,0.01634244,0.03576202,-0.028573414,0.027564941,-0.00696881,0.0008355461,0.008093646,-0.008475056,-0.0015563461,0.017790506,0.024992041,-0.04504515,0.004082378,-0.01816545,0.0063094236,-0.015411543,-0.014041053,0.025160119,-0.005747006,-0.0014593775,-0.010563113,-0.0032306705,0.019768665,0.0039627836,0.0035522832,-0.0097809,-0.012741674,-0.013368738,0.007227393,-0.0098455455,0.022005407,0.01166209,-0.013523888,0.0022270456,0.03131439,-0.008067788,-0.025250623,-0.008119504,-0.010588971,-0.00033029928,-0.0072661806,-0.015980424,0.0055078166,-0.048225716,0.0150495265,0.016174363,-0.01771293,0.010614829,0.014648723,-0.014519432,0.008714245,-0.022147628,0.010310994,-0.024358513,-0.021850258,0.016303655,-0.011067349,-0.04000278,0.022238132,-0.009438277,-0.0031627924,0.0063191205,0.24017183,0.007854457,-0.017441418,0.016626883,0.0071692117,-0.006519522,0.021255517,0.0050779223,0.0062092226,0.0054722615,-0.004134095,-0.00640316,-0.026297884,-0.000021136124,-0.010278672,-0.006519522,-0.029349163,-0.011707342,-0.0009866555,0.006626188,0.0072079995,0.0053397375,-0.0061704353,-0.025198907,0.032529734,-0.000293128,-0.019303216,0.013194194,-0.007944961,-0.01726041,-0.02318196,-0.02576779,0.013911761,-0.017234553,-0.00318057,-0.015502047,-0.008979293,-0.0055175135,0.01892827,0.020234115,0.009554639,0.012605918,0.015967496,-0.005061761,0.026504751,0.010084734,-0.014260849,-0.023686197,0.0008921111,-0.010925129,-0.020867642,-0.038813297,0.014415999,0.030486928,-0.012392587,0.008455662,0.013523888,-0.03030592,-0.058284592,-0.00061211427,-0.016575165,0.017531922,0.007363149,0.019691091,0.0007644358,0.015333968,-0.006645581,-0.005042367,0.005333273,-0.015838204,-0.005931246,-0.009056867,0.015256393,0.013769541,-0.044631414,-0.008365158,0.0076152673,0.010272207,0.030202487,0.015385685,-0.0021042186,-0.007473047,0.010310994,0.0024290634,-0.005006812,-0.018010302,0.014920236,0.014144487,0.022328636,0.0051813554,0.013498029,0.0059344782,-0.027952814,0.0027781504,0.023673268,-0.019897956,0.013536816,0.027099492,-0.023543976,-0.0012953389,-0.01098331,0.026453035,0.0051490325,-0.002054118,0.0034456176,-0.009250805,-0.011254822,0.0029252195,0.02257429,-0.016381228,0.021876115,-0.0128257135,0.024177505,-0.00078908197,0.0118689565,-0.015398614,-0.0074924403,-0.018734334,-0.007977284,-0.009858474,0.007906173,-0.009748576,-0.005763167,0.014881448,0.01190128,-0.0333572,-0.0052912533,-0.030176628,0.02787524,-0.02971118,0.021035722,0.016122647,0.019380791,-0.029452596,0.0022254293,0.0010642303,0.039175313,0.009580498,0.0029171386,0.016898395,-0.0008614044,0.0069364873,0.0044023744,0.006144577,0.000755547,-0.037546244,-0.0026068392,-0.0017195765,-0.01150694,-0.016109716,-0.013795399,0.0017438186,-0.0034488498,-0.021656321,0.014829732,0.012896824,-0.035658587,-0.008177686,-0.0060799313,0.016872536,-0.02681505,-0.021604603,0.007835063,-0.004702977,-0.016782032,0.005265395,-0.16311412,0.020958146,0.008371622,-0.008313442,0.01819131,0.00825526,0.023699125,0.0072791097,-0.0027910795,0.00564034,0.023841346,-0.002569668,-0.018863626,-0.028056249,0.0043894453,-0.03426224,-0.013523888,0.009671002,0.0035652122,0.0008840304,0.017350914,-0.013653179,0.018436963,-0.028883714,0.017906869,-0.0025858292,-0.008753032,0.000202927,-0.009864938,-0.017674144,-0.009703324,0.004024197,0.022134699,0.02394478,0.023259535,-0.015385685,0.001589477,0.006729621,-0.00056928647,0.021914903,-0.0053720605,-0.011571586,0.007725165,-0.0003959551,-0.024229221,0.016782032,0.0051264064,0.011991784,0.006677904,-0.013691966,0.0023353272,-0.00961282,0.0013050358,-0.00696881,0.0067490144,0.012082287,-0.0029494616,0.04088196,-0.024940323,0.001228269,-0.0012056429,0.004399142,0.015269322,-0.016743245,-0.0036686454,0.002616536,-0.013950549,-0.01620022,-0.0333572,0.0017179603,0.0066908333,-0.000008465813,0.008927575,-0.0011207954,0.022108842,-0.0037688462,-0.021850258,-0.0062738685,-0.007479511,-0.009076261,0.0005729228,0.04894975,-0.0024274474,0.008869395,0.0016040222,0.00841041,0.0013106923,0.008403946,-0.005469029,-0.0034585467,0.0008387784,-0.022988023,-0.00818415,-0.018734334,0.02712535,0.011597444,0.003348649,-0.017493136,0.005097316,-0.0038916732,0.018217167,-0.008138898,-0.013291162,0.042614467,0.0145840775,-0.0035910704,-0.012347335,0.0028589575,0.03863229,-0.023957709,-0.0036815745,0.006012053,0.015062456,0.053681817,0.022975093,-0.0051458003,0.0023434078,-0.019755736,0.0033082454,-0.011196641,0.024953254,-0.00879182,-0.023996497,0.01819131,-0.00028807754,0.0003201984,-0.08528065,-0.0032306705,-0.027487366,-0.010621294,-0.0028912805,0.013717825,0.013239446,0.02831483,0.02227692,0.037546244,-0.023414684,-0.009224946,0.018346459,-0.0015046294,0.017221624,-0.03377093,-0.005026206,-0.019367862,-0.025134262,0.001498973,0.0045607565,-0.03700322,0.0046641896,-0.008287583,-0.031133385,-0.03405537,-0.032090142,-0.001014938,0.018074946,0.00006141345,-0.014312565,-0.010763515,0.00010767555,-0.04119226,-0.010647153,0.00004770148,-0.026840908,-0.011319468,0.02968532,-0.027383933,0.0070011327,-0.0022028033,0.007214464,-0.044579696,-0.0050455993,0.0047062095,-0.008190614,0.005792258,-0.006496896,0.0005939327,-0.028883714,0.0045445953,-0.009334844,-0.007944961,0.020557344,0.0057793288,0.008009606,0.021126226,-0.0044702524,0.009826152,0.03046107,0.014506503,-0.028961288,-0.004273083,0.014002265,-0.007679913,-0.01166209,-0.008507378,-0.015954567,-0.0030011781,-0.0029478455,0.028909571,-0.014480644,0.0068589123,-0.016264867,-0.00045332822,-0.017234553,-0.02486275,-0.001690486,0.0016266482,0.0015797801,-0.012295619,0.004295709,-0.013304092,-0.0025858292,0.015967496,-0.0106019005,-0.006684369,0.024772245,-0.03542586,-0.015980424,0.014377211,0.023608621,0.002152703,-0.01454529,0.0047094417,-0.025780719,-0.011235428,0.016381228,-0.013317021,-0.035270713,0.003380972,-0.057508845,0.031572975,0.011791382,-0.038994305,0.023815488,-0.010071806,0.020324618,-0.027590798,0.01785515,-0.0032743064,0.015243464,0.017350914,-0.0113582555,-0.011351791,-0.016316583,0.0010012008,0.023828417,0.0094447415,0.039666623,-0.007563551,-0.001421398,-0.03131439,-0.0088435365,0.017958585,-0.009813222,0.043105774,-0.024048213,0.013006722,-0.015876992,-0.017868081,0.021397738,-0.022651864,0.013155406,0.016730316,0.0044799494,-0.022186415,-0.008681922,0.034882836,-0.012664099,-0.0169889,0.0031175404,-0.025392843,-0.0045736856,0.010336853,-0.02620738,0.009554639,-0.00961282,0.017001828,0.01710526,0.00025999706,0.0061025573,0.025935868,-0.018372318,-0.010097664,-0.0075247632,-0.037623815,0.010433821,-0.021009862,0.018734334,-0.014778014,0.041735284,0.007531228,-0.017790506,-0.035658587,0.025405774,0.00985201,-0.017169908,-0.022677723,-0.0026197683,-0.02349226,-0.0031304697,-0.009464135,0.0009123129,0.0028282509,0.01892827,0.0071562827,0.023065597,-0.024681741,0.011170783,-0.00020949257,-0.0070657786,-0.01484266,-0.026297884,0.0059344782,0.01998846,0.0062189195,0.014131557,0.009748576,0.0017615962,0.0019555334,-0.013446312,0.020234115,-0.02455245,-0.000029999661,0.01622608,0.010782909,-0.008759497,0.015812347,0.0056661987,0.01159098,0.030228345,0.017790506,0.0010068573,-0.0036848069,-0.011565122,0.028676847,-0.010039482,-0.031159243,-0.0077639525,0.008539702,0.018579183,-0.019122208,0.012502485,0.014403069,-0.013717825,-0.022057123,0.00003742382,-0.021772683,-0.008151827,0.020880572,-0.014170345,0.0008185766,-0.0025502741,-0.020311689,0.018411105,0.020802997,-0.008513843,-0.007466582,0.0013365506,0.007608803,0.011022097,-0.008365158,-0.03317619,-0.015372755,0.004993883,-0.012237437,-0.014079841,0.035839595,-0.017997373,0.059784375,0.00043595466,0.009334844,0.004153488,-0.0032613773,0.026763333,0.006357908,-0.012127539,-0.0006290838,-0.032788318,0.0045478274,-0.0072920388,-0.008681922,-0.0094706,-0.016239008,0.004273083,-0.004050055,0.013459242,-0.021630462,0.0022141163,0.014118629,-0.023117315,0.025509207,-0.015127102,0.0054851905,-0.010925129,0.01296147,-0.011875421,-0.008604347,-0.031547118,0.020091893,-0.012967934,-0.015372755,-0.0009987765,-0.019626444,-0.03260731,0.01174613,0.018204238,0.02530234,-0.0039724805,-0.017389702,0.03426224,-0.002616536,0.0005684784,-0.029013006,0.011009169,-0.009502923,0.010336853,-0.048122283]},{\"id\":\"4be8c1d6-b86a-419c-839b-aaa6d3471e4f\",\"text\":\"I was trying to find the mobile version of this platform. do you have a mobile version as well?\",\"vector\":[-0.023517553,-0.0058826855,0.007590775,-0.011527954,0.0080590155,0.037380114,-0.015141981,-0.019903526,-0.0006998879,-0.011303726,0.0059980974,0.022158995,0.0008746538,-0.00048390366,0.0049824766,0.0101825865,0.01411317,-0.0050814007,-0.0024088016,0.004843983,-0.011712612,0.014284638,0.00433947,-0.009101016,0.0026017034,0.011798346,0.0027649282,-0.0029265042,-0.00026936203,0.00037075923,0.01520793,0.024467224,-0.025627933,-0.018716438,-0.005862901,0.013598764,0.009661586,-0.0017773361,0.0174634,-0.03677338,0.004939609,0.017423829,-0.002778118,-0.012952461,-0.021433553,-0.0061893505,0.005190217,-0.0022373332,0.01723917,0.024717832,-0.020101374,0.0078545725,-0.014799044,-0.0433947,-0.008428332,0.0030732416,0.0010708532,0.010993764,-0.0074193063,0.016922614,-0.024031958,0.019059375,-0.01404722,0.015023272,-0.025838971,0.011435624,0.011692828,0.0024219914,-0.003637109,-0.00673673,0.012629309,0.014930942,0.000028234583,-0.010103446,0.024612313,-0.019217653,0.0033106594,0.015366208,-0.0051506474,0.008270054,0.01618398,-0.027487706,-0.002387368,0.0028143902,-0.0046098623,0.018122893,0.015366208,0.027883403,-0.013044789,-0.01026832,0.0055001792,0.020048615,0.007940306,0.009839649,-0.021842439,0.009819864,-0.004161407,0.0112048015,-0.019375931,0.014034031,-0.022924008,0.011811536,-0.0055991034,-0.0106112575,-0.051493283,0.015788285,0.01741064,0.009219725,0.008441522,-0.018056944,-0.01617079,0.014746284,0.008362383,-0.015550867,-0.031893127,-0.031128112,-0.00594204,-0.016065272,-0.0229372,-0.022356844,-0.007228053,0.019125324,0.037670292,0.004623052,-0.0074127116,-0.031365532,-0.021196134,-0.030072922,-0.010743156,-0.023662642,0.02714477,-0.009602231,0.0013668011,-0.004161407,-0.010888245,0.023253756,0.0056947297,0.023464793,-0.016935803,-0.018571349,0.012853537,0.023675831,-0.0014409942,-0.00652899,0.012405081,0.0174634,0.02372859,0.000010742538,0.0007765541,-0.012517194,0.009259295,-0.020088185,0.010433193,0.0005490287,-0.0016413155,0.027540466,-0.009094421,0.017608488,-0.0017608488,-0.0065850466,-0.024150668,0.014680334,0.005371578,-0.008210699,0.024177046,0.03242072,0.0153925875,-0.015234309,0.008401953,-0.014838613,-0.033977125,0.029439809,-0.022211755,-0.017819526,0.0069180913,-0.009582447,0.03666786,0.0162895,0.005302331,0.0010403517,0.001734469,0.00256708,0.012985435,0.03044224,-0.0068719266,-0.007861167,-0.0052627614,-0.008797648,-0.014337398,-0.017845904,0.02269978,0.0067466227,0.0036667862,-0.005358388,-0.6445102,-0.0073929266,0.017977804,-0.003834957,0.026445705,0.019059375,0.00758418,0.0009455494,-0.05001602,0.01347346,-0.02276573,-0.00023082287,-0.016883044,-0.017727196,-0.020760868,-0.0043724445,0.008012851,-0.004998964,0.015062841,-0.017582107,-0.015141981,-0.002977615,-0.020971907,-0.00810518,-0.008342598,-0.005793654,0.013585575,-0.012081929,-0.0204575,0.034293685,-0.027962541,0.047773737,0.018742817,-0.004570293,0.02928153,-0.015366208,0.00036148512,0.014192309,-0.008738294,0.03788133,-0.035375252,-0.012398486,-0.0017641463,-0.00514735,0.000991714,-0.008164534,0.03463662,-0.0023708807,-0.005496882,-0.018215222,0.009951763,-0.0110201435,-0.0025126718,0.017793145,-0.00073863316,-0.013638334,0.022686591,-0.012530385,-0.01247103,0.023029527,-0.003679976,0.005849711,-0.013163499,-0.049119107,-0.012794182,0.014561625,-0.0029990487,0.00093153515,-0.010835485,-0.007821598,-0.016553298,0.014944132,-0.01948145,0.035216976,-0.011831321,0.013743853,0.024849731,0.005767274,0.013262423,-0.0031919505,0.01961335,-0.0034722355,-0.00021031674,-0.01940231,0.04956756,-0.003511805,-0.029598087,-0.021156564,0.011831321,-0.007768838,0.041653637,0.026590794,0.009127396,-0.042656068,-0.014838613,0.026261048,0.00673673,0.012649093,0.011119068,-0.014495676,-0.007709484,0.017845904,0.025390515,-0.026986491,0.01938912,0.015695956,-0.006578452,0.03025758,0.011066308,-0.02817358,0.008401953,-0.010604662,-0.009991333,0.0029380454,-0.0027880105,-0.024546364,0.01730512,0.023570312,-0.013301992,0.0036173242,-0.006720243,-0.023372464,0.0022488742,-0.0052067046,-0.0031342448,0.030969834,0.015669575,-0.009351623,-0.015366208,0.009081231,0.0043427674,-0.035375252,0.0056848377,-0.015841044,0.018980235,0.027276669,-0.0139021315,-0.019098943,0.009068041,-0.03447834,0.0072346483,-0.013011815,-0.0019900228,-0.038567204,0.008190914,-0.020417932,0.0018350418,0.006799382,-0.0050945906,0.011811536,-0.024071528,-0.0014121414,0.0024137478,0.01137627,0.004464774,-0.0025390515,-0.004115242,-0.017160032,-0.0049033375,-0.01634226,0.0046164575,-0.006512502,-0.018742817,-0.03788133,0.014614386,-0.004402122,-0.031101733,0.05523921,0.00621573,-0.025825782,-0.0076303445,-0.009892409,-0.015458537,0.020233274,-0.010532117,-0.015933372,-0.00038848314,-0.008804244,-0.025561985,-0.0037096532,0.01722598,0.0195474,-0.0022769028,0.006149781,0.018874716,-0.0038811218,-0.009298864,0.039701533,-0.033581432,0.027988922,0.002182925,0.0011425732,-0.014970512,0.007722674,-0.001357733,0.009899003,0.0029314505,0.025878541,-0.005167135,-0.00024937114,0.029809125,0.026735883,0.016091652,-0.012807372,-0.0011590605,-0.01305798,-0.0064762305,-0.018795576,0.020919148,0.013367942,0.0021796273,-0.01731831,-0.0019982667,-0.032156922,0.008085395,-0.0036502988,0.0030617006,-0.0027500896,-0.042919863,0.013341562,0.016869854,-0.0059288503,0.011699422,-0.021130186,-0.004016318,0.024467224,-0.00040043646,0.048063915,0.011574118,-0.017793145,-0.028331859,0.008863598,0.004718679,0.012345726,0.0062684896,0.0089163575,0.019217653,-0.014733094,0.021882009,-0.019916717,0.0067861923,0.023240566,0.03888376,-0.0064003887,0.034979556,0.030917075,0.009885814,0.004712084,-0.02933429,0.017054513,-0.014020841,-0.007907332,-0.014930942,-0.0037690077,0.02611596,-0.004369147,-0.004537318,0.01400765,0.02372859,0.0044054193,0.021116994,-0.0032232765,0.026577605,0.012161068,0.018584538,-0.00867894,0.00013571148,0.0042867106,0.0303631,0.0013123929,-0.010123231,-0.011758776,0.013572385,0.0010757995,0.008494281,-0.0031903018,0.009443953,-0.006670781,0.021882009,0.020286033,-0.0049659894,-0.025430085,0.025693882,-0.020985097,0.025957681,-0.016025702,-0.02495525,0.04033465,-0.005671648,0.027065631,0.01025513,0.024717832,0.0060277744,-0.013743853,-0.025166288,0.016790716,0.017872285,-0.024084717,0.029228771,0.02164459,0.0005688135,0.0073797368,-0.019784817,0.0038151722,0.034188166,0.0034326657,-0.00622892,-0.016579676,0.0002780179,-0.035401635,-0.020101374,-0.022541502,0.014838613,-0.008751485,-0.013849372,0.017529348,0.015353018,-0.0041680015,0.033871606,-0.014970512,-0.011943434,-0.022581073,-0.008441522,-0.012246802,0.06642423,0.018597728,-0.018307552,0.017001754,-0.02504758,-0.0032974696,-0.019112134,-0.029598087,0.00407897,-0.008626181,-0.035216976,-0.011501574,-0.019956285,-0.0074918508,0.0024417762,0.013849372,0.0116136875,0.011112472,0.0021153267,0.0066114264,0.0012785938,0.0023824219,-0.0033650678,0.010736561,0.043104522,0.008336003,0.019244032,0.00091587217,-0.006931281,-0.010195776,0.0003763237,0.020879578,-0.007003825,-0.0018927476,-0.007735864,0.03885738,-0.005605698,0.041759156,0.014680334,0.008415142,0.020404741,0.014495676,0.005559534,-0.02169735,0.0302312,-0.00053460227,-0.02376816,0.011231181,0.0033172544,0.00544742,0.034425583,-0.0033024158,-0.011264156,0.011264156,0.018742817,0.0041416218,-0.010505738,-0.005035236,-0.026261048,-0.01834712,-0.0036601913,-0.008580016,-0.013730663,0.0059783123,-0.0055859135,-0.022066666,-0.017648058,-0.002026295,-0.020140944,0.016962184,0.004623052,-0.021433553,-0.020444311,-0.0056419703,0.019929906,0.00038807094,0.0125106,-0.0010749751,0.017107273,0.041600876,-0.009338434,-0.046059053,0.015062841,-0.010644232,-0.027857022,-0.0053287107,-0.015920183,-0.008922952,-0.024480414,0.0259313,0.020787248,0.0139021315,0.025561985,-0.029914644,0.023029527,-0.028437378,0.009556067,0.010011118,-0.016368639,-0.0017080893,0.021248894,-0.02395282,0.0022158995,-0.029149631,-0.008751485,-0.013387727,-0.0010032551,0.027461326,-0.027065631,0.0007159631,-0.0034194759,0.01085527,0.0034524507,0.009035067,0.020417932,0.01141584,0.0017624975,0.021024667,0.007920522,-0.0010807456,-0.0039635585,-0.026735883,0.016118031,0.011758776,-0.0080985855,0.008276649,-0.0078941425,-0.033396773,-0.031022593,-0.0066971607,-0.0029133144,0.008514066,-0.0046296474,-0.004761546,-0.015893804,-0.003983343,0.014456106,-0.005338603,0.016065272,-0.021341223,-0.028569276,-0.009358219,-0.0070104203,0.008045826,-0.031180872,-0.024348516,-0.008500877,-0.0027500896,-0.022449173,0.0049692867,-0.011917055,0.036483202,-0.0014541841,-0.003264495,-0.034399204,-0.042497788,-0.01723917,-0.01727874,0.015326639,0.03041586,0.01940231,0.009305459,0.019270413,0.002082352,0.0019306685,-0.003910799,0.0005807668,0.01718641,0.013400916,0.034214545,0.046296474,-0.011699422,0.0069840406,0.018703246,0.010116637,0.015313448,-0.010136422,0.0021614912,-0.012068738,-0.004072375,-0.015695956,-0.009232915,-0.010248535,0.010446384,-0.016896235,0.002748441,0.0018383393,-0.010683801,0.023675831,0.0052198945,0.0112245865,-0.022541502,0.013354752,0.006031072,0.028964972,-0.019415502,-0.017674437,-0.033159353,-0.013546005,-0.0030930263,0.0024269377,0.0030056436,0.017938234,-0.010677206,-0.004781331,0.022053476,-0.03126001,-0.023741782,0.011290536,0.0027929568,-0.014693525,-0.017621677,-0.03379247,-0.01845264,-0.0072346483,0.030969834,-0.0035447797,0.0011112472,-0.00286715,-0.016962184,-0.024308946,0.017120462,0.003897609,0.027883403,0.03381885,0.0026132446,0.0016454373,-0.010848675,-0.007933712,0.0143505875,0.004220761,0.033053834,0.054500576,-0.022950388,-0.033766087,-0.0027385484,-0.005625483,-0.009866029,-0.038197886,0.0017987697,0.013730663,-0.008962522,0.0071093445,-0.0027995517,-0.0022653616,0.011917055,-0.016526917,0.003755818,-0.00981327,0.0014096682,-0.03337039,0.0303631,-0.012504005,0.01634226,0.020958716,0.011567524,-0.0114290295,-0.029941024,0.03474214,-0.0030666466,0.012662283,-0.0074127116,-0.024308946,-0.017793145,0.006819167,0.027434947,-0.010235346,-0.0141263595,-0.0042009763,0.024651883,-0.019323172,-0.0015827854,0.009384599,0.005651863,0.0020197001,-0.0030452132,-0.00012643734,-0.012833752,-0.006512502,-0.0055727237,0.030521378,0.016658816,-0.026142338,-0.022158995,-0.0047780336,-0.01841307,-0.0052957362,-0.0017624975,-0.008500877,-0.013968081,-0.03788133,0.0049198247,-0.01841307,0.025904922,-0.025430085,0.0020246464,-0.0024005577,0.01718641,-0.010875055,0.0034590457,0.0025687288,-0.004395527,-0.026392946,0.038619965,0.0141263595,-0.046322852,-0.010729966,-0.019956285,-0.033212114,-0.01519474,-0.0050286413,-0.0183735,0.003841552,0.015524487,-0.019929906,0.018307552,0.013994461,-0.02168416,-0.019362742,0.026089579,-0.014548436,0.026458897,0.03796047,0.014614386,0.009714345,-0.00435266,0.0013189878,-0.0074127116,-0.031945884,-0.008632775,-0.03242072,0.012438055,-0.021393983,-0.014864993,-0.015722334,-0.022198565,-0.005750787,0.007735864,-0.0147594735,0.012635903,0.022858059,-0.0010395272,0.021591831,0.01750297,-0.016052082,-0.014917753,-0.024506794,-0.01140265,-0.028806694,-0.02054983,-0.005272654,0.029650846,0.018136082,-0.004939609,-0.042893484,-0.0033667164,-0.040572066,-0.013348157,-0.009826459,0.015511297,0.015880613,-0.0073005976,0.020325603,0.059829287,-0.017384259,0.010380434,0.008863598,-0.023491174,-0.025904922,-0.0068719266,-0.02380773,-0.016632436,-0.020892767,0.0046791094,0.020193703,-0.014864993,0.012530385,0.03490042,-0.00433947,-0.007815002,0.003177112,0.0017690924,0.0162895,0.014179119,0.02714477,-0.025904922,-0.0041745966,-0.011752182,0.006591642,0.0019306685,-0.0040262104,0.0011252615,-0.012543574,-0.0025654314,0.01252379,-0.013249232,-0.0013173391,0.0044120145,0.013875752,-0.01940231,-0.0037195457,0.008784459,-0.01621036,-0.015273879,0.0038712292,0.029809125,-0.008632775,0.011514763,0.018175652,-0.020734489,-0.020905957,0.0011738992,0.013968081,-0.0057145148,-0.0058365213,-0.03334401,-0.020114565,-0.0084679015,0.00028420065,-0.0010766238,-0.010670612,-0.022343654,0.018782387,-0.0105914725,-0.02491568,0.012147878,-0.0024104503,-0.009503308,0.012906296,0.001072502,0.000336548,-0.0238473,0.0303631,0.010248535,0.032816418,0.007340167,0.21103805,0.005971717,0.0281472,0.024717832,0.004712084,-0.0003899258,0.007920522,0.001662749,-0.0025044282,-0.0030567544,0.005556236,-0.010861864,-0.005846414,0.0012142932,-0.0036140266,-0.015577246,-0.03888376,0.0035447797,-0.013519625,0.0024978332,-0.0047450587,-0.009490117,-0.034293685,-0.009430763,0.02491568,0.013255828,0.011112472,0.005737597,0.00405259,0.0004834915,-0.021037856,0.008606396,0.038408924,-0.0032249251,-0.012695258,-0.020747678,0.024190236,0.00037488109,0.021974336,0.03337039,0.012569954,-0.0064861225,-0.010017713,-0.029228771,-0.023425223,0.0007448159,-0.012985435,-0.003233169,-0.0034326657,-0.0025077255,-0.01949464,0.0065685594,0.060145844,0.012075334,-0.0077292686,-0.0014690227,-0.014785853,-0.018202033,-0.009298864,0.023240566,-0.013572385,0.008566826,0.003412881,0.016975373,-0.019956285,-0.0052363817,-0.0040558875,0.003233169,0.0043361727,-0.003828362,0.010472763,-0.005078103,0.0062322174,-0.013249232,-0.027408566,-0.022053476,0.026208289,0.045109384,0.026274238,0.022343654,0.0004070314,0.014785853,-0.00435266,-0.021367602,0.008375573,-0.006690566,0.009015282,-0.012029169,-0.006812572,0.0073005976,-0.00065042585,-0.01618398,-0.0141659295,-0.0103870295,-0.0021961147,0.016685195,-0.0026099472,0.025654314,0.011171827,-0.003923989,-0.007788623,0.020813627,0.04255055,0.010499143,0.010901434,0.00810518,-0.0112443715,0.01730512,0.0015531082,-0.00027678136,-0.002387368,-0.0248893,-0.0026758965,-0.00010953782,-0.002412099,0.008791054,0.015484917,-0.017582107,-0.009140586,0.00121182,0.009410978,-0.007782028,0.009767105,0.008718509,-0.009753915,-0.0054408247,-0.0038019824,0.0016833582,-0.02387368,-0.02928153,-0.00032562512,-0.002250523,0.021802869,-0.012108308,-0.008375573,-0.0070302053,0.015550867,-0.03149743,-0.024493605,-0.0091208005,-0.00405259,0.018492209,0.011290536,-0.003693166,-0.024493605,-0.02500801,0.0025192667,0.0099583585,-0.017212791,-0.013928511,0.010782725,-0.023148237,-0.0019784817,-0.013809803,0.038831003,0.003567862,-0.015867423,-0.012952461,0.03455748,-0.002573675,-0.009384599,-0.012114903,0.036456823,0.0053188186,-0.007478661,0.007069775,-0.16766973,0.017951425,0.035955608,-0.016883044,0.007847978,0.001171426,0.012728233,-0.013954891,-0.006571857,0.015590436,0.037221838,-0.005780464,-0.010578282,0.004003128,-0.007782028,-0.014284638,-0.020523451,0.001433575,0.008883383,-0.0006401213,0.026300617,0.017740386,-0.0139021315,-0.002623137,0.0023049312,0.03344953,-0.010241941,0.030811556,0.019705677,-0.029598087,-0.015643196,0.016038893,0.0057738693,0.003412881,0.0020312413,0.012774397,-0.020048615,-0.0055727237,0.0023214186,0.005539749,0.0056980276,0.036324926,0.013546005,-0.0053188186,-0.008190914,0.0248893,0.019191273,0.002001564,0.00570792,-0.019929906,0.015326639,-0.02599725,0.0069972305,-0.0050121536,0.027566846,0.014258258,0.028622037,0.0020807034,0.004985774,-0.0005799425,-0.017173221,-0.025825782,0.0061860527,-0.024295757,-0.034056265,-0.008421738,-0.0195474,0.003163922,-0.0063014645,0.009885814,-0.016474158,-0.013743853,0.023491174,-0.0069708508,0.022488743,0.0013371239,-0.029149631,0.0035381848,0.025087148,-0.006136591,0.023517553,0.03368695,-0.013433891,0.03793409,-0.017094083,-0.0028819884,0.0035151027,-0.00814475,-0.01843945,-0.0070631797,0.0110399285,-0.009575851,0.016460968,-0.030600518,0.020233274,0.01299203,0.0007798516,0.00040229128,-0.0053979577,0.000017981514,0.011501574,-0.01942869,0.003295821,0.019877147,0.023293326,0.0070104203,-0.0014525354,0.00069659046,0.031708468,-0.0006248705,-0.022304084,0.023979198,0.019745247,0.039675154,-0.004144919,0.0046164575,-0.0016380181,-0.029413428,-0.00081323844,0.014205499,0.052680373,-0.009872624,-0.023055907,0.02272616,0.028595656,-0.0033172544,-0.09370089,-0.04244503,0.005239679,0.0058958754,-0.015643196,0.041996572,0.0028127416,0.020378362,-0.01025513,0.029518947,-0.01244465,-0.02920239,-0.013836183,-0.003854742,0.013519625,-0.014390158,-0.0017954722,-0.0057738693,0.006172863,0.01722598,-0.006433363,-0.031180872,0.0009735779,-0.019164894,-0.026683124,-0.03925308,-0.016592868,-0.02164459,0.019771628,0.011719207,-0.0010626096,-0.034029886,0.0075709904,-0.013447081,-0.017555729,0.00040064254,-0.033845227,-0.0051737297,0.016948994,-0.035375252,-0.018043753,-0.024374895,-0.008725105,-0.03780219,-0.015656386,-0.018887905,-0.0052132993,0.007056585,0.016909424,-0.030837936,0.0037195457,0.0053946604,-0.012048954,-0.052759513,0.022871248,-0.0052792486,0.0014945781,0.006799382,-0.00543423,0.0058200336,-0.0033007672,-0.009912194,-0.012602929,-0.003096324,0.02053664,-0.014376967,0.011013549,-0.0037459254,0.0017690924,0.0016297743,0.01846583,0.018175652,-0.0195474,0.008784459,-0.035322495,0.0118577005,-0.011382865,0.0017163329,-0.0027088712,-0.03025758,-0.019982666,-0.003960261,-0.008573421,0.0011013548,-0.0058727935,-0.009298864,0.0061135087,0.0038151722,0.018043753,-0.060304124,-0.00121182,-0.008434927,0.014456106,-0.032473482,-0.020826818,0.003064998,0.005688135,0.0068587367,-0.00006739204,-0.012728233,-0.024335325,0.011864295,-0.05215278,0.023227375,-0.014020841,-0.0028473649,0.0007126656,-0.021895198,-0.0002934748,-0.010479358,-0.008045826,0.019863958,-0.020101374,0.02912325,-0.005813439,0.010941004,0.010525523,0.0019603458,0.015511297,-0.0040756725,0.035876468,0.02597087,0.006199243,-0.029861884,0.0303631,0.007228053,-0.019705677,0.038514446,-0.030758796,-0.0015019974,-0.017872285,-0.023491174,0.0043757423,-0.02262064,0.011462004,-0.004036103,-0.011303726,-0.03133915,-0.0042504384,0.040281888,-0.0059816097,0.02938705,0.001525904,0.00015085924,0.00917356,-0.012029169,0.019916717,0.018901095,-0.02269978,-0.0059651225,0.01136308,0.011870891,0.03658872,0.021934768,-0.0453468,-0.015273879,-0.011534548,-0.02387368,-0.010558497,0.007689699,0.01617079,-0.02056302,0.023161426,0.0032760361,-0.0007720201,-0.020338792,0.024493605,-0.0009834704,-0.0007176118,0.0043130904,0.008599801,-0.03017844,-0.007247838,-0.008204104,0.010822295,0.0042339507,0.013822992,0.03677338,-0.012787587,0.012312751,-0.015841044,0.027514087,0.004451584,0.02376816,-0.041970193,0.0022158995,0.011356485,0.009971548,-0.011798346,0.018267982,-0.010624447,-0.012972245,-0.03334401,0.01520793,0.002679194,0.026762264,-0.012088523,-0.0097737,-0.0053419005,-0.0004983301,-0.004570293,0.03234158,0.012734828,0.014640765,0.01621036,-0.00021186243,-0.025904922,0.03371333,-0.0013297047,-0.03344953,0.011257561,0.025350947,-0.013334967,0.0039173937,0.0048077106,0.0036535964,0.005559534,-0.005302331,0.015906993,-0.005559534,-0.048617892,0.010789321,0.012708448,0.012985435,0.014838613,-0.023886869,0.021367602,0.0018762602,-0.0058233314,-0.02933429,0.0028687986,0.0010551902,-0.008448117,-0.010083662,0.0041251346,-0.015709145,-0.010393624,-0.016408209,-0.010149611,-0.0032463588,-0.008599801,0.081935525,0.020259652,0.0017641463,-0.019916717,0.0044911536,0.03226244,0.010288105,0.0046626218,-0.0035645645,-0.008593205,0.00015374452,0.020299222,0.018980235,-0.028410997,-0.017252361,0.0049527995,-0.015049651,-0.0023395547,-0.023174616,-0.014878183,0.01508922,-0.0015902047,0.0041383244,-0.017608488,-0.019837577,0.022989959,0.0141263595,0.0061893505,-0.01737107,-0.02920239,0.023187807,0.0058068438,-0.031866744,-0.0061266986,0.035507154,0.01248422,-0.018162463,0.020840008,0.025073959,0.0025472953,0.006024477,0.029914644,-0.013348157,-0.013743853,0.0018680166,-0.026815023,0.02383411,0.0043097925,-0.015564056]},{\"id\":\"7010c8c8-fa92-42ce-99d6-df15511486c4\",\"text\":\"I want to cancel. How can I do that?\",\"vector\":[-0.013865142,-0.00685475,-0.0011057095,0.007438409,-0.023164775,0.00506162,-0.006893661,-0.015888494,-0.0090272585,-0.011608328,0.031154418,0.035460524,-0.0069390563,-0.010447496,0.012872922,-0.0059954743,0.02081717,-0.02216607,0.0023621975,-0.004024004,-0.030454027,0.013450096,0.0077561787,0.020765288,-0.011640754,0.0033495538,0.021115484,0.004925433,0.017846994,-0.014876818,0.0023930017,0.004241255,-0.016757498,-0.02014272,-0.011400805,0.0036575962,0.0034079198,-0.0031485157,0.006964997,-0.022490324,0.009539581,0.007289252,0.0021676444,-0.010142695,-0.01369653,0.02220498,-0.019312626,-0.0043741995,-0.021984488,0.013002625,0.017496798,-0.004254225,-0.01012324,-0.028612258,0.0016018195,0.009954628,-0.0021935848,0.017042842,0.012101196,-0.0031825625,0.006789899,0.0063716103,-0.021439739,0.009837896,0.009708194,0.005603126,0.00042720593,-0.00950067,-0.034734193,-0.014928699,-0.012684855,0.015966315,0.0063975505,0.000332564,0.0122827785,-0.0036673236,-0.0060668103,0.010214032,0.023865165,0.0044844463,0.012457876,-0.018184219,-0.01271728,-0.017885905,0.01898837,0.040518902,0.057743326,0.02413754,-0.012795101,-0.010823631,0.001728279,0.027911868,0.015966315,0.014786026,0.019247776,0.017146602,-0.0077367234,0.018547384,0.0077367234,0.005632309,0.008463055,0.00040957457,-0.01822313,-0.012548667,-0.009915717,0.0027140141,0.0064721294,-0.0314657,0.018508473,-0.022425475,-0.0031631072,0.02028539,-0.018547384,-0.051854856,-0.014747116,-0.014033755,-0.009066169,0.006848265,-0.046018265,-0.014734146,0.025836635,0.015797703,0.041167412,-0.008897556,0.026381385,-0.013787322,-0.01433207,-0.0133593045,0.00072025135,0.011452686,0.035486463,0.03128412,0.0015321047,0.0055901557,0.01761353,0.022503296,-0.024396945,0.036368437,-0.019208865,0.0030155713,0.0007044439,0.028404735,0.016666705,-0.013787322,-0.014487712,0.021063603,0.010356704,-0.013320394,0.013787322,-0.021452708,0.0045428122,-0.0021692656,-0.005262658,-0.016186807,-0.0042736805,0.008359293,-0.000729979,0.012263323,-0.0017671896,-0.021245185,-0.006776929,-0.006660197,0.02210122,-0.00014480011,0.021102514,0.031647284,0.012166047,0.009260722,-0.009922202,-0.0062127253,-0.022970222,0.025706934,-0.004199102,0.011031155,-0.018495504,0.01900134,-0.0046044206,0.005797679,0.013553858,-0.0029085672,-0.040311377,0.0040791277,-0.000020379932,0.034241326,-0.018793818,-0.01271728,0.01433207,-0.047963794,0.002117385,-0.016368391,-0.016511064,0.0016091153,-0.007179005,0.0022843762,-0.65950865,-0.018378772,0.008780825,0.013592768,0.02407269,0.028560378,-0.011167341,0.018521445,-0.02679643,0.009857351,-0.012483817,0.011083035,-0.007911821,-0.010564227,-0.015058401,-0.030869074,0.007321677,0.0032992943,-0.021089543,-0.007762664,-0.0062419083,0.014409891,-0.021245185,0.009487701,0.022049338,0.008962408,0.0018498746,-0.015551268,-0.010252942,0.011634269,-0.00944879,-0.005603126,0.0055577303,-0.006660197,0.042827595,-0.014539593,-0.016835319,0.017834023,-0.008274986,0.03393004,-0.040700484,0.0054734237,0.008249046,-0.022594087,0.02285349,-0.020505885,-0.01169912,-0.014591474,0.011802881,0.010149181,0.0010862541,0.028897602,-0.027367119,0.002647542,0.0015604771,0.010032449,0.031024715,-0.0069585117,0.012503272,0.016368391,0.0026021462,0.0064007933,-0.0016577535,-0.004711425,0.01564206,-0.005509092,-0.036290616,0.020661527,0.0041147955,-0.0016480259,0.020518854,0.002506491,-0.03587557,0.009267207,0.020038957,0.015084341,0.010590168,-0.027185537,0.012477331,0.009228297,0.019182924,-0.028923543,0.005625824,-0.009623888,0.0118482765,-0.022684878,0.0019293171,-0.022010427,-0.0034954685,0.0071141543,-0.0025745844,0.020479944,0.008450084,-0.027548702,-0.038884655,-0.013411186,-0.009332058,0.017418977,0.03333341,-0.0017396279,-0.004348259,-0.0340338,-0.0027091503,-0.019040251,0.04513629,-0.015343745,-0.01889758,0.0031566222,0.027029894,-0.029182948,0.023942987,0.014370981,0.009079139,0.011913127,0.011608328,-0.0201946,0.013255543,0.027211478,0.0123995105,0.011919613,-0.017444918,0.025149215,-0.0066796523,-0.0033463114,0.01434504,0.025123276,0.0126329735,0.034630433,0.0023605763,-0.014046725,-0.0028518224,-0.011024669,-0.0006825567,-0.012814556,0.00816474,0.028456617,0.014630385,-0.019364506,0.020570735,0.003722447,-0.0035311366,-0.018521445,-0.009176415,-0.023035074,0.02614792,-0.023242597,-0.027263358,0.014306129,-0.015953345,0.00946176,-0.0057295854,0.004510387,0.014539593,0.015810672,-0.0050032544,-0.0077691493,0.0003506007,-0.028352855,-0.024513675,-0.00358626,0.009137505,0.029805517,-0.022607056,0.010304823,0.0043450166,-0.0059533212,-0.0051459265,0.0037646003,-0.019948166,-0.03276272,-0.012438421,-0.021245185,-0.0027107715,0.0026086313,-0.008326868,-0.018391741,-0.00204767,-0.01273025,-0.009208841,0.005256173,0.019053223,0.0014194262,-0.012678369,0.022308743,0.009293147,0.014863848,-0.016407302,0.029597994,-0.03911812,0.02211419,-0.008450084,0.018339861,-0.009773045,0.00087386713,0.0035473495,-0.0018385256,0.00586253,0.012153076,0.014656325,0.011310013,0.02028539,0.011653723,0.032399558,0.033800337,-0.015525328,-0.0155123575,0.015603149,-0.0013318773,0.017237395,0.032944307,0.009837896,0.0043093488,-0.0110635795,-0.008307412,-0.008832705,-0.008871616,0.008216621,0.00944879,-0.0020249723,0.028352855,-0.0030723158,-0.0027496822,0.02343715,-0.029079186,-0.04422838,0.019844403,0.011984464,0.032944307,0.0070103924,-0.021141425,-0.026588907,0.0019017555,0.0016407302,0.012743221,0.02674455,0.029053245,0.015058401,0.007697813,0.032217976,-0.02416348,-0.0065402226,0.0146952355,0.010564227,0.003946183,-0.0010149181,0.0077561787,0.027548702,0.020337272,0.014137517,0.017198484,-0.03470825,-0.021789934,-0.017911844,-0.010064874,0.01372247,-0.028534437,-0.0024870357,-0.0030009798,0.025291888,0.020038957,0.023216655,-0.0030334052,0.03974069,-0.02343715,-0.012438421,0.004938403,-0.0046887267,-0.014163457,0.0019325597,0.0024708228,-0.018690057,-0.016394332,0.015149192,-0.00441311,0.0023735464,-0.007496775,0.017444918,-0.005249688,0.012269808,0.01564206,-0.011965008,-0.012996139,0.013540887,0.009727649,-0.019818464,-0.022386564,0.004341774,0.008605727,0.014565533,0.029079186,0.010045419,0.015032461,-0.015032461,0.0049870415,-0.026212772,-0.009124535,0.015992256,0.010460465,0.007438409,0.020985782,-0.005625824,-0.0009865457,-0.024293182,-0.03374846,0.004296378,0.031647284,0.0066212867,-0.023891106,0.00846954,-0.03395598,0.0021011722,-0.015330775,-0.00018320406,-0.0130091095,-0.007367073,0.01893649,-0.019792523,-0.015382656,-0.0012013647,-0.0024367762,0.0015377792,0.00017256444,-0.015369685,-0.019416388,0.07735427,0.018521445,-0.015188103,0.011990949,-0.024202392,0.0033527964,-0.012905348,-0.034319147,0.016783437,-0.029390471,-0.013307424,-0.003273354,0.01208174,-0.0015831749,0.015032461,0.019662822,0.019909255,0.0062127253,0.008333352,-0.022321712,0.018365802,-0.002490278,0.0007105237,0.04036326,0.017302245,0.039377525,0.04046702,-0.034371026,0.013787322,-0.020518854,-0.014007815,0.034241326,-0.0009468245,0.0078340005,-0.0008146906,0.036939126,0.00423477,-0.008132314,0.00652401,0.016199779,-0.000018796656,0.02679643,-0.009053199,-0.010492891,0.0076524173,-0.022529235,-0.011686149,0.008891071,0.004306106,-0.008255532,0.0054701813,-0.025668023,-0.04972774,-0.012898862,0.020479944,0.020466974,-0.013307424,-0.022282802,-0.014215338,0.015810672,-0.02473417,-0.0039202427,0.0039850934,0.0035149239,0.012509757,-0.020596676,0.0042898934,-0.000049980863,-0.0100973,-0.001982819,-0.005635551,-0.017444918,-0.039221883,0.024578527,0.01623869,0.017159574,0.0035959876,0.0052172625,-0.01042804,0.030557789,0.001323771,-0.018236099,0.014085636,-0.005415058,0.010194576,0.016796408,0.024409914,0.0142023675,-0.018054517,0.021776963,0.007302222,0.005155654,0.026212772,-0.014682265,-0.0019066192,0.024682289,0.0009581734,0.018456593,0.009552551,0.0043677143,-0.004494174,0.01498058,0.005223748,-0.011141401,-0.010337248,0.011770455,0.0070882137,-0.026874252,0.0014088878,0.0006914737,0.0034500728,-0.005450726,0.008294442,-0.00018512932,0.031751048,0.017367097,0.012127136,0.017885905,0.012607033,-0.017924815,0.011666694,-0.044773128,0.007451379,-0.0035116812,-0.03787298,0.0057879514,-0.020038957,-0.024967633,0.0064429464,-0.0025551291,-0.0056290664,0.02282755,-0.01893649,-0.017146602,-0.011322984,-0.009312603,-0.008171225,0.0114397155,0.0010465329,-0.014254249,-0.023774374,-0.0019358022,-0.023631703,0.012036345,-0.011147886,-0.024306152,-0.029572053,-0.0044909315,-0.022555176,0.025538322,0.0037937833,0.02224389,-0.023073984,-0.0042898934,0.004163434,-0.027211478,0.0006862046,-0.0044163526,0.025395649,0.013826232,0.016835319,0.0028437162,0.045188174,0.01105061,-0.008586272,-0.019118072,0.029105127,0.0015669621,0.0019601213,0.012334659,0.010557742,-0.0005309675,0.031569462,0.0036316556,-0.019818464,0.0098119555,-0.006660197,-0.0074254386,-0.012970199,-0.01634245,-0.0038845746,0.012976684,-0.010797691,0.012548667,-0.010077844,-0.0030090862,-0.009747105,0.033514995,0.02022054,-0.015278894,-0.0025907971,-0.0006404036,0.031180358,-0.007062273,0.025732875,-0.004383927,-0.020259451,-0.0003680294,0.008651122,0.00019982213,0.011990949,0.0036705662,-0.008521421,0.0037840556,0.0043741995,-0.006429976,-0.014941669,-0.007509745,0.0039623957,0.0039072726,-0.016861258,-0.019468268,0.002618359,-0.005911168,-0.0025810695,-0.012775646,-0.021582412,0.021634292,-0.0069260863,-0.038729012,-0.01900134,-0.01885867,-0.00059703446,0.016057106,0.012879407,0.007191975,0.004322319,0.011660209,-0.017431946,0.001598577,0.012191987,0.007898851,0.004195859,0.0032879454,-0.015564239,-0.015719881,0.0010773372,0.0005001633,-0.024617437,0.014059695,0.011595358,0.010693929,0.0037613576,0.012010404,0.00041869422,0.057120755,-0.0044747186,0.0034014347,-0.024409914,-0.0047989734,-0.036653783,0.020713408,-0.017898874,0.035408642,0.017094722,-0.005680947,0.0018320406,-0.029157007,-0.010233487,0.028430676,0.0040175193,0.027548702,-0.018054517,-0.015227013,0.00058568554,-0.032269854,-0.010687443,-0.018041547,-0.004990284,0.023748433,-0.015252953,-0.02798969,-0.024993572,0.0068677203,-0.0022454658,0.001406456,-0.021141425,-0.01304802,0.0048022163,-0.002052534,0.016952049,-0.0013553858,-0.022334682,-0.007678358,-0.016640766,-0.024993572,-0.031024715,-0.000905482,0.022023398,0.001987683,0.0057198578,-0.025006544,-0.0063683675,-0.0020784743,0.0006327025,0.005522062,0.03779516,0.025564263,0.010259427,-0.0022811338,-0.011121945,0.018819759,-0.02352794,0.015136222,-0.000098137796,-0.033566874,0.010233487,0.0019568787,-0.02022054,-0.03131006,0.021413798,-0.020544795,-0.0108884815,-0.018754907,-0.004169919,0.02282755,0.00096222665,-0.0074124685,-0.01238654,0.0071465797,-0.00013973363,0.021828845,0.01565503,-0.0013375517,0.0050583775,-0.025175156,-0.009805471,0.014578504,0.000665128,0.028404735,0.018456593,0.019403417,0.019610941,-0.02343715,0.0012735114,0.0011981222,-0.012211442,0.015551268,-0.019662822,0.011238677,0.020544795,0.008949437,0.01822313,0.023994869,-0.022671908,-0.009682253,-0.017302245,-0.04451372,-0.028145332,-0.019377477,-0.008365778,0.026264653,0.02028539,0.011828821,-0.022049338,0.0056906748,-0.02155647,0.0006278387,0.011588872,0.0066991076,0.02415051,0.011549962,-0.027496822,0.007049303,-0.0048703095,0.005308054,0.0003250656,-0.00005109549,-0.002005517,0.012393025,-0.012302234,-0.009351513,-0.024993572,-0.00022900508,0.016783437,0.019079162,0.031517584,0.014487712,0.0065629208,0.006306759,0.006731533,-0.011141401,0.00878731,0.005408573,-0.005492879,-0.012289263,0.020635586,0.007120639,0.0015669621,0.009896262,-0.0050518923,0.011666694,-0.02028539,0.01105061,-0.021647261,-0.010239972,-0.007166035,-0.0032895666,0.0033171284,0.017872933,-0.01044101,0.009286663,0.00054272177,-0.008015583,-0.023073984,0.0029182946,0.025395649,0.002718878,0.025706934,-0.020090839,-0.0027869714,-0.013437126,-0.0058430745,-0.018236099,-0.014526622,-0.031076597,0.019649852,-0.01835283,0.013216632,0.010778235,-0.007840485,0.022658937,-0.0060019596,-0.0017380066,0.009987053,-0.028171271,0.0122827785,-0.031776987,0.0061608446,0.019118072,-0.03131006,-0.019896286,0.023826255,0.0107133845,0.02150459,0.027963748,0.2382366,0.0036738089,0.01495464,-0.002761031,0.013138811,0.039688807,0.0053729047,-0.004750335,-0.016057106,-0.007950732,-0.02088202,-0.0030642094,-0.015343745,0.005551245,0.002282755,-0.030895013,-0.044669364,-0.027081775,-0.017146602,-0.019662822,0.024682289,-0.0007214673,-0.0033787368,0.0052399603,0.027133657,0.022762699,0.0040856125,0.01830095,0.024007838,0.0032166094,-0.016562944,0.007418954,0.00084549485,-0.00521402,-0.019649852,-0.0139689045,0.0065013124,-0.01631651,0.010927392,-0.0020914446,-0.0069974223,0.01896243,-0.01574582,-0.012827527,-0.008339838,0.019481238,-0.0060246573,-0.033904098,0.020894991,0.024345063,-0.027730284,0.017328186,0.038391788,0.030869074,-0.005155654,-0.004199102,0.012172531,-0.011686149,-0.012470846,0.0052464455,-0.01632948,0.014435831,0.012645944,0.007697813,0.0025032484,0.0042023445,-0.024358034,-0.0031647284,0.029079186,0.0017866449,-0.0011300286,-0.018638175,0.0011130052,0.030090861,-0.00849548,-0.0054183006,0.01273025,0.025577232,0.018677086,0.014020785,-0.027107716,0.021802904,0.0042088297,-0.014850877,0.012230897,-0.027600583,0.014228309,0.021971516,-0.021893695,0.007645932,0.014747116,-0.017354125,-0.018456593,-0.011485111,0.007243856,0.021543501,0.017509768,0.017367097,-0.004452021,0.013171237,0.0097535895,0.020700438,0.0018790576,-0.008210136,-0.011355409,-0.01041507,-0.0037419023,0.0002573774,0.00490922,-0.018002637,-0.008177711,-0.032088272,0.009332058,-0.0077367234,-0.014915729,0.0061900276,0.0053015687,0.011536992,-0.0035700472,0.004098583,0.018197188,-0.007840485,-0.01894946,0.004464991,0.010233487,-0.013041535,-0.017782142,-0.0070168776,0.00058771216,-0.03325559,0.012509757,0.030920954,0.023839226,-0.019131044,-0.020155689,-0.00067890884,-0.006452674,-0.014850877,-0.016485123,-0.020544795,-0.018599264,0.0034371028,-0.0048994925,-0.0077302386,-0.0024011082,-0.0228924,0.015434537,-0.01208174,-0.02343715,-0.025564263,-0.01756165,-0.025071394,0.0025097334,-0.019105103,0.02339824,0.01880679,-0.038780894,-0.023942987,-0.014474742,0.014163457,-0.012821042,-0.03073937,0.026355444,0.0019941682,-0.019870345,-0.020674497,-0.16446212,0.022931311,-0.0040791277,-0.015317805,0.014098606,0.02941641,0.022490324,-0.023035074,-0.008002613,0.010181606,0.022957252,-0.007179005,-0.0403892,-0.012315203,-0.0063975505,-0.010564227,-0.014370981,-0.007179005,0.008819736,0.018158277,0.01824907,0.010201061,0.0016010089,-0.0034435878,0.00780806,-0.00409534,-0.02739306,0.026355444,-0.015227013,-0.02547347,-0.017924815,0.0060538403,-0.010239972,0.009208841,0.021219246,-0.005732828,-0.010045419,-0.03190669,0.0043741995,0.019286687,-0.0019341809,0.0016974747,-0.009364484,0.021323007,-0.009572007,0.015758792,0.014591474,0.008365778,0.0017201726,-0.014798997,0.01893649,-0.027315238,-0.015343745,-0.010642048,0.0070298477,0.0035278942,0.018080458,0.008326868,-0.018521445,-0.013644649,-0.005933866,-0.019390447,-0.013865142,0.0039591533,0.0005864962,0.022036368,-0.0018920278,0.013112871,-0.028949484,0.015330775,0.0118482765,0.006835295,0.009786015,0.0068028695,0.021011721,0.011297043,-0.031413823,-0.0051037734,0.0100973,0.01241248,-0.005113501,0.02345012,-0.021958547,0.015239984,-0.013138811,-0.004983799,0.009831411,-0.01623869,-0.02542159,-0.0035311366,0.013955934,-0.006990937,0.01201689,-0.018067487,0.014837908,0.0086186975,0.018378772,-0.006712078,0.009747105,0.002897218,0.014046725,-0.009092109,-0.009332058,-0.0040791277,0.03704289,0.0005978451,-0.006611559,0.024643378,0.014176427,-0.00784697,-0.0009225054,0.00046935907,0.013579798,0.021660233,0.03123224,-0.019247776,0.01822313,-0.013955934,-0.010402099,0.008871616,0.050661597,-0.021258157,0.0077302386,-0.009863836,0.00037410916,-0.009079139,-0.09639452,-0.03263302,-0.011284073,-0.0068417797,-0.017172543,-0.015408596,-0.004205587,0.025395649,-0.002642678,0.029857397,-0.02294428,-0.03533082,-0.027133657,-0.020168658,0.0011851519,0.0026978015,-0.015097312,-0.002801563,0.0031014988,0.011219222,-0.021932606,-0.024383973,-0.0004551729,-0.009020774,-0.006134904,-0.021335976,-0.00850845,0.029727696,0.020518854,0.016134927,-0.024837932,-0.015175133,0.00028899225,-0.011018184,-0.0188457,-0.0017023386,-0.012075255,-0.020064898,-0.007036333,-0.038780894,0.008735429,-0.009429335,0.0011316498,-0.0520105,-0.016031167,0.003398192,-0.014215338,0.01893649,-0.0098703215,-0.0117315445,-0.017937785,-0.016459182,-0.027600583,-0.012464361,0.04503253,-0.010304823,-0.010486405,0.02014272,-0.032944307,-0.003923485,0.01898837,0.015979284,-0.022723788,0.027885927,0.0051718666,0.0028048055,0.00082441827,0.0048443694,-0.004750335,-0.004036974,0.00055528665,0.009228297,-0.028456617,0.022542205,-0.030791253,0.001305937,-0.021439739,0.0006801248,0.01766541,0.001587228,-0.0017153088,-0.021815874,-0.025966339,-0.01434504,-0.006553193,-0.004494174,0.0015612877,0.013891083,-0.022879431,-0.020583706,-0.00947473,0.040311377,-0.0077886046,0.0011632647,-0.0029636903,0.008022068,-0.008086919,0.00782103,0.01367059,-0.008488995,-0.009883291,0.0084760245,-0.044825006,0.014098606,-0.014435831,0.0006622908,0.00061203126,0.0045979354,0.02679643,-0.014967609,-0.022425475,0.011011699,-0.015499388,0.030817192,0.007983157,-0.0061446317,-0.03382628,-0.016083047,0.047756273,-0.010175121,0.010564227,-0.016264629,-0.022010427,-0.032399558,-0.0048054587,-0.008313897,-0.009844381,0.0023086953,-0.013735441,0.019364506,-0.023994869,-0.0051232288,0.018132338,-0.013865142,0.008255532,0.023463089,-0.016900169,-0.008767854,0.014487712,0.043087002,-0.010512346,0.00849548,0.0023686825,-0.018158277,0.024617437,-0.003309022,-0.008975377,0.0026880738,-0.021673203,-0.0017201726,0.009079139,0.0020541553,0.03504548,0.008566816,0.009539581,0.005291841,0.0077367234,-0.044773128,0.0093774535,-0.031413823,-0.02083014,-0.00089737563,0.024409914,0.007166035,0.025538322,-0.011874217,-0.02926077,-0.017639471,-0.0073994985,-0.00076118857,-0.024306152,-0.04765251,-0.0075940513,0.012801587,-0.0024513677,0.012036345,0.014928699,0.005496122,-0.01822313,-0.009630373,-0.011926098,0.009714679,0.04485095,-0.020959841,-0.020441033,-0.007295737,0.019131044,0.032269854,-0.004523357,-0.0068417797,-0.0013399837,0.01238654,-0.030376205,-0.005055135,-0.0019244533,-0.014111577,0.014928699,0.004954616,0.009915717,-0.008268502,-0.003362524,0.025927428,0.029105127,0.012561638,-0.0009573628,0.00077659066,-0.018015606,0.013748411,-0.010499376,-0.03066155,-0.014604444,0.014280189,-0.020622617,0.029105127,0.0077691493,0.0033852218,0.003398192,0.016562944,-0.010680959,-0.008229591,-0.029027306,0.036316555,-0.013086931,-0.0055544875,0.02669267,-0.0069390563,0.010862541,0.013839202,0.00006839753,-0.019623911,0.0027821076,0.020791229,-0.006050598,-0.014565533,-0.028897602,-0.020259451,0.0042315274,-0.01495464,-0.028612258,0.021167364,-0.017328186,0.04373551,0.0015402111,-0.012049315,-0.0084760245,0.027963748,0.010979273,0.039481286,-0.01573285,-0.0162776,0.007931276,0.0072244005,0.029494232,-0.008086919,-0.014033755,-0.0055317897,0.011679664,-0.013437126,0.017963726,0.017068781,0.011530506,0.02418942,0.0030593458,0.013566828,-0.010265912,-0.031776987,-0.01758759,0.013527918,-0.01367059,-0.006222453,-0.023553882,0.028560378,0.004429323,0.005846317,-0.017380066,0.0016577535,-0.005596641,-0.011108975,0.002188721,-0.015395626,0.023878137,0.017548678,0.01623869,-0.03325559,-0.015278894,-0.02612198,-0.029234828,0.0045201145,0.0068742055,-0.026614849]},{\"id\":\"7ef22295-e6d9-4b6a-a032-9cdb97aef913\",\"text\":\"A current counter as where the video is and current earned \",\"vector\":[-0.0368054,0.00022323769,-0.00715737,-0.015360817,0.00073423266,0.000018710673,-0.022504423,-0.032538507,-0.00811398,-0.014046339,0.032208167,0.01757685,-0.03129973,-0.013082847,0.013798584,-0.010763584,0.0055056694,-0.015044241,0.012435931,-0.009187586,-0.03297896,0.020068165,-0.026206987,-0.030831749,0.00056906254,0.00036346022,0.015952677,-0.024032246,0.0062282886,-0.011135217,0.0049654255,-0.0068579996,-0.0069371434,-0.023935897,-0.036530115,-0.0100272,-0.0032638297,-0.0139844,0.018815625,0.0043735662,0.018829389,0.016585829,-0.007645998,-0.009504162,-0.038374517,-0.015113062,-0.007556531,-0.0039916104,-0.013426951,0.02222914,-0.0011381251,0.002345071,-0.03892508,-0.024981976,0.010880579,-0.014356033,0.022353018,0.004349479,-0.0039778464,-0.012490988,0.00039206387,0.020591203,-0.013482008,0.010378187,0.004917251,0.0020267745,-0.022050206,0.02655109,-0.007205545,0.0025962673,0.014011929,-0.0054162024,0.004266894,0.0031915677,0.030556465,-0.017384151,0.0051959753,-0.00874025,0.026303336,0.018788097,0.010598414,-0.014300976,0.0076735266,0.0068683224,0.01375041,0.0023863637,-0.0017437488,0.014603788,-0.018953267,-0.019187259,-0.0036062135,0.024513993,0.024692927,0.0076597626,0.0073294225,0.027115421,-0.052221276,0.015773743,-0.018788097,-0.004597234,0.016916169,0.001784181,-0.013179196,-0.017466737,-0.015925149,-0.025945468,-0.022036443,-0.007212427,0.018925738,0.01599397,-0.016764764,0.011816543,0.016461952,-0.014590024,0.0031468342,-0.005140919,0.02288982,-0.0074945926,-0.02015075,0.00027915466,0.028189028,0.026468506,0.02750082,0.027294356,0.02733565,-0.018595397,-0.01615914,-0.0027752016,0.01942125,0.0009290817,0.032373335,-0.008595726,-0.0052716783,0.017714491,-0.026509797,0.025009504,-0.017549321,0.011389853,-0.000014355603,-0.012752507,0.00936652,0.014273448,-0.012160648,-0.0071986625,-0.024513993,0.013660942,-0.03198794,-0.0044010943,0.0032965196,0.002302058,-0.004707347,-0.0067513273,0.021637281,0.008754014,-0.0025119616,0.01507177,0.0087333685,-0.00038496673,0.00052561937,-0.0020887132,0.0015828799,0.014073867,0.0042496887,-0.026688732,0.016035262,0.0298132,0.017714491,-0.024445172,-0.019008324,0.0048897224,-0.000953169,0.028271612,-0.039888576,0.04027397,-0.015691157,0.00811398,0.0060906466,-0.003384266,-0.011589434,-0.0131860785,-0.00038862284,0.0029248868,0.014851543,0.024101067,-0.009875795,-0.019600183,0.038374517,0.0031932883,-0.0010185488,0.0019201022,-0.0048828404,0.004607557,0.005698368,-0.0101304315,-0.6686085,0.0027872452,0.0023588352,0.0030883364,0.024486465,-0.0021592546,0.0012817887,-0.00023313069,-0.012793799,0.01335813,-0.005223504,-0.011327915,0.008189683,0.017824605,-0.009091237,-0.019159729,0.014066985,-0.008485613,0.010701645,-0.011403617,-0.02199515,0.016517008,-0.021417053,0.029345218,0.004524972,-0.0013118978,-0.0021128007,-0.0005084142,-0.010474536,0.016035262,-0.006207642,0.012215704,0.02054991,0.007556531,0.03977846,-0.04277905,-0.0003337812,0.002618634,-0.011837189,0.03198794,-0.030859277,0.0100272,0.028381726,-0.01757685,-0.012903913,0.00164912,0.014342269,-0.0022177524,0.006568952,-0.02684014,-0.015581044,-0.020770138,-0.005922036,0.0064966897,0.0016052467,0.021623516,0.03308907,0.008857246,-0.0031485546,0.0025085206,-0.022958642,0.0032414629,-0.02832667,-0.018994559,-0.021472111,0.0004426042,-0.0054299664,0.01028872,0.016255489,-0.0048243427,0.016186668,0.017081339,-0.020481091,0.017879661,-0.0064209867,0.00032345808,0.026454741,-0.036585175,-0.011300387,0.026083108,0.006875205,-0.012869502,-0.0059013893,0.015278232,0.0034909386,0.010330012,-0.01698499,0.017108867,0.019971816,0.017177688,0.015058006,-0.0033791047,0.0032621091,0.007941928,0.00148395,0.022146555,-0.025601363,-0.003205332,0.008389263,0.010577767,-0.026468506,-0.0016344956,-0.02149964,-0.0066377725,0.036364947,0.00940093,-0.0021300057,-0.005653634,0.025092088,-0.039668348,-0.012752507,-0.020260863,-0.0087196035,0.008981124,-0.012972734,-0.035786852,0.037713837,0.003028118,0.0071160775,-0.003650947,0.02390837,0.0011071557,0.012786917,0.0076804087,-0.0039847284,0.03859474,0.018210001,-0.014300976,-0.007990102,-0.0025308875,0.007639116,-0.013296192,0.014108278,-0.0014366356,0.01240152,0.009710625,0.023825785,0.0025635774,-0.011093924,-0.020866487,0.005808481,0.0009979026,0.013674706,0.009449105,-0.008065806,-0.012043652,-0.014259684,0.0023605558,-0.011665137,0.01391558,-0.005959887,-0.0067203576,-0.022119027,-0.000715737,0.0026289572,0.004590352,-0.024293765,-0.009270171,-0.0075083566,-0.023633085,-0.0015992249,-0.009476634,-0.013791702,-0.0010030641,0.014356033,0.004428623,-0.005942682,-0.005863538,-0.0075840596,-0.019008324,-0.0055056694,0.018044831,-0.017631907,0.015085534,0.013784819,0.020632496,-0.0055125514,-0.004776168,0.0032466245,-0.016737236,0.0074877106,0.010646588,-0.019338664,-0.0102405455,-0.006813266,0.011844072,0.004046667,0.021637281,-0.00679262,0.0011604918,0.00907059,-0.0037954708,-0.030556465,0.0051133903,-0.01108016,0.0033034016,0.009132529,0.004858753,0.016007734,0.009806974,0.02054991,0.012229468,0.019999344,-0.0054162024,0.004370125,-0.0401088,0.01203677,-0.034382906,0.044706035,0.036557645,0.018843153,-0.019875467,0.00428754,-0.0054230844,0.010350659,0.029675558,-0.011204037,0.014824015,0.0014409369,-0.010261191,-0.011506849,-0.012518516,0.00027915466,-0.022848528,0.008347971,0.014824015,-0.0015243822,0.029785672,-0.011107688,-0.020453561,-0.012828209,0.0003499111,0.010612178,0.018650455,0.0034685717,-0.005891066,0.021361997,0.010261191,0.028739594,0.03281379,-0.019379957,0.023770727,0.004290981,-0.020095693,0.01523694,0.0005299207,0.037879005,-0.0021265647,-0.015181883,0.004992954,-0.0068579996,0.010040965,-0.030694107,0.018815625,-0.007398243,-0.01975159,-0.0025635774,-0.0037645015,0.018430227,0.03179524,-0.013227371,-0.0012078062,-0.004428623,-0.008630137,-0.00095919083,0.02104542,-0.028120207,-0.011252211,0.0038608506,-0.014934128,0.008306678,0.0014159894,0.012435931,0.027101658,0.025821589,-0.009442223,0.0016250327,-0.0047486397,-0.0087471325,0.0035993312,-0.014369797,-0.035704266,0.013096611,-0.0028440224,-0.018911975,-0.019503834,-0.0078111687,-0.009593629,-0.0073294225,0.0054471716,-0.012711214,0.016104084,0.00048303645,-0.0017093383,-0.0013161991,0.00009591909,0.018595397,-0.003967523,-0.010577767,-0.010006554,0.012855738,-0.008898539,-0.016695943,-0.017177688,0.019049617,0.010508946,0.013227371,0.0012146883,-0.034823358,0.015966441,0.003723209,-0.00013731913,0.004707347,0.0014891116,0.016090319,0.020026872,-0.0019958052,-0.033914924,0.03242839,0.026991544,-0.027941272,0.009249524,-0.043081865,0.0017196614,0.06942649,-0.008251622,-0.020660024,0.027514582,-0.029703086,0.0011862997,-0.030033426,-0.00017818152,0.009511044,0.0063968995,-0.009118765,-0.009710625,0.018086124,-0.014548731,-0.0061732316,-0.00890542,0.012291407,-0.021843743,0.022628302,-0.007721701,0.0045387363,-0.0023622762,0.026440978,0.025972996,0.0058222455,-0.0018495608,0.019352429,0.017769547,-0.0049757487,-0.003017795,0.0025308875,-0.003043603,-0.0011217801,0.0025171232,-0.010825522,0.024293765,0.0027304678,0.052056104,0.015058006,-0.0012490987,-0.009855148,0.014713901,0.0017222422,-0.011121452,0.007315658,-0.0017575129,0.013846759,0.004762404,0.020398505,0.009497279,0.03047388,0.006355607,-0.0021936651,0.009490398,-0.0116376085,-0.0054471716,0.0030711312,0.012518516,-0.009903323,-0.030336238,-0.029703086,-0.01830635,0.0051305955,0.0030418823,0.0075840596,-0.017136397,-0.0050411285,-0.025862882,-0.010034082,-0.0034444844,-0.026248278,0.0017136396,-0.041375104,-0.0074051255,-0.009160058,-0.007707937,0.026179457,-0.01929737,0.0031605982,0.0031433932,-0.009063709,0.006032149,-0.016764764,-0.00017689113,-0.007935046,0.024500228,0.0035580387,0.0043976535,-0.013316838,0.008258504,0.015925149,-0.012043652,0.050982498,-0.011844072,0.0074877106,0.015085534,0.02496821,0.011967949,0.013020908,-0.012793799,0.021293176,-0.030721635,-0.008485613,0.018980796,0.012683686,0.004050108,0.025505014,0.03234581,-0.00778364,0.010839286,-0.0035373925,0.0022332373,0.017700726,-0.012607983,0.033832338,0.008595726,0.0042634527,0.0010968326,-0.008809071,-0.022119027,0.0078111687,-0.018980796,0.023357803,-0.00090843544,0.017260274,0.0044940026,0.00484843,-0.0158288,0.0022039884,0.009765681,0.0024758307,0.013082847,-0.015126826,-0.036887985,-0.029042406,-0.025780298,-0.023495445,0.018499048,-0.011231566,0.0065483055,-0.019572655,-0.008726486,-0.010612178,-0.014122042,0.011603198,-0.026372157,-0.011121452,0.015649864,0.010983811,0.006372812,0.012256997,0.00008694011,-0.03295143,-0.011341679,0.012745624,-0.010247427,-0.044155467,0.0129107945,0.0384571,0.01814118,0.027253063,-0.014039457,0.0010486579,-0.00007263827,0.015002949,-0.009146294,0.0040810774,-0.014039457,-0.038704857,0.008230976,0.033557054,-0.008141508,0.0051237135,-0.011520613,0.01540211,0.023454152,-0.010729173,0.0029042405,-0.027101658,-0.0035442747,0.011293504,-0.026096873,-0.020274628,-0.0102543095,-0.026578618,-0.02572524,0.023261454,-0.0050273645,-0.0058738613,0.00827915,0.018182473,-0.010206135,0.023564264,-0.003107262,0.006572393,-0.004604116,-0.02546372,-0.019682769,0.015030477,0.024816805,0.0031502752,0.014934128,-0.016750999,-0.0059082713,-0.013509536,0.025739005,-0.0056261057,-0.03564921,-0.009318345,-0.01127974,-0.0027390704,-0.030116012,0.006568952,0.001332544,0.008781543,0.016049026,-0.0101441955,-0.001692133,-0.002100757,-0.013055319,0.0065276595,0.0043425965,0.015360817,0.010680999,0.022642065,0.01847152,0.016104084,-0.0032861964,0.004610998,0.0025171232,0.008513141,0.03363964,0.025436193,-0.010178606,-0.0073500685,0.021059185,0.0053611454,-0.012986498,-0.0331166,0.015347053,0.02806515,-0.008299797,-0.0351537,0.004026021,-0.010887461,0.017673198,-0.013248017,0.0029541356,-0.009614275,-0.006021826,-0.038099233,0.025381137,0.000029894065,0.024692927,0.0032758734,-0.005450613,-0.01880186,0.0061388216,-0.013454479,0.022642065,0.0058256863,0.011300387,-0.0048862817,-0.0014977141,0.005550403,-0.008265386,0.0013248017,-0.0075083566,-0.006668742,0.026358392,-0.02021957,-0.0020629056,0.025959231,-0.018265057,0.020728845,0.002054303,-0.014507439,-0.051698234,-0.0010839286,-0.012656158,0.012780035,-0.0046385266,-0.01108016,-0.010646588,-0.0013772777,0.015140591,-0.03650259,0.009524808,0.044898733,-0.038236875,-0.003057367,-0.0003881927,0.008375499,0.004820902,0.010481418,0.008100216,0.024266237,0.00001168073,-0.033226714,0.000514436,-0.021788687,0.005068657,0.0030556465,0.0040294616,-0.009662449,-0.027762339,0.032731205,-0.021293176,-0.009965261,-0.022807235,-0.023990955,-0.010391951,-0.0019527922,0.006032149,-0.022008913,0.0070954314,-0.0013858802,-0.046908304,-0.0038780558,0.01144491,0.014479911,-0.005667398,0.034548074,-0.004910369,0.01715016,-0.011727076,-0.0064072227,0.007611588,-0.011651373,-0.022821,0.017604377,-0.003967523,-0.018829389,-0.02156846,-0.008251622,0.00046497097,-0.02288982,0.019944288,-0.01424592,-0.003640624,0.0024620665,0.0021902241,-0.011204037,0.0033188863,-0.02846431,0.009325228,-0.0021558136,-0.016778527,-0.03892508,-0.015883856,-0.027858688,0.008981124,0.010495182,-0.01731533,0.001507177,-0.015388346,-0.020343449,-0.0102130165,0.011665137,0.030556465,0.00048819804,0.01375041,-0.00023850732,0.027955037,0.0033567378,0.005722455,-0.022573244,0.014686373,0.011995478,-0.006909615,0.0008671429,0.003399751,-0.00712296,-0.02463787,0.00046325047,0.013509536,0.005653634,0.01566363,-0.03363964,-0.021595988,0.006207642,0.004201514,0.007480828,-0.0023829225,0.006290227,-0.009442223,-0.0050204825,-0.0022022678,0.02589041,-0.003028118,-0.0024655075,-0.00056734204,0.0019287048,-0.011300387,-0.019930523,0.00040948417,-0.017301567,-0.0079144,0.013475126,0.005884184,-0.0075978236,0.004046667,0.038016647,-0.025739005,-0.0068924096,0.03275873,-0.043191977,-0.0065414235,0.0070334924,-0.0046350854,0.009813855,-0.02579406,0.016750999,-0.0158288,-0.006964672,0.015649864,-0.017714491,-0.022793472,0.025532542,0.022339253,-0.023756964,-0.0016018057,-0.0019613947,-0.008898539,-0.0026272365,-0.01962771,0.0043804483,0.0055951364,0.0063039917,0.006427869,0.011128334,-0.024761748,0.0068098246,0.024211181,-0.015002949,0.0073431865,0.23894605,-0.00022280756,-0.023206396,0.050184175,0.02770728,0.023233924,0.0149066,0.0012052255,-0.012429048,0.013089729,-0.017081339,0.014356033,-0.013385659,-0.016076555,-0.014727666,-0.012050534,-0.012456577,-0.012318935,-0.02915252,0.00405699,0.013798584,0.016709706,0.0088297175,-0.026688732,-0.0018375171,-0.037080683,0.021816215,-0.003943436,0.020302156,0.0033498558,-0.039530706,0.0028078915,0.008251622,-0.014755194,-0.02763846,0.009414694,-0.0025979877,-0.007879989,0.023371566,0.04016386,0.017659435,0.004672937,-0.01424592,-0.0011028544,0.02714295,0.019806646,0.0042256014,0.00012936172,-0.01315855,0.006493249,-0.025312316,0.0058945073,0.02265583,-0.003995051,-0.016117847,-0.016847348,0.018031068,0.0035373925,-0.012690568,-0.003654388,0.0035545977,0.021940092,-0.02364685,0.014066985,-0.033832338,0.016943697,-0.009056826,0.012160648,0.003492659,-0.017535556,0.0022280756,-0.015030477,-0.015608572,-0.002219473,-0.02090778,-0.011919774,0.011981713,0.011816543,0.03245592,0.021912564,0.0075840596,-0.015980205,-0.01988923,-0.017356623,-0.00040324728,-0.03697057,0.011307268,-0.01972406,-0.010364423,0.0004959404,-0.011823425,-0.0053473813,-0.021788687,0.012263878,-0.0068717636,-0.01127974,0.008286033,0.016200433,0.016517008,-0.01111457,-0.003096939,0.031217145,0.017301567,-0.01474143,-0.0129933795,0.000031426403,-0.0019527922,0.0037817066,0.0009402651,-0.029840728,0.008547552,-0.031024447,0.012635511,-0.020095693,-0.0065930393,0.017012518,0.0010073654,-0.011087041,-0.006971554,-0.0011553303,-0.009517926,-0.009111883,-0.0055676084,-0.0012439372,0.004383889,-0.03215311,0.00003513628,0.0037094448,-0.03014354,-0.030226124,0.010536475,-0.024486465,0.0052510323,-0.02156846,-0.019379957,-0.0034117945,0.013426951,-0.018746804,0.00051357574,0.014700137,-0.018347643,0.0015562118,0.0032793144,-0.013495772,0.008230976,-0.04043914,0.014259684,0.017714491,0.0051890933,-0.009841384,-0.01315855,-0.0071642525,-0.006568952,-0.005608901,0.020192042,0.0035890082,-0.019338664,-0.026757553,0.004211837,-0.006575834,-0.0060011796,-0.012284525,-0.0058188043,-0.017604377,-0.02265583,0.011947302,-0.17904437,0.008788425,0.020288391,-0.009593629,0.003466851,-0.007233073,0.013537064,0.020618731,-0.031850297,0.014755194,0.026730025,-0.004765845,-0.018677983,-0.017686963,0.0129245585,-0.0009979026,-0.027776102,0.016283017,0.027101658,0.017659435,0.040329028,0.0019889232,-0.0047279936,-0.007838697,-0.006186996,0.019145966,-0.014011929,0.034603134,0.028354198,-0.007150488,-0.0037817066,-0.022421839,0.0115550235,0.006589598,-0.0014331946,0.010894343,0.003327489,-0.001823753,0.010660352,0.008520023,0.008175919,0.007714819,-0.0011518892,0.015952677,0.0087746605,0.017246509,0.007054139,-0.0037507373,0.005729337,-0.019104673,0.023756964,-0.020797666,0.005959887,-0.009738153,-0.0015312643,0.009421577,0.0076872907,-0.010632824,0.0023141017,-0.022876056,0.006679065,-0.026592383,-0.033254243,-0.020164514,-0.0014374958,0.011548142,-0.023550501,0.01474143,-0.009008652,-0.0065276595,-0.012607983,-0.013660942,-0.00824474,0.013722881,-0.0026496034,0.0027149832,-0.013722881,0.014824015,-0.0026289572,0.010605296,-0.008134627,0.04844989,-0.02182998,0.018182473,0.010680999,-0.014631316,0.009166939,0.022504423,-0.0010004834,-0.02733565,0.020164514,-0.022008913,-0.0066068033,-0.009118765,0.01269745,0.01540211,0.0020990365,0.0031175853,0.0087196035,-0.024348823,-0.013509536,0.004586911,-0.022944877,0.042366125,0.014259684,0.0051374775,-0.0015209412,0.030446352,0.04280658,-0.001705037,-0.02100413,0.003647506,0.005698368,0.010405716,0.016090319,-0.008134627,-0.021128006,-0.012394638,0.020026872,-0.0062351706,0.06061742,-0.007969457,-0.024390114,0.009270171,-0.014507439,-0.028519368,-0.105323456,-0.021155534,0.02480304,0.016172905,0.0033911483,0.02556007,0.0058256863,0.014383561,-0.0062420527,0.022421839,-0.0015553517,-0.050349347,-0.005467818,0.025972996,0.008513141,-0.008416792,0.023674378,-0.0087058395,0.0060631186,0.03746608,-0.011321032,-0.009621157,0.015415874,-0.02407354,-0.0062317294,-0.022132792,-0.0029661793,-0.0023657172,0.0029919872,0.01091499,0.025408665,-0.0052785603,0.0036991215,-0.0117477225,-0.019517599,-0.013874287,-0.0049378974,-0.011527495,0.02100413,-0.041567802,-0.00451809,-0.009332109,0.011204037,0.009600511,0.0027528347,-0.0019837616,-0.017370386,0.025739005,-0.0022005471,-0.028739594,-0.007900636,0.001569976,-0.0131310215,0.0029007995,-0.00029141337,-0.021953857,0.023633085,0.027280591,-0.013110375,-0.0007690732,-0.017466737,0.0029799435,-0.012078063,0.008471848,0.012711214,-0.0035167462,-0.026853902,-0.0101992525,0.018664218,0.0014383561,-0.0025343285,0.025683947,-0.018443992,0.022256669,-0.034190208,0.0014719063,0.007921282,-0.013151668,0.01873304,0.001388461,-0.02832667,-0.011630727,-0.005412761,-0.014356033,0.021100478,-0.01223635,-0.008485613,0.01988923,-0.0034685717,-0.03163007,0.006094088,0.027032837,0.0029524153,-0.019779118,-0.011190273,0.009442223,-0.0025016386,0.0054334076,0.006582716,0.02100413,0.01757685,-0.016874876,-0.051918462,0.013564593,-0.007219309,-0.0057671885,-0.007233073,0.005729337,0.007556531,-0.02071508,0.006823589,0.011073277,-0.008341089,-0.00039120362,-0.014383561,0.003740414,-0.009855148,-0.02737694,0.010708527,0.0020715082,-0.0033687814,0.0016387969,-0.0031416726,-0.004686701,0.0043735662,0.01909091,0.0010675837,0.015512223,0.008375499,0.0046454086,-0.009758799,-0.01573245,0.016269254,-0.0036337418,0.011768368,0.039750934,0.016090319,0.012373992,0.021430818,0.033171657,0.031162089,-0.025931703,-0.012133119,-0.024926918,0.007852461,-0.0013334043,-0.0054265256,0.01028872,-0.006679065,-0.011045749,-0.00020882832,0.035676736,0.004039785,0.017287802,0.0008826276,-0.01220194,-0.023660615,-0.0017153601,0.020302156,0.006214524,0.0070334924,-0.040962182,0.01995805,0.008754014,0.03096939,0.002665088,0.028684538,0.0063900175,-0.025215967,-0.0004413138,0.009703742,-0.014700137,0.023467915,-0.015746215,-0.009359638,0.015415874,-0.007009405,-0.009407813,0.0025635774,0.015099298,-0.0040673134,-0.00022044184,0.02862948,0.012181293,-0.008547552,0.0024844334,0.037383497,0.022518188,0.0072468375,-0.00068562786,0.009249524,-0.0059082713,-0.013901815,0.0005269098,0.017095104,-0.016640885,0.014590024,-0.009497279,-0.018953267,0.0045593823,0.0018065477,0.028436782,-0.0025377695,0.006334961,-0.010082257,-0.009118765,0.022862293,0.032180637,-0.010832405,-0.023041226,0.011548142,0.006830471,-0.00014334096,0.00093424326,-0.007002523,0.016420659,-0.032510977,0.018719276,-0.0014942731,-0.029097462,-0.03179524,0.0129245585,0.01012355,-0.015140591,0.00034948098,-0.0066171265,0.03014354,0.0076528806,-0.00017785894,-0.0007200383,0.019641476,0.006895851,0.015140591,0.021306941,-0.0063865767,-0.032566033,-0.010859933,-0.014025693,-0.040604312,0.025202202,-0.031189617,0.08550305,0.02529855,-0.019600183,0.0064588385,-0.013757291,0.009345874,0.024362586,0.0029524153,-0.024018483,-0.0191322,0.003255227,-0.007370715,-0.017920954,0.00014839499,-0.00053078093,0.0045628236,-0.004370125,0.021981385,-0.025477486,-0.010742937,0.0009402651,-0.024417644,0.024169888,-0.019847939,-0.010777348,-0.000025821268,0.0036715933,-0.0065311003,-0.02799633,-0.045229074,-0.0068717636,0.006056236,-0.02348168,0.007941928,0.002697778,-0.0054162024,0.0033791047,0.0041705444,0.012029887,0.019545127,0.003103821,0.0263171,-0.009655568,-0.0007307916,-0.016874876,0.003960641,-0.026330864,-0.0009402651,-0.037521135]},{\"id\":\"1dc1ce67-b4ad-487c-9096-fdd0eefc7cb9\",\"text\":\"Swimsuit was too big, couldn’t wear to take photos to post on vacation :(\",\"vector\":[-0.010602132,0.011729743,0.021178342,-0.0068823136,-0.0030166826,0.032895125,-0.019324914,0.0034865204,0.019960005,-0.04326396,0.00037708532,0.03268775,0.01132147,-0.020854317,-0.00021486978,0.0036128906,0.025286993,-0.004218819,0.012086172,-0.02290216,0.010634535,0.010310509,-0.014671899,0.017302992,-0.012876796,-0.016564213,0.028643904,-0.018936083,0.0028546695,-0.010731743,0.038986813,-0.017510368,-0.040101465,-0.036290918,-0.027270032,-0.006940638,0.004014683,0.0013884517,-0.0049446374,-0.02898089,0.0047437414,0.0038526698,0.0010555149,0.01193712,-0.017938083,0.030328838,0.0037781438,-0.009286587,-0.006393034,0.014516368,0.0076923785,-0.007828469,-0.03071767,-0.021359798,-0.021930084,0.00061281427,0.009312509,0.009267145,0.0089107165,-0.0075562876,0.0122481845,0.005835709,0.009215301,0.01616242,-0.009007924,-0.030847281,-0.014788549,-0.0029129942,-0.004014683,0.01617538,0.031391643,0.010556769,0.016486445,-0.0033342282,0.005233021,-0.018365797,0.021852316,0.0074007553,-0.002922715,0.0070572877,0.025559176,-0.007925677,0.00410541,0.007996963,0.032895125,0.031417567,0.0016946563,0.00833395,-0.00883295,-0.010038327,0.012325951,0.0313398,-0.023718707,-0.0029810397,-0.017354835,0.0072711445,-0.0029146143,0.029447488,0.0017951044,-0.023524292,0.01106225,0.016227225,-0.026297955,-0.010310509,-0.0107187815,0.0011891756,-0.023939045,-0.0014832292,0.020452525,-0.023239149,-0.013959043,0.028125461,0.0074201967,-0.010142015,-0.009020885,-0.005433917,0.02152829,0.008534846,0.0046270923,-0.028877202,-0.0070313653,-0.0045201634,0.01977855,-0.0057514627,0.006856391,-0.010265145,-0.023213226,-0.009299547,-0.012967523,0.0053367093,0.04352318,0.03854614,0.007744223,0.017769588,0.015618056,0.0011851253,-0.013220263,-0.009053288,-0.015332913,0.002177455,0.017717745,0.038597982,-0.031054657,0.0016185101,0.0040244036,0.0012523608,-0.0044197156,0.007867353,-0.010057769,-0.011574211,-0.0093060285,-0.023070656,0.00049292465,-0.00014277398,-0.0043225074,0.020491408,-0.00046983777,0.022966966,-0.0013236464,-0.033439487,0.009377314,0.023939045,0.008282106,0.004079488,0.0053140274,0.01156773,0.02399089,-0.0008619093,0.0025938286,0.0068239886,-0.0032791437,0.017173382,-0.013635016,0.009649496,0.014697822,0.03206562,-0.011049288,0.0059167156,0.0031884164,-0.0069535994,-0.042201154,-0.003768423,0.014671899,0.013025847,-0.013647977,-0.010362353,0.011425159,-0.024431564,0.0046335724,-0.010731743,0.00070192147,0.012319471,0.012300029,-0.00046457237,-0.6370611,-0.008249704,0.017808473,0.019013848,0.00435167,0.030976892,0.014347874,0.0009007924,-0.013997925,0.007122093,-0.022915123,0.021476448,-0.009338431,-0.031287957,0.02338172,-0.004999722,0.013136016,-0.011159457,0.01668086,-0.0050191637,-0.0069730408,-0.0061986186,0.01839172,0.048241,0.010634535,-0.008269145,0.0018518089,0.015306991,-0.0036614945,0.026855279,-0.01393312,0.016603095,-0.0063509108,0.0061856573,0.06874537,-0.031184267,-0.0002375516,0.016097615,0.019013848,0.0022843836,-0.028669825,0.021800473,-0.0028190266,0.001715718,0.0070184045,-0.02597393,0.0061111315,-0.011029847,0.008904236,0.0048571504,0.013401718,0.0017432602,0.0033034456,0.02859206,0.0136739,-0.016629018,0.021580135,0.00089431193,0.011632536,0.003060426,-0.012818471,-0.0004734831,-0.02400385,-0.034398608,-0.0024804194,0.026194267,-0.017432602,-0.0015277829,-0.0020381238,-0.032117464,0.014179381,0.005696378,-0.015203303,0.021541253,0.025922084,0.030976892,0.020167382,0.024677824,0.0071804174,-0.0026942766,0.0046724556,-0.008593171,-0.026064657,0.0048085465,0.030821359,-0.0032678028,-0.032661825,-0.0002659039,-0.008152495,0.0015731466,0.03678344,0.016486445,-0.005297826,0.0058292286,0.0051163714,-0.009118093,-0.022085616,0.01839172,0.030328838,-0.024288993,-0.0065323655,-0.007348911,0.0049802805,0.007893275,0.014840393,-0.0028157865,-0.009707821,0.022072654,0.03572063,-0.03743149,0.030043695,0.0057223,-0.007847911,0.020335875,0.0067851054,-0.02213746,0.003930436,-0.012935121,-0.002289244,-0.009493964,0.012896237,0.011049288,0.03714635,0.004267423,0.0018793511,0.028280994,0.002663494,-0.025079617,0.010284587,-0.020193303,0.031262033,-0.007990482,0.023057694,-0.010258665,-0.009007924,0.008547807,0.026855279,0.011120575,0.0020948285,-0.02472967,-0.029343799,-0.016719744,-0.022046734,0.026025772,-0.00534643,-0.009215301,-0.02176159,0.0018291271,0.012086172,0.017510368,-0.011243704,-0.012481484,-0.010329951,0.010893756,-0.0066068913,-0.017821433,0.026673825,-0.0106086135,-0.041267958,-0.00559593,0.014931121,0.009623574,-0.028410604,0.0022795233,-0.013920159,0.0015942082,0.025636941,0.005631573,-0.01876759,-0.015929122,0.021191305,-0.029421566,-0.0101549765,-0.00858021,-0.01779551,0.009098652,0.0037327802,-0.024483409,0.01604577,0.013285068,-0.00096073723,-0.007497963,-0.026777513,0.007796067,0.006564768,0.014775588,-0.0049673193,0.014049769,-0.039868165,0.0041637346,0.01305825,-0.01727707,0.003431436,0.0027931046,-0.002438296,-0.014075692,0.008606132,0.019234186,0.010809509,0.013168419,-0.0015358835,-0.0024010332,0.012889757,0.022591097,0.00044310564,-0.020037772,0.005524644,0.013362834,0.027969928,-0.0031171306,0.0045428453,-0.010900237,-0.009403236,-0.001953877,0.0055797286,0.0320397,0.015579172,0.013829432,0.0093060285,0.020309953,-0.026673825,-0.031650864,0.012831432,-0.02799585,-0.0111140935,-0.004400274,0.0032629424,0.014995926,0.0046562543,-0.013907199,-0.006642534,-0.0028757313,0.0122481845,0.026064657,0.014594134,0.000496975,0.015086653,-0.008975522,0.024509331,-0.013362834,0.024846317,0.010647496,-0.0013123056,0.011049288,0.030639904,-0.032117464,0.038909048,-0.013557251,-0.0004451308,-0.014982965,0.010809509,-0.00024828495,-0.060865056,0.021113537,0.007102651,-0.020970967,0.017082654,0.009545808,0.026803436,0.029940007,0.003956358,0.00085461873,-0.007297067,0.0063087875,0.034502294,-0.02524811,0.003966079,-0.011029847,-0.02375759,0.00066344335,-0.0016379517,-0.041190192,-0.011263146,-0.029369721,0.0064837616,-0.007796067,0.021943044,-0.013090652,0.016369795,-0.004798826,-0.011237224,-0.03844245,-0.00658745,0.0069989627,0.010180899,-0.008528366,-0.0039142347,0.027062656,-0.009630054,0.015332913,-0.0014516368,-0.007614612,-0.0031479131,-0.015384757,-0.037975855,0.00011371289,0.028332839,-0.030328838,0.030847281,0.0052006184,0.0273478,0.0013746805,-0.002896793,0.011768626,0.02585728,0.016006887,-0.011075211,-0.0130388085,-0.01964894,0.011282587,0.006577729,-0.024366759,-0.0051779365,0.030069618,-0.0054533584,0.0014864695,-0.00043824525,-0.008670937,-0.0074266773,-0.0023653903,-0.0044845208,0.0038656308,-0.020037772,-0.00497704,0.108043246,0.01081599,-0.010673419,-0.006700859,0.036446452,0.02513146,0.0052945856,-0.011548289,0.006856391,0.0030782474,-0.009344911,0.011055769,0.0041961377,0.0142830685,0.007167456,-0.0041345726,0.023083616,-0.004763183,0.0068239886,-0.00124426,-0.028410604,-0.013764627,-0.041708633,0.032376684,0.015501407,-0.0053788326,-0.01143812,-0.0008367973,-0.005281625,0.011269626,0.0036226113,0.0060106833,-0.010712301,0.017601095,-0.006901755,-0.00224064,-0.0057125795,-0.005981521,0.023407642,-0.0066943783,0.02338172,0.0034994814,0.021230187,-0.0030895884,0.007893275,-0.012727744,-0.0062115793,0.022668863,0.010854873,0.01678455,0.04212339,0.010848393,-0.019324914,-0.031624943,0.006363872,0.011587172,0.00071407243,-0.0056769364,0.000030605275,-0.020698784,-0.007984002,-0.029603021,-0.008670937,0.008256184,-0.010498445,-0.024107538,-0.017497407,0.0047664233,-0.0320397,-0.012500925,-0.013699821,-0.021359798,-0.016214265,0.0049154754,0.00460117,-0.016369795,0.02213746,-0.02053029,0.012125055,0.008716301,-0.01627907,0.0018048252,0.00049413973,-0.0056024105,0.014036809,0.009882795,0.01193712,-0.033750553,-0.040879127,0.015151459,0.027840318,0.024975928,0.0046238517,-0.0064448784,0.0122481845,0.00040584264,0.010245704,0.02773663,-0.0039142347,0.00089350186,0.0417864,-0.0013844013,-0.0020462244,-0.013349874,-0.008858873,-0.004746982,0.012144497,0.015371796,0.0064967223,-0.01963598,0.024716707,0.021061694,-0.0049608387,-0.006363872,-0.008560768,0.016590133,0.00422854,-0.00032240592,0.024055695,-0.016654938,-0.011613094,-0.024301954,0.003531884,0.0027218189,-0.02275959,-0.003949878,-0.0059718,-0.0526996,-0.023420604,0.011995445,0.033517256,-0.011152977,-0.016966004,-0.023278031,-0.015086653,-0.011561249,-0.00087892066,0.019687824,0.012604614,-0.015942082,-0.0092477035,-0.007322989,0.0042090984,-0.03608354,-0.00049454474,-0.024950007,-0.00534967,-0.021878239,-0.0044974815,0.05249222,0.0038753517,-0.010187379,-0.03592801,-0.0069341576,-0.008158976,-0.037250035,-0.03857206,0.012410198,0.023589097,0.033646867,0.02099689,0.0027574617,0.009364353,0.03608354,-0.0025436045,0.00032038076,0.010602132,-0.009053288,-0.013777588,0.0046270923,0.012954562,0.007510924,0.039064582,0.00088864146,0.0015326432,0.004374352,-0.0076210927,-0.016317952,-0.006101411,0.012008405,-0.002561426,-0.0028287475,0.020919122,0.012967523,0.0011583931,0.0040730075,0.0077118203,0.017056732,0.024509331,-0.00896256,-0.0001361922,-0.007297067,0.013285068,-0.00019259298,0.002089968,-0.005479281,-0.040879127,0.007472041,-0.0019198544,0.0021790753,0.01752333,-0.005706099,-0.0036388126,0.0059167156,0.0027461208,-0.003531884,-0.0062731444,0.008184898,0.019623019,-0.029214188,0.0043613906,-0.006367112,-0.030017775,-0.038390607,-0.013751666,0.0033795917,-0.03481336,0.017847355,0.0020429844,-0.027062656,-0.03517627,0.0008667697,0.015501407,-0.0012248185,0.0417864,0.023964968,-0.018106576,-0.029136423,0.014892237,-0.00095830706,-0.009228262,0.0166679,0.020335875,0.0069341576,0.00497704,0.023835357,0.008722781,-0.036161307,-0.040956892,0.0058713523,0.005414475,0.004435917,-0.0035902087,-0.022915123,-0.021800473,0.02224115,-0.028358761,-0.009675418,0.0003345569,-0.023316914,-0.011703821,0.012954562,-0.0061240923,-0.0074655605,0.020245148,-0.003405514,-0.0060268845,-0.02301881,0.025818396,-0.0052945856,-0.013148977,0.0151903415,0.018171381,0.0068239886,0.013479484,0.00071447744,0.0114575615,-0.0058000665,-0.01678455,0.021333875,-0.03608354,-0.004902514,-0.015332913,0.007348911,0.0054403977,-0.0010871075,-0.015073692,-0.01752333,0.02002481,0.0059620794,0.02041364,0.008113612,-0.00807473,-0.0063087875,-0.014827432,-0.017756628,-0.0052654236,-0.002796345,-0.0049316767,-0.032247074,-0.027036734,-0.031262033,-0.0042479816,0.025870241,-0.009234742,0.015760627,-0.0013957423,0.023290994,-0.02275959,0.016058732,-0.025066655,0.010005925,-0.016732706,0.035616945,0.0046206117,-0.022850318,0.009668938,0.010407717,-0.02859206,-0.024716707,0.013712782,0.0039109946,-0.008444119,-0.0113992365,0.051688638,0.01032347,-0.02099689,-0.038157307,-0.0313398,0.016395718,0.013123055,0.008184898,0.0021952766,0.012539809,-0.0036355723,-0.044223078,0.018715745,0.006030125,-0.008722781,0.019389719,0.0015763867,0.044948895,-0.010414197,-0.04440453,-0.035668787,-0.0049316767,-0.0113409115,0.017510368,0.0033471892,-0.0002576007,-0.008223781,0.0025549454,0.017004887,0.029136423,-0.015643978,-0.0060657677,-0.011619574,0.0003082298,-0.011619574,-0.005398274,0.0060852095,0.016356835,0.008249704,-0.024898162,-0.0071415342,-0.009344911,-0.035150345,0.006166216,-0.00036007396,0.0032240592,-0.0074914824,0.013868315,0.01106225,0.025416603,0.018106576,-0.014607094,0.011535328,-0.022785513,0.021087615,0.023239149,-0.010161458,-0.002200137,-0.02076359,0.003395793,-0.0038397089,0.023031771,0.0015148218,-0.0031236112,0.004393793,-0.0052006184,-0.01975263,0.0004738881,0.026855279,0.007186898,0.036887128,-0.033957932,-0.00007953827,-0.008372833,-0.009254185,-0.015553251,-0.01318786,-0.016525328,0.008450599,-0.0041572545,-0.017899198,-0.020582136,-0.026064657,-0.030976892,0.022863278,-0.021359798,-0.016084654,0.007160976,0.02226707,-0.011282587,-0.014049769,0.0071091317,-0.04787809,0.0020170622,0.038649827,-0.016616056,-0.02747741,-0.014697822,0.0012677519,-0.023900162,-0.010660457,0.0032629424,-0.04264183,-0.013440601,0.018378759,-0.016266108,-0.012487964,0.003010202,0.015695821,-0.020465486,0.008923678,-0.013829432,-0.0062115793,-0.053555027,-0.014257146,0.01679751,-0.0064027547,-0.022046734,0.001691416,-0.0010514646,0.0023929325,0.00509693,0.2444971,-0.0066619758,0.0020867279,0.03382832,-0.008476522,0.012747185,0.01792512,0.02983632,0.0007557908,0.004529884,-0.030769514,0.0006164596,-0.00509693,-0.013712782,0.001976559,0.0026570137,-0.029888164,-0.012572211,-0.025883202,-0.0042447415,-0.007796067,0.0053529106,-0.004303066,-0.005437157,0.031987853,-0.022331877,0.010854873,0.00087973074,0.0061500147,-0.0052168197,-0.0036226113,-0.024340838,0.008489483,-0.005284865,0.0068434305,-0.0033504295,0.007297067,-0.00323216,0.008009925,0.02038772,-0.0010830571,0.0011357113,0.014970004,-0.00572554,-0.014399718,0.014399718,-0.020452525,-0.018093616,-0.0052654236,-0.02313546,-0.0031268515,-0.012403717,0.0068304692,0.03491705,-0.0010676659,-0.0035610464,0.024172343,-0.014710783,-0.013699821,-0.007919197,0.002250361,-0.009163457,0.003296965,0.007102651,-0.027918085,0.022733668,-0.002339468,0.005187657,0.008813509,-0.011522367,-0.0005994482,-0.015721744,-0.029214188,0.026881201,-0.035798397,-0.009519885,-0.01614946,-0.0039725592,0.02138572,0.0029940007,0.009655977,-0.012708302,0.008431158,-0.018923122,0.0028498091,-0.03745741,0.021800473,0.011911198,0.023550214,-0.017627018,-0.0004702428,0.020867279,-0.022435565,0.020711746,-0.0008675798,0.014477484,-0.019998888,0.0188972,-0.01716042,0.005657495,-0.020348836,-0.022694785,0.012967523,-0.00045485157,0.008593171,-0.018728705,-0.005485761,0.03465783,-0.004053566,-0.018443564,-0.029058658,-0.026647903,0.0050191637,0.014386757,-0.000796294,0.005858391,0.00559593,-0.014257146,0.017458525,-0.0066068913,0.0073294695,-0.013110094,0.015397718,0.00044958616,-0.005420956,-0.032247074,0.0011016886,0.0056704558,-0.009805028,-0.05034069,0.022189304,0.009234742,0.015449562,-0.01655125,-0.021424603,-0.0067980667,0.00020859178,-0.004662735,0.030458448,0.024962967,-0.013032328,0.018871278,-0.012410198,-0.0006905805,0.011988964,-0.021204265,0.019623019,-0.0037133386,-0.015008887,-0.01020034,-0.005482521,0.0014629776,0.0018550492,-0.019558214,0.055265885,-0.012526847,-0.04710043,-0.021787511,0.0014467763,0.014775588,0.01044012,-0.008424678,0.04735965,-0.018482447,-0.035876166,-0.015566212,-0.16393127,0.01714746,-0.0013341773,-0.013855354,-0.0025160622,0.0044067544,0.02250037,-0.011366834,-0.01578655,-0.002263322,0.04004962,0.0020915882,-0.020828394,-0.0028676307,-0.017121537,-0.014723744,-0.031754553,-0.007478521,0.010660457,0.005894034,0.019260108,-0.020945044,0.0014411059,-0.004079488,-0.00497704,-0.0015472245,0.0031446728,0.02537772,0.0007003013,-0.0005796016,0.0002551705,0.002162874,0.043341726,0.012267627,0.015501407,0.008794067,-0.013194341,0.0024139942,-0.0058907936,0.015462523,-0.0050710076,0.01318138,-0.00025071515,-0.006260183,-0.025040733,0.013777588,0.013375795,-0.0031349522,0.0004564717,-0.025442526,0.016901199,-0.011075211,0.00584543,0.010990964,0.016136497,0.025688786,0.008534846,0.0176659,-0.012662938,-0.0057871053,-0.0032904847,0.0009971901,-0.00459793,-0.008431158,-0.014762627,-0.009416197,-0.00044067545,-0.013362834,-0.031365722,0.0067591835,-0.017497407,-0.0037587022,0.01429603,0.0067138197,0.024924085,0.0018680103,-0.026064657,0.005301066,0.004154014,0.0016849355,-0.032143384,0.06827877,-0.015475485,0.0034022736,-0.0045072027,0.019947045,-0.044119388,-0.0063120276,-0.016823433,-0.0025403644,0.027192267,-0.049096428,-0.004529884,-0.0070572877,0.0007768525,0.03530588,0.039090503,0.0037457412,-0.0031430528,-0.022863278,-0.00896256,0.0022357798,-0.009779107,0.03507258,0.010990964,0.0021482927,0.0047405013,0.009396756,0.029862242,-0.008586691,-0.009694859,-0.0064481185,0.003308306,0.0155273285,-0.0036679748,0.008094171,0.019337876,-0.042356685,0.026803436,-0.03792401,0.032247074,-0.008256184,-0.0166679,0.002088348,0.00124264,-0.008768145,-0.07999555,-0.037898086,0.014464523,0.019013848,-0.006888794,-0.000025998028,-0.0016978965,0.041267958,-0.00022702076,0.032869205,-0.005239501,-0.0064837616,-0.029914085,-0.010887275,0.023433564,-0.019584134,-0.007076729,-0.0049381573,-0.0049187155,0.01853429,0.0046076505,-0.009390275,-0.017354835,-0.010135535,-0.01916938,0.0040114424,-0.019726707,0.024107538,0.033387646,0.012228743,0.015255147,-0.015812472,0.0074655605,-0.014062731,-0.025040733,0.0018177861,-0.032143384,0.022798473,0.02624611,-0.022863278,0.004925196,0.003531884,-0.018741667,-0.036653828,-0.011373315,0.015306991,-0.008483002,0.018288031,0.01739372,0.0007027315,0.015942082,0.010997444,-0.01616242,0.005573248,0.012513886,-0.04152718,0.018352836,0.014101614,-0.015695821,-0.005657495,-0.015410679,0.00995408,0.017873278,0.024470448,0.016123537,0.013349874,0.006752703,-0.019532291,-0.0054760403,-0.0053885533,-0.014205302,0.0056283325,-0.021787511,0.0353318,-0.03009554,0.0066943783,-0.025442526,0.0058227484,0.014360835,-0.031884164,-0.010978003,-0.020219225,0.015229224,-0.008262664,-0.010388276,0.0050710076,0.018586135,-0.0027704227,-0.026466448,0.00009113233,-0.02040068,0.01840468,0.005923196,-0.0218912,-0.008515405,0.0018761109,-0.012455561,-0.0052719037,-0.013362834,-0.023213226,-0.019843355,-0.032532215,-0.042201154,0.03592801,0.022228187,-0.01393312,-0.006428677,-0.010232743,0.0012912438,0.002650533,-0.008353392,-0.028903125,-0.018054731,0.0067980667,-0.011904717,-0.0032289196,-0.041553102,-0.012850873,-0.0018453284,-0.00783495,0.010427158,-0.020037772,-0.01630499,-0.017769588,0.014542289,-0.018974965,0.011716782,0.031158345,0.0073165083,0.022318915,-0.01156773,-0.0016638738,0.0009113233,-0.020711746,-0.011256665,0.010057769,0.0036517736,-0.018300992,-0.0010304028,0.0052719037,0.0016517228,-0.02413346,0.0005516544,-0.016603095,0.008042327,-0.012403717,-0.02474263,0.0012337292,0.008405236,-0.010504925,0.0124750035,0.0053043067,0.030121462,0.030147385,0.017821433,-0.013252665,0.0023589097,-0.031132424,-0.006636054,-0.012572211,0.017717745,0.012274107,0.01206673,0.0088523915,0.020309953,-0.018923122,0.02338172,0.010893756,-0.02662198,0.005608891,0.016525328,-0.016447563,-0.0145682115,-0.0025711467,0.01928603,-0.0070248847,0.024755592,0.016616056,-0.0082885865,0.009662457,0.012410198,0.014192341,-0.008470041,0.014088653,-0.030328838,0.016447563,0.0065129236,0.027684785,0.019545252,0.0027153383,-0.004513683,0.0029340559,-0.04054214,0.012319471,0.011911198,-0.0133239515,0.014127536,0.050548065,0.01678455,0.00807473,-0.010219782,0.019260108,0.0062634237,0.016875276,-0.014723744,0.014749666,-0.035979852,0.026855279,-0.011801029,-0.009558769,0.014620055,0.003185176,0.00013659723,0.00026063845,-0.0006691138,0.02113946,-0.010433639,0.024483409,0.013544289,-0.019972967,-0.023420604,0.01753629,0.012740704,0.013161939,-0.004659495,-0.010880795,0.031858243,-0.01269534,-0.007744223,-0.01603281,-0.016603095,-0.022098577,0.0043873126,-0.02100985,-0.0040762476,0.009921677,-0.0012272487,0.004413235,-0.012442601,0.04043845,0.0018129258,0.035746556,0.008029366,-0.009014405,-0.0032337802,0.0025565657,-0.0028028253,0.030458448,-0.0027445008,-0.004776144,-0.011658457,0.024755592,-0.0053529106,0.0070313653,-0.011237224,-0.028021773,0.004154014,-0.0007760424,0.021113537,-0.014633017,0.018352836,0.013557251,0.011904717,0.040619906,-0.0038137867,-0.011159457,-0.02139868,-0.014179381,0.010537327,-0.01331099,-0.046789363,-0.006739742,-0.0038494295,0.0020705266,-0.0058745923,0.031650864,0.008774625,-0.0030280235,0.019104576,-0.022020811,-0.0052038585,0.024055695,0.020504368,-0.015151459,-0.0101549765,-0.0130388085,0.0038721114,-0.003966079,0.0056931376,-0.06532365]},{\"id\":\"17ffa7d4-1056-4ffe-b562-8cacd2a11238\",\"text\":\"You can honor your word and respond to complaint \\nMy blendjet stopped working h a fury about 10 uses\",\"vector\":[-0.026152393,-0.019136239,-0.024647927,-0.011234281,-0.003599469,0.011937302,-0.0058842883,-0.007508267,-0.014988414,-0.029442532,0.030848574,0.015452408,-0.005606595,-0.009272851,-0.0074801464,-0.002049307,0.024676047,0.015705496,0.011698274,-0.005012542,-0.024296416,0.006527553,-0.02173742,0.0020211863,-0.019853322,0.011234281,0.024366718,-0.018067647,-0.0044501247,0.004422004,0.00086251926,0.008084745,-0.02273571,0.0077051134,-0.026939776,0.008365953,-0.0061584665,0.003827951,-0.0012689534,-0.011149918,0.03669771,0.0000403688,0.006334222,0.0009473212,-0.045612022,0.006242829,-0.019136239,0.019389328,-0.03664147,0.016352275,0.047749206,0.018095767,-0.018320736,0.012288813,0.012577051,-0.014580661,-0.012056815,0.020331375,0.0075434186,-0.014763447,0.010165688,0.0058913184,-0.010341443,0.0024711199,-0.0077754157,-0.0075152977,-0.012028694,-0.00036359383,-0.00923067,-0.01816607,0.02151245,-0.009884479,0.025055679,-0.0007667326,0.009764966,0.0012443477,-0.0064888867,0.011775606,0.008436255,-0.002674996,0.022665406,-0.0042638243,0.0044184886,0.008330802,0.01979708,-0.005448415,0.015410227,0.017800499,-0.012717655,-0.016731907,-0.0039720703,0.018320736,-0.009603271,0.0025466946,0.014749386,0.022806011,-0.014060426,0.01687251,0.0035309244,-0.006829852,-0.004000191,0.007831657,-0.026939776,-0.014875931,-0.037513215,-0.008506558,0.014454118,-0.012345054,0.02381836,-0.006661127,-0.0017048266,0.014468178,0.007075909,-0.016900633,-0.0009473212,-0.010039144,0.008548738,-0.02012047,-0.021160942,-0.010460957,0.009420485,0.031607836,0.03326697,-0.025575915,0.01818013,0.018883152,-0.00989854,-0.013498009,-0.009378304,0.011262401,0.053767066,0.04055027,0.00825347,-0.013041045,-0.012619232,-0.0009842298,-0.025449371,0.00051672064,0.004334126,0.012295842,0.024858832,0.01650694,-0.006408039,0.0014394361,-0.012302873,0.012443476,0.016267912,-0.005645261,0.014622843,-0.011206159,-0.0016327669,-0.020106409,0.0005233115,-0.010988222,-0.008773706,0.014735326,0.008056624,-0.0013735278,-0.0224545,0.014608783,0.004713758,-0.008724494,0.023284065,0.014552541,0.019586174,0.02573058,0.014376786,-0.013076196,0.0044501247,0.005546838,0.006042468,0.035797846,-0.024999438,0.013926852,-0.0108194975,0.012373175,0.01948775,-0.00020914883,-0.00069686986,-0.00577532,-0.036753953,0.011417066,0.020289194,0.027389709,0.002195184,-0.021498391,0.043699805,-0.009694664,0.020640705,-0.012823109,0.007353603,0.015832039,-0.01615543,-0.017716136,-0.62540776,-0.024240173,0.022271715,-0.0034676525,0.0144119365,0.032788914,0.000025525715,-0.006401009,-0.02412769,0.015677374,-0.020640705,0.016760027,-0.014974354,-0.0073465724,0.0041970373,-0.01453848,0.0031178994,-0.012914501,-0.02282007,0.0050371476,-0.020317316,0.00759263,-0.030651728,0.026222695,-0.00059800746,-0.021723358,0.032817032,-0.001561586,0.0020827006,0.0069458503,-0.0038877078,0.010615622,0.0038877078,0.014172909,0.05120807,0.008801826,-0.0007522328,0.02051416,0.010601561,0.014932172,-0.016281974,0.012443476,0.017983284,-0.006239314,-0.0069458503,-0.014454118,0.0316922,0.006770095,0.00429546,-0.0056171403,0.023551213,0.010847619,0.0025554823,0.020654766,0.014102607,0.016717846,0.04918337,0.02045792,0.013694854,-0.007620751,-0.0053324164,0.002776934,-0.007873839,0.000008108087,0.002761116,0.0048297564,-0.025941486,-0.0089986725,0.03343569,-0.017336505,0.016085127,-0.006671672,-0.005473021,-0.0011257129,0.019670535,0.014397876,0.013181649,-0.011199129,0.012668444,0.017364627,0.014109638,-0.016310094,0.0046504857,-0.014018244,0.013083226,-0.0020247013,0.00726924,-0.007132151,0.0015571922,0.027235044,0.009779026,0.030454881,0.018053588,-0.0369508,0.011740455,-0.0035660756,-0.011311612,0.002093246,0.022707587,-0.018278554,-0.031101663,-0.018334795,0.021357786,0.023930844,0.00006739118,-0.012429416,-0.029864345,0.013519099,0.01022896,-0.005641746,0.028641088,0.016042946,-0.026700748,-0.03666959,-0.008527649,-0.032732673,0.019051878,-0.0020827006,0.022257654,-0.021934263,-0.01718184,0.0013840732,0.019684596,0.001042229,0.005813986,0.042096917,0.0007166423,-0.012042754,-0.016774088,-0.0012891653,0.040803354,0.009539999,0.016928753,0.0060565285,0.009975872,0.021034397,0.023958966,-0.0013392556,0.018053588,-0.022834131,-0.0062955557,0.0323671,0.0003378896,0.017420867,-0.001848946,0.0044782455,0.004425519,0.0096665425,-0.0060248924,0.0053675678,0.012499719,-0.006147921,-0.037063282,0.011234281,0.0043306113,0.005195327,-0.030595487,-0.014777508,-0.022074869,-0.023958966,-0.0053359317,0.013800308,-0.016492879,-0.009111156,0.025294706,-0.020275135,-0.012520809,0.0035625603,-0.021104699,-0.029583136,-0.0005334174,-0.006963426,0.0049000583,0.017547412,-0.013610492,0.023523092,-0.0146790845,0.0009728057,0.0065170075,-0.000594053,-0.0007223544,0.016296033,0.010390654,-0.009814178,0.0357416,0.011494398,0.022806011,0.042068794,-0.008155047,0.034448043,-0.0099126,-0.006840397,-0.014566601,-0.007100515,-0.032507703,-0.016633485,0.029133203,-0.000033613207,0.0062568896,0.021638995,0.0048121805,0.00255724,0.022201411,-0.01418697,-0.01221851,-0.024197992,0.009680603,-0.026672628,0.02412769,0.03436368,-0.023874603,-0.03326697,-0.0231294,-0.024155812,0.018981574,0.0106859235,0.016366336,0.008344863,-0.012802018,0.003501046,-0.030511124,0.0025466946,0.02210299,0.00042225217,-0.0059967716,-0.008197228,-0.0047453935,0.006235799,0.022060808,-0.01289341,0.010095386,0.017983284,-0.0025203314,0.0032866246,-0.0034922583,0.01089683,0.037175767,-0.008070684,0.019417448,-0.0035063187,0.013638613,0.016942814,0.0005391294,-0.0045977593,-0.010271141,0.028148971,0.053317133,-0.027178803,-0.012851229,0.02708038,-0.022637285,0.0046750917,0.002769904,0.002223305,-0.0065908246,-0.020373557,0.015438347,0.023832422,0.033716902,0.021990506,-0.0021565177,0.032142133,0.018587884,-0.0045977593,0.02609615,-0.0062885256,0.010467987,-0.0026679658,-0.0038209206,0.010714045,-0.01519932,-0.0036803165,0.016886571,-0.022215473,0.04690558,-0.019248722,0.0069774864,0.004727818,-0.0044747307,0.005374598,-0.031804685,-0.043081146,0.013462857,0.014608783,0.004882483,0.0026714809,-0.026110211,0.0052023577,0.01223257,0.02176554,-0.0009174428,0.021104699,0.021399967,0.028008368,0.0036838315,0.00023595152,0.02311534,-0.026813231,0.009300971,0.024394838,0.0046083047,-0.016689725,-0.027417831,-0.036472745,0.0102852015,0.01616949,-0.00023595152,-0.038806774,-0.0033059577,-0.025238464,0.003761164,-0.021835841,-0.01950181,-0.02076725,0.003110869,0.015944524,-0.039397314,-0.020036107,0.029864345,0.0036521957,0.004759454,-0.032451462,-0.0005030996,0.008443286,0.09223639,0.012471598,-0.0013902246,-0.0061444063,-0.03731637,0.015283682,-0.021231243,-0.0027470556,0.010981193,-0.014369755,0.012921532,0.008829948,0.01782862,-0.0065451283,0.0042110975,-0.036472745,0.014932172,-0.0029122657,-0.020654766,-0.021934263,-0.013603462,0.015241502,0.018545702,0.018587884,-0.004562608,0.011058525,0.01851758,-0.000037787395,0.004780545,-0.0031337175,-0.005754229,-0.004548548,-0.017238082,0.016085127,0.01715372,0.02151245,0.02746001,-0.01684439,-0.006176042,-0.012717655,0.016296033,0.01155064,0.0033657143,-0.0035924388,0.00048552407,0.000028972167,0.0017970982,0.007916019,-0.010369564,-0.032170255,0.011128827,-0.025927424,-0.018658185,-0.016703786,-0.0022584558,0.01221851,-0.011965422,-0.0061619817,-0.0019614294,-0.001782159,-0.03835684,-0.0025783307,0.0019737324,-0.0335763,-0.022356076,-0.02776934,-0.015578952,-0.025140041,0.0019051877,-0.005283205,-0.030258037,0.00004995296,-0.012998864,0.029695619,-0.0070477882,0.013666734,0.009033823,-0.019993925,0.0056698667,0.0012926804,0.006580279,-0.01320274,-0.007944141,-0.028528605,0.00018728926,-0.003666256,-0.01716778,-0.00027923126,0.0061971326,0.0107351355,0.027235044,-0.0038525567,0.027277226,-0.025013497,-0.016127309,-0.009350183,0.0074168746,0.043306112,-0.011332703,-0.0036029841,-0.0035731057,-0.021175,-0.011867,-0.01352613,0.0006819306,-0.0059299846,-0.009554059,0.017912982,-0.0089354,0.02310128,0.039819125,-0.0048051504,-0.023860542,0.008886189,0.0073465724,0.019304965,-0.009750905,0.004390368,-0.012577051,0.010840588,-0.005381628,-0.042631213,0.028289577,-0.009005703,-0.0104187755,-0.008879159,-0.004987936,-0.008464376,-0.030286158,0.016731907,-0.007142696,0.02251074,-0.002230335,-0.0031020814,-0.049408335,-0.042012554,-0.03194529,0.007965231,-0.0075855996,-0.03233898,-0.018967515,0.003367472,-0.006604885,0.008387044,-0.00035985903,-0.023199702,-0.028303636,0.0035151064,0.001660009,0.032423344,-0.021301545,-0.023579335,-0.04260309,-0.009842298,-0.014946233,-0.018756608,-0.012063845,-0.0039087986,0.015733616,0.018067647,0.027305346,-0.007160272,0.0015325864,-0.010032114,0.0041443105,-0.014341635,-0.019206543,-0.0011063798,-0.023649637,0.013919822,0.013519099,0.005473021,0.019740839,-0.0057647745,-0.009750905,0.010018053,-0.0012373175,-0.016956873,-0.0069388202,-0.038834896,0.01886909,-0.007402814,0.007536388,0.01753335,-0.018883152,-0.014763447,0.011663123,0.016675664,0.0059581054,0.023002857,0.017238082,-0.0012452265,0.03402623,-0.003694377,-0.021498391,-0.0045380024,-0.015677374,-0.00034733646,0.011937302,0.0077191736,-0.004921149,0.001211833,-0.028655147,0.02904884,-0.01850352,0.003017719,-0.0017549169,-0.038750533,-0.0033147454,-0.020893794,-0.0044114585,-0.028936356,-0.0012610444,0.0054905964,-0.015213381,0.00086559495,-0.02214517,0.017997345,-0.013575342,-0.02478853,-0.0014244969,-0.006966941,0.040184695,0.009779026,0.0041724313,0.054076396,-0.008534678,0.0078457175,0.010102415,-0.0025379069,-0.0061233155,-0.009385334,0.058603853,-0.007033728,-0.022257654,0.014974354,0.004158371,-0.0029052354,-0.02612427,0.0027945095,0.0002158495,0.013751096,-0.037147645,-0.021723358,-0.029442532,0.025913365,-0.003084506,0.015241502,-0.004980906,0.0074239047,-0.0026064515,0.010826528,0.0034412893,0.010011023,0.019600233,-0.008408135,-0.010531259,0.003996676,-0.023663696,-0.0054659904,-0.015339925,0.025308765,-0.000458282,-0.0039193435,-0.00014950187,-0.017884862,-0.0039052833,-0.003926374,0.0073254816,0.018081708,-0.0075574787,0.0033938354,0.00288766,-0.0055573834,0.024183933,-0.021231243,-0.014369755,-0.026799172,0.014165879,0.003940434,0.0048121805,0.015733616,-0.016071066,-0.0092658205,-0.014039335,-0.008007413,-0.016745968,0.00362759,0.011796697,-0.004594244,-0.033604417,0.0019192481,-0.013139468,0.004661031,-0.007093485,0.0003378896,0.02310128,0.02746001,-0.013730005,0.013062135,-0.0030704455,0.016141368,-0.02446514,0.01022896,-0.011817788,-0.018700367,0.0045977593,-0.018447278,-0.050673775,-0.025674338,-0.00958921,0.0039158287,-0.0017285536,0.0022953644,-0.011733425,-0.0078105666,0.025533734,-0.033520054,-0.0146790845,0.0073184515,-0.023354366,0.013294132,0.029864345,-0.022890374,-0.025547793,-0.011993543,0.011831848,0.0035924388,-0.004987936,-0.015410227,0.004668061,0.0029280838,0.0010888042,-0.031551596,-0.030314278,0.015550831,-0.018208252,0.01616949,0.0224545,-0.0029474169,0.010207869,0.0056522912,-0.011599851,0.0144119365,-0.02446514,-0.0026416024,-0.01615543,-0.004232188,0.0049387245,-0.029836224,-0.012541899,0.030004948,0.0006423857,-0.00089942786,-0.034785494,-0.036500864,0.0032708065,-0.02740377,-0.024704168,0.0055644135,0.0024096055,0.010699984,-0.00676658,0.027474072,0.00610574,0.0058842883,-0.01318868,-0.026208634,-0.0074168746,-0.008661223,0.006506462,-0.017884862,-0.016450698,-0.021357786,0.008766675,0.01886909,-0.00214773,0.0073465724,-0.0012425901,0.009040854,0.009722784,0.029526895,0.03312636,0.010460957,0.0012751048,-0.022665406,-0.017420867,0.0041443105,-0.0017013116,-0.02179366,0.005012542,0.025449371,0.0072059683,-0.026616385,-0.03669771,-0.01121319,-0.02020483,-0.0074098445,0.007817597,0.009392365,-0.021568693,0.0025818457,0.0017259172,-0.017589593,0.0045731533,0.015803918,0.011993543,0.008822917,0.023705877,-0.01945963,-0.009343153,0.0030739605,-0.0017549169,-0.037456974,-0.0013304678,-0.0014394361,-0.0041478258,-0.0042462484,0.014805628,0.020640705,-0.01421509,-0.006049498,-0.00015114958,-0.00990557,0.009272851,-0.013969033,0.0064642807,-0.055904254,0.0070864544,0.0029175384,-0.000833959,-0.042209398,0.01751929,0.018405097,0.018053588,0.019023756,0.24116442,-0.0101516275,-0.012935592,0.057760227,-0.00511448,0.0036100142,0.023002857,-0.0014921627,0.00379983,0.022032687,0.0020247013,-0.0033955928,-0.012752806,-0.002297122,0.015775798,0.011100706,-0.044121616,-0.014721266,-0.0062568896,0.005416779,-0.0028929326,-0.0024412414,0.014376786,-0.0006133861,0.022595104,-0.013793278,-0.013083226,0.00793711,0.027966186,0.006460766,-0.027755281,0.000029274246,0.020626646,0.0023955451,0.011452217,0.012141177,0.0079792915,0.0040775235,0.001970217,0.0069528804,-0.01618355,0.011677183,0.006116285,-0.005515202,0.011360824,0.026166452,-0.008063654,-0.016310094,0.01615543,0.010981193,-0.025365008,-0.01750523,0.0064783413,0.00032009438,0.015663315,-0.0018085223,0.009139277,-0.014123698,-0.008098805,-0.012633293,-0.014875931,0.019726777,-0.0076137204,0.021863962,-0.03568536,0.01782862,-0.015761737,-0.012450507,0.04715867,-0.025294706,0.009300971,0.020303255,0.005581989,0.037063282,-0.024240173,-0.037456974,-0.029695619,0.021892084,0.023579335,0.012246631,0.0003838057,0.010861679,0.015958583,-0.0073184515,0.0019368236,-0.0462588,0.0011107736,-0.0024886953,-0.009300971,0.0085628,0.011930271,0.001585313,-0.022496682,-0.00042730512,0.028851993,-0.007768385,0.01486187,0.017547412,-0.005694472,0.011290522,-0.023284065,0.014179939,-0.0052304785,-0.011796697,-0.010425806,0.02343873,-0.010643742,0.030426761,-0.012802018,-0.008140987,0.01090386,-0.03872241,0.018630065,-0.014250241,-0.019051878,0.006998577,-0.016914692,-0.00339032,0.022229534,-0.006088164,0.01749117,-0.018587884,0.010221929,-0.018573822,-0.0044325492,-0.013111347,-0.015424287,0.00792305,0.00857686,-0.030848574,0.008928371,0.00057296234,0.033829384,-0.035882205,-0.020275135,0.017350566,-0.00012687338,-0.002580088,-0.021863962,-0.015803918,-0.009350183,0.018433219,0.03672583,0.0078035365,0.020022046,-0.0011643791,0.021723358,-0.023748059,-0.010425806,-0.009638422,-0.027628737,0.014496299,-0.022609165,0.00033173818,0.03995973,-0.0045415177,-0.045977592,-0.010981193,-0.0076980833,0.010411745,-0.03655711,0.0151149575,0.03233898,0.015663315,-0.028851993,0.027445951,-0.18177319,0.0132589815,-0.0030616578,-0.013617522,0.03672583,-0.011023374,0.008105836,-0.015368045,-0.01618355,-0.0011011071,0.016745968,0.0022514258,-0.027670918,-0.030004948,0.011824818,-0.024957256,-0.03900362,0.010460957,0.0231294,0.024577625,0.037119523,-0.016141368,0.021695238,-0.009694664,0.0083800135,0.0011292279,-0.019853322,0.017209962,-0.013336314,-0.01948775,-0.0047664843,-0.028388,0.030314278,0.021948325,0.032451462,-0.017392747,-0.00040709326,-0.000029686173,0.009736845,0.050308205,-0.008155047,0.022721648,-0.0045661232,0.010404715,-0.023748059,0.028584845,0.033885628,-0.00510745,0.006534583,-0.0033920777,0.007972262,-0.030201795,-0.010025084,0.011121796,0.020106409,-0.005979196,-0.022356076,0.016830329,0.0018524611,-0.019375267,0.008970551,0.0033498965,0.008372984,-0.028317697,-0.011410035,0.00726221,-0.016310094,0.011613912,-0.030876694,0.0055292626,0.009884479,-0.031495355,0.008759645,0.019558052,0.018334795,-0.0010158657,-0.004646971,0.008316742,0.008654192,-0.012471598,-0.019276844,0.034757372,0.008829948,-0.011185069,-0.0035432272,0.02442296,-0.012935592,-0.010791377,-0.009701693,-0.021934263,0.0191503,-0.022581045,-0.0067560347,0.001747008,0.0023533637,0.007353603,0.003532682,0.005754229,-0.00044488066,0.0009771996,0.010327383,0.0069247596,-0.010432836,0.029301926,0.02904884,0.0023990602,-0.01453848,0.010460957,0.007093485,-0.00027154197,-0.021863962,0.02573058,0.015832039,0.015227441,0.0066505815,0.007100515,0.0019719747,0.0007939747,0.015171199,-0.03337945,0.016521,0.00828159,0.013012924,0.015016534,-0.022932554,-0.0069458503,-0.11141481,-0.021006277,-0.0059370147,0.005887803,-0.005515202,0.021048458,0.0063166465,0.038834896,-0.006829852,0.031157903,-0.006566219,-0.00595459,-0.030426761,-0.018939393,-0.004615335,-0.022046749,0.00857686,-0.011494398,-0.011698274,0.022496682,-0.00644319,-0.006907184,-0.021498391,0.00085812534,0.008204258,-0.011199129,-0.015635194,0.0079792915,0.02537907,0.019740839,0.019276844,-0.003446562,-0.0025273615,-0.012485658,-0.030961057,0.003929889,-0.029105082,0.005887803,0.025055679,-0.02407145,0.014074486,-0.011902151,0.010348474,-0.031298507,0.009807147,0.009118186,-0.0035467425,0.026813231,-0.004253279,-0.014440057,-0.026813231,-0.00677361,-0.014067456,-0.0153821055,0.018264493,-0.021498391,0.009406425,0.011761546,-0.034194954,0.008703403,-0.026630446,-0.0036486804,-0.01486187,0.016281974,-0.02409957,-0.020907853,0.00051364495,-0.0021811235,0.012464567,-0.003253231,-0.0072903307,0.008956491,-0.015353985,0.008647162,-0.012042754,-0.01750523,0.0032198376,-0.027010078,0.0036768015,0.010594531,0.008956491,-0.01352613,-0.014791568,-0.030623607,0.04161886,-0.01318868,-0.001660009,0.020865671,-0.023284065,-0.0071567567,-0.013554251,0.015353985,0.0107351355,-0.016760027,-0.014468178,0.015255562,-0.027164742,-0.016703786,0.026658567,0.019136239,-0.0038420113,-0.01055938,-0.04265933,0.033295088,0.011058525,-0.005842107,0.011831848,0.008844008,0.0015651011,-0.01518526,-0.01615543,-0.01718184,0.01420103,0.032901395,-0.0021916688,-0.029976828,-0.0063869483,0.003863102,0.04592135,-0.010264111,0.02445108,-0.025252525,-0.010826528,-0.0151149575,0.01812389,0.01751929,-0.020570403,0.0013260739,-0.018855032,0.028205214,0.00059097726,0.010278171,0.0083800135,-0.0113045825,0.010439866,0.022679467,0.0039580096,0.0007078546,-0.0024008178,0.014496299,-0.00725518,-0.04592135,-0.021273425,-0.016253851,0.014889991,-0.008506558,0.014130728,-0.00033151847,-0.015747678,0.009279881,0.0026064515,0.021189062,0.017097477,-0.0014499814,-0.00889322,-0.025632156,0.0047172727,-0.02474635,0.009118186,-0.00027000412,-0.0029878404,-0.029442532,0.023635576,0.010341443,0.013821399,-0.016689725,0.014580661,-0.0030669305,-0.013090257,-0.0014464663,0.01886909,-0.015607073,-0.0032426857,-0.026532024,-0.002014156,0.010116477,0.011016344,-0.009715755,-0.0028085702,0.0030599001,-0.02907696,0.014327574,0.009146307,-0.024901014,-0.020992216,0.0018208252,0.0014403148,0.008049593,-0.019923624,-0.004052918,0.017364627,0.022215473,-0.011388944,-0.007522328,-0.017547412,0.009462667,-0.006935305,0.038806774,-0.006038953,0.0054624756,-0.01947369,0.007508267,-0.0069810012,0.022398258,-0.012647353,-0.0044782455,-0.021849902,0.021329666,-0.011677183,-0.0064220997,-0.026363298,0.023734,0.01884097,-0.008829948,0.031973407,0.020218892,-0.024254235,-0.01618355,0.0065837945,-0.017547412,-0.0231294,0.043137386,0.032170255,-0.014988414,0.022285774,0.0016626454,0.04524645,0.0092658205,0.013772187,0.00034074564,-0.004654001,0.01778644,0.02179366,-0.024633866,-0.041000202,-0.008133956,0.00759966,-0.014763447,-0.032451462,0.05815392,0.0151149575,0.07587006,0.0012671959,-0.026911655,-0.0023885148,0.010756225,0.017322445,0.02677105,0.0011151675,-0.03624778,-0.013441767,-0.011332703,-0.01943151,0.005589019,0.0063517974,-0.0037892847,-0.013498009,-0.006306101,-0.001833128,-0.003005416,0.012134148,0.042743694,-0.030117432,-0.015578952,-0.006172527,-0.016450698,-0.008900249,-0.012387235,-0.02014859,-0.025547793,-0.025252525,0.0104187755,0.009434545,-0.013976064,-0.010411745,0.006432645,0.004063463,-0.019403387,0.0029175384,0.0040247967,0.019164361,-0.003084506,0.025027558,-0.023059098,-0.01687251,-0.00029065536,-0.00053429615,-0.01716778,0.001148561,-0.019600233]},{\"id\":\"df6cfeaf-54d4-41b9-9ed9-096acd81d047\",\"text\":\"Give a theme for videos or for products.\",\"vector\":[-0.011296152,-0.018775765,-0.005965009,-0.018308707,0.01966985,-0.0031976851,-0.021738254,-0.018682353,0.0057915295,-0.025181144,-0.0021734918,0.0077731935,0.0014829119,-0.0028023531,0.0012560547,0.00574816,0.025848372,0.0063953702,0.012817429,-0.01343795,-0.022085212,0.010235261,-0.014505513,-0.008920824,-0.015092673,-0.019296203,0.0148925055,-0.015079329,-0.001537124,-0.011309496,0.037071127,-0.032827564,-0.0065588406,-0.016293682,0.004907454,0.028770825,0.023219498,0.0028056893,0.029171161,0.0043202946,-0.020844169,0.016600605,0.011930018,-0.03990017,0.000619687,0.0045237984,-0.023659866,-0.017668169,-0.0049675046,0.00967479,-0.009194387,0.02648891,-0.027329614,-0.025835026,0.000792332,0.013971732,-0.009294471,0.0117365215,0.029277917,-0.02670242,-0.006905799,0.023059363,0.0003663493,-0.01387832,-0.018335396,0.005317799,-0.043903533,0.017895026,-0.00056922797,0.0125839,0.022925917,0.015332875,0.010622253,0.007286118,0.018415464,0.0026205338,-0.0033311304,0.01214353,-0.010955866,0.022205312,0.009701479,-0.010615581,-0.021057682,0.012957547,0.0083203195,0.01055553,-0.0021151095,0.021124404,-0.002845723,-0.016653985,-0.011482975,-0.009568034,0.02167153,0.013070975,-0.011302824,0.029091094,-0.0045471517,0.0061017903,0.0033594875,0.010095144,0.0027706597,-0.010028421,-0.022058522,-0.0022568952,-0.021004304,-0.00016472164,0.0005775683,0.008146841,0.037177883,0.022712404,-0.037391398,0.045318052,0.014692337,-0.035443094,-0.008360353,-0.004613874,0.008407059,-0.001956643,-0.01969654,-0.016920876,0.021538084,0.006051748,0.021911733,-0.0075796978,0.048200473,0.008387042,-0.027703263,-0.011609749,0.009321161,-0.01634706,0.05348491,0.00058632565,0.015132707,0.0016505526,-0.019042656,0.038352203,-0.032827564,0.04256908,-0.031679936,-0.014972572,0.022098556,0.03410864,-0.0023402984,0.02055059,-0.012657295,0.015092673,-0.017468002,-0.017014287,0.01431869,0.008573866,0.014692337,0.01431869,0.014745715,0.016387094,0.022125244,0.0076931263,-0.0043536555,0.0010675631,-0.022365447,0.01896259,0.028263733,0.009955026,0.008994219,-0.011102656,0.049881887,0.033174522,0.02546138,0.017161077,0.009334505,0.0069992105,-0.017601447,0.021124404,-0.032854255,0.006345328,-0.029251229,0.010662287,0.006211883,0.01114269,0.009908319,-0.010281967,-0.012924186,-0.011069295,0.0065288157,0.009134336,-0.032720808,-0.016613951,0.009274454,-0.009187715,0.011409581,-0.018455496,0.0016764076,-0.000034065062,0.014692337,0.0043002777,-0.66146207,0.0042268825,0.016547227,-0.03448229,0.019616472,0.017134387,0.00876069,0.012016757,-0.02748975,0.0011317837,-0.004977513,0.002725622,0.015252807,-0.017681513,0.00025980148,-0.017334556,-0.006422059,-0.018975934,-0.01690753,0.03378837,0.0018498866,-0.005671429,-0.008914152,0.002647223,0.015746556,0.0009883299,-0.0057848576,-0.009814908,-0.012563883,0.030185346,-0.027836708,0.027863396,0.01764148,0.0060384036,0.038805917,0.004977513,-0.008493799,0.022979295,0.01387832,0.024220338,-0.039446454,0.011136018,-0.005751496,0.0062018745,-0.007679782,0.016920876,0.020884203,-0.010021748,-0.014598926,0.004310286,-0.004340311,-0.028797515,0.006565513,-0.0013544706,0.026115263,0.01402511,0.03883261,-0.0018181934,0.009828253,0.03904612,-0.02196511,-0.000096330885,-0.016266992,-0.018642321,-0.013251127,0.0038498994,-0.0070392443,-0.011296152,0.015920034,-0.016387094,0.0010867459,0.003024206,-0.016360404,-0.010161866,-0.011362875,-0.0024854203,0.024620675,0.018642321,-0.025634859,0.0096347565,0.0049541597,-0.006565513,0.002453727,-0.019042656,0.030745817,0.009314488,-0.0151593955,-0.020684035,0.02008353,0.04948155,0.005157664,0.011843278,0.0070592607,-0.0019432984,-0.035950188,0.04393022,0.017267833,0.007913311,0.006959177,-0.01749469,-0.0076264036,-0.002723954,-0.029571498,0.009167698,0.030852573,0.009154353,-0.0037398068,0.01026195,0.042649146,-0.017828304,0.011883312,-0.008367025,0.00376316,-0.0012510505,0.0018982606,-0.024660707,0.009434589,-0.003396185,0.010562202,-0.020270353,0.025674893,0.0016388762,-0.02287254,0.016800774,0.01534622,0.020737413,-0.008807396,-0.01155637,-0.01593338,-0.000079545964,0.021417985,-0.004066748,0.012190236,-0.005501286,-0.0032827565,0.017721547,0.0022885883,-0.0020750756,-0.010368707,-0.04254239,-0.011536353,-0.0059783533,0.002402017,-0.0133245215,-0.0066255634,-0.0025321261,-0.029251229,-0.023966791,-0.020844169,0.010201899,-0.009474622,0.0059583364,0.011676472,0.0074195634,0.03234716,-0.002555479,0.0022218656,-0.018989278,-0.02531459,-0.011543026,0.020804135,0.008513816,-0.01193669,-0.0009241093,-0.017854992,0.0018548908,0.008487127,0.019643161,-0.012817429,-0.013638118,-0.004363664,-0.0062552523,-0.007699799,0.010922505,-0.015306186,0.023593144,-0.007339496,-0.0046172105,0.008060101,-0.0037598237,0.000867395,0.017014287,-0.035122827,-0.012036773,0.032267094,0.023739934,0.0004487101,0.044170424,-0.020537244,0.01193669,0.0024103574,0.00013646876,-0.0083069755,-0.0034362187,-0.0080400845,0.029598186,0.0036030253,0.013104337,0.0016080169,-0.014492169,0.01143627,-0.01005511,-0.0065788575,-0.004230219,0.012310337,0.0007735662,0.012450455,-0.013244455,0.014051799,0.026742455,0.02343301,-0.044464003,-0.00767311,-0.011329513,0.005651412,-0.011182724,-0.020203631,0.011502992,-0.02228538,-0.010522169,-0.0015813279,-0.010882471,0.0053411517,-0.02343301,-0.004900782,-0.0003517537,-0.012176892,0.02108437,0.014545547,-0.046465684,-0.0061351517,0.01208348,0.00084612716,0.0038732523,0.0028573994,-0.016800774,0.011276135,-0.005718135,0.029331297,0.0048207147,0.01954975,0.04366333,0.017094353,-0.002772328,0.016947564,-0.019736573,0.009741513,0.015452975,-0.03696437,-0.011976724,-0.014825783,-0.002231874,-0.0054712608,-0.017841648,0.029918455,-0.015292841,0.0012327017,-0.0033494793,0.004930807,0.019709883,-0.010101816,-0.016613951,0.013484656,0.012030101,-0.00021914234,-0.002106769,0.0026071891,-0.001934958,-0.022792472,-0.017534724,0.011302824,-0.0083069755,0.0083136475,-0.0060350676,-0.024233682,0.02287254,-0.0033428068,0.010608908,-0.014705681,0.044063665,-0.014839127,-0.013618101,0.0014762395,-0.0071460004,0.0061051263,-0.022098556,-0.019683195,-0.008620572,-0.027649883,0.014265312,0.009528001,0.011396236,0.027436372,-0.011309496,0.007139328,-0.029384675,0.0046005296,0.0037798407,0.004780681,-0.014545547,-0.016000101,0.007459597,-0.010862455,-0.012417093,0.023326254,0.017654825,0.004503782,-0.01966985,0.0027790002,-0.021831665,0.005714799,-0.020176942,0.005004202,-0.009414572,0.026115263,0.008340336,0.00817353,0.006315303,0.011716505,0.02690259,0.004440395,0.012163547,-0.009734841,0.004063412,0.07264767,-0.0017915043,0.012210253,0.029037716,-0.018041816,0.008186874,-0.021244505,-0.004880765,0.017508036,0.0030192018,-0.010075127,-0.008447093,0.0004733141,-0.013744875,0.027089413,0.008013396,-0.002723954,0.012183564,-0.0045805126,-0.007192706,-0.007893295,-0.0050642523,-0.004310286,-0.0020784119,0.004090101,-0.003693101,0.03437553,0.03248061,-0.006668933,-0.013918354,-0.012630606,-0.00787995,-0.017681513,0.00033319645,-0.015439631,0.009981715,-0.010228589,0.020684035,0.02949143,0.026849212,0.002033374,0.011442942,-0.0040333867,0.0020400463,0.008867446,-0.018588942,-0.010989227,0.005304454,0.017214455,-0.014999261,0.0064520845,0.027516438,0.0154129425,0.020283699,0.015653145,0.003743143,-0.014078489,0.010435429,-0.007866605,-0.07003214,-0.0074395803,-0.021831665,-0.009327833,0.006065093,0.0013536366,-0.01896259,-0.013251127,-0.013618101,-0.032587364,-0.0072193956,0.0047473195,-0.014078489,-0.035736673,-0.015946724,-0.011903329,-0.007846588,-0.009581379,-0.026195329,0.029785011,-0.012110169,-0.009528001,-0.014051799,0.0005258582,-0.015706522,-0.011022589,-0.0005187689,-0.029571498,0.015826622,-0.03501607,-0.00044287188,0.01293753,-0.029731631,0.037364706,-0.0117365215,0.002305269,0.012130186,0.00882074,0.02311274,0.00044203785,-0.010862455,0.0052444036,-0.020844169,-0.00976153,-0.015106018,-0.0072260676,0.029544808,0.0071726893,0.0002998351,0.006462093,0.022298723,0.019829985,-0.005030891,-0.0037398068,0.01208348,0.024593985,-0.0001411602,0.016133547,0.019816639,0.012570555,-0.015986757,-0.013744875,-0.044464003,0.009447933,0.013117681,-0.004683933,-0.012603916,0.012417093,-0.015479664,0.0154129425,0.0057915295,-0.01176321,-0.013077647,-0.046652507,-0.0024603994,-0.046332236,-0.022578958,0.016587261,0.009681462,-0.017121043,-0.022125244,-0.005524639,0.034268774,-0.0028523952,-0.04051402,-0.0073261517,-0.03330797,0.007893295,0.0008081786,-0.016894186,0.020417145,-0.021030992,-0.00876069,-0.025101077,-0.002797349,-0.004733975,-0.024300404,-0.021564774,-0.021337917,0.01708101,-0.000643874,0.032880943,0.0048207147,0.024540607,-0.008900807,0.018775765,-0.00020840416,0.020390455,0.0036263783,-0.028183665,0.017988438,0.022005145,-0.025888406,0.013077647,0.011456287,0.013824942,0.012116841,-0.021578118,-0.0148925055,0.0038565716,-0.019656505,-0.00654216,-0.0016271997,-0.0149058495,-0.0034028573,-0.011102656,0.018749077,0.013030942,0.008867446,-0.0046005296,0.0014153551,0.033147834,-0.007946673,0.010095144,0.0133779,0.00946795,-0.0025838362,-0.030612372,-0.015266152,0.007426236,0.029865077,0.01832205,-0.013184404,0.0074729417,-0.0030091933,-0.0009733173,0.02514111,-0.014492169,-0.0074929586,-0.012704001,-0.008246925,-0.02775664,-0.013337866,-0.0020450505,-0.012457127,-0.0017714875,0.00018129806,-0.018241985,0.007833244,0.0014970904,-0.006211883,0.011249446,-0.010448773,0.032667432,-0.00808679,0.004627219,0.027676573,0.004907454,-0.009548018,0.009161025,-0.007359513,-0.004930807,0.0016613951,0.024220338,0.011369547,-0.034535665,0.0130376145,0.004400362,-0.045531567,0.001609685,-0.0008202721,0.031146154,0.017040975,-0.02587506,0.00758637,-0.008653933,0.037765045,0.0034762523,-0.011122673,0.013604757,0.0003002521,-0.007953345,0.01134953,0.002577164,0.023473043,0.009541345,-0.02949143,-0.00023895064,0.0051176306,-0.020417145,0.013211093,0.016080169,0.019736573,0.034802556,0.017401278,0.038352203,0.025127767,0.004753992,-0.0042835968,0.0014704013,0.024647363,-0.011476303,-0.0032760843,0.022819161,-0.019643161,-0.0002055893,-0.01502595,-0.00066597585,-0.014705681,-0.017267833,-0.021364607,0.009975042,0.002722286,0.00361637,0.01273069,0.0058649248,0.008080118,0.0030909288,-0.009854942,0.041688338,-0.0071193115,-0.0064821094,-0.021017648,0.0067690173,0.009214404,-0.008120152,0.038298827,0.025981817,0.025861716,-0.031332977,-0.0049141264,0.001462061,0.010235261,-0.01573321,0.0021701555,0.0005821555,-0.01105595,0.0046639163,-0.02113775,-0.020657346,-0.021511396,-0.0020483867,-0.0060550845,0.002233542,0.006859093,-0.00658553,0.015212774,0.00044704205,-0.0026689076,-0.02446054,0.009254438,-0.0018498866,-0.021364607,0.0040200423,-0.022445515,-0.011162707,-0.0018732396,-0.018028472,0.0083203195,-0.022245346,-0.0018799119,-0.003839891,0.013571396,0.026155295,-0.031066086,-0.0061218073,-0.012423766,-0.011442942,0.01678743,0.006618891,-0.018468842,-0.0064120507,0.011809916,0.020830825,0.029064406,-0.037097815,-0.02055059,-0.016827462,-0.030772505,-0.00051918597,-0.022165278,0.006492118,0.022098556,0.015626455,-0.025794992,-0.000059268517,-0.0045237984,-0.031146154,-0.002994181,0.014065144,0.0002825289,-0.005451244,0.009768202,-0.019282859,0.039126188,-0.005721471,-0.004340311,-0.0024587312,0.013017598,-0.017921716,-0.006865765,0.0022785799,-0.011749866,-0.018882522,-0.018562254,0.026795834,0.026996002,0.0074529247,0.011116001,-0.024247026,-0.009641429,-0.017534724,0.023779968,0.0016739055,0.011169379,0.02890427,-0.03554985,-0.021871699,-0.019282859,0.0018965926,-0.011703161,-0.004360328,0.004650572,0.0040967735,0.0026572312,-0.004066748,-0.0016872501,0.0038498994,-0.0028390505,-0.0014628951,-0.016600605,-0.010608908,-0.0032610716,0.008100135,-0.009995059,0.0021868362,0.014492169,-0.015012606,-0.0052377316,-0.009107647,-0.033121146,-0.0031526473,-0.012196909,0.019469682,-0.016587261,-0.0073261517,-0.004340311,-0.0023219497,-0.004610538,-0.0058315634,0.0021201135,-0.009588051,-0.021591464,-0.016854152,-0.007426236,-0.00808679,-0.014945883,0.011903329,0.020630656,-0.003044223,-0.0062652607,0.0088340845,-0.023886723,0.0072527565,0.009734841,-0.021458019,0.01966985,0.22653688,-0.007186034,-0.020030152,0.032667432,0.021177784,-0.0032377187,0.03816538,0.009881631,-0.0019683195,0.005381185,0.0055179666,0.009581379,0.009074287,0.000891582,0.00053628365,-0.031679936,-0.031706624,-0.017614791,-0.038272135,0.012417093,0.02514111,0.008860773,0.012190236,-0.020056842,0.021004304,-0.0011501324,-0.02548807,0.0054078745,0.010749026,0.0073928745,0.0009733173,-0.010068455,0.0017397943,-0.008053429,-0.010255278,0.01717442,-0.011876639,-0.00976153,0.018028472,0.020764101,-0.01778827,0.025207832,-0.0053678406,0.011509664,0.012497161,0.014745715,-0.028210355,0.013197749,0.007980034,0.0023719918,-0.0057881935,-0.008627244,0.040967733,0.023966791,-0.007279446,0.008507144,-0.012810757,0.0065755215,0.01832205,-0.0038498994,0.0054712608,0.037391398,-0.016427128,0.011136018,-0.008627244,0.004360328,-0.020270353,-0.023086052,0.03608363,0.0024203656,0.001263561,-0.0018115211,-0.0109425215,0.012050118,-0.0022719076,-0.025995161,0.00046122062,0.0022785799,0.014825783,0.05359167,-0.010295312,-0.010595564,-0.010515496,-0.011002572,0.002897433,-0.038352203,0.017748237,0.003943311,-0.00938121,-0.0053678406,-0.018869178,-0.003889933,-0.013511346,-0.014665648,-0.021604808,0.0060817734,-0.004380345,0.018842489,-0.010075127,0.00643874,-0.004380345,0.042916037,0.0058282274,-0.0013794916,-0.013544707,0.006799042,-0.01155637,0.02152474,0.02543469,-0.013164387,0.011089312,-0.021871699,0.01534622,-0.006025059,0.01214353,0.0013803258,0.013371227,-0.03290763,0.0014729034,-0.01352469,-0.021618152,-0.012697329,0.0047673364,0.002652227,0.011596404,0.003593017,-0.008647261,0.0045004454,-0.018749077,-0.02587506,0.00030108614,-0.01243711,-0.007633076,-0.028503934,-0.0005746492,0.0042802608,0.03178669,-0.019176101,0.01323111,0.025127767,-0.012637278,0.011116001,-0.0036864288,-0.020190287,0.004627219,-0.031039396,0.0007756513,0.016854152,-0.003743143,-0.012757379,-0.0048273867,-0.01343795,-0.014839127,-0.023593144,0.0057314793,0.011489647,-0.016480505,-0.045878522,0.0016822459,-0.011302824,-0.01034869,-0.0014462144,0.018802455,0.0031576515,-0.010241933,-0.024794152,-0.17123713,0.014532203,0.012677312,-0.0038732523,-0.0060083787,-0.018135227,0.0048740925,0.015533043,-0.01849553,0.019202791,0.016333716,-0.007092622,-0.038885985,-0.007459597,0.0040233782,-0.009955026,-0.009060942,0.0064754374,0.018095193,0.0020233656,0.026528943,0.0017731555,-0.0109425215,0.0075463364,0.0029324624,-0.018041816,-0.031039396,0.041768406,-0.0008982543,-0.022925917,0.0034629079,-0.003371164,0.02296595,0.031332977,0.0012510505,0.014719026,-0.0052177147,-0.010515496,0.014839127,0.025594825,0.013204421,-0.0017414623,0.0026455547,0.025194488,-0.0025905087,0.007486286,0.016307026,0.01764148,-0.0017297858,-0.050148778,0.0019749918,-0.029891767,-0.0073728575,0.0010742353,0.0055580004,0.013558052,0.0012068467,0.00045621642,-0.013444623,-0.017588101,-0.029998522,-0.025568135,-0.020617312,-0.00614516,-0.020657346,-0.0018248657,-0.022178624,-0.0006017553,-0.012884152,0.002897433,0.0066055465,-0.00017389601,0.004930807,-0.011823261,-0.0055112946,0.010281967,-0.035683297,-0.015079329,0.0037998573,0.0007535494,-0.01993674,0.02805022,0.014251967,0.019923396,-0.0029124455,0.03528296,-0.010655614,-0.0003911618,-0.03413533,-0.00042702522,0.004290269,-0.006762345,-0.021097716,-0.014545547,0.016987598,0.031626556,0.00014762396,0.0063720173,0.005918303,-0.010442101,0.007980034,-0.005985026,-0.019322893,0.039286323,0.012944203,-0.010795732,0.000025203455,0.034215398,0.027236203,0.007132656,-0.0012719013,0.042675834,0.021191128,0.010228589,0.023459699,0.022325413,0.008093462,-0.012977564,0.020617312,0.01302427,0.020657346,-0.008580538,0.011876639,0.016774084,-0.012623933,-0.02634212,-0.0791598,-0.0072661014,0.02289923,-0.019976774,-0.0062052105,0.011883312,-0.00043745065,0.009334505,-0.0013286156,-0.0046172105,-0.010068455,-0.04334306,-0.027276237,0.010595564,0.017427968,0.004637227,-0.007386202,0.01737459,-0.026262052,-0.003959992,-0.013905009,-0.020270353,0.0074929586,-0.020844169,-0.016160237,0.0059116306,-0.035122827,0.0003519622,0.022405481,0.0038132018,0.002847391,-0.020030152,0.002680584,-0.045264676,-0.013137698,0.0018932564,-0.0037698322,-0.012650623,0.01126279,-0.025274556,-0.005107622,-0.011296152,-0.00071476685,-0.029891767,0.017361244,-0.004753992,-0.013010925,0.034322154,0.027182825,-0.021364607,-0.009648101,0.0117431935,0.000084289524,-0.034322154,0.007819899,-0.061171364,0.0021134412,-0.01720111,-0.002126786,0.026862556,-0.005297782,-0.0035529833,-0.025848372,0.027356304,0.0048740925,-0.0005016712,0.0071259835,0.012343698,0.01690753,-0.0025121095,-0.0045705047,0.016814118,-0.013477984,0.011749866,-0.02390007,-0.038058624,-0.027596505,-0.027783329,0.026302086,-0.0015988426,-0.018749077,-0.016627295,0.012610589,-0.03034548,-0.006392034,0.022859195,-0.009047597,0.02414027,0.003191013,-0.0425157,0.008720656,0.024780808,0.01764148,-0.0064320676,-0.007339496,0.016186925,-0.008340336,-0.0077064713,0.029731631,0.011516336,-0.007993379,-0.030558994,-0.055086255,0.018655665,0.0189359,-0.0048974454,0.003566328,0.0009716492,0.00926111,-0.019910052,0.013411261,-0.014292001,0.0034362187,0.009327833,-0.022005145,0.007826572,0.015599766,-0.0017681514,0.027836708,0.0061818575,0.008460438,-0.025888406,-0.0049908576,-0.0091009755,-0.006048412,0.014785749,-0.012570555,0.013344538,-0.0019916724,-0.009074287,-0.008914152,-0.006985866,0.020030152,-0.012857463,0.014265312,0.02704938,-0.0112027405,-0.039446454,-0.0359235,0.0025654875,0.00955469,-0.00041034457,0.006065093,-0.026835866,0.003716454,-0.03565661,-0.0125171775,0.015546387,-0.02772995,-0.008720656,0.010288639,-0.0032677439,0.028717447,0.0157599,-0.015239463,-0.016186925,-0.00876069,-0.02072407,-0.009267782,0.0029057732,0.042088676,-0.0016872501,0.019029312,-0.0015946723,0.013918354,0.0008990883,-0.005801538,0.010188555,-0.0051376475,-0.004043395,0.024714086,-0.013851631,-0.012176892,0.009201059,0.0045538237,0.026181985,0.005354496,0.0068324036,0.015212774,-0.011543026,-0.009307816,0.02628874,0.0049508237,0.025621515,-0.030772505,0.025674893,0.013131026,0.031386353,-0.011956707,-0.013371227,-0.01149632,-0.0046705883,-0.02049721,-0.0030709119,0.00022018488,0.002849059,0.0023352941,-0.017614791,-0.0109491935,-0.012764052,-0.017654825,0.02590175,0.010128505,-0.0077932104,0.0035363028,-0.020043496,-0.003666412,0.033014387,-0.023766624,-0.024487229,0.015479664,-0.004760664,-0.008740673,-0.017854992,-0.016160237,0.0034145338,-0.035389718,-0.013304505,0.02093758,-0.020630656,-0.019442992,0.021204472,0.0054712608,0.0021417984,0.028370488,-0.008800724,0.028957648,0.015132707,0.011609749,-0.0028123616,0.037738357,-0.0032677439,-0.0014412102,-0.008113479,0.0028674076,-0.00955469,-0.003389513,-0.028957648,-0.018228639,0.040647466,0.011970052,0.082042225,-0.0013686492,-0.009321161,-0.008814068,-0.006465429,0.0013678152,0.016720707,0.022098556,-0.026889246,-0.003943311,0.014211933,0.013985076,-0.0083136475,0.010235261,-0.0064821094,0.0059082946,-0.017694859,0.01461227,-0.00917437,-0.0022785799,0.017027631,-0.008300303,0.028450556,-0.004463748,0.0013194412,-0.0042769248,0.0018465505,0.009921664,-0.0205239,-0.026422186,-0.0010333677,-0.014705681,-0.0027556473,-0.0038198743,0.0038599079,0.00039804255,-0.008787379,0.0268759,-0.016266992,0.013864975,0.0048140422,0.0044470676,-0.018655665,-0.019322893,-0.0069324877,0.012403749,-0.0019983447,-0.0037798407,-0.051856875]},{\"id\":\"874b005c-8e44-48b2-9750-ba688e8bd2dc\",\"text\":\"I don’t see a option to start a video even tho my recent order hasn’t been delivered I ordered a separate product from gemzeez that I can make my first video on \",\"vector\":[-0.017444756,-0.017009625,-0.023378344,-0.0364718,0.0036458615,0.025277095,0.007713667,-0.044778828,0.0029453682,-0.014056016,0.0144120315,0.015044947,-0.023154188,-0.0270308,0.01711511,0.012684697,0.0029420718,0.00511937,0.02432772,0.004173292,-0.008768528,-0.008676227,0.014108758,-0.021690568,-0.0016399784,-0.010120068,0.0137,-0.001006238,-0.018315015,0.033096246,-0.0139109725,-0.0040743984,-0.016363524,-0.024393648,-0.0355488,-0.0034118143,-0.0016276167,-0.003425,0.017444756,-0.019620406,0.010542012,0.007957604,0.016323965,-0.018130414,-0.040374786,0.029958038,-0.025277095,0.005821511,-0.0110562565,0.013581328,0.006263234,0.00059294695,-0.02137411,-0.008966314,0.018380944,0.011128778,0.008564148,0.007060972,0.0031942495,-0.022323485,0.0042392206,0.015242734,-0.00767411,-0.0073774303,0.0024393648,0.008102647,-0.0050798124,-0.017444756,0.016007507,-0.0030953563,0.0065533207,0.009045429,-0.0111353705,-0.0011455126,0.025356209,0.004348003,-0.000043652064,-0.0017899664,0.021084024,-0.0066884747,0.008755342,-0.009691531,-0.0027591195,0.020609336,0.016534938,0.009823388,0.02364206,0.009790423,0.01255284,-0.02588364,-0.0032750121,0.031329356,0.0027640641,0.033781905,-0.012618768,0.020134648,0.005811622,0.03246333,-0.0017355751,0.032858904,0.0181436,0.012420982,-0.025118865,-0.010977142,-0.003701901,-0.0004264768,-0.013027526,-0.009493744,0.012684697,-0.022547642,-0.01571742,0.026397884,0.0048523583,-0.013462657,-0.005086405,-0.009678345,0.010884842,-0.018473243,-0.049288355,-0.006487392,0.009533302,0.005719322,0.038739752,0.016627239,0.036893744,0.0010837043,-0.03908258,-0.016930511,0.023009144,0.010449711,0.03734206,-0.0021756496,0.015743792,0.03209413,-0.01892156,0.012987969,-0.027980175,0.016086623,-0.0020784049,-0.021941097,0.0043150387,0.042985566,-0.0040743984,0.00274923,-0.008564148,0.011399086,0.0061214874,-0.024274977,0.006118191,-0.007680703,0.010917806,-0.0042622956,0.005323749,-0.011161743,0.0032947909,0.008168575,-0.013541771,0.01649538,-0.009533302,-0.009994803,-0.0057325074,0.021084024,-0.010416747,-0.020292878,0.014675747,0.040005583,0.027479116,-0.032410588,-0.0017701878,-0.001621848,-0.011062849,0.02771646,-0.025830897,0.0099354675,-0.04166699,0.008801492,0.0010202478,0.0018674327,0.0072455727,-0.017958999,-0.031250242,0.004723797,0.006675289,0.03963638,-0.027901059,-0.047020406,0.016192108,-0.012592397,0.03053821,-0.022481713,0.0057423967,-0.014069201,0.016548123,-0.005399567,-0.6388235,-0.018222714,0.036234457,0.006540135,0.007344466,0.017207412,-0.018657845,0.015638307,-0.018117229,0.03317536,-0.0091245435,0.005353417,0.00921025,0.001997642,0.0070016365,-0.013924158,0.035891626,-0.009249807,0.009454187,0.001433951,-0.006329163,-0.017194226,-0.011471608,0.008742156,0.014029644,-0.008280654,0.0045359,0.013185756,-0.02199384,0.045596343,-0.011610058,0.012374832,0.0060852263,0.012473725,0.05564389,-0.019488547,-0.00656321,0.025066122,-0.006194009,-0.004631497,-0.040533014,-0.0020371992,-0.023035515,-0.017682098,-0.013442878,-0.0059072184,0.017392011,0.0021393888,-0.018077672,-0.013423099,0.023773918,0.0015007039,-0.008768528,-0.010779356,0.0149526475,-0.0048391726,0.040559385,-0.0011100759,0.013007748,0.0032700675,-0.03452031,-0.0035008183,-0.009302551,-0.02845486,-0.023220116,0.03839692,-0.018736959,-0.012420982,0.0036128971,0.01172873,0.0034447787,0.015414149,-0.016970068,0.025461694,-0.0032947909,0.04153513,0.0053336383,0.010759577,0.0021674086,0.00298987,0.00588744,0.0011694117,-0.014069201,-0.011722137,0.0071928296,0.012091338,-0.016759096,-0.020042349,0.0003642565,0.00941463,0.026516555,0.02075438,0.010357412,-0.010166218,-0.014794418,0.0007177996,0.015071319,0.021479595,0.026898943,-0.0133703565,-0.013594515,-0.021268625,0.00010486796,0.0064181667,0.047363237,0.00845207,-0.003087115,-0.01969952,0.016020693,-0.020385178,0.006902743,-0.0026717638,-0.0035502648,-0.0113661215,-0.008808085,-0.040322043,0.022270741,0.0035173004,-0.010706834,-0.004875433,-0.01580972,-0.037895862,0.005439124,0.0011356232,0.010179403,0.02861309,-0.013634072,-0.009078393,0.00034118144,0.009038836,0.01491309,-0.012427575,0.016627239,0.002183891,-0.020015977,0.023391532,0.018631473,0.007845525,-0.002694839,-0.02529028,0.0067478106,0.010574976,0.010443118,-0.009764052,0.008445476,-0.015941579,-0.006863186,-0.009836574,-0.011108999,0.003777719,0.006398388,-0.016007507,-0.01711511,0.0110958135,-0.0070939367,0.0065302458,-0.0226795,-0.024367277,0.00424911,-0.012401204,0.027268143,0.009737681,-0.024064004,-0.011036478,-0.011570501,-0.03143484,-0.0040150625,0.006411574,-0.012282532,-0.01230231,-0.0048325798,-0.0078916745,-0.002762416,-0.0050732195,-0.01221001,0.016139366,0.015941579,0.0025250723,0.012994562,-0.002183891,0.0020718118,-0.0051226662,-0.020635707,-0.0013779115,0.011715544,0.011643022,-0.024314534,0.022626758,-0.047495093,0.010680462,-0.01287589,-0.010805727,-0.013205535,0.013502214,-0.021334553,-0.0052314484,0.0139109725,0.031487584,-0.0014084035,-0.00034056336,0.01621848,-0.017101925,0.019580847,0.024090376,0.007667517,-0.0070082294,0.017207412,-0.02547488,0.027980175,0.02187517,0.019224832,-0.01152435,0.007885082,0.015796535,0.014702118,0.022732243,-0.0102453325,0.0004046379,0.000053824668,0.017154668,-0.029984409,-0.020952167,-0.02442002,-0.033597305,0.00061684614,0.03525871,0.018433686,0.015242734,0.025659481,-0.028138403,-0.03808046,0.039900098,-0.0011141964,0.024815593,0.021308182,-0.009038836,0.00024455457,0.0022712464,0.0034118143,0.0008438884,-0.0061973054,0.031329356,0.0094739655,-0.0015040003,0.02948335,-0.004348003,0.019185275,0.005036959,-0.016521752,-0.0056896536,0.013792301,-0.001915231,-0.033122618,0.0093948515,0.011999038,-0.029667951,-0.010482676,0.023088258,0.01250669,0.031883158,-0.014003273,0.004496343,0.012051781,-0.010581569,-0.01308027,0.0053501204,-0.002559685,-0.011062849,0.016350336,-0.019238017,0.02059615,-0.01317257,0.005145741,-0.01830183,0.01960722,-0.005897329,0.0144120315,0.016508566,0.009084986,0.018090857,-0.0006473382,-0.036893744,0.026714342,-0.014438403,0.0060951156,-0.002732748,-0.0032024905,0.02563311,-0.014346102,0.055274688,0.012664919,0.00027463457,0.01708874,-0.00386013,-0.01969952,0.0011842457,0.028349375,-0.010166218,0.028507603,-0.0040809913,0.00153202,-0.021321367,-0.023259673,-0.01789307,0.027004428,0.0018888596,-0.00815539,-0.01944899,0.016258037,-0.020886237,-0.00998821,-0.005775361,-0.0063258666,-0.002681653,0.0024954043,-0.009777238,-0.0074631376,-0.039372668,0.00608193,0.030722812,-0.01385823,-0.020886237,-0.015387777,0.0224026,0.09129817,0.019686334,0.00845207,0.008405919,-0.0182359,0.0018938042,0.008175168,-0.039267182,0.0075818095,0.0032255654,-0.0029503128,-0.020240135,0.020793937,0.0030244829,0.022020211,-0.0042919638,0.0007004933,-0.002732748,-0.0100541385,-0.017748028,0.0018080968,-0.002005883,0.006375313,-0.002890977,0.037183832,0.03159307,0.012526468,0.010126661,0.007416988,0.00959923,-0.013198942,-0.0018493022,-0.018446872,0.0003168702,0.005422642,0.032727048,0.018038115,0.019224832,0.008874014,0.013357171,0.0007458193,0.02391896,0.006398388,-0.025685852,0.007726853,-0.0070675653,-0.012249568,-0.002854716,0.012862705,0.012856112,0.03169856,0.006962079,-0.0102453325,0.018169971,0.009928874,-0.002770657,-0.019963235,-0.00019181154,-0.021822426,-0.027004428,-0.018591916,-0.01683821,-0.010218961,-0.0011092518,-0.008775121,-0.030960156,-0.021980654,-0.007403802,-0.0090718,-0.019567661,0.0064906883,0.019870935,-0.030142639,-0.008649856,-0.015335034,0.017576613,-0.0056962464,0.017009625,0.0060258904,0.0074829166,0.0040084696,-0.020253321,-0.004123845,0.016666796,0.005043552,-0.0012814907,-0.0015089449,-0.007054379,-0.007614774,-0.0021294996,-0.0034348895,0.0034810395,0.044356883,-0.018750144,0.01422743,0.0054094563,-0.022508085,0.018407315,0.0029602023,-0.017879885,0.0022316892,-0.016363524,-0.0041271416,-0.016679982,-0.01702281,0.02320693,-0.010673869,0.032727048,-0.020820308,0.0027986767,0.027004428,-0.008999279,-0.0010631016,0.0036920116,0.0044501927,0.017629355,0.0021740014,0.010832098,-0.015664678,0.000048004393,0.021796055,-0.042168047,0.024617806,-0.0004936417,0.007680703,0.031012898,-0.0004886971,-0.048075266,-0.01587565,0.010357412,0.014082387,0.027320886,0.0009361887,-0.011735323,-0.0313821,-0.021637825,0.008834456,0.021413667,0.001719093,-0.019422619,-0.023035515,-0.02329923,-0.033069875,-0.035100482,-0.0036524544,-0.03320173,-0.013831858,-0.0023602503,-0.012585804,0.014583446,-0.017207412,0.0097047165,-0.012922041,-0.027452745,-0.0005533897,-0.019528104,-0.01177488,-0.014543889,0.024630992,0.042458136,0.024907893,0.004001877,0.009032243,0.0120979315,-0.0030360203,-0.016350336,0.007601588,-0.004064509,-0.02109721,0.0227718,0.03380828,-0.01056179,0.030828297,0.012005631,0.008023532,0.009058614,-0.006520356,0.0056896536,-0.002094887,-0.022864101,-0.005699543,0.00024661483,0.00824769,-0.0013482436,-0.004140327,-0.0006526949,-0.010990327,0.021967469,0.013528585,0.013297834,0.027637344,-0.010337632,0.046519347,-0.004835876,0.004595236,-0.002080053,-0.027795574,-0.006497281,0.0043545957,-0.0011166687,-0.007456545,0.022178441,-0.0071664583,-0.011029885,-0.014530703,0.03433571,-0.018367758,-0.030854668,-0.005442421,-0.018750144,-0.01907979,-0.035654284,0.02125544,0.009289365,0.0025267205,-0.0032123798,-0.0092036575,0.0018938042,-0.007384023,-0.021479595,-0.009856353,-0.024433205,0.006474206,0.02448595,0.029035034,0.03921444,0.0013325855,-0.021941097,0.0034480751,0.010225554,0.0223103,-0.006784071,0.036761887,0.003988691,-0.033650048,0.0033228104,-0.0010853525,-0.03317536,-0.03871338,0.03088104,0.02662204,0.0065368386,-0.030327238,0.015321848,0.009928874,0.028744947,-0.022877287,0.023233302,-0.008405919,-0.011497979,-0.020015977,-0.008214726,-0.017128296,0.007298316,0.009177286,0.01457026,-0.017035997,0.006698364,-0.011432051,0.024024447,-0.0012872594,0.0055281282,0.004077695,0.016521752,0.019554475,0.00680385,-0.012322089,-0.029430607,0.013594515,0.022666315,-0.020358806,-0.021730125,0.024011262,0.007594995,0.01385823,0.0013770874,-0.018328201,-0.03401925,-0.0051028877,-0.010001396,-0.0046908325,-0.0017668913,-0.00772026,-0.027452745,-0.0012600638,-0.013792301,-0.002251468,0.002132796,0.015598749,-0.016627239,-0.00068895577,-0.03088104,0.01457026,-0.0075422525,-0.017629355,0.027874688,0.013376949,0.014201059,-0.027663715,0.0058907364,0.016983254,0.01046949,-0.0017833735,0.007898267,0.0049908087,-0.015308662,0.019369876,-0.01929076,-0.012440761,-0.019343505,0.017972184,-0.010851877,0.001531196,0.031171126,0.022916844,0.01060794,0.01085847,-0.034652166,-0.034942254,-0.004153513,0.014148316,-0.0034282964,0.014899904,-0.01331102,0.008676227,-0.014121944,0.010845284,0.010634312,-0.007014822,-0.0036557508,0.014847161,0.003695308,0.0075158807,0.0011817734,0.0027014317,-0.008709191,-0.017194226,0.008069683,-0.024960635,-0.0020371992,0.0039689126,0.031012898,0.007298316,0.033781905,-0.022336671,-0.007120308,-0.035469685,-0.005854476,-0.01491309,-0.02771646,-0.009559673,0.02320693,0.021822426,0.0022630054,-0.035970744,-0.011221078,-0.03262156,0.0047336863,0.016033879,0.016864581,0.01587565,0.0033887392,-0.031988643,0.035970744,-0.009981617,0.020833494,0.0047930223,-0.010667277,0.0005010587,0.004835876,-0.016890952,-0.023193745,-0.026793456,-0.011372714,0.008300433,0.015756978,0.015638307,0.020675264,-0.021400481,-0.0005290785,0.011141963,-0.0065269493,0.0008117481,0.0020915905,0.027347257,-0.024565063,-0.023932148,-0.0016712946,0.0112870075,-0.0058314004,-0.01867103,-0.001682008,-0.024050819,0.008069683,-0.0064676134,0.018961117,-0.017655727,-0.0053501204,0.037605777,0.014847161,0.008847642,0.019910492,0.010522233,-0.01780077,0.0041568098,0.022376228,-0.013976901,-0.0138714155,0.015295477,-0.02668797,-0.014886718,-0.010654091,-0.003543672,-0.01569105,-0.015783349,-0.004763354,0.0062137875,-0.02121588,0.001854247,-0.012137488,0.00728513,-0.023615688,0.020213764,-0.02084668,0.0067774784,-0.029008662,-0.0026849494,-0.009137729,0.014794418,-0.007014822,0.0055907606,-0.040269297,0.0031958977,0.011491386,-0.007838932,0.0028349375,0.22637306,0.01587565,-0.026661599,0.043934938,0.02643744,-0.014240616,0.021176323,0.0041963668,0.007594995,-0.0011216133,-0.011873773,-0.007014822,-0.014688932,-0.010614534,-0.0060786335,-0.022125699,-0.02718903,-0.021611454,-0.021664197,-0.0007557086,-0.00034118144,-0.007931232,-0.014108758,-0.015519635,0.026542926,-0.01115515,-0.006105005,0.005847883,0.0012386369,0.004740279,-0.029351493,-0.021730125,0.018644659,-0.009150915,0.012625361,0.022560827,0.011992445,-0.0019514919,0.02354976,0.039847355,-0.022231184,-0.008524591,0.014886718,-0.018446872,0.019396247,0.00198116,-0.017629355,-0.007054379,-0.010179403,-0.0138714155,-0.022217998,-0.029536093,0.02320693,0.0074961022,-0.01037719,-0.015176805,0.008801492,-0.00063662475,-0.019462176,-0.007344466,-0.013462657,0.03196227,-0.00429526,0.011010106,-0.025514437,0.009137729,-0.0030739293,-0.013924158,0.0018427094,0.015308662,0.012420982,0.0007046138,0.013845043,-0.006200602,-0.020991724,-0.04427777,0.00927618,-0.0062665306,0.03626083,0.019053416,-0.0037612368,0.0059665544,-0.016627239,-0.012480318,0.005145741,-0.0149526475,0.016152551,-0.016811838,0.006039076,-0.01584928,-0.0073115015,-0.0039260588,-0.029905295,0.002010828,-0.001494935,0.009302551,0.004384264,0.025923196,0.017260155,-0.0028711983,0.0003626083,0.011062849,0.026318768,-0.020134648,-0.020002792,0.009249807,0.01482079,0.01780077,0.0028431786,-0.0006403333,-0.0023520093,-0.01225616,0.0049314727,-0.012236382,-0.01060794,-0.010482676,0.009810203,-0.015915208,0.0037974976,0.000383005,-0.014214245,-0.009922281,-0.003161285,0.009223436,0.0088872,-0.0070675653,-0.00008380166,-0.0012048484,-0.018473243,-0.04588643,-0.008194948,0.018974302,0.009427816,-0.021585083,-0.002065219,-0.0023701396,0.015480078,0.010344226,0.016798653,0.021018095,-0.019752262,0.012144081,0.028032918,0.0029981113,0.00902565,-0.03868701,0.018974302,-0.013976901,-0.0045985323,-0.013990087,-0.014939462,0.015994322,0.016244851,-0.004783133,0.0031827118,0.021611454,-0.027162656,-0.030037152,0.003251937,0.02006872,0.00046438584,-0.02650337,0.0455436,-0.02964158,-0.019501733,-0.0012699531,-0.16719538,0.01596795,0.0066719926,-0.029272377,0.011840809,-0.008307026,0.0026470404,-0.0080828685,-0.021585083,0.0017767806,0.021242253,-0.0070411935,-0.039662752,-0.011267228,0.0052380417,0.00012268934,-0.03277979,0.014359288,0.042985566,0.008043312,0.04272185,-0.011801251,-0.008135611,-0.002043792,0.0083927335,-0.001614431,-0.026239654,0.036049858,0.011886959,-0.03051184,0.009236622,-0.006480799,0.019119347,0.002770657,0.02808566,-0.00033149813,0.01839413,0.005465496,0.003837055,0.00859052,0.007990568,-0.009467373,0.0020371992,-0.004565568,0.020134648,0.016112994,0.023668433,0.017167855,0.017141482,-0.01969952,0.018591916,-0.033122618,-0.011062849,0.0061610444,0.01711511,0.013133013,0.012262753,0.015994322,-0.033412706,-0.021426853,0.021084024,-0.0033013837,-0.040374786,0.00019552004,-0.00047963188,-0.0035469683,-0.009388258,-0.00463809,-0.018961117,0.0060720406,-0.02174331,0.017563427,0.006388499,-0.0064016846,-0.003311273,-0.013976901,-0.037974976,-0.014979019,-0.0035799327,0.0019696222,0.0018179861,0.040269297,-0.0068961503,0.010502455,0.019053416,0.00994206,0.00859052,0.013416506,-0.008003754,-0.024776036,0.011781473,0.0004318335,0.014306545,-0.010799134,0.011254042,0.025079308,0.0108255055,-0.012361646,0.0016292649,-0.0446206,0.01587565,0.014675747,-0.022982772,0.03370279,0.013765929,0.017194226,0.013884601,0.025277095,0.044225026,-0.024156304,-0.028639462,0.010759577,0.023523388,0.034863137,0.02398489,0.0184205,-0.012724254,-0.021927912,0.020411551,-0.003784312,0.00032243293,-0.030063523,-0.0010111827,0.013040712,-0.01901386,-0.020002792,-0.08897748,-0.03786949,0.008254283,-0.014385659,-0.01544052,0.010898028,0.008906978,0.019633591,-0.014398846,0.021914726,-0.010713426,-0.040190183,-0.01646901,0.0032173244,0.009032243,-0.017207412,-0.008768528,-0.0051160734,-0.040849473,0.021756496,-0.03892435,-0.01225616,0.0066291387,-0.022547642,-0.0031711743,-0.01979182,-0.0070939367,-0.0077070743,0.010574976,-0.00028287567,0.008274062,-0.0047369828,0.020398363,-0.04171973,-0.019659963,0.009408037,-0.026608855,-0.01606025,0.029008662,-0.036234457,0.0004310094,-0.006118191,-0.000330468,-0.01580972,-0.025606738,-0.012381425,-0.0043117423,0.029193264,0.01225616,-0.020635707,0.00073469384,0.0088542355,-0.029087778,-0.011043071,0.016811838,-0.015730606,-0.004565568,0.019778633,0.004371078,0.00059583137,-0.010739798,-0.011234264,-0.026727527,0.023747547,-0.020582965,0.007344466,-0.023510203,-0.009955246,0.008010346,0.015203176,0.0031942495,0.018104043,-0.008834456,0.016244851,-0.03892435,-0.0008372955,-0.01248691,-0.019752262,0.0313821,-0.017721657,-0.022916844,-0.014359288,0.018618288,-0.0177744,0.025870454,-0.0060192975,-0.005722618,0.008715784,-0.0083136195,-0.030274495,-0.007601588,0.018776515,0.0062467516,0.011082628,-0.013442878,-0.0049743266,-0.012592397,-0.0057061356,0.018077672,-0.0018525987,-0.0074235806,-0.033544563,-0.04483157,0.041825216,-0.0038040907,-0.010080511,-0.022626758,-0.0032024905,0.003543672,-0.045438115,-0.0050501446,0.008478441,0.0070411935,0.0144120315,-0.027452745,-0.012955005,-0.0135154,-0.04166699,0.03612897,-0.0020833495,0.019132532,-0.021268625,-0.018802889,-0.016007507,0.0010441471,0.039188065,-0.0021558711,0.027083542,0.009651973,0.004048027,0.008471848,-0.018486429,0.022719057,-0.016851395,0.004496343,0.018341387,0.014372474,-0.015902022,-0.0052578202,0.008386141,-0.012196824,-0.005564389,0.012915448,-0.01177488,0.009961839,-0.008129018,0.003484336,-0.005363306,-0.000510948,-0.015954765,0.012776998,0.0149922045,0.013284649,0.016007507,-0.0017388716,-0.010331039,-0.0227718,-0.025778152,0.030643696,-0.001081232,0.006108301,-0.02588364,0.033570934,-0.004753465,-0.0022432266,-0.009586045,0.027373629,0.015559192,-0.019330319,0.013805486,0.00549846,-0.010851877,-0.008814678,-0.046229262,0.006513763,-0.003995284,0.012724254,0.0069752648,-0.0023487129,-0.013119827,-0.006141266,0.012480318,0.00183282,0.027083542,-0.014003273,0.02391896,0.010917806,0.019870935,0.0050666267,0.0038271656,-0.0020536815,-0.0042029596,-0.042326275,0.017457942,-0.007469731,0.0223103,0.020873051,0.027874688,-0.0028794394,0.031276613,0.0097047165,0.030617325,0.028243888,0.004407339,-0.00005083727,0.0006254993,-0.005910515,0.0144120315,-0.022982772,-0.022442156,-0.0015872354,0.0018558952,0.0034744467,-0.02075438,-0.0021196103,0.018882003,-0.00946078,0.0027063764,-0.0011479849,-0.034915883,-0.03575977,0.014161502,0.0144120315,0.0091641005,0.025408952,-0.019897306,0.04409317,0.0003852713,0.0023091554,-0.0007862007,0.022653129,0.008748749,0.024116747,0.003484336,0.013976901,-0.025567181,-0.0037051975,-0.01929076,-0.027268143,0.024090376,-0.0044337106,0.080644086,0.003507411,0.003889798,-0.0012262753,-0.007384023,0.013159384,0.03523234,0.024565063,0.0034777431,-0.006269827,0.0049809194,0.007351059,-0.009572859,-0.00059583137,-0.01637671,-0.016930511,-0.007832339,0.03523234,-0.019673148,0.010930992,0.012533061,-0.013495621,0.028771318,0.00045532064,-0.005439124,0.0144911455,0.020055534,0.0065368386,-0.026833013,-0.03612897,0.005287488,-0.0108255055,-0.009915688,-0.012177045,-0.01060794,0.0008026829,0.010640905,-0.0006914281,-0.0006807147,-0.010673869,-0.0012295718,0.011517758,-0.023259673,-0.0047369828,-0.025962753,-0.008696006,-0.035997115,0.006404981,-0.036972858]},{\"id\":\"e6742a68-6791-491d-8a7c-094eb2a89124\",\"text\":\"I’m having an issue of not being able to use vita cup bounty. It’s giving me an error. I bought the product and made the video but I can’t post until I can get bounty to work. And I haven’t heard back from your chat support \",\"vector\":[-0.039911084,0.003695841,-0.004375689,-0.013796917,-0.0029076836,0.0155965155,-0.0044756667,-0.022474978,0.002082868,-0.027233915,0.0043556932,-0.0030243243,-0.026474085,-0.028073728,0.01764939,-0.018542524,0.007291704,-0.0042957067,0.016636282,-0.013570301,-0.02892687,0.0015971431,-0.003929122,0.023074845,-0.003050985,-0.04846917,0.0041557383,-0.011604073,-0.0021578511,0.006401903,0.009277927,0.00055945833,-0.022861559,-0.01764939,-0.02780712,-0.022861559,0.0052888184,-0.019435657,0.03004662,-0.0014313469,0.025007745,-0.00079565553,0.0116374,-0.025487639,-0.054761097,0.030899763,-0.019462317,0.007731606,0.0115640825,0.005382131,-0.011190833,-0.023421433,-0.044150136,-0.0067118336,0.01574315,-0.012003984,0.01688956,0.009151288,0.0128371315,-0.01199732,-0.004109082,0.008957999,0.020008862,-0.00041553215,0.0051388517,0.011584078,-0.005485441,0.0013580299,0.0114307795,-0.005145517,-0.003055984,0.004459004,-0.0042423853,-0.0008598079,0.027153933,0.011077525,-0.032925975,0.008491436,0.025860889,-0.009311253,0.017409444,0.0077982577,-0.0007202557,0.014170167,0.037431635,0.00862474,0.011410784,0.00899799,0.013050417,-0.024821121,0.021515192,0.0033642482,-0.0008989658,0.014703382,-0.02142188,0.011037534,0.008524762,0.04060426,-0.006305258,-0.0035991957,-0.0033159258,-0.005815367,-0.0353521,-0.017356122,-0.0072983694,0.014876676,0.0024461201,-0.015636506,0.02594087,0.001692955,-0.028713584,0.015503203,-0.00031159705,0.0035392093,0.0025860888,0.0023728032,0.015756479,-0.02436789,-0.025447648,-0.01053098,0.0045823096,-0.02964671,0.010497655,0.009631181,0.030979745,-0.0022061737,-0.0353521,0.0037258342,0.044470064,-0.0063819075,0.020515416,0.023354782,0.010251042,-0.007764932,-0.0210353,0.005955336,-0.029993298,-0.0028443644,0.01126415,0.018849121,0.027220584,0.029806674,-0.0017029528,0.009664508,0.0012347241,-0.00026202478,0.00290935,-0.02515438,-0.01015773,0.008011543,-0.0114041185,-0.027127272,-0.003499218,-0.01876914,0.005308814,-0.0027610497,-0.025101058,0.005778709,0.006698503,-0.028713584,-0.01351698,0.019382335,-0.0043223677,-0.006555202,0.023421433,0.034312334,0.025994193,-0.031432975,-0.011270815,0.018382559,-0.0056254095,0.020422103,-0.01147077,0.015676497,-0.020702042,-0.0014080188,-0.004252383,0.0075183203,-0.0036825105,0.012357239,-0.012263927,0.010570971,0.027233915,0.015863122,-0.016622953,-0.025634272,0.021008639,-0.007431673,0.026287459,-0.02668737,0.010004431,0.0036691802,0.02406129,0.001335535,-0.62663335,-0.024114612,0.01990222,0.04015103,-0.002089533,0.02970003,-0.009617851,0.02031546,-0.014343462,0.022088397,-0.021621836,0.016169721,-0.0202888,-0.0044923294,0.03153962,-0.019475648,0.01539656,-0.027913762,-0.0077182753,0.012790475,-0.019435657,-0.005915345,-0.0114441095,0.012330579,0.00021536855,-0.019715594,0.032419425,0.010264373,-0.007478329,0.035112154,0.0016904556,0.023954649,0.003180956,0.010437667,0.04508326,-0.00487891,-0.0016679607,0.0173028,-0.020848675,0.024714477,-0.049428955,-0.0067284964,0.007938227,-0.010817583,0.00056237436,-0.007898236,0.014196828,-0.0009264597,0.002836033,-0.00599866,0.017142836,-0.013043752,-0.009097967,0.0010672616,0.011510761,-0.009211275,0.033965744,-0.013117069,0.011304141,-0.017889336,-0.03076646,-0.01916905,-0.010944221,-0.027673816,-0.023914656,0.031379655,-0.013177056,0.0060553136,0.0066385167,-0.0008331472,-0.0057153897,-0.014503426,-0.037298333,0.0077516013,0.011144177,0.019075738,0.0056187445,0.0056620683,-0.0087113865,0.024007969,-0.015903113,-0.015636506,-0.02436789,-0.002377802,0.0128371315,-0.007538316,-0.019795576,0.0021245254,0.000489474,0.010071083,0.017089514,0.026354112,0.025780907,-0.008738047,-0.022821568,0.0057320525,-0.023034854,0.005608747,0.013263703,-0.028233692,-0.023914656,0.014929998,-0.026100835,0.007285039,0.030446531,0.016383005,-0.021528523,-0.00079024007,0.036951743,-0.046496276,0.00937124,-0.007178396,0.0026993968,-0.014850015,-0.0013996873,-0.042630475,0.027113942,-0.024874441,-0.00002496838,0.0240213,0.017569408,-0.019262362,0.0053121466,0.020462094,-0.0086713955,0.023741363,0.00638524,-0.016582962,-0.016542971,-0.00004014728,0.003039321,0.009504543,0.01990222,0.011204164,-0.006945115,0.018515863,0.014836685,-0.007105079,-0.0077982577,-0.015703158,-0.005882019,0.006175287,0.019862229,0.018675826,-0.015236596,-0.024314567,0.009277927,-0.0064385612,-0.015956435,0.0114441095,0.006878463,-0.0014705048,-0.014583408,0.010750931,0.014143506,-0.015129953,-0.0067884834,-0.009171284,-0.014010203,-0.009097967,0.0063485815,0.00314763,-0.015583185,-0.0054754433,-0.013643618,-0.009477883,-0.0006148626,0.021621836,-0.013430333,-0.024114612,0.00021099452,-0.010730935,-0.013343685,-0.01202398,0.005128854,0.0051655127,-0.009677838,0.010477659,-0.012317248,0.012737154,-0.0043323655,-0.00025348502,-0.013650283,-0.0054321196,0.012543864,-0.0012705495,-0.015409891,0.04423012,-0.027540512,0.02142188,-0.0056287423,-0.0017279473,-0.0054487824,0.03495219,-0.010111074,-0.006068644,-0.009124628,0.03377912,-0.013983542,-0.0026177485,0.010470994,0.012570525,0.033912424,-0.0018629171,0.008084861,-0.022621613,-0.018209266,-0.010510985,0.033565834,-0.008318141,0.019782247,0.006561867,0.0009514541,-0.009837802,0.014356792,0.020608729,-0.008957999,0.011030869,-0.013223712,0.021821791,-0.021221925,-0.022741586,0.010004431,-0.040924188,-0.015823131,0.015796471,0.006661845,0.0061719543,0.036498513,0.014156837,0.0074450034,0.016702935,0.009544534,-0.014050194,0.024754468,-0.028127048,0.032552727,-0.0065918607,0.037991513,-0.0014121844,-0.007878239,0.012177279,0.010217717,0.005412124,0.04060426,0.0032925976,0.020488756,-0.012417225,-0.022075068,0.0017262809,-0.0165563,-0.013203717,-0.044523384,0.0016887893,0.0049522268,-0.031592943,-0.022834897,0.0060953046,0.014570078,0.020195488,0.02254163,0.023181487,0.011943998,-0.0047122804,-0.003922457,0.0044823317,0.0019329014,-0.0036858432,-0.003589198,-0.022821568,0.005615412,-0.034232352,0.015129953,-0.03489887,0.041510724,-0.0020795353,0.0059753316,0.0072317175,0.014076855,0.02479446,-0.028020406,-0.004019102,0.018102622,0.008977994,0.010970882,-0.001822926,-0.00025910878,0.02699397,-0.026167486,0.035805333,0.01576981,0.0059353407,0.0113507975,0.0024494526,-0.019715594,0.00043573597,0.014156837,-0.007291704,0.008344802,0.014396783,0.013663613,0.0023011526,-0.011330802,-0.0022661602,-0.0041124146,-0.0049155685,-0.020395443,-0.022368336,-0.0071650655,-0.015676497,0.0042290553,0.008771374,-0.015649837,0.003695841,0.017982649,0.013410337,-0.01648965,-0.036018617,0.012730489,0.010371016,-0.004545651,-0.011137512,0.0077849273,-0.0042290553,0.08883348,0.0093979,0.013836908,0.021221925,-0.005672066,-0.00036845932,-0.013436997,-0.039644476,0.012117293,0.020408774,-0.0048155906,-0.01764939,-0.0031276345,0.022714924,-0.010597632,0.0010647621,0.0323661,-0.009324583,0.0165563,-0.01836923,0.009271262,0.0012155618,-0.0013796918,-0.00054696115,0.011757373,0.031592943,0.017849345,0.021475201,-0.0052521597,-0.0022494975,0.012097297,-0.0060886396,-0.010291034,0.028287012,-0.008738047,0.034445636,0.0323661,0.017769363,-0.0011730712,0.023248138,0.0058453605,0.01764939,-0.00545878,-0.021941764,0.025834227,-0.02855362,0.0071250745,-0.014330131,0.023541406,-0.0065651997,0.031699583,0.01500998,-0.01220394,-0.010457664,-0.0018429216,0.020888666,-0.016476318,-0.0085514225,0.011684056,-0.019329015,-0.016076408,-0.01692955,-0.002082868,0.0010914227,-0.010277703,-0.032925975,-0.0252077,-0.030633155,0.0011080857,-0.004845584,-0.008338137,0.0099311145,-0.014476765,0.0015763144,0.014969989,-0.0014305137,0.02220837,0.0063885725,0.020222148,0.015996426,0.0045323204,-0.023154827,-0.008171507,0.01277048,0.000523633,-0.011110851,0.021568514,-0.012257261,0.012343909,0.002122859,-0.0018595845,0.009064641,0.016356345,-0.016449658,-0.002139522,0.0113641275,0.012417225,0.02592754,-0.007138405,0.0022828232,-0.00048072592,-0.008991324,-0.023221478,-0.0029976636,-0.0050722,0.02558095,-0.01069761,0.030819781,-0.00863807,-0.003515881,0.017582739,-0.0084981015,0.0028127048,-0.017076185,0.011177503,0.02478113,0.0005332142,0.025754245,0.012897118,0.002032879,-0.022128388,-0.038471404,0.03380578,-0.018529193,-0.013523645,0.006181952,0.011044199,-0.036311887,0.0012472214,0.012263927,-0.010764262,0.0028493633,-0.0052788206,-0.034872208,-0.037111707,-0.029833334,0.021128612,0.044256777,0.012497208,-0.03001996,-0.026220808,-0.013030422,-0.015249926,-0.02932678,-0.0036158587,-0.02627413,-0.001324704,0.006661845,-0.0031376323,0.025354335,-0.00076899485,0.0012972101,-0.02218171,-0.02479446,-0.005232164,-0.039911084,-0.04588308,0.009164619,0.024487862,0.016076408,0.008571418,-0.0074183424,-0.007858244,-0.008151512,0.019195711,0.00060028257,-0.0049655573,-0.0252077,-0.007098414,0.016329685,0.011937332,0.00020193405,0.036978405,-0.012677168,-0.01165073,0.016263032,-0.016462987,0.0075249854,-0.028660262,-0.015543194,-0.0022511636,-0.008351468,0.004998883,-0.009237936,-0.0056953942,-0.0060319854,-0.0000012155488,0.01876914,0.03079312,0.004692285,0.002439455,-0.007724941,0.024687817,-0.011884011,-0.00041282442,0.013150395,-0.028660262,-0.0048489165,0.00827815,0.0128238015,0.017489426,0.022701595,-0.002484445,0.014783364,-0.015876453,0.04849583,0.011250819,-0.018289248,0.007978218,-0.030979745,-0.030873101,-0.015716488,0.0029743353,0.013123734,-0.005632075,0.0013430333,0.000046005345,0.016596291,-0.0006231941,-0.01578314,-0.0010047755,-0.008784704,0.016009755,0.028366996,0.03569869,0.053108133,0.005345472,-0.011557418,0.0065285414,-0.003204284,-0.0026993968,-0.004245718,0.039724458,-0.009584525,-0.008018209,0.010297699,0.024487862,-0.046736225,-0.059933275,0.007918231,0.0077915923,-0.010977548,-0.029406764,-0.02291488,-0.03495219,0.016369676,-0.009624517,0.01201065,-0.0072250525,-0.0058753537,-0.014330131,0.013490319,-0.0065651997,0.00592201,0.026967308,0.014010203,-0.024354558,-0.0016146392,-0.0053521376,-0.005672066,0.0018362564,0.0031759571,-0.007431673,0.011677391,0.0115240915,0.012137288,-0.013930221,-0.020808684,0.0042090598,0.020528747,-0.020022193,-0.00041740673,-0.01199732,-0.0061652893,0.007971552,-0.013863569,-0.010650953,-0.023021523,-0.014890007,0.0021411881,0.017756032,0.008698056,-0.0079049,-0.008404789,0.011910672,0.0037391644,-0.01578314,0.00034179862,0.016409667,-0.004732276,-0.008111521,-0.027940424,-0.007764932,0.017836016,-0.015263257,0.0048189233,0.022954872,0.021541853,-0.018275917,0.0062752645,-0.0013280367,0.0070784185,-0.023194818,0.008151512,0.011137512,-0.026700702,0.003220947,-0.004568979,-0.02294154,-0.034418978,0.009717829,0.008164843,0.016636282,0.013030422,0.03228612,0.024981085,0.01239723,-0.017356122,-0.019329015,0.0013705271,0.010331025,-0.008238159,0.011610739,-0.026487416,-0.010470994,-0.025607612,0.03937787,-0.003832477,0.014490096,-0.014863346,-0.0011072526,-0.026700702,-0.02895353,-0.038604707,-0.0047922623,-0.011030869,-0.005122189,0.010524315,-0.0116374,-0.0040291,0.005895349,0.026634049,0.01296377,0.01764939,-0.0113241365,0.002751052,-0.030259905,-0.013730265,0.011617404,-0.0050055482,-0.012403895,0.022688264,0.0033475854,-0.013383676,-0.014116846,-0.0076716193,-0.008478106,-0.013716935,-0.006028653,0.015196605,0.013783587,0.0062685995,0.0011397453,0.035831995,-0.004179066,0.006871798,0.016462987,-0.015529864,0.027113942,-0.020928657,-0.019582292,-0.012543864,-0.01727614,0.0012913782,-0.0002930595,0.029166816,0.010957552,0.016169721,0.0041290773,-0.0044456734,-0.01650298,-0.008304811,0.011724047,0.013043752,0.029460084,-0.033192582,-0.026927317,-0.0084581105,-0.0027210587,-0.009624517,-0.009797811,0.007105079,-0.011097521,0.009504543,-0.022848228,-0.0066551794,-0.0036525172,-0.0022744918,0.023754692,0.020822015,-0.012317248,-0.006871798,0.017476095,-0.036258563,-0.020568738,0.035858653,0.0016263033,0.007931561,0.017702712,-0.010784257,-0.015183274,-0.001749609,0.0033242572,-0.018729148,-0.0077782623,0.003289265,-0.014730042,-0.011610739,0.022381665,-0.011297476,0.004902238,-0.028100388,0.03156628,-0.008391459,0.021355228,-0.024821121,-0.0054021263,-0.034285672,0.011977324,0.020595398,0.015183274,-0.061799526,0.042657137,-0.006985106,-0.0025094394,0.011870681,0.21531188,0.010797587,-0.024287907,0.034472298,-0.0013796918,-0.013796917,0.0061386283,0.0100644175,0.014969989,0.0004965557,0.03191287,-0.011290811,-0.0075716414,-0.016063077,-0.011170837,-0.010044422,-0.0495356,-0.01727614,-0.0035758677,0.006538539,-0.0061452934,0.00006165289,-0.005678731,-0.024914432,0.036605153,-0.019995533,0.007544981,0.001347199,0.009177949,-0.031459637,-0.023008192,-0.012117293,0.030579833,0.009864463,0.0032626044,0.0056454055,0.012690498,-0.004365691,0.013970212,0.0112841455,-0.0014230154,0.01727614,0.01687623,-0.02664738,-0.009544534,0.015276587,-0.0020528745,-0.011317471,0.008164843,-0.0057020593,-0.031059727,-0.014503426,0.012303918,0.008131516,-0.013423667,-0.012557195,0.0099444445,-0.01069761,-0.034765564,0.0021478534,-0.023008192,0.023448095,0.012257261,-0.0031892874,-0.032819334,0.01576981,0.0010206053,-0.04015103,0.016303023,0.0100910785,0.016476318,-0.01764939,-0.0038758006,0.020728702,-0.03332589,-0.033272564,0.0038191467,-0.008518097,0.024647826,0.0011772369,0.016662944,0.0016254701,0.00675849,-0.020875335,-0.015916444,-0.040657584,0.0062119453,0.023168156,0.008411454,-0.002921014,-0.010757596,0.019049076,-0.028606942,-0.008604744,-0.021275247,-0.024154603,0.012737154,0.015143283,-0.0016313022,0.00011143344,-0.009831137,0.056254096,-0.0042423853,-0.005718722,-0.0065718647,-0.008344802,-0.0034958855,0.008571418,0.0099311145,-0.0017929327,-0.016209712,-0.029406764,0.0023111503,0.0034259013,0.00057612127,0.03652517,-0.01053098,0.002292821,0.002926013,0.0073116994,0.02855362,-0.015423221,0.0020862005,-0.001851253,0.01618305,-0.019955542,-0.008398123,-0.0057953717,-0.0033309225,-0.042550493,0.006148626,0.015969764,0.010450998,-0.035085496,-0.016862899,-0.011144177,0.024194594,-0.008111521,-0.020782024,0.034072388,-0.02746053,-0.00064235646,0.014876676,0.0013838575,0.012637177,-0.049988832,0.00073566893,-0.01806263,-0.02399464,-0.0032026176,-0.01839589,0.016422996,0.0023877998,0.0022061737,0.02254163,-0.012850462,-0.049802206,-0.013876899,-0.008878016,0.0067851506,-0.038044833,0.001075593,0.049988832,-0.0101444,-0.010490989,-0.016809577,-0.16838904,0.009751154,-0.0014405114,-0.016049746,0.014810024,0.01465006,0.009151288,0.008084861,-0.017436104,0.017396113,0.027487192,-0.013596962,-0.020835344,-0.014610069,0.008724717,-0.0017412776,-0.02255496,-0.0084314495,0.023848005,0.007551646,0.042683795,-0.007278374,-0.012037311,-0.011937332,0.0020795353,0.0013480322,-0.005932008,0.030526513,0.00041907304,0.0046956176,-0.0010664284,-0.02516771,0.02291488,0.019982202,0.041803993,-0.011890677,0.015983095,-0.022754915,0.023088174,0.023594728,-0.002071204,0.014530087,-0.011157507,-0.007538316,-0.012170614,0.022701595,0.020768693,0.008258155,0.007871575,-0.0046256334,0.010790923,-0.046842866,-0.010397676,-0.0008239826,0.01955563,0.002859361,-0.024234585,0.025980862,-0.025500968,0.015983095,0.0047522713,-0.012463882,-0.021515192,0.0127971405,-0.01260385,0.003985776,-0.025420986,0.01031103,-0.026607389,0.013063747,-0.010364351,-0.0014005204,0.009137958,0.013703605,0.0075983023,0.0063252533,-0.04428344,0.00022807404,0.0047822646,0.0044690017,0.0074516684,0.0062419386,-0.018635835,0.013970212,0.008464775,0.008104856,0.012443886,-0.012637177,0.005865356,-0.03455228,0.00029514238,-0.008451445,-0.0040790886,-0.0062785973,0.016369676,0.030713137,0.0051088585,0.02552763,0.01992888,-0.026540736,0.014156837,0.0071250745,-0.041937295,0.05065535,0.030126601,-0.0020645387,-0.02136856,0.015929773,0.030179923,-0.018262586,-0.0070384275,0.010131069,0.0173028,0.03343253,-0.009437892,0.006658512,-0.0005836196,-0.0030109938,-0.0033392538,-0.03767158,0.027353888,-0.0023711368,-0.008151512,-0.00442901,-0.002026214,0.0050722,-0.090646416,-0.037058387,-0.013570301,-0.019848898,-0.020062184,0.028313674,0.0014838352,0.034818888,0.0015204936,0.033672478,-0.00005670608,-0.029433424,0.0067118336,0.00921794,0.005608747,0.0031326334,-0.010164396,0.010131069,-0.0041923965,0.03004662,-0.020768693,-0.007318365,-0.012277257,-0.022421656,-0.024114612,-0.026847335,-0.0056987265,-0.023887996,0.026394103,0.01952897,0.025101058,-0.012283922,0.0051388517,-0.027327226,-0.008977994,-0.0060653114,-0.023514746,-0.0074916594,0.010857574,-0.032952636,0.002989332,-0.020808684,-0.009331249,-0.018235926,-0.016289694,0.0022061737,-0.008098191,0.015916444,0.010231047,-0.018169275,-0.019582292,0.0068018134,-0.012243931,-0.01839589,0.00901132,-0.019289024,0.009111297,0.02211506,-0.032792673,-0.010690944,-0.02143521,0.001154742,-0.008818029,0.02778046,0.002382801,0.010177726,-0.018889112,-0.007944891,-0.014410114,0.01201065,-0.0026927316,-0.0028976859,-0.0014113514,0.02292821,-0.023821345,-0.008184838,0.0016129729,-0.01317039,0.021701818,0.014383453,-0.019982202,-0.003062649,0.0087113865,-0.00029555897,0.036498513,-0.027193924,0.0020112172,0.02366138,-0.016436327,-0.03713837,-0.009711163,0.005615412,0.009157954,-0.010957552,-0.025994193,-0.00030972247,0.006401903,0.003985776,-0.005345472,-0.021595174,-0.015356569,-0.007951557,-0.052361634,0.036658477,0.021528523,-0.025287682,0.001618805,-0.0060986374,-0.0078049228,-0.02331479,0.008044869,0.002037878,0.016916221,0.025074398,-0.012250596,-0.013357015,0.0031542953,-0.0026360776,0.043003723,0.014983319,0.009111297,-0.025834227,-0.014143506,0.0016229707,0.004399017,0.021568514,0.00921794,0.04025767,-0.0084314495,0.011963993,0.014450105,-0.01768938,-0.0077782623,-0.0015238262,0.027513852,0.027700478,0.019382335,-0.00995111,0.0015921443,0.0038024837,0.005468778,-0.014556748,0.015529864,-0.022075068,-0.016396336,-0.014863346,-0.043003723,-0.030179923,-0.028393656,0.02890021,0.02218171,0.022328345,0.008064865,0.009557865,-0.015463212,-0.01202398,0.0038524726,-0.055720884,0.009297922,-0.010291034,-0.007731606,-0.042603813,0.023021523,-0.0040857536,0.019622283,-0.017129505,0.0316196,0.013197051,0.0013596962,0.0027610497,0.025407657,-0.021608505,0.021595174,-0.024647826,-0.014916667,-0.012930444,0.010057753,-0.0002599419,0.009037981,0.0019945544,-0.004052428,0.011150842,-0.029540066,-0.0052155014,-0.0068184766,0.013430333,0.020768693,0.03937787,0.010097744,0.02180846,0.013283699,0.005422122,-0.05262824,0.0044690017,0.015863122,0.014183498,0.025247691,0.0050255437,0.002304485,0.022288354,-0.007551646,0.00042240563,0.005808702,0.00769828,-0.0020012194,-0.0005032209,-0.020382112,0.0127571495,-0.01578314,-0.029620048,-0.017036194,0.006958445,0.014250149,0.0014430109,0.019995533,0.018675826,-0.01615639,-0.0035125485,0.006945115,-0.033645816,-0.025061067,0.03911126,0.025500968,-0.00097394903,0.010464328,-0.037644923,0.043110367,0.01727614,0.0029126825,-0.019275693,0.026167486,0.004062426,0.009457887,-0.0059186774,0.003124302,-0.0061286306,0.012057306,0.015676497,-0.042363867,0.019382335,-0.015489873,0.07038427,0.002744387,0.013850239,-0.0018312575,0.012910449,-0.00040886697,0.040870868,0.0015721488,-0.017742703,-0.0038458074,0.023074845,-0.00032763512,0.019982202,-0.014316801,-0.02143521,0.015849791,0.007998213,0.021195265,0.016676273,-0.0019112396,0.00592201,0.008404789,0.020702042,-0.0015338239,0.0017012865,0.015636506,0.0033259236,-0.0042490507,-0.031379655,-0.032099493,0.029859995,-0.0064452267,-0.0045089927,-0.02030213,0.018475872,-0.0056420728,-0.0056120795,0.05262824,0.007958222,0.016836239,0.01465006,0.033939082,-0.027620494,-0.013197051,-0.017982649,-0.006685173,-0.033085942,-0.011437444,-0.038738012]},{\"id\":\"54d70244-f3e3-40d7-8ee5-4853cf634023\",\"text\":\"i didn’t receive my order\",\"vector\":[-0.027319735,-0.013490584,-0.03039288,-0.02135575,-0.0119995875,0.025353443,-0.021225533,-0.027345778,-0.0062374417,-0.009375695,0.020756748,0.0009212923,-0.01716273,-0.0024985578,-0.0068820207,0.0028029422,0.016915318,0.010306754,-0.009108748,-0.004193019,-0.0021665017,0.0047106356,0.0028175917,-0.0076828613,-0.010795072,-0.019871265,0.018425846,-0.012481394,0.0014299563,-0.0021013927,-0.01599077,-0.0052738287,-0.02164223,-0.02945531,-0.03190341,-0.0014828574,-0.0008016545,-0.02170734,0.012247002,-0.018490955,0.0181003,0.0125725465,0.00839906,-0.016251205,-0.042581283,0.022592822,-0.012507438,0.0041604647,-0.021381794,0.018777434,0.009063172,-0.0058012116,-0.00608118,-0.028674,0.012338155,0.014076564,0.01151127,-0.00633185,0.007083859,-0.01223398,0.008639963,0.0072856965,-0.020327028,-0.00007151816,0.007474513,-0.0027020234,-0.00033409052,-0.027293691,-0.011237812,0.002360201,0.037320476,0.019233197,-0.007982363,-0.0026727242,0.018048214,0.0061983764,0.010124449,0.019272262,0.0022169612,-0.010157003,0.023895001,-0.03742465,0.006986195,0.019715004,0.0023129971,0.019298306,0.032945152,0.0075461324,-0.010684386,-0.026238926,0.020235876,0.026876993,-0.01063881,0.016134009,-0.016615815,0.01932435,-0.009590555,0.047425393,-0.00038292227,0.006680183,0.006654139,0.018777434,-0.0011638233,-0.022762105,-0.027215559,0.016876252,-0.022228211,-0.009473359,0.00012787814,-0.018477933,-0.034117114,0.0351849,0.017865907,-0.00012472442,0.0044827545,-0.0060746693,-0.016589772,-0.019194132,-0.017384103,-0.033205587,-0.005495199,0.0025099518,0.030627271,-0.0012606729,0.021525033,0.019988462,-0.03205967,-0.0013965879,0.02027494,0.023986153,0.015235505,0.021394815,0.010664853,-0.0029657148,-0.009505914,0.029038612,-0.048362963,-0.0008789714,-0.012364198,-0.026512383,-0.0073247617,0.034820292,0.014245848,0.0035809947,-0.014883916,0.013275724,0.034143157,-0.012403264,-0.010326287,-0.020939052,0.022696996,-0.021837557,0.006269996,-0.03469007,0.0049482835,0.025965467,-0.03461194,0.018464912,0.0074940454,-0.04724309,0.015730333,0.0132952565,0.012331644,-0.02353039,0.013119463,0.037476737,0.0135036055,-0.011608934,-0.00905015,0.0015845902,-0.026655622,0.008854823,-0.0061755884,-0.011035975,-0.013907282,0.006921086,0.011368031,0.0119995875,-0.009636131,0.0069015534,-0.015430831,0.005941196,0.027423909,0.02229332,-0.0094082495,-0.0063513825,0.013959369,-0.0017953805,0.02656447,-0.009544979,0.015938682,-0.010085383,0.014610458,-0.008503235,-0.6500482,-0.021160424,0.017188774,0.0135036055,-0.0019483867,0.026746776,-0.014857872,0.029325092,-0.01946759,0.029038612,-0.01165451,0.03888309,0.002549017,0.005905386,0.005544031,-0.00984448,0.021290641,-0.0052315076,-0.00076869305,0.026903037,-0.014219805,-0.001857234,0.00069829397,0.0068820207,0.0040042032,0.0022641653,0.018347714,0.010899246,-0.014909959,0.01976709,-0.005153377,0.030939795,0.010261178,0.006608563,0.05463947,-0.011335476,0.0028436354,0.022553755,0.0059151524,0.04054988,-0.029403223,-0.014896938,0.00781959,-0.012728808,0.0025864549,-0.0011402213,0.012474883,-0.011550336,-0.015118308,0.003231034,0.029767832,-0.011465694,-0.04502938,-0.006146289,0.02424659,-0.0033042815,0.033570196,0.004697614,0.035862036,0.0014267009,-0.008301397,-0.006572753,-0.011602423,-0.018503977,-0.006393703,0.015535006,-0.012097252,-0.0067648245,0.036591254,0.0105997445,0.00897202,0.026473317,-0.012872049,0.030705402,0.026186837,0.00365587,0.007871677,0.002360201,0.006745292,0.014350022,-0.011127127,-0.0031610418,-0.016120987,-0.031017926,0.02215008,0.019454569,-0.014271892,-0.002319508,-0.017345035,-0.009909589,0.01679812,0.013132485,0.016980426,-0.0011442906,-0.008496724,0.004632505,-0.014701611,-0.0004431481,0.013360366,-0.021850578,0.0010987143,0.020366093,-0.0042158077,0.02070466,0.041878104,-0.0037502781,0.003069889,0.006921086,0.020300984,-0.00083583675,0.02924696,0.00018301731,-0.0044827545,-0.001922343,0.00038434652,-0.03242428,0.008014917,-0.009890056,-0.021954753,0.02264491,-0.009466848,-0.016902296,0.027397865,-0.02143388,0.000048577414,0.026486339,0.008496724,-0.023282977,-0.010977376,-0.007051304,0.028205216,-0.0075461324,0.020509334,-0.021694317,0.014441175,-0.0017986359,0.03771113,-0.001171148,0.015066221,-0.030054312,-0.022137059,0.006341616,-0.014102608,-0.0020281451,0.022618866,-0.032007582,0.004394857,0.0093040755,-0.017110644,0.021993818,0.013881238,-0.0077154157,-0.015508963,0.005075246,0.0075851977,-0.009141303,-0.0005994097,-0.016277248,-0.003932583,-0.003828409,0.0063285944,0.02649936,-0.008867845,-0.008535789,-0.00499386,-0.0050719907,0.016915318,0.02953344,-0.011628467,-0.034117114,0.0014291424,-0.022762105,-0.00051151257,-0.020795813,0.013210615,0.010183047,-0.0093040755,0.0075331107,0.0046259942,0.0052738287,-0.006354638,0.021889644,-0.009024107,0.014493262,0.018464912,0.001704228,-0.0056384387,0.03778926,-0.029767832,0.024624221,-0.021798491,-0.011862859,-0.014753698,0.017279927,-0.017644538,0.00012828507,0.021225533,0.009942143,0.0032619606,0.013314789,0.036513124,0.010886224,0.0132952565,0.024624221,-0.0058663203,-0.02121251,-0.004277661,-0.01411563,0.027345778,0.023999175,0.017332014,0.0006962593,-0.00304059,-0.03526303,0.0037047018,0.026460296,-0.020873943,0.017722668,-0.012852516,0.008275353,-0.029038612,-0.0225798,0.0022739316,-0.023790827,0.007826101,-0.0050101373,0.027163472,0.011836816,0.009375695,0.011088062,-0.004131166,0.041148886,0.02308765,-0.0004809927,0.021485968,-0.0137640415,-0.0011101083,-0.030679358,0.0170846,-0.006680183,0.017709646,0.029299047,0.021889644,-0.003786088,0.016602794,-0.017019492,0.0118954135,0.0044990317,-0.018686282,0.012702765,0.020873943,-0.0036754028,-0.026160793,-0.020222854,-0.00314802,-0.03669543,-0.00006607546,0.01563918,0.03640895,0.038049698,0.016967405,0.0067713354,0.015300614,-0.020105658,0.01665488,0.007201055,-0.0020362837,0.0029901306,-0.008307908,-0.007858655,0.025223225,-0.010489059,0.0033221864,-0.020287963,0.0357839,-0.007129435,0.01005934,0.0055993735,0.023100672,0.009160835,-0.021837557,-0.028309392,-0.0053552147,0.013516627,0.011055508,0.009421271,-0.019415502,0.016824163,-0.024181481,0.02302254,0.019493634,-0.0039781597,0.00030397763,0.009245478,-0.010632299,-0.0051729097,0.024051262,-0.005120822,0.030288704,-0.0027150451,0.013288746,-0.01425887,-0.034143157,-0.003821898,0.001591101,-0.007695883,-0.015391766,-0.008978531,0.0020330283,-0.010671364,-0.030210573,-0.005312894,-0.03250241,0.009330119,-0.003296143,0.00022157405,-0.029559484,-0.021837557,0.02569201,0.015495941,-0.00011841698,-0.013067375,-0.012370709,0.008216755,0.0801622,0.022866279,-0.00789121,0.0136077795,0.0011451044,-0.020730704,-0.014154696,-0.029741788,0.014545349,-0.0063351053,-0.019024849,-0.016003791,0.013477562,0.0072856965,0.015326657,-0.00051273336,-0.0018442123,0.005797956,0.010788561,-0.039716486,0.0037079572,-0.023829892,-0.03570577,0.005820744,0.021681296,0.021616187,0.03851848,0.019076936,0.0071554785,-0.012038653,-0.02338715,-0.007591709,-0.005459389,0.009655664,0.00430696,0.059483577,0.022397494,0.0011133638,0.0067778463,0.034768205,0.034195244,0.007884699,0.014284913,-0.021264598,0.01085367,-0.006999217,-0.0034117114,0.015391766,0.010886224,0.0020753492,0.02432472,-0.0099161,-0.016225161,0.000084234765,0.0026483084,0.031512752,-0.023191825,-0.022670953,0.0063058063,0.0039260723,0.014011456,-0.011784728,0.0074028927,-0.0031219763,-0.0208479,-0.022058928,-0.017384103,0.007728438,-0.008646474,-0.0040823338,0.005602629,0.0228793,-0.011400585,0.003844686,-0.005166399,0.0015105287,0.010176536,0.00832744,0.021446902,0.015066221,-0.011211769,-0.0357839,0.0011923085,0.023074627,-0.008952487,0.028022911,0.027163472,-0.01592566,0.008711584,0.00020956958,0.01013096,0.002757366,-0.0065532206,-0.015339679,0.026876993,0.01020909,-0.004691103,0.023868958,-0.014011456,-0.012761363,0.016094944,0.00011801005,0.001284275,0.0005603443,0.0076763504,-0.005283595,-0.009903078,0.018712325,-0.027033255,0.009896567,0.033908766,-0.012852516,0.0019679193,0.013204104,-0.01462348,0.006823423,-0.006432769,0.008203734,0.007917254,0.0027362055,-0.0035809947,-0.033986896,0.036304776,-0.005928174,-0.0096165985,0.016589772,-0.00947987,-0.03104397,-0.018569086,0.0055472865,0.0009684963,0.0036623809,0.009935632,0.01216236,-0.026603535,-0.010313265,0.013041331,0.018998805,-0.0051794206,-0.035523467,-0.037945524,-0.034637984,-0.0066183293,-0.024728397,0.016524663,-0.031799234,-0.019571764,-0.009063172,0.001976058,0.019715004,-0.025587834,-0.020235876,-0.04015923,-0.018191453,-0.013308278,-0.035341162,-0.0018328183,-0.020483289,0.018412823,0.03989879,0.02685095,0.015391766,0.005045947,-0.0032049902,-0.021668274,-0.0036656365,-0.00033205588,0.011980055,-0.014584415,0.007441958,0.025457617,-0.005182676,0.039638355,0.019897308,-0.0025718054,-0.0026759796,0.0031170931,-0.001301366,-0.010261178,-0.019806156,0.03140858,-0.0050426917,0.0045413524,-0.0013949602,0.014675568,-0.009343141,0.0039749043,0.010619277,0.0059477068,-0.007077348,0.040055055,-0.021811513,0.034898423,-0.011296411,-0.016980426,-0.004430667,-0.003932583,-0.00069137616,0.0045478633,-0.0044892654,0.0007430564,0.030653315,-0.0054821773,-0.007832612,-0.0126637,0.011830305,0.00038027723,0.000056461708,-0.019962417,-0.031538796,-0.010769028,-0.014493262,-0.0024594923,0.0008960625,-0.014376066,0.0024285654,-0.017839864,0.0056775045,-0.008099559,-0.027892694,-0.018048214,-0.023269955,-0.0018474677,0.012064697,0.013184572,0.014558371,-0.012240491,-0.01789195,-0.017423168,-0.0055830963,0.004349281,0.00038841585,0.028309392,-0.019207153,-0.024650266,0.027606213,0.007656818,-0.0080604935,-0.028153129,0.008737627,0.014792764,0.014310957,-0.025874315,-0.010723451,-0.01614703,0.014323979,-0.013034821,-0.0050264145,-0.006133267,-0.011713108,-0.028387522,-0.006201632,-0.027111385,0.026291013,0.012676721,-0.004837598,0.0043330034,-0.0123056,0.00046878477,0.010436972,-0.023139738,0.021590143,-0.00817769,0.0045055426,0.013412453,-0.008457659,-0.019806156,-0.015079243,-0.027528083,0.016733011,-0.03656521,-0.025705032,0.0015813347,0.0108601805,0.0083730165,-0.006738781,-0.015860552,-0.020092636,-0.004876664,-0.0017823587,-0.014193761,0.0024855358,0.022749083,0.0074159144,-0.021381794,-0.036591254,-0.0160689,0.0045413524,0.005980261,0.007910743,-0.008880867,-0.028647957,0.0035289074,0.01692834,-0.020965096,0.021746404,-0.0031789467,0.009206411,-0.00912177,0.029976182,0.00600956,-0.0013982157,-0.040263403,0.005674249,-0.0029917583,-0.030861663,0.030288704,0.008040961,-0.027085342,-0.011634978,0.018699303,-0.02526229,-0.012982734,-0.0018002638,0.032163844,0.00810607,0.005719825,-0.03495051,-0.029559484,-0.011661021,-0.004206041,0.024702353,-0.005833766,0.009727284,0.0054984544,-0.0029689702,0.032971196,0.01194099,-0.009486381,-0.00019888763,0.023803849,0.025822228,-0.010293732,-0.003307537,-0.01049557,-0.011602423,-0.0060909465,0.0122079365,0.0009815181,0.0099812085,-0.0016456299,0.020431202,0.009818437,0.01382915,0.0010262806,0.011472205,-0.015300614,0.0032261508,0.011804261,-0.043102156,0.0028550294,0.006100713,0.0026173815,0.011394074,-0.017670581,-0.027007211,-0.032945152,-0.0017709647,0.010163514,0.007337784,0.0032017347,-0.0009481497,-0.018490955,0.030783532,-0.0015471525,0.0068559772,-0.0070187496,-0.018803477,0.005797956,0.02953344,-0.002780154,-0.01832167,-0.03432546,-0.012539992,0.007936787,0.034898423,-0.003437755,0.03250241,-0.019415502,0.0075005563,0.012390242,-0.020470267,0.0086334525,0.004385091,0.020756748,-0.021824535,0.0011052252,-0.024507025,0.003909795,-0.011192236,-0.010065851,0.0059379404,-0.015300614,-0.0046813367,-0.012097252,-0.01114666,-0.007982363,-0.008783204,0.023517368,0.0008488585,0.0017205052,0.012344666,0.015600115,-0.023999175,0.008275353,0.007988874,-0.0050557135,0.016980426,0.0060844356,-0.013412453,-0.020600487,0.007474513,-0.006123501,0.001241954,-0.0045348415,-0.00839906,0.016199118,-0.024298677,0.006667161,-0.015873574,0.00092373387,0.009369184,0.024077306,-0.016446533,0.021590143,-0.024194503,0.009505914,-0.025431573,-0.0024220545,0.022306342,0.002667841,-0.056983393,-0.00666065,-0.00861392,-0.012832982,0.0016431883,0.2216831,0.015535006,-0.029038612,0.030366836,-0.010280711,0.0025880826,0.027632257,-0.003561462,0.011739152,-0.0027996867,-0.012247002,0.024637243,-0.026121728,-0.013165039,-0.004655293,-0.02100416,-0.028726088,-0.018985784,-0.002874562,0.011042486,-0.0010327914,0.0037372564,-0.014962047,-0.010840648,0.03104397,-0.0015072732,-0.009206411,0.010176536,-0.010007253,-0.001561802,-0.03250241,-0.009759839,0.019050892,-0.015001113,0.0023764784,0.0029315325,-0.0000964427,-0.013777063,0.020834878,0.011205258,-0.016029835,-0.0132952565,0.016902296,0.011680554,-0.007428936,0.016837185,0.004443689,-0.014506284,-0.0079563195,-0.0044209007,-0.049118225,-0.019988462,0.008236288,0.033544153,-0.0044176453,0.006992706,0.026369143,-0.012292578,-0.01635538,-0.011986566,-0.028778175,0.008581365,-0.008021428,-0.0052217413,-0.032320105,0.022605844,-0.020392137,-0.014076564,-0.0025066964,0.0035451849,0.022111015,0.0029917583,0.026304035,0.012774385,-0.021030206,-0.042060412,0.010951333,0.007897721,0.012689743,0.009232456,-0.013724976,0.029924095,-0.0016163308,-0.027163472,0.0058370214,-0.035679728,0.01781382,0.01940248,0.02308765,0.005449623,0.020561421,-0.022696996,-0.013790085,0.01657675,0.01643351,0.0029038612,0.011270367,0.028022911,-0.01838678,0.0046650595,-0.012657189,0.008333951,0.00018311905,0.0030064078,-0.01302831,-0.017475255,-0.00014008608,0.028856307,0.005667738,0.0020834878,0.010345819,-0.043050066,0.0065271766,-0.0012468372,-0.0002799687,0.0015756377,-0.006549965,-0.0195327,0.004023736,0.003893518,0.016811142,-0.026356122,-0.0010848786,0.022905344,0.00068405137,0.00039533369,-0.013581736,-0.02019681,0.0040921005,-0.021512011,0.025379486,0.0014185623,0.019298306,-0.008132113,-0.009440804,0.0057002925,0.0072791856,0.025744097,-0.0031642972,0.01571731,-0.023243912,0.01991033,-0.0014828574,-0.020170767,-0.0034247332,-0.019871265,0.033205587,-0.008535789,-0.02121251,-0.010241644,-0.005397536,0.000204076,-0.0064392798,0.0021876623,0.02489768,0.0037014463,-0.059952363,-0.035731815,0.0037893434,0.014102608,-0.014180739,-0.01940248,0.053597726,-0.0103393085,-0.01816541,-0.0064685787,-0.16490807,0.010671364,0.009128281,-0.01635538,0.026655622,0.008301397,0.0020623275,-0.009382206,-0.0059021306,0.02070466,0.03734652,0.001106039,-0.022931388,-0.007188033,-0.010000742,-0.0069015534,-0.049378663,0.023673631,0.021928709,0.02070466,0.04203437,-0.0005701106,0.00069544546,-0.0108080935,0.017423168,0.0105476575,-0.021694317,0.017904975,-0.008705073,-0.014532328,0.006797379,-0.0093040755,0.015769398,0.012728808,0.041357234,-0.009388717,-0.005488688,0.00027956173,0.021551078,0.009024107,0.009636131,0.008145135,-0.00057336607,-0.0019679193,0.008679029,0.008053983,0.013568714,0.018907651,0.009147814,-0.012976223,0.008815758,-0.027606213,-0.010404417,-0.0080604935,0.015665224,0.02041818,0.018699303,0.007871677,-0.026186837,0.0013339205,-0.0036428482,-0.009030618,-0.0027248114,0.000111092224,0.0024367042,-0.0049906042,-0.0074940454,-0.0014112375,-0.03083562,0.016303292,-0.020665595,-0.0118954135,0.009349652,0.00017752375,0.021954753,-0.012422796,-0.017110644,-0.0037730662,-0.013373388,-0.016667902,-0.0025164627,0.015951704,-0.0047497014,0.012618124,0.008796225,0.002283698,0.007604731,0.007949809,0.008744138,-0.016081922,0.020014506,-0.039403964,0.009837969,-0.0069666626,0.021238554,0.015756376,0.017605472,-0.005986772,-0.009714262,-0.019311327,-0.00208186,0.00042158074,-0.015339679,0.0512538,0.016472576,0.019063914,-0.007767503,0.007767503,0.032007582,-0.03299724,-0.015248527,0.016511641,0.019701982,0.026251948,-0.007188033,0.029012568,0.010183047,-0.015092265,0.01961083,-0.018738369,0.013054353,-0.019923352,-0.018295627,0.011237812,-0.005726336,-0.0031463923,-0.08563135,-0.041643713,0.017201796,-0.0009400111,-0.018920673,-0.0023992665,0.009056661,0.03575786,-0.022280298,0.050498538,0.00065108994,-0.023868958,-0.010143981,-0.013594758,0.0067257592,-0.011068529,0.0005143611,-0.010261178,-0.009486381,0.018048214,-0.046071123,-0.015014134,0.019441545,-0.012188404,-0.019571764,-0.025718054,0.01100342,-0.004857131,0.0050850124,-0.0181003,0.02823126,-0.007435447,0.0049710716,-0.030965839,-0.010300243,0.0072726747,-0.027918737,0.015951704,0.020522356,-0.012611613,-0.005472411,-0.015574072,0.0040562903,-0.0047008693,-0.015508963,0.0029152553,0.0012232353,0.027241604,0.024285655,-0.02092603,-0.003561462,0.008093048,-0.018048214,0.00557333,0.040654056,-0.019155066,-0.0055114767,0.013529649,-0.00064457906,0.01599077,0.008698562,0.013568714,-0.02778852,0.033466022,-0.01614703,0.010293732,-0.0032847489,-0.020860922,0.029637614,0.015886595,0.010397906,0.008333951,-0.029090699,0.0022641653,-0.02446796,-0.023504347,-0.032606583,-0.013790085,0.0059249187,-0.029325092,-0.02605662,-0.023465281,0.0039846706,-0.034637984,0.014727655,0.00882878,-0.018035192,0.0027785264,-0.011973544,0.010319776,-0.011641488,0.015079243,0.018621173,-0.015873574,-0.0073573166,-0.005407302,-0.008529278,-0.022918366,0.017358057,-0.010534636,-0.0072401203,-0.016459554,-0.032736804,0.044456422,-0.0055310093,-0.013002266,0.015652202,-0.011068529,0.012045164,-0.029064655,-0.0141286515,0.0014722771,-0.006416491,0.0008175248,-0.0215641,-0.022423537,-0.021850578,-0.026746776,0.03393481,0.015521985,0.027918737,-0.0040595457,0.016746033,-0.018868586,0.0068494664,0.0061300118,-0.013803107,0.014206783,-0.015587093,0.030288704,0.010404417,0.0031333703,0.01787893,-0.021590143,0.0056709936,0.0246112,0.026512383,-0.02859587,0.008353484,0.014936004,-0.011244323,-0.00970124,-0.002223472,-0.012116784,-0.0009823319,-0.0031154654,-0.019923352,-0.0069601517,0.007832612,-0.00081426936,0.016329335,0.002573433,0.01208423,0.014206783,0.016563728,-0.009850991,-0.028283348,-0.018061236,0.026408209,-0.011101084,-0.005602629,-0.03409107,0.039482094,-0.012461862,-0.008386038,-0.02758017,0.023725718,-0.0019793136,-0.03937792,-0.00249693,0.0070187496,-0.019415502,-0.023947088,-0.028491696,-0.010222112,-0.023517368,0.015756376,0.006071414,-0.0035451849,-0.014154696,0.0036461037,0.010957844,-0.011791239,-0.013516627,-0.011615445,0.0046487823,0.012637656,0.0039781597,-0.008770182,0.0043264925,0.0066997157,0.015678246,-0.037971567,-0.0043688137,0.0013908909,-0.0059314296,0.011101084,0.02489768,0.022058928,0.012090741,0.0074810237,0.010358841,0.015587093,-0.002667841,0.0007064326,-0.005241274,-0.024598178,0.00024843152,-0.034585897,-0.017214818,-0.02454609,0.004752957,0.01527457,-0.026746776,0.016941361,0.034559853,-0.007832612,-0.008587876,0.017123666,-0.013842172,-0.020509334,0.025652943,0.00941476,0.00036135493,-0.005950962,-0.019063914,0.032111757,-0.0068950425,-0.0017611983,0.012370709,0.002679235,0.019207153,0.025783163,-0.0015748239,-0.016641859,-0.0058435323,-0.005088268,-0.011166193,-0.0056156507,0.01252697,0.004661804,0.043258417,-0.0052315076,0.029924095,0.004792022,0.020965096,0.015235505,0.026694687,0.005384514,0.013314789,-0.029351136,0.008353484,-0.0017872419,0.009753328,-0.023413194,-0.025457617,-0.01592566,-0.002946182,0.012338155,-0.022710018,-0.011387563,0.012937157,-0.01071694,0.009935632,0.016667902,-0.005023159,-0.01375102,0.005863065,-0.005739358,-0.01714971,-0.05943149,0.012787406,-0.02692908,-0.010593234,-0.024181481,0.00047244714,-0.007559154,-0.004336259,0.008451148,0.029194873,-0.0071099023,-0.009798904,0.05252994,-0.018347714,-0.010254667,-0.019207153,-0.01143965,-0.02953344,-0.00065149687,-0.030653315]},{\"id\":\"5206a798-7ca7-41bc-9214-af2af8c2a6dc\",\"text\":\"I’m unsure about how to go about posting the product. I have it and am ready to post\",\"vector\":[0.018352943,0.010246316,-0.032044414,0.0011924318,-0.009087317,0.023421971,-0.022555906,-0.02865657,-0.007565335,-0.01101686,0.008316774,-0.0016175043,-0.03818329,-0.02523052,0.0042953016,-0.0030773974,0.018301997,0.021345962,-0.003919582,-0.02315451,-0.026389519,-0.015079725,0.0012147202,-0.0056931055,0.0075143897,-0.011857452,0.028860351,-0.011233375,0.0035470466,0.013818835,0.0043589827,-0.0106029315,-0.013755154,-0.036629464,-0.021409642,-0.012602523,0.009507613,0.00053293264,0.011086909,-0.015665593,0.00880712,0.02046716,0.0026491408,-0.005677185,-0.010093481,0.0009074581,-0.013131077,-0.0078009553,0.0076353843,-0.010169899,-0.011965711,-0.012398743,-0.05010442,-0.013551374,0.017092053,0.013194759,0.033980325,0.016786382,0.004260277,0.0015896437,-0.0022463568,-0.0015633751,-0.007979263,-0.015449076,-0.012812671,-0.025281463,-0.019562885,0.009074581,0.021753522,0.016531657,0.01023358,0.014519329,-0.002459689,-0.0071514067,0.02179173,-0.0032955057,0.0068648406,-0.014035352,0.009571294,0.002706454,0.025472507,-0.012322325,0.0042953016,0.016697228,0.0449335,0.012685309,0.025370618,0.025332408,-0.008093889,-0.013933462,0.0021858595,0.022581378,0.00037969957,-0.0011120342,-0.007941054,0.021065764,0.024708332,0.02097661,-0.0048907213,-0.016913746,0.0012863616,0.020314325,-0.049009103,-0.01529624,-0.018276524,0.00020795915,-0.013895253,-0.0049798754,0.010380046,-0.005021268,-0.0006726334,0.038488958,-0.0046805735,-0.008272197,0.00072556845,-0.010857657,-0.0012226803,-0.02148606,-0.0054288283,-0.015805691,0.017601503,-0.010424623,0.02472107,-0.024504552,0.017257623,0.006794791,-0.021511532,-0.0041997796,0.02012328,0.0036266483,0.005817284,0.027204638,-0.0083422465,0.012366902,-0.00094168674,0.028936768,-0.02773956,0.02087472,0.009494877,-0.02332008,0.04052676,0.02458097,0.0055402704,0.022008246,-0.012093073,-0.006871209,0.023269136,-0.0018165082,-0.0064063356,-0.028427318,0.009730498,-0.031560436,0.015831163,0.0044449526,0.008909009,0.012156754,-0.011125118,0.010048904,0.012290485,-0.020454424,-0.0063872314,0.01600947,0.0042157,-0.0011375067,0.005463853,0.031636853,0.027357474,-0.03191705,-0.015245296,0.007590807,-0.021677105,-0.023855003,-0.0021683471,0.021498796,-0.009558558,0.012678941,0.012456056,-0.005361963,0.009119158,-0.016697228,-0.018034535,-0.001002184,0.0012585011,0.028682044,-0.0015291465,-0.022963466,-0.003862269,-0.016811855,-0.011736458,-0.013653264,0.009469405,0.019588359,0.009845125,0.015194351,-0.6394618,-0.0251541,0.04712414,0.013742418,0.002002776,0.0075398623,-0.0026379966,0.017321305,-0.011596359,0.021651631,-0.027102748,0.0077118017,-0.0013253664,-0.0033368985,0.002961179,0.00069054373,0.047404338,-0.010647508,-0.021638894,0.00450545,-0.007533494,-0.011570887,-0.0024055599,0.003512022,-0.0012744213,-0.005527534,0.015958525,0.014952362,-0.014684901,0.034515247,-0.009985223,0.024288036,-0.0038750053,0.0071450383,0.041571133,-0.025829123,-0.016315142,0.017550558,-0.011997551,0.002505858,-0.04126546,-0.03362371,-0.01097865,-0.017130261,-0.012016656,-0.014684901,0.028732989,-0.026848024,0.033343513,0.009335674,0.00829767,-0.004473609,0.011379843,-0.0066865333,0.008628812,-0.025026739,0.035432257,0.009456668,0.011621832,-0.0009424828,-0.006021064,0.009876965,-0.013933462,-0.027688615,-0.05181108,-0.004957587,-0.025370618,-0.010507409,-0.012023023,0.017665183,0.00360436,0.0035693352,-0.03810687,0.029624525,0.013857044,0.031534966,0.004820672,0.016366087,0.026236683,0.017117525,0.002305262,-0.0020155122,-0.011564518,-0.030949097,0.026109321,0.016493449,-0.009329306,-0.019652039,0.005470221,0.009915174,0.019843083,0.041800383,0.023027146,0.0057663387,0.0046041557,0.009061845,0.0008772095,0.018314732,0.00805568,0.012723518,-0.007743642,-0.013169287,-0.011781035,0.009673185,0.05935094,-0.00031900336,-0.025383353,-0.008183043,0.0005201964,-0.019066172,0.005432012,0.015550965,-0.014786791,-0.009482141,0.01985582,-0.035992652,0.017397722,-0.012487897,0.008781647,-0.03497375,0.02219929,0.0012664612,0.015016044,0.027790505,-0.016047679,0.0047474387,0.00952035,-0.010430992,0.0042443564,-0.002908642,0.018212844,-0.019473732,0.014111769,-0.0037985877,-0.0063999677,0.03492281,0.041673023,0.0014941217,0.017767074,-0.031764217,-0.0115517825,0.007176879,-0.017053844,0.0130228195,-0.011965711,-0.02077283,-0.011685513,0.0045946036,-0.029573582,0.005065845,-0.009246521,-0.029038658,-0.015105197,0.012672572,-0.009762338,-0.0011653672,-0.0026459568,-0.009628608,-0.030974569,-0.004155203,0.00037850553,0.01635335,-0.032885008,-0.0041520186,-0.032451976,-0.011761931,-0.009170103,0.02305262,-0.0065655387,-0.029293384,-0.00021870536,0.0076353843,-0.010348206,-0.0036107278,-0.010679348,-0.012838144,-0.012175859,-0.0043685352,0.019295424,-0.004413112,0.0030025719,0.010985019,0.019664776,0.00792195,0.013755154,-0.010647508,-0.016060416,0.024733804,-0.023281872,0.026644243,-0.0028449607,0.005565743,-0.00441948,0.03178969,-0.011246112,0.004807936,0.0048970897,0.021537006,-0.027128221,0.001806956,0.015474549,0.006065641,0.027382946,-0.031509493,0.014761318,0.0058873333,0.009533086,0.022326652,0.023498388,0.0063044457,0.031025514,-0.024364453,0.0034260522,-0.032426503,-0.0017751154,0.013436748,-0.024262564,-0.0037221701,-0.017053844,0.032783117,-0.008565131,-0.002458097,0.017970854,-0.024657387,-0.019779403,0.028401846,0.011067805,0.007425236,0.0055912156,-0.01767792,-0.028554682,0.008291301,0.038132343,0.004820672,0.028962241,-0.004072417,0.019295424,-0.007278769,0.033776544,0.008647916,0.0073615545,0.016022207,0.008081153,0.014659428,0.04450047,0.0019231744,0.004495898,-0.0059573827,-0.022415807,-0.013010084,0.009405724,-0.010507409,-0.031509493,0.018098217,0.018060008,0.0026539168,-0.018047271,-0.020212434,0.017410459,0.00934841,0.024861168,0.0029850595,0.024619179,0.015207087,0.017843492,-0.015525494,-0.014251868,-0.03303784,-0.012838144,-0.026045639,-0.000043109234,-0.017639711,0.015207087,-0.01600947,0.0036903296,-0.009571294,0.025931012,-0.010532882,0.0059541985,0.02362575,-0.022988938,-0.03217178,0.00754623,0.02437719,-0.019499205,-0.009717762,0.00441948,0.017384987,-0.0031522228,0.040654123,0.028631099,0.009170103,0.014875945,-0.006177083,-0.014468384,0.0038813734,0.025943749,0.020186963,0.014188186,0.016047679,0.0046773893,0.003063069,0.0025822755,-0.018034535,0.019333633,-0.0043398784,0.014430176,-0.033980325,0.020721884,0.0029261543,0.025001267,0.0014447687,-0.013143814,0.008074785,0.0190407,-0.0052537047,0.013653264,0.00081750826,0.0021380987,0.008724334,0.00014169082,-0.0115199415,-0.015805691,0.019333633,0.09985223,0.011589991,0.010564722,0.024912111,-0.020798303,0.01751235,-0.0048111198,-0.019244479,0.009004531,0.023371026,-0.0033942116,-0.002612524,0.003754011,-0.0022240684,-0.0038877414,-0.004298486,0.014735846,-0.012685309,0.009794179,-0.04732792,0.013576847,-0.0039864476,-0.018212844,0.0123414295,0.03657852,0.022161081,0.027408417,0.008240356,0.009399355,0.010150794,-0.0068839453,0.004683757,-0.00985786,0.007762747,-0.0201997,-0.0011749194,0.0007478569,0.027510308,0.00561032,0.027866924,0.0047060456,0.007934686,0.01641703,-0.015117933,0.006438176,0.008163938,-0.012717149,-0.00846324,0.02924244,-0.0011136262,0.024147937,-0.0008581051,-0.029879251,0.012997347,0.011277953,0.012901825,-0.01145626,-0.0072532967,-0.023905948,-0.006520962,-0.02865657,-0.011583623,0.0032174962,0.0022304365,-0.03107646,-0.020721884,-0.012456056,0.006110218,-0.022988938,-0.017537821,-0.02488664,-0.018314732,-0.023931421,-0.013398539,0.032044414,0.009329306,0.012226803,-0.009692289,0.01853125,0.023141773,-0.01097865,-0.015627384,0.011035964,-0.009386619,0.031433076,0.03820876,0.012086704,0.009246521,0.0047538066,0.022887047,0.0100807445,0.011239744,0.034617137,-0.019410051,0.006336286,0.013220231,-0.012328694,0.014684901,-0.011819243,-0.014086297,-0.005674001,0.007278769,0.0042284364,-0.059299998,-0.018352943,0.014022616,-0.0056071356,0.01152631,-0.024810223,0.009915174,0.028198065,0.008399559,0.0022288444,-0.02060726,0.0073997634,0.03308879,-0.00002843269,0.024950322,-0.0019438707,-0.0065910113,-0.0019709354,-0.0074188677,0.051963914,-0.0015983998,-0.013525901,0.036196433,-0.0065655387,-0.022313917,-0.0030535168,0.011316162,0.024198882,0.018009063,-0.010622036,-0.008654284,-0.018556722,-0.013334857,0.021167655,0.010456464,0.005871413,-0.013678737,-0.00850145,-0.008093889,-0.01791991,-0.011781035,0.0012807895,-0.04213153,-0.0054479325,0.013207495,-0.007094093,0.03423505,0.008692494,0.004053313,-0.0441948,-0.023689432,-0.004467241,-0.042284362,0.0033368985,-0.0068584727,0.021244071,0.008507818,0.0018945178,0.0076926975,0.023714904,0.00071681227,-0.014748582,-0.02158795,0.024733804,-0.021435115,-0.0049862433,0.018785974,0.025026739,0.014277341,0.029471692,0.04024656,0.0062821573,0.018977018,-0.012233172,-0.0130546605,-0.022161081,-0.02621121,-0.00952035,0.008851697,0.004024656,-0.0017146182,-0.019027963,0.0010602932,0.027535781,0.012118545,0.03362371,0.009297465,0.013678737,-0.0035597829,0.032044414,-0.013525901,-0.004470425,0.007329714,-0.0066992696,-0.019129854,0.005119974,0.007826428,0.01462122,0.008507818,-0.017384987,0.009310202,-0.022937993,0.0012155162,0.004721966,-0.0019884477,-0.0020919298,-0.016697228,-0.015156142,-0.027281055,-0.006973099,-0.007991999,0.013080132,-0.0046996777,-0.0046455488,0.0038367964,-0.01812369,-0.03545773,-0.017601503,-0.004266645,0.007864636,0.016799118,0.0123414295,0.049365718,-0.011195167,-0.017155733,0.0050849495,-0.01706658,-0.013818835,0.0019454628,0.039788056,-0.010787607,-0.01030363,0.005123158,0.0022877497,-0.00863518,-0.023014411,0.0074507087,0.019766666,-0.009800548,-0.026771605,0.0068011596,-0.01641703,0.016735438,-0.014391967,0.016735438,-0.0055943993,-0.019193534,-0.009507613,0.016098624,-0.000046019668,0.020161489,0.024402663,-0.003970527,-0.02203372,-0.016569866,-0.02230118,0.0034929176,-0.0045659468,0.0045277383,-0.016811855,0.013564111,0.03614549,-0.01635335,-0.03535584,-0.0121058095,-0.01985582,0.022161081,-0.032681227,-0.0051963916,-0.016913746,0.010622036,-0.010501041,-0.014035352,-0.015601911,-0.0009480549,-0.0010992979,-0.0043366943,0.013882517,0.005049925,-0.038743682,0.0050085317,0.00035741113,-0.016327877,0.00220974,0.010927706,-0.009335674,-0.00019651641,-0.010551986,-0.021154918,-0.016506186,0.009284729,-0.008348614,0.0047633587,0.024109729,0.024937585,0.0040915217,-0.013016451,0.02672066,0.0016318326,-0.031407602,-0.010768503,0.009405724,-0.030847207,0.01710479,0.00593191,-0.0043876395,-0.036935136,0.008176675,-0.0060306164,0.00952035,-0.016047679,0.004263461,0.023103565,0.0116154635,0.006457281,-0.015117933,-0.0029755072,0.014455648,0.020581786,0.011252481,-0.013716945,-0.000103979575,-0.017283097,0.01910438,0.0052473363,0.0020441688,0.004155203,-0.0020234722,0.033980325,-0.008979059,-0.014532066,-0.004852513,-0.009698657,-0.0106029315,0.004664653,-0.02281063,-0.0024612811,-0.017728865,0.010443728,0.009813284,0.03594171,-0.019155325,-0.0040119197,-0.0316878,-0.018161898,-0.01812369,-0.007329714,-0.010921338,0.028529208,0.01155815,-0.034031272,-0.0047824634,-0.0048461445,-0.045646735,-0.005018084,-0.0063776793,0.0005269625,-0.009412091,0.012449688,-0.024963057,0.020849247,-0.015474549,-0.007565335,-0.0036935136,-0.016098624,0.0010411887,-0.011004123,-0.0047442545,-0.012698045,-0.040603176,-0.015716538,0.006915786,0.015792955,0.0031713273,0.01842936,0.0027971996,0.007074989,-0.02865657,-0.0055307182,0.009278361,0.019410051,0.015792955,-0.02356207,-0.021473324,-0.0025950116,-0.0034706292,0.00009895472,-0.0021444666,0.005107238,-0.0075971754,0.022339389,0.0040851533,0.013500429,-0.025001267,0.014137242,0.034031272,-0.0020425767,-0.012386007,0.010271789,0.0020011838,-0.018773237,-0.011704617,0.022746949,-0.016366087,-0.016378822,0.008565131,-0.007189615,-0.020925665,0.005269625,-0.0013946198,-0.03433694,-0.031967998,0.00492893,-0.015678328,-0.014468384,0.020658204,0.009870596,-0.0029691393,-0.0139716705,-0.017295832,-0.010138058,0.011227008,-0.02362575,0.01751235,-0.006384047,0.004495898,0.010189003,0.001703474,-0.016276933,0.031866107,-0.008278565,0.0033782914,0.009182839,0.22660343,-0.002306854,-0.0035279423,0.002716006,0.035304897,-0.0016198923,0.019830348,0.007482549,0.007928318,-0.007947423,0.023511125,0.018645875,-0.021778993,0.00038387865,-0.008163938,-0.008686125,-0.012608891,-0.033343513,-0.0054925093,-0.00052497245,0.026669715,-0.004785647,0.013793363,-0.023574805,0.033496346,0.008323142,0.0035438626,-0.013666,0.00092497043,0.0077754827,-0.022925258,-0.03433694,0.023842268,-0.01081308,-0.023791322,-0.015079725,0.009985223,0.00022726253,0.014633955,0.020237908,0.021931829,0.013118342,0.004371719,-0.016467975,0.0029818753,0.024096992,0.0024819775,-0.013449484,0.00031999836,-0.009959751,-0.017117525,-0.027408417,0.0040437607,0.02012328,-0.019919502,-0.0018801895,0.014099033,-0.00952035,-0.0031840634,-0.010023432,-0.0077500106,0.014990571,-0.0023466547,0.01893881,-0.022122873,0.000852533,-0.007966527,0.004562763,0.025650814,0.004024656,0.007743642,0.0042188843,-0.011163326,0.018251052,-0.007094093,-0.009685921,0.023434706,0.013564111,0.04223342,0.0022161081,0.008692494,0.011112382,0.0029707311,-0.024173409,-0.009367514,-0.033445403,0.0130546605,-0.0053046495,0.017970854,-0.006578275,-0.00033094359,0.01751235,-0.013487693,-0.022479488,-0.017525084,-0.013729681,0.0033942116,0.019588359,-0.017996326,-0.0007880557,-0.005836388,0.059147164,0.0084314,0.024364453,0.0016955138,-0.011335266,-0.013322121,0.029879251,0.019932237,-0.0054447483,0.00470923,-0.038743682,0.0052791773,0.019843083,0.00050387805,0.009316569,-0.00402784,-0.015372658,0.0024246643,-0.005686737,-0.019970447,-0.0068393685,-0.0030200842,0.0024230722,0.0220974,-0.014506593,-0.00060497207,0.006473201,-0.0078837415,-0.03125477,0.018773237,0.026848024,-0.015219823,-0.007781851,-0.0077372743,0.001102482,-0.0037922196,-0.006231212,-0.014290077,0.014264604,-0.012309589,-0.0035916236,0.0070558847,-0.023205454,0.020619994,-0.015920317,0.009596767,-0.019180799,0.0016206882,-0.0023960078,-0.0073360824,0.007278769,-0.0020776014,-0.025064947,0.002313222,0.0032397846,-0.026975386,-0.0074061314,0.003967343,-0.007024044,-0.01641703,-0.0031251584,0.044143856,-0.010354575,-0.018352943,-0.0074061314,-0.15864278,0.007387027,0.023982367,-0.00012935257,-0.002357799,0.010399152,0.013793363,0.008781647,-0.016990162,0.0056262403,0.029369801,0.006833,-0.018862393,-0.037113443,0.001057905,-0.014328285,-0.012379639,0.008323142,0.010908602,0.028478263,0.019970447,-0.025319673,0.008011104,-0.02063273,-0.011035964,0.004868433,-0.016671756,0.035406787,-0.038438015,-0.03217178,0.0074188677,-0.009972487,0.014774054,0.02967547,0.03392938,-0.015920317,0.009093685,-0.002852921,0.012023023,-0.0020346167,0.0047983835,0.008819856,-0.0129272975,0.006635588,0.022861576,0.004718782,0.013958934,-0.0090682125,0.004056497,-0.024389926,0.022326652,-0.028503736,-0.010405519,0.010246316,0.0017735233,0.015983999,-0.00070885214,0.005225048,-0.011055068,-0.008361351,0.009074581,0.009221048,-0.009902437,-0.007858269,-0.008482345,-0.018926073,-0.011290689,0.013806099,-0.017206678,0.00021611831,-0.007622648,-0.0036425686,0.013283913,-0.0050817654,0.010666613,0.0115199415,-0.031458545,0.013411275,0.001759195,0.027382946,0.0066992696,0.008316774,-0.015347186,0.014850472,-0.018200107,-0.00921468,-0.011997551,0.005221864,-0.021396907,-0.012150386,-0.01533445,-0.0039259503,-0.008112994,-0.011258848,0.041494716,0.025434298,-0.0013293464,0.0072405604,0.015614647,-0.031152876,0.0120102875,0.017652448,-0.034591664,0.020721884,0.022364862,0.012704413,-0.01441744,0.023434706,0.026848024,-0.015678328,-0.0023243662,0.0101125855,0.025115892,0.03522848,0.018149162,0.03497375,0.008348614,-0.019766666,0.012704413,-0.007113198,0.014532066,-0.026644243,0.0016318326,0.000004850722,-0.02743389,-0.026134793,-0.090478346,-0.012806303,0.012354166,-0.0020346167,-0.025383353,0.015308977,0.0018865576,0.0485506,-0.003359187,0.02672066,-0.028274484,-0.023129037,-0.008106626,-0.0039768955,0.0180218,0.004323958,0.000011629294,-0.0017703393,-0.014875945,-0.020428952,-0.027332,-0.01869682,-0.004346247,-0.03240103,-0.014850472,-0.014875945,-0.012386007,0.004158387,0.022110136,-0.006129322,-0.0028306325,-0.012354166,-0.007227824,-0.008444136,-0.0014137242,0.0067438465,-0.026949912,-0.0044513205,0.025714496,-0.03512659,-0.003906846,-0.01458301,-0.023065355,-0.015869372,-0.0018945178,0.024338981,-0.026797079,0.036298323,-0.000904274,-0.01013169,0.0013006899,0.0057758912,-0.009679553,-0.03331804,0.023511125,-0.01458301,-0.02743389,0.025548926,-0.034769975,0.023243664,-0.004422664,-0.0068457364,0.0022845655,0.0071195657,-0.006173899,0.03015945,0.014532066,-0.011768298,0.006317182,0.026695188,0.0011709393,0.0069221538,-0.014251868,0.016722701,-0.038259707,-0.0056548966,-0.009450301,-0.0032031678,0.018824182,-0.008361351,-0.023944156,-0.01665902,-0.02883488,-0.050537456,0.0154108675,-0.0061134016,0.0017400907,0.01777981,-0.0018149161,-0.027459363,-0.0074570766,0.023230927,0.015143406,0.0058968854,-0.045341063,0.0014750174,0.014251868,0.0050371885,-0.016799118,0.028936768,-0.016289668,-0.01665902,-0.032859534,0.014633955,0.0068457364,-0.022110136,-0.015219823,-0.0026204842,0.00041790833,-0.037266277,0.0028338165,-0.0004565151,-0.010157162,0.0055943993,0.0045022657,0.0061038495,0.015907582,-0.010106217,0.02832543,-0.00673111,-0.014926889,-0.06276426,-0.019091645,-0.0075016534,-0.010252684,0.0101125855,-0.023511125,0.035279423,0.0090109,0.025880069,-0.008386823,-0.0011836756,0.023409234,-0.015449076,-0.022759685,0.053594157,-0.0004819876,-0.03331804,0.003219088,0.027204638,-0.01458301,-0.014761318,-0.011564518,-0.016136834,0.009826019,-0.013678737,-0.017754339,-0.01462122,-0.0059987754,-0.013895253,0.035432257,0.0106029315,0.035686985,0.011418051,-0.0013810875,-0.012258644,-0.0061070337,-0.032655753,-0.007915582,-0.0062057395,0.0037285383,-0.023855003,0.019524677,0.0018149161,0.003317794,-0.002467649,0.0060942974,0.0073042414,-0.009278361,0.011316162,0.025014002,-0.02832543,-0.012042128,-0.008170307,0.0047983835,-0.02924244,0.027051803,0.008036576,-0.02682255,-0.024453606,-0.011876557,0.023842268,0.0170029,0.0060115117,0.005151815,0.010513778,0.015219823,0.045366537,-0.014404703,0.024963057,-0.0039928155,-0.001706658,-0.03505017,-0.0032827694,-0.002103074,0.024899377,0.031815164,0.02472107,-0.00941846,0.0025790913,-0.017703393,0.0037476427,0.015983999,-0.0035693352,0.011564518,-0.0017432747,-0.030541537,0.016302405,-0.04508634,-0.025319673,-0.009972487,0.021435115,-0.017244888,-0.023523862,0.0017798914,-0.0016875536,-0.0065655387,-0.0038367964,0.009501245,-0.031203821,-0.04185133,0.050868597,-0.0028783933,-0.024288036,-0.0040373923,-0.025345145,0.02580365,-0.02168984,0.017588766,-0.022377597,0.026262155,-0.017958118,-0.005123158,0.018072745,0.009342042,-0.020327061,0.014926889,-0.015054252,-0.043328736,0.008985427,0.010456464,0.071934365,0.012411479,-0.004559579,0.0031824715,-0.015716538,0.0022511329,0.018467568,0.0024389925,0.0056899213,0.0110295955,0.02924244,0.027663143,0.0062089236,-0.0190407,-0.008979059,0.016429767,0.016544394,0.00027164043,-0.028809406,-0.012144018,0.025408827,0.0074507087,0.014735846,-0.0073042414,-0.01462122,-0.016671756,0.038845573,-0.03614549,-0.024326244,-0.04164755,-0.0019979998,-0.00032815753,0.0039418708,-0.02563808,-0.0028911296,0.002964363,-0.0004919378,0.009577663,0.0006061661,0.00720872,0.0016636732,0.018301997,-0.007743642,-0.0017798914,-0.032885008,0.0068648406,0.0011359146,-0.016073152,-0.041902274]},{\"id\":\"46d00d23-b0be-46d3-9f37-656ed370fa1a\",\"text\":\"It’s too difficult to request a post that you purchased in store! Most posts require a website purchase and it’s very difficult to request a post if you bought the product in the store!! \\n\\nThank you! 😃😃😃\",\"vector\":[-0.0019263291,0.016311685,-0.012767106,-0.036731105,-0.011793176,0.00018830571,-0.013389892,-0.024354896,-0.0051843594,-0.010521103,-0.009494169,0.0062013553,-0.022287777,-0.025202943,0.015953913,0.0014584117,0.025958236,-0.02671353,-0.03174882,-0.019862888,-0.0152516235,-0.0069367723,-0.004299871,-0.011203517,-0.008626244,0.006373615,0.034769993,-0.021770997,-0.0014211439,-0.014893853,0.011521535,-0.0134296445,-0.038665716,-0.034610983,-0.009050269,-0.0007180255,-0.0029433249,0.005518941,-0.0012049909,-0.007698691,0.033921942,0.023665855,-0.0016679392,0.0007938033,-0.014509581,0.013860294,-0.0017557256,-0.014112058,-0.0044091903,-0.010256087,0.00793058,0.0034352592,-0.011700421,-0.00016211475,-0.01885583,0.0011569569,0.015569642,0.004164051,0.011534786,-0.021174712,0.0018749824,0.004482069,-0.014509581,0.010309091,-0.010183209,-0.008381105,-0.009196027,0.008626244,0.007175286,0.017186234,0.010713238,0.01709348,0.029973216,-0.018484809,0.010415097,0.0015909192,0.036572095,0.023281584,-0.012555094,0.003769841,0.030635756,-0.034796495,0.000047438753,0.0279591,0.028648142,0.0072945426,0.01413856,0.0279061,-0.003544578,-0.0013540619,-0.006164916,0.035485532,-0.0021963133,-0.005277115,-0.0020969326,0.027376069,0.0026766532,0.03983178,0.017000724,-0.008911136,0.008593117,0.011435405,-0.03821519,-0.0068042646,-0.015344379,0.025282448,-0.001508102,-0.023546599,0.011408904,-0.00063272374,0.023334587,0.04696069,-0.0011172047,0.006118538,-0.0010012605,0.008679247,0.0070096515,-0.018259546,-0.012866487,-0.010415097,0.027482074,-0.021148212,0.02621,0.0077914465,0.035936058,-0.015304627,-0.029787706,-0.007539682,0.007804697,-0.02742907,0.015662396,0.013237508,-0.00880513,0.00078345113,-0.010024199,0.02110846,-0.018922083,0.00793058,0.017358495,-0.017756017,0.020671183,0.019279854,-0.005469251,-0.00828835,0.0024282015,0.0062411074,0.0062742345,0.016828464,-0.004687456,0.0060290955,0.015463635,-0.005250613,-0.01605992,-0.014602336,0.006396804,0.01762351,-0.000936663,0.028913157,0.003082458,-0.027641084,0.014522832,0.01884258,0.008162468,-0.033338908,0.017331993,0.033577424,0.021426477,-0.012965867,-0.014403575,-0.01591416,-0.008798504,-0.019054592,-0.0016737365,0.014801098,-0.009474292,0.019279854,-0.0018070723,0.009434541,-0.024540406,-0.035883054,-0.012170822,0.0035810177,0.005137982,0.022831058,-0.008864758,-0.009010516,0.033789437,-0.020538677,0.020684434,-0.010044076,0.0016753929,0.015119116,0.010209709,-0.00909002,-0.62755597,-0.02112171,0.028144613,-0.008354603,0.0053466815,0.025931735,-0.007877576,0.024990931,0.0060456586,0.032225847,-0.01954487,0.007751694,-0.028224116,0.005469251,-0.0027644397,-0.0019909265,0.036015563,-0.008752126,-0.012780357,0.02724356,0.0069367723,0.0074734283,0.009381537,0.019293105,-0.010819245,0.034822993,0.015821407,0.004465506,0.003135461,0.022619046,0.0019760195,0.0073607964,0.020207407,0.015357629,0.04102435,-0.006075473,-0.023122575,0.022658799,0.021148212,0.024407899,-0.016523696,-0.019995395,0.011044508,-0.009805562,0.011249894,-0.009726057,-0.006665132,-0.007784821,0.005071728,-0.0113757765,-0.006665132,0.012064816,-0.004644391,0.023400841,0.018961836,-0.018365553,0.016099673,-0.0026534644,-0.0037499648,0.017769268,-0.007016277,-0.0028439441,-0.027614582,-0.0314573,-0.009692931,0.0029466376,-0.007923954,-0.014748095,-0.015596143,0.014125309,-0.0022758178,0.009891692,-0.018100537,0.02846263,0.016669454,0.024010375,0.03352442,0.0069964007,-0.003577705,0.023427341,-0.013343514,-0.006164916,-0.00828835,-0.016682705,0.028250618,0.033762936,-0.00602247,-0.0063802404,0.00475371,0.016470693,0.01992914,0.020472422,-0.013317013,-0.01869682,0.004270057,0.009222528,-0.0009987759,0.017199485,0.007897452,0.0010633734,-0.01831255,0.008712374,-0.012667726,0.024712665,0.028489131,0.038347695,0.0069168964,0.0072547905,0.03421346,-0.018749824,0.009262281,0.003304408,0.0021201214,-0.005187672,-0.018206542,-0.035273522,0.0050982297,-0.008420858,-0.006655194,0.018113788,-0.011011381,0.008400981,0.026461765,0.017756017,0.003610832,0.00924903,0.0023404153,-0.01588766,-0.010163332,0.015172119,0.011402278,-0.0059131514,0.021201214,-0.00047909777,0.00009389405,0.023520097,0.018060785,-0.022221522,0.010521103,-0.035803553,0.011382402,-0.0010410127,-0.0021118398,-0.020631433,-0.00397854,-0.020273661,0.0043396237,0.010898749,-0.027667586,0.00055984454,-0.0042634318,-0.032570366,-0.023705607,0.009567048,-0.023440592,-0.003587643,-0.02026041,-0.015264874,-0.01729224,0.0072547905,0.0068373918,0.034610983,-0.028568637,0.010302465,-0.027455572,-0.022778055,0.0074469266,0.019650877,-0.020750688,-0.03174882,0.018087287,0.0010931876,0.005730953,0.0027876284,-0.009494169,-0.010004323,-0.0054129353,-0.0026981859,-0.016165925,0.0036439588,-0.003059269,-0.0049359077,-0.008944263,0.006781076,-0.015291376,0.031165786,-0.034849495,0.028065108,-0.053029537,0.000653014,0.020194156,0.004313122,0.023626104,0.010918626,-0.009355036,0.007804697,0.015264874,0.019650877,0.010077203,0.017875275,-0.007234914,-0.0033441603,0.024474151,-0.0015743558,0.018206542,0.006542562,-0.0033839126,-0.028383126,0.03002622,0.010017574,-0.027853096,0.0085268635,-0.007897452,-0.018074036,-0.0069235214,0.020538677,-0.00899064,0.0059529035,-0.024023626,0.01552989,-0.018988337,-0.024354896,0.016868217,0.004700707,-0.0021532483,0.02341409,0.019452114,0.008109464,-0.017146483,-0.028038606,-0.035353024,0.015264874,0.007175286,0.007122283,0.014801098,-0.00837448,0.03996429,-0.033630427,0.039937787,0.022022761,0.03561804,0.042905957,0.0011933965,-0.015808156,0.017318742,0.0068373918,0.016536947,-0.005018725,-0.010461474,0.030423742,0.01643094,0.011826303,-0.02777359,0.008825006,0.026249753,0.004932595,0.0038327822,0.012806859,0.01710673,0.031139284,0.001911422,0.01012358,-0.0069168964,-0.011925683,-0.021267468,0.0056978264,-0.003069207,-0.01639119,0.009474292,-0.015556391,0.0015279781,-0.014589085,0.013038747,-0.029734703,0.013939799,-0.014218064,0.0047172704,-0.005509003,-0.013376641,0.0029963278,-0.013992801,-0.03511451,0.0030360802,-0.000056988614,-0.004283308,-0.0076390626,0.012707477,-0.01099813,-0.004346249,0.020472422,-0.004220367,-0.0022128767,-0.00007241333,-0.007142159,-0.011230018,-0.012859861,0.042375926,-0.01935936,0.032384854,0.02619675,0.035353024,0.011263145,-0.03961977,-0.0031752132,0.029284177,0.0034120705,-0.027508575,-0.015516639,-0.023652606,0.016960971,-0.012482215,-0.006771138,0.002613712,-0.013582028,0.028383126,-0.021280719,0.0024033564,-0.008275099,0.011302898,-0.0015950601,0.010375344,0.0031437427,-0.0059959684,-0.00458145,0.090476185,0.012243701,-0.0010443254,0.0073740473,-0.0174645,-0.011190266,-0.036068566,-0.02355985,-0.010779493,0.007844449,-0.012998994,-0.0056646997,-0.00880513,-0.012945992,0.011673919,-0.007526431,0.03037074,0.028144613,0.01623218,-0.014244566,-0.0035313272,0.012594846,-0.008487111,0.009957945,0.019836387,0.009050269,0.01937261,0.022075765,0.00458145,0.021890255,-0.026912292,-0.02304307,-0.009202652,0.029098667,0.004902781,0.033444915,0.004790149,0.0038857851,-0.008937637,-0.004482069,0.015967164,0.027031548,0.021691492,-0.0013838762,0.01552989,-0.01973038,0.016974222,0.025467958,0.021890255,-0.024725916,0.014721593,0.0067612,-0.0018087286,-0.008135966,0.011892556,0.005124731,-0.021174712,-0.035724048,-0.01973038,-0.031404298,-0.01780902,-0.012733979,-0.018471558,-0.003925537,-0.028542135,-0.01849806,-0.0035412654,-0.0053665573,-0.018405303,0.0012049909,0.010010948,-0.010547604,-0.02742907,-0.025732974,0.022831058,-0.0062841726,0.009103271,0.015291376,0.012051566,0.019279854,-0.028674642,-0.032066837,0.021983009,0.009401414,-0.00036936492,0.028065108,-0.014787847,0.014575835,-0.031112783,0.0093682865,0.005979405,0.044575553,0.014933606,-0.014377073,0.007817948,0.0032845319,0.010256087,0.028515633,-0.024858424,0.0031851511,-0.015198621,0.00032774924,-0.016205678,-0.030185228,-0.010176583,0.012137695,0.020273661,0.0045549483,-0.0023503534,-0.019611124,0.026554521,0.014350572,0.007804697,-0.015967164,-0.0017590383,0.029973216,-0.011302898,0.029310679,0.029231174,-0.03355092,-0.0022112203,-0.029019162,0.05101542,0.0019478616,-0.022089016,0.012124444,-0.017530754,-0.053904086,-0.024368146,0.007175286,0.018829329,-0.011018006,-0.014297569,-0.025812479,-0.027641084,-0.004737146,-0.015026361,0.035538536,-0.008612993,-0.029019162,-0.01818004,-0.007837824,-0.012634599,-0.031298295,-0.006767825,-0.03911624,0.007612561,0.0056978264,0.006009219,0.038639214,0.02057843,-0.0037035872,-0.034637485,-0.042031407,-0.0011610978,-0.030450244,-0.026329258,0.0038990357,0.012979118,0.02129397,0.028886655,-0.013290511,-0.016258681,-0.010527728,0.0042435555,-0.018418554,0.0044091903,-0.009666429,-0.014059056,0.009686305,0.019823136,0.008884634,0.012415961,0.010176583,0.017968029,-0.0049524712,-0.01586116,-0.021280719,-0.0013946424,0.0041508004,0.020896448,0.0096134255,-0.0070096515,-0.017557256,-0.014748095,-0.010567481,0.0031387736,0.007314419,-0.0025805854,0.0073276698,0.023983873,0.005552068,0.02549446,0.0029267613,-0.014430077,-0.010792743,-0.027084552,-0.020737438,0.0048630284,0.012064816,0.0016588294,0.0133832665,-0.029072165,-0.00065052946,-0.027190557,-0.017371746,-0.014880602,-0.012270203,-0.012786983,-0.01449633,0.0005565319,-0.038692217,-0.017968029,0.0014857413,-0.0032745937,0.022976816,-0.022049263,0.006290798,-0.024884926,-0.04152788,-0.017318742,-0.022420283,0.009798937,-0.0010476381,0.009441166,0.027879598,-0.012886363,-0.0066353176,0.019637626,-0.02200951,-0.017504252,0.00095322647,0.034796495,-0.013926548,-0.008069713,-0.0009043643,0.013442895,-0.020896448,-0.03087427,0.008811755,0.01904134,0.016457442,-0.002651808,-0.0063934913,-0.031881325,0.020392919,-0.033762936,0.007122283,-0.003405445,-0.008354603,-0.02426214,0.027164057,-0.015490137,-0.0055885077,0.030291235,-0.0068506426,-0.00942129,-0.014006052,0.015609394,0.0076191863,0.01761026,0.004647704,0.005651449,0.0039056612,0.021850502,-0.0010120267,-0.0068307663,-0.013860294,-0.02147948,0.01658995,-0.023838116,-0.017345244,-0.004154113,-0.018961836,-0.0054294984,-0.016139425,-0.0003118069,-0.011342649,0.0060390336,-0.0041673635,0.009255655,-0.0009225841,-0.005157858,0.013403143,0.0021383413,-0.00007919399,-0.014681841,-0.0014294257,0.03405445,0.010010948,-0.012435838,-0.011269771,-0.014721593,0.019677376,0.0049491585,0.026157,0.020869946,0.023149077,-0.008016709,0.0116209155,0.02461991,0.01641769,-0.006052284,0.020127904,0.009401414,-0.031907827,0.011746798,-0.007890827,-0.03508801,-0.014390324,0.006333863,0.009620051,-0.003372318,0.006032408,0.008195595,0.03471699,0.00061698846,-0.009600175,-0.030609254,0.00018830571,0.0065690638,0.010077203,-0.010759616,-0.017451249,0.009116522,-0.04028231,0.020339916,0.024474151,0.0014592399,0.014946857,0.009441166,0.023520097,-0.016854966,-0.015158868,-0.03911624,-0.025083687,-0.013714535,0.018776326,-0.009374912,-0.024010375,-0.010057326,0.01643094,0.0015743558,0.036704604,-0.0029615446,0.0013076842,-0.031112783,-0.004399252,0.00060746446,-0.022486538,-0.016563449,0.024050128,0.0020836818,-0.025043935,-0.011342649,-0.00854674,-0.03871872,0.006042346,-0.010872248,-0.022976816,0.0004559089,-0.0062013553,-0.026753282,0.026395513,-0.0032215908,0.027482074,-0.005240675,-0.0047669606,-0.0073409206,0.015304627,0.015476886,0.015331129,-0.042269923,-0.029549193,0.0017308804,0.04274695,-0.006718135,0.045291096,-0.027614582,0.0046377657,0.0035512035,-0.019107595,0.009494169,0.0023652604,0.032676373,-0.028197614,0.0016223898,-0.016444191,0.007234914,0.028065108,-0.012369583,0.0063007358,-0.008579866,0.008718999,-0.0031470552,-0.022963565,-0.0059959684,-0.025547463,0.004687456,-0.0038592836,-0.01195881,0.002396731,0.0029416685,-0.02530895,-0.0063504265,-0.0005134669,0.0022344093,-0.0012695884,0.00401498,-0.02321533,-0.0062079807,-0.004412503,0.0085732415,-0.0019577995,-0.005253926,-0.011329399,0.008500362,-0.0049624094,0.005548755,-0.008208845,-0.010733115,0.0098585645,-0.011508284,-0.008400981,0.0165767,-0.022778055,-0.008334727,-0.011468532,-0.0020356479,-0.00045549485,-0.0060721603,-0.040043794,0.030662257,-0.000994635,0.012336456,0.021373475,0.2304572,0.008347978,-0.041766394,0.045794625,0.024315143,0.024129633,-0.006406742,0.0048067127,-0.011799801,0.005303616,-0.027614582,0.023970623,-0.02305632,-0.0018087286,-0.0034186959,-0.027296564,-0.025891984,-0.031642813,-0.01831255,-0.009620051,0.0010377001,-0.016563449,0.014575835,-0.004120986,0.049292825,-0.0037433393,0.0049094064,-0.0034186959,-0.0034716988,-0.022751553,-0.009361661,0.00458145,0.0032911573,0.005648136,-0.015410633,-0.0033656927,-0.0033126897,0.0039354754,0.012998994,0.017570507,0.008791879,0.0073740473,0.032729376,-0.0028306935,-0.006734698,0.0019942392,0.008659371,-0.011846178,-0.023824865,-0.002343728,-0.040785838,-0.011329399,0.003006266,0.032914884,-0.031033278,-0.0146553395,-0.012078067,-0.0021151523,-0.016404439,-0.004969035,-0.0038360946,0.03561804,0.0037499648,-0.0012273516,-0.034929,-0.001757382,-0.031033278,-0.013568778,0.013058623,0.00054410927,0.012853236,-0.022261275,-0.00432306,0.007347546,-0.0034617607,-0.021916755,0.02724356,0.012078067,0.055123158,0.0040216055,-0.019385861,-0.007347546,-0.010156707,-0.02146623,0.000595456,-0.047172703,0.0033259406,0.0068705184,-0.010958377,-0.0077251927,0.0054129353,0.014204814,-0.019173848,-0.0065856273,-0.0065458748,0.0027147492,0.008652746,0.018286048,-0.01605992,0.006267609,-0.008056462,0.030132227,0.00432306,0.01586116,-0.012859861,-0.013191131,-0.00089442625,0.042667445,0.0012513686,0.01937261,-0.00025093625,-0.042508435,0.022261275,-0.0054129353,-0.015596143,0.01197206,-0.0018749824,-0.02809161,-0.012329832,0.007248165,0.007347546,-0.0049922233,0.010786118,0.0033706618,0.0027346255,-0.0018286047,0.004995536,0.0066618193,0.0103488425,-0.052605513,-0.001335014,-0.0075993105,0.0059959684,-0.004299871,-0.038506705,0.005306929,0.006681695,0.0022758178,0.014403575,0.017689763,-0.01643094,0.0077318177,0.0033540984,-0.02952269,0.011587788,-0.013476022,0.0068175155,-0.008400981,-0.014204814,0.0016157645,-0.007261416,-0.010547604,0.0068572676,-0.019412361,0.026249753,0.009268906,-0.017570507,-0.008593117,0.001623218,0.0043429364,-0.01658995,-0.04242893,0.029708201,-0.0032431232,-0.037314136,-0.006767825,-0.16748959,0.038506705,-0.0014327383,-0.025017433,0.0038460328,0.013807291,0.008367854,-0.010501226,-0.014695092,0.0054394365,0.037234634,0.013939799,-0.011064384,-0.013860294,-0.0024282015,0.003084114,-0.020207407,0.0053135543,0.016152674,-0.0001637711,0.023122575,-0.01552989,0.009017142,-0.017517503,-0.008122715,0.011859429,-0.008248597,0.009666429,-0.008593117,-0.020167654,-0.004173989,-0.0043329983,0.038506705,0.022221522,0.014218064,-0.0067214477,-0.0020157718,-0.00090519246,0.010547604,0.024050128,-0.0026335884,0.0136747835,-0.0059131514,0.019240102,0.014324071,0.016960971,0.020644683,0.013237508,-0.00013468154,-0.012780357,-0.013423019,-0.00909002,-0.001229836,0.015225122,-0.004197178,0.020843444,-0.017557256,0.022658799,-0.028886655,-0.020101402,0.016324935,-0.015702149,0.008010084,-0.01935936,-0.028383126,-0.0043396237,-0.005161171,-0.007387298,-0.016470693,0.010229586,-0.009156275,-0.023533348,0.035008505,0.008228721,0.007963706,0.009222528,-0.040706333,0.0025706473,-0.013403143,-0.0068373918,-0.0043164347,0.008752126,0.0015934038,0.026965294,-0.015569642,0.022115517,-0.0020439296,-0.023255082,-0.011124012,-0.014986608,0.008851507,-0.0027511888,-0.01851131,-0.009388163,0.017875275,0.020035148,0.008791879,0.014059056,-0.009116522,-0.01676221,-0.007844449,0.012813484,-0.039407756,0.026819536,0.029946715,0.025865482,-0.007904078,0.009487543,0.024686163,-0.0076390626,-0.018802827,0.027508575,0.032888383,0.038851224,0.0066916333,0.009043643,0.004624515,-0.018551063,0.0005528051,0.0028472568,0.01073974,-0.02287081,-0.0023503534,0.02809161,-0.0054725637,-0.002973139,-0.081094645,-0.02880715,-0.0067015714,0.0022360657,-0.012435838,0.004836527,-0.010521103,0.01362178,-0.009394788,0.03180182,-0.016974222,-0.02393087,-0.0018385429,-0.0016066545,0.013350139,-0.010965003,-0.0009466011,-0.0253222,0.0039752275,-0.0020041773,-0.023334587,-0.018219793,-0.019107595,0.0039752275,-0.024831923,-0.026793035,-0.015145618,-0.006025783,0.044337038,-0.0028108172,-0.011587788,-0.0022493163,-0.0077185673,-0.011408904,0.009626676,0.0126611,-0.018816078,0.009567048,0.017239237,-0.02949619,-0.01884258,-0.03074176,-0.029257676,0.0011279709,-0.02393087,0.0017325367,-0.011104136,0.0007615046,0.020830194,-0.024341645,0.0073077935,-0.0029814208,-0.012574971,-0.027879598,0.035512034,-0.006290798,-0.00056936854,0.0099513205,-0.017384997,0.015092614,0.0019329544,-0.017053727,-0.017848773,-0.0015354317,0.024235638,0.030609254,0.018431805,0.0021333722,0.007546307,0.013317013,0.011236643,0.01901484,-0.013045372,0.009871815,-0.023864618,-0.011574538,-0.018233044,-0.005840272,0.013469396,0.014151811,-0.0007610905,-0.0061251633,0.005359932,-0.044098526,0.014403575,0.027376069,0.017239237,0.014072306,-0.0021532483,-0.06476971,0.0037367141,0.008619619,-0.0035313272,-0.012422587,-0.03908974,-0.007334295,-0.01709348,0.009361661,0.020300163,0.019823136,-0.010501226,-0.0026253066,-0.055229165,0.03352442,0.02287081,-0.020830194,0.009752559,-0.029602196,0.0040646703,-0.0038592836,0.017557256,-0.0071289083,-0.0051081674,0.0118660545,-0.0072282893,-0.007453552,-0.01729224,0.021346973,-0.01336339,-0.007890827,0.027800092,-0.024116382,-0.01935936,-0.016987473,0.007837824,-0.008559991,0.011700421,0.036015563,-0.0076655643,0.025931735,-0.028383126,-0.032808878,0.018113788,-0.03646609,-0.010984879,0.008347978,0.0011304554,-0.02949619,-0.019094344,0.021943256,-0.011481782,-0.006373615,-0.027137555,-0.024553657,-0.007281292,-0.023321336,0.002646839,-0.006681695,0.0029946715,0.012283454,0.02390437,-0.00046460473,0.017729515,0.011196892,-0.015119116,0.0031106158,-0.0043098093,-0.051200934,0.012091317,-0.010315716,0.0126478495,-0.010335592,0.014032554,-0.00007681299,0.028701143,-0.016139425,-0.000686969,0.012025064,-0.027482074,0.009182776,0.021174712,-0.014469828,-0.012217199,0.0005979405,-0.00038013115,-0.020883197,0.026117247,0.0055388175,-0.00880513,-0.015688898,-0.010991504,0.015847908,-0.012906239,0.0029383558,-0.022990067,0.03196083,0.03893073,0.04417803,0.008957513,-0.003855971,-0.027720587,0.0033988196,-0.03718163,-0.0006368646,-0.014271067,-0.0017938215,0.03474349,0.039142743,-0.012084692,0.009567048,0.0031520242,-0.00096316455,0.044787567,0.001570215,0.012588221,0.0061351014,0.0015693868,0.025865482,-0.016112924,-0.013250759,0.020737438,0.030317737,-0.016709207,-0.00488953,0.003650584,0.00536987,-0.036413085,0.007738443,-0.001445161,-0.009282157,-0.03249086,0.033418413,-0.011269771,-0.0010078859,0.01991589,-0.011773299,0.02460666,-0.0005105683,0.0004935908,-0.030476745,0.027667586,-0.010991504,-0.0030808016,0.00540631,-0.014257817,0.0004169848,0.022831058,0.031377796,-0.00899064,0.02688579,0.003218278,0.076907404,0.016086422,0.014787847,-0.0126611,-0.0073939236,0.03999079,0.018869082,-0.0021681555,0.018378804,-0.0018435118,0.029946715,-0.0006393491,0.034451973,-0.024116382,-0.023082823,-0.0058999006,-0.03455798,0.008381105,-0.013595278,-0.003952039,0.028065108,-0.00064100546,0.013582028,0.0032066838,-0.020922948,0.011183641,0.0036671476,-0.00392885,-0.013727786,-0.021452978,0.014204814,0.03211984,-0.00281413,-0.0034418846,0.035538536,-0.02163849,-0.0056315726,0.018246295,-0.0001517626,-0.008261848,0.030238232,0.01484085,-0.020379668,-0.025335452,-0.008858132,0.018908832,-0.0006828282,0.010925251,-0.043541994]},{\"id\":\"2eddf8df-16d0-456d-ae88-f2fad77a0be3\",\"text\":\"not sure but keep on keepin on\",\"vector\":[-0.008115406,-0.03422063,-0.0046407063,-0.01293268,-0.011400213,0.018216355,-0.00012503339,-0.03411402,-0.028703753,-0.020788234,0.01509812,0.013938777,0.015084795,0.02478597,-0.017896537,-0.0139521025,0.029769816,0.001676551,0.0303295,-0.037285563,-0.004150984,-0.00325649,-0.0160176,-0.030089635,0.011493494,-0.019508958,0.009441323,-0.01251958,0.00476397,-0.023759885,0.008561821,0.0040976806,-0.027611038,-0.00025902005,-0.014791627,-0.03643271,-0.01318587,-0.009994343,0.016977057,0.00046598623,0.01737683,0.019482305,-0.0045707463,-0.024985857,-0.016364072,0.0007470771,-0.003951097,-0.009847759,-0.0047373185,0.049865108,0.021814318,-0.0075157457,-0.009427996,-0.01065397,-0.017896537,0.032115154,-0.0070360173,0.0160176,-0.019375699,-0.0070226914,0.0054302597,-0.004427494,-0.007169275,0.018669432,-0.0031465522,-0.0023786535,-0.008335282,-0.009188132,0.022160789,0.019095857,0.025252372,0.03323452,-0.0028683764,0.0053802878,0.018762713,-0.010067634,-0.0076823183,-0.010160916,0.008242002,0.011473506,0.011640077,-0.024159659,-0.01627079,0.020095292,0.017470112,0.0010660632,0.009414671,0.011107046,-0.018576153,0.003654598,-0.0061898297,0.015218053,0.03067597,0.02114803,-0.0029649884,0.015964298,-0.012166447,0.0039277766,-0.00094196683,-0.0054669054,-0.015644478,-0.006066566,0.017749952,-0.014831604,-0.024892576,-0.018309636,0.014005406,0.008128732,0.02317355,-0.020215224,-0.0063530705,0.032061853,0.009214784,-0.019522283,-0.001037746,-0.039364386,-0.014485134,-0.0067495126,-0.005326985,-0.031981897,0.016257465,-0.004160978,0.03928443,-0.0048472565,0.034513798,0.03960425,-0.017510088,-0.0021171349,0.012146458,0.018149726,0.059752844,-0.0025418946,0.013572318,0.0026285122,-0.008381922,0.031582125,-0.003937771,0.01272613,-0.016657239,-0.0051970584,0.015737759,0.028623797,-0.005353636,0.015857691,-0.017696649,0.0023553334,0.021427872,0.003028286,0.008488528,-0.0011376893,0.006876108,-0.01205984,0.011107046,0.018562825,0.006616255,0.00010775151,0.00042850745,-0.002731787,-0.022200767,0.009841097,-0.008981583,0.010733924,0.03152882,-0.012939342,0.010094286,0.030302847,0.017430134,-0.012879376,-0.0038011817,0.016550632,0.0002045717,0.0008166211,-0.018256333,0.027344521,-0.004117669,0.0038511534,-0.0009644541,-0.0053902823,-0.009288076,0.014551763,-0.008715067,0.03136891,0.016217487,0.036299452,-0.0143118985,-0.015431265,0.010407442,-0.014618392,-0.0060765604,-0.011979885,0.009974354,-0.011226978,-0.015151423,0.0029216795,-0.66863483,-0.013605632,0.013978754,-0.028916964,-0.0009094852,0.02269382,-0.009048211,-0.016057577,-0.041229997,0.034513798,-0.0061665094,0.017043686,0.008541832,-0.0041743037,-0.004807279,-0.03016959,0.019349048,-0.020841537,-0.006023257,-0.03454045,-0.0070693316,0.0134723745,0.0037245585,0.011273619,0.006929411,-0.013125904,0.018482871,-0.004317556,-0.019575587,0.0024835942,-0.010394117,0.018909296,0.015324659,-0.004397511,0.058580175,-0.015377962,-0.019868754,0.02358665,0.0064796656,0.03019624,-0.034593754,-0.018496197,0.028277326,0.002393645,-0.020108618,0.0042842417,0.017403482,0.0031332264,0.008115406,-0.03355434,0.025532214,-0.007748947,0.012033189,-0.026078572,0.0063730595,0.002930008,0.010294173,0.0024053052,0.0075357347,0.012879376,-0.005203721,0.0018322961,-0.029236784,-0.0075957007,-0.015497894,0.02570545,-0.013698912,-0.009427996,0.03323452,-0.0049771825,0.0028750394,-0.0026318436,-0.031129045,-0.00421095,0.014978188,0.021454522,0.030222893,-0.006346408,0.005783393,0.022227418,-0.0019522283,-0.0028417248,-0.02158778,-0.0012551228,0.027531084,0.005283676,-0.016484004,-0.016444026,-0.024252938,-0.00041663917,-0.004637375,0.015751084,0.0028850336,-0.02503916,0.010467408,0.028703753,-0.022027532,-0.017416809,0.0067095356,-0.026611604,0.00796216,0.007855553,0.0048339306,0.016817147,0.027797598,-0.012226413,0.00044349895,0.026918096,0.012392985,-0.007375825,0.007795587,0.004963857,-0.008388585,-0.011326922,0.028943617,-0.0295033,0.017363505,-0.0054435856,0.003997737,-0.018336287,0.007242567,-0.009541266,0.015777735,-0.016324094,0.0025902004,0.01141354,0.009587906,-0.011007103,0.0041876296,-0.033447735,-0.003341442,-0.01946898,0.022960337,-0.0037878559,0.012679489,0.011746684,0.005530203,0.019562261,0.016963731,-0.022707148,-0.024812622,0.0106006665,-0.0027451129,-0.014658369,-0.009148155,-0.040990133,-0.0028567163,0.008468539,-0.0025319,-0.038005155,0.0013109247,-0.012019863,-0.015857691,0.03256823,-0.0032698158,0.0054535796,0.0040177256,-0.0075757117,-0.0077889245,-0.0071559492,-0.0031998553,-0.002676818,-0.021454522,-0.016364072,0.016750518,-0.008195361,-0.03422063,0.047466464,-0.002653498,-0.019548934,-0.010140927,-0.03270149,0.011393551,0.036939092,0.018789364,0.0064730025,-0.0017640016,-0.0041643097,0.0070759947,-0.0058366964,-0.003304796,0.0041110064,-0.024812622,-0.007189264,0.02345339,0.0007254227,0.03251493,0.015831038,0.001399208,0.010554026,-0.0056001632,-0.0035413287,0.0025368973,0.010554026,-0.001875605,-0.009474637,0.0041276636,0.0029566598,0.0048739077,-0.00674285,0.026438368,-0.018496197,0.021880947,-0.030809227,-0.017590044,-0.02865045,0.003178201,-0.033900812,0.021641083,0.0026618266,-0.013465711,-0.011306933,-0.009447985,0.0013475706,-0.0012334684,0.03712565,0.002471934,0.025732102,-0.0051937266,0.0065396316,-0.001868942,0.017856559,0.0010144258,0.013885474,-0.00032294221,0.021081401,0.0046407063,0.010827205,0.0031448866,-0.006982714,0.003461374,0.02471934,0.026798164,0.014258596,-0.0044174995,-0.0023803194,0.016150858,-0.00918147,0.016177509,0.004244264,0.018309636,0.0134857,0.035339996,0.0030599346,0.009861085,-0.0046040607,0.021734364,-0.0020038658,-0.0109404735,0.008375259,-0.01930907,0.029210132,-0.004497454,-0.021254636,0.008988245,-0.014738324,0.000349802,-0.00020613332,0.027850902,0.013032623,-0.0032598216,-0.0042509274,-0.0034114022,-0.012626186,0.0016174178,-0.0034180651,0.010440757,-0.017736627,0.0040676976,0.006606261,-0.024839273,-0.011426865,0.020455088,0.0077422843,0.05055805,0.01930907,0.0007154284,0.0104207685,-0.0065529575,-0.00090615376,-0.0070426804,-0.03254158,0.047279906,0.0026368408,-0.0027167955,-0.0010885505,-0.0041276636,0.008015463,-0.007942171,0.012626186,0.010120938,0.032968007,-0.0045440947,0.00093197246,-0.013012635,0.0014225282,0.015497894,-0.011520145,0.015018166,-0.010140927,-0.009927714,0.004274247,0.00051720726,-0.019082531,0.0015666132,0.0058233705,0.01049406,-0.026105223,0.022294048,0.010847193,-0.0070759947,-0.007922183,-0.014445157,-0.008461877,-0.0030482744,0.00036812495,-0.0029716513,0.0008770036,0.008868313,0.0059366394,0.005686781,-0.024239613,-0.010080961,-0.0022637188,0.11076397,0.015324659,0.010280848,0.023293482,0.03443384,0.0064296937,-0.0040377146,-0.0202552,0.002545226,-0.03067597,-0.01703036,-0.0404571,-0.008202024,-0.006556289,0.009954365,-0.011406876,0.003931108,-0.0024752656,-0.011633415,-0.0034813627,-0.012479602,0.003737884,-0.003431391,0.032461625,0.025905337,0.024292916,0.017643347,0.0041409894,0.010214218,0.00026880618,-0.010314162,0.022680495,-0.020161921,0.027397824,-0.016337419,0.005663461,-0.0037478786,0.003877805,0.029529952,-0.021561129,-0.0011576781,0.008168709,0.0047673015,-0.033927463,0.0052137156,0.009328053,-0.014791627,0.01753674,-0.0034980199,-0.019682193,0.036805835,0.01946898,-0.011533472,0.002821736,0.016004274,0.01677717,-0.02545226,-0.012459614,-0.007915519,-0.01608423,-0.010993777,-0.024679365,0.0051304293,-0.00034501305,-0.011213653,-0.011386888,-0.03155547,-0.019095857,-0.029743165,-0.002352002,-0.0060465774,-0.018456219,-0.0141519895,-0.0025102457,-0.007229241,0.009408008,0.0013300804,-0.00029420847,0.000934471,-0.011953234,-0.00497052,-0.005157081,-0.04568081,-0.0024502797,-0.0036046263,0.015364637,0.003877805,0.0081487205,-0.013558991,0.020908166,0.009707838,-0.00009879824,0.016790496,-0.020121943,0.037365515,-0.024599409,0.013872148,0.027397824,-0.00056967756,0.010474071,0.02241398,-0.003884468,-0.011240304,-0.012866051,-0.0013375762,0.015178075,0.0029816455,0.0015965962,-0.037232257,-0.012539568,0.030569363,-0.01302596,0.0071492866,0.0008103746,-0.03979081,0.008748381,-0.0038245018,0.01687045,0.01070061,0.012626186,0.00881501,-0.011866616,0.023253504,0.02513244,0.006909422,0.012686152,0.0232002,-0.0035846375,-0.017136967,0.005277013,0.0137122385,0.04130995,-0.0043208874,-0.032674838,-0.010833868,-0.014431831,-0.0004643205,-0.0007941338,0.0028367275,-0.010167578,-0.022933686,-0.012093155,0.015724432,-0.011673393,0.017496763,-0.024732666,0.0026568295,-0.008248664,0.0075157457,0.016177509,-0.019508958,-0.0017323528,-0.0074691055,-0.010387453,-0.009887736,-0.02637174,-0.011540134,0.0021571124,0.031422213,0.020548368,0.013139229,0.0015224715,-0.0039844112,0.01189993,0.0052803443,-0.02022855,-0.007522409,0.0049238796,-0.019735495,0.014005406,-0.012699478,0.01912251,0.008555157,0.013572318,0.0016598938,0.0014991515,0.008242002,-0.0022603872,-0.018935949,-0.021454522,-0.0070293546,-0.0049805143,0.00038832187,0.02250726,-0.005050475,-0.0058233705,0.006989377,0.016417373,0.011733359,-0.00053719594,0.026131876,-0.014125338,0.0076090265,0.0006054906,0.01914916,-0.019668866,-0.0036212835,-0.009714501,0.009168143,0.0034347225,0.0082086865,0.020121943,0.0080287885,0.0345671,-0.0027601044,0.010327487,-0.020628324,-0.021121377,0.002303696,-0.022813752,0.007049343,0.006089886,-0.02117468,-0.026358413,-0.008561821,0.001284273,-0.009361368,0.0068894336,0.015684456,-0.027144635,0.00927475,-0.0018806022,0.03925778,0.028757056,0.039177824,0.0108005535,-0.0014483469,-0.022214092,0.0026701551,0.020002011,-0.0048872335,0.03051606,0.0031915267,-0.00025381465,-0.0065962663,0.010487397,0.017496763,-0.005260356,-0.008715067,0.012859387,0.015031491,0.010134264,-0.023386762,-0.028197372,-0.012786096,0.011953234,-0.0019788798,0.0043142247,-0.018855993,-0.021028098,-0.00936803,0.01424527,-0.034513798,-0.001326749,-0.0016807154,-0.03552656,-0.030649317,0.014671695,-0.019269092,0.0137921935,0.0032997988,0.019508958,-0.032355018,-0.012872714,0.005680118,-0.011273619,-0.015124772,-0.0055335346,-0.0011568451,0.025945313,-0.030249543,-0.015644478,0.0031831982,-0.033847507,0.0009094852,0.0026385065,0.010407442,-0.0049305423,-0.039071217,0.0010727261,-0.0029333397,0.008795022,-0.0109204855,-0.00552354,-0.008335282,-0.022240745,0.014978188,0.0032764787,0.0021504494,-0.033580992,-0.038005155,-0.028224025,0.0007308363,0.008755044,-0.01949563,-0.009501289,-0.020055315,0.01256622,-0.0023786535,0.023306808,0.007235904,0.012826073,-0.03320787,0.00201386,-0.01721692,-0.06172506,-0.00012399231,-0.0113402475,-0.014858256,-0.031795334,0.014365202,0.01293268,0.0035413287,-0.021068074,0.0042076185,0.030596014,0.009288076,-0.027690992,-0.03563316,0.025665473,-0.012759444,-0.009581244,0.012846062,-0.0019105852,0.006909422,-0.0058700107,0.026118549,-0.003564649,-0.030409453,0.008155384,-0.016377397,0.010813879,-0.028037462,-0.025852034,0.012599534,0.007235904,-0.014378528,0.011107046,0.012446288,0.004733987,0.009241436,0.026518323,0.00478729,-0.011266956,-0.017896537,-0.017829908,-0.020361807,-0.0011435194,-0.0041643097,-0.0047206613,0.0026385065,0.021707712,0.0039744168,-0.020148596,-0.01608423,-0.008828336,-0.021041423,-0.005596832,-0.009627883,0.025425607,0.026931422,0.00805544,-0.012139795,0.012139795,0.0051770695,0.003624615,-0.025812056,-0.025438935,0.010693947,-0.007995474,-0.008488528,0.010807216,-0.04485461,0.0011651738,0.018456219,0.018922623,-0.00775561,0.011746684,-0.014898234,-0.015497894,0.030276196,0.01763002,-0.0026901439,0.029903073,0.0039244452,-0.04618719,-0.006043246,0.00074915926,0.0066562323,-0.0011143693,-0.005426928,0.0065363003,0.0052070525,0.0058067134,-0.010907159,0.0029949713,0.0010735589,-0.02193425,0.011933246,0.008615123,-0.009094852,0.01040078,-0.00037582894,-0.02563882,-0.002630178,-0.012899365,-0.049278773,-0.0022354014,0.0105407005,-0.021467848,-0.015577849,0.011453517,0.0060932175,-0.014165315,0.0052103843,0.011486831,0.0057334215,-0.019535609,0.017403482,0.0060099317,0.018975925,0.000793301,0.015124772,-0.008894965,0.0058333646,-0.020774907,-0.013045949,-0.01744346,-0.02747778,0.005560186,-0.0035379974,-0.028943617,-0.021081401,-0.001579939,0.01171337,0.016937079,0.2174769,-0.0032664845,-0.005646804,0.011226978,-0.003997737,0.018882645,0.028970268,0.022573888,-0.006319756,-0.018003143,0.0036812497,0.007056006,-0.0054502483,-0.0054802313,0.006606261,-0.018882645,-0.028437236,-0.014951536,-0.0048772395,-0.009401345,-0.012786096,-0.0109004965,0.022467282,-0.019508958,0.027264567,0.01079389,0.006666227,-0.004167641,0.0061831665,-0.021347916,-0.03592633,-0.012706141,0.013432397,0.008868313,-0.022986988,-0.017336853,0.0055401972,-0.011073732,0.021974228,0.014525112,0.019762147,-0.020335156,-0.014791627,-0.0064730025,-0.007302533,0.043628637,-0.0015024829,-0.0009269753,0.010687284,-0.015337985,-0.042855743,-0.028970268,0.021867622,0.025345653,0.0018522849,-0.003044943,0.006876108,-0.016817147,-0.013885474,-0.006206487,-0.029796468,0.00093030673,-0.015551197,0.02984977,-0.02662493,0.0072758817,-0.0013192532,0.03070262,-0.00033002152,-0.021774342,0.0146317175,-0.016577283,0.0113402475,-0.00724923,-0.018469546,-0.008401911,0.014285247,0.025758753,0.014671695,0.018256333,-0.020561695,-0.002556886,-0.0051937266,-0.01997536,-0.006296436,-0.025345653,0.013079263,-0.02934339,0.00034355553,0.024599409,0.021361241,-0.02561217,-0.006809479,-0.012273053,0.011873279,0.011087057,0.0013708906,0.021721039,-0.003051606,0.00835527,-0.01930907,-0.020095292,0.021561129,0.037338864,-0.0004199706,0.0010244201,0.009607895,0.0072758817,0.0029833114,-0.01449846,-0.0015841033,-0.022374002,0.020401785,0.0022986988,-0.0037012382,0.009168143,-0.0054835626,-0.016310768,0.002250393,-0.012479602,0.009008234,-0.014445157,0.00084160693,0.006469671,0.001887265,-0.02455943,-0.007229241,-0.003721227,0.004107675,-0.020681627,0.0060765604,-0.026038595,0.015311333,-0.014538437,-0.021641083,0.014858256,-0.010180904,-0.008448551,-0.021001445,-0.005023823,-0.015524546,0.0026251806,0.016630586,0.0036079579,0.011906594,-0.012326356,0.023813188,0.018029794,-0.020681627,-0.007975485,-0.0034413855,0.0056068264,0.00043975108,-0.010647306,0.0016249135,-0.018229682,-0.010594003,-0.064763345,-0.009034886,0.020868188,-0.02715796,0.0036212835,0.028117418,-0.018482871,-0.016537305,-0.009074863,-0.17110315,0.013452386,0.018189704,-0.014658369,0.008301968,0.014578415,0.008921617,0.017550066,-0.0052503613,0.0039144508,0.0036279464,0.016550632,-0.03899126,-0.0042042867,0.021814318,-0.010280848,0.009694513,0.02326683,0.018469546,0.0053469734,0.008222013,-0.013079263,0.02073493,-0.0016857125,-0.0031881954,-0.007562386,-0.0037711987,0.010467408,-0.017963165,-0.0033564335,-0.0189626,-0.005386951,-0.0141519895,0.018402917,-0.010414105,0.0014391853,-0.009561255,0.015644478,-0.015484569,0.0052103843,0.0080887545,0.02469269,0.001567446,-0.008528505,0.00724923,0.0145117855,0.004880571,0.005320322,0.025172418,0.0005655132,0.012659501,-0.0051537496,-0.015591174,-0.014844931,0.0021371236,-0.001827299,0.0038544848,0.00064130366,0.013319127,-0.0109804515,0.011700044,-0.007182601,0.02130794,-0.014645044,-0.028543843,-0.016977057,-0.024239613,-0.020588346,-0.01567113,0.024519455,0.0014566755,-0.02393312,0.0160176,-0.012206424,0.010107612,-0.0015083129,-0.022107486,0.016337419,-0.018509522,0.012279715,0.011480168,0.04821271,-0.013132567,0.004091018,-0.0023453392,-0.012133132,0.025465585,-0.0019622226,0.016137533,-0.012652838,0.021214658,-0.00019728416,-0.041443206,-0.025425607,0.002823402,0.008641775,-0.00421095,-0.00078205735,-0.005313659,0.0051770695,-0.009961029,0.014605066,-0.039017916,0.027957508,0.004973851,0.0054735686,0.025332328,0.012106481,0.02437287,-0.008488528,-0.032488275,0.009388019,0.021827644,0.041203342,0.0108005535,0.030969137,0.009414671,-0.009861085,0.009587906,0.021814318,0.053516373,0.00876837,-0.007189264,-0.006549626,-0.0090682,-0.031742033,-0.12067836,-0.031075744,0.026105223,0.008162047,0.00020540456,0.018123075,0.010314162,0.012666164,-0.0042975675,0.027584387,0.00010962545,-0.025718775,-0.0065829405,-0.010220882,-0.0063697277,0.0039144508,0.0040810234,-0.0048039476,-0.03016959,0.008075429,-0.002195424,-0.014671695,-0.024999183,-0.0015749418,-0.0016690552,0.00552354,-0.024599409,0.001338409,0.014018731,0.0043075616,-0.0059732855,-0.00013950437,0.01744346,-0.0124263,-0.002961657,-0.020508392,-0.03795185,-0.017749952,0.02595864,-0.013672261,0.010474071,0.021414544,0.01611088,-0.028623797,-0.0016957069,-0.02713131,-0.0037478786,0.0026551636,-0.011799987,-0.009974354,-0.024172984,-0.015178075,-0.0023486705,-0.013072601,0.029743165,-0.01595097,0.0072758817,0.024053052,-0.018256333,0.013045949,-0.0062331385,-0.0066262493,0.0010319159,0.0073491735,0.0043142247,0.010214218,-0.0014525112,-0.020495066,0.025518889,-0.014378528,0.017403482,-0.004270916,-0.028863663,0.002363662,-0.015711106,0.007509083,-0.008628449,-0.038698096,0.0078488905,0.003967754,-0.029636558,-0.008755044,-0.0014583411,-0.029769816,0.033900812,-0.0051171035,0.004684015,-0.0031532152,0.015910994,-0.003907788,-0.010500723,0.036832485,0.0067961533,-0.014724999,-0.021880947,-0.001405038,-0.004220944,-0.016137533,0.0012892702,0.016497329,-0.008941606,-0.030835878,-0.02073493,0.021627758,-0.005290339,-0.016230812,0.00018499944,0.016390722,0.012512918,-0.0020788233,0.0014325224,0.0070160287,-0.014005406,0.028970268,-0.007615689,0.0019339053,-0.0112203155,-0.0070759947,0.0072159157,0.008202024,0.008914954,0.0185495,-0.0026951411,0.013132567,0.015337985,0.0005825869,-0.007695644,0.020135269,-0.018989252,0.020708278,-0.014938211,-0.00014377279,0.00060965493,-0.0336876,-0.0024352882,0.032648187,0.019962033,-0.005233704,-0.020002011,0.04117669,0.009234773,0.0070293546,-0.024479477,-0.01509812,0.019415677,-0.0111003835,-0.0107805645,0.010640644,-0.061298635,0.025212396,0.009228109,-0.0049172165,0.0181364,0.025345653,-0.011406876,-0.017310202,-0.0018656106,-0.040617008,0.014658369,-0.008621787,-0.0181364,-0.01671054,0.009794456,0.0006946068,0.019375699,0.0021637753,0.0336876,0.022533912,-0.0008553492,0.0108605195,0.007375825,-0.01652398,-0.01332579,0.001616585,0.0019222453,0.016164184,-0.001659061,0.00994104,-0.02193425,-0.011426865,-0.025438935,0.029743165,0.012159783,-0.013552329,-0.014605066,0.002152115,0.0068427934,-0.0011551795,0.0010768904,0.027251242,0.03520674,0.017590044,-0.018482871,-0.0015732761,-0.020308504,-0.026758187,0.00805544,0.012806085,-0.01251958,0.009228109,-0.0236133,0.023719907,-0.0024869256,-0.003684581,-0.0011693381,-0.004654032,-0.03216846,0.012692816,-0.03643271,-0.012286379,-0.008788358,0.01141354,0.009867747,0.01424527,0.00964121,-0.0023903137,0.0067695016,-0.0016065906,0.0010635647,-0.021561129,-0.026105223,0.0027251241,0.0236133,0.007182601,0.023000315,-0.025172418,0.025025835,0.008735056,0.025438935,-0.0058033816,0.011873279,-0.0043375446,0.019842101,-0.0042909044,-0.00093613676,-0.025572192,-0.009621221,-0.023906467,-0.00052095513,0.016537305,-0.014844931,0.045787416,0.012319693,-0.0051237666,-0.0014916557,-0.0012692815,0.015271355,-0.019988686,0.021894274,-0.01921579,0.010354139,0.021267962,-0.023093594,0.021627758,-0.03035615,-0.0037045698,0.026491672,0.009234773,-0.00421095,-0.019922057,-0.022613866,0.013099252,-0.000016501077,0.011033755,0.0035546545,0.009767804,-0.02395977,0.05090452,-0.0036212835,0.011127035,-0.011333585,0.0028333962,0.005830033,-0.0018339619,-0.022080835,-0.00037770288,0.0033914137,-0.008275316,-0.011946571,0.03366095,0.0336876,-0.024479477,-0.0016190836,0.0015341316,-0.017883211,0.023253504,0.0050937836,-0.016737193,-0.0064263623,-0.019295745]},{\"id\":\"e938c1fd-e004-439d-a126-62e5aa268741\",\"text\":\"I’m trying to post on TikTok and I’m not sure what’s going wrong\",\"vector\":[-0.027256418,-0.0053771376,-0.00459278,-0.01565038,0.0068692546,0.013530164,-0.013934598,-0.037109908,0.016324438,-0.02500139,0.0045805243,-0.009510333,-0.02664364,-0.020773215,0.025516124,-0.0136527205,0.011722466,-0.008640187,0.0041730264,-0.019670213,-0.012880619,-0.00788034,-0.017402928,0.019363822,-0.009706423,-0.010619463,0.009565483,0.004405882,0.015858725,-0.009871873,-0.007647484,-0.01281934,-0.011121942,-0.034560747,-0.028261377,-0.028629044,-0.013713998,-0.028776111,0.009173305,-0.025344547,0.012402651,0.013971365,-0.00453763,-0.009283605,-0.031619407,0.025908304,-0.008824021,0.016777894,-0.007635229,0.003410116,-0.007218539,-0.035590217,-0.036497127,-0.035835326,0.0070775994,-0.0057478687,0.02541808,0.005680463,-0.009112027,0.017684808,0.002737591,0.018076986,0.021165393,-0.010950364,-0.010172134,-0.0041668983,0.0021968135,0.020662915,0.025810258,0.029143779,-0.005796891,0.0046111634,0.015221435,-0.017341651,0.032452784,-0.00535569,-0.0075800787,-0.0028187842,0.015564592,0.021900728,0.02225614,-0.02117765,-0.003679739,0.037060887,0.022991475,0.012231072,0.017991196,0.015123391,-0.005560971,-0.017782852,0.017402928,0.009301988,0.010582697,0.01720684,-0.010227284,-0.009326499,-0.00024645214,0.027673109,-0.015466547,0.0007004832,-0.0128683625,-0.0054537347,-0.02625146,-0.0018705084,-0.0028310397,0.0065996316,0.002175366,-0.0019547655,0.027599575,-0.0031741962,-0.00030121926,0.00082878384,-0.020405548,-0.0027299314,0.0043415404,0.0011604506,0.024952369,-0.023065008,-0.034781348,-0.010092474,0.030614449,-0.005698846,-0.001885828,0.0009214667,0.012905129,-0.0010846192,-0.013971365,-0.01823631,0.006176814,0.009436799,0.050247893,0.0052637733,-0.010288563,0.017329395,-0.010742019,0.010521418,-0.025883792,0.0036613557,0.006887638,-0.00788034,0.025663191,0.029560467,-0.012506823,0.022354184,0.0037563364,0.0053710095,-0.009577739,-0.017182328,0.013481142,0.0014093921,0.019829534,0.00083491165,-0.013174753,0.00038643388,-0.018003453,0.049120378,0.0019379142,0.013003174,0.005217815,-0.030124225,-0.009056876,0.021153137,0.008266391,-0.01323603,0.02225614,0.023359142,0.003980001,-0.028310398,-0.018652998,0.0105275465,-0.024449889,-0.018469164,-0.0032722407,0.009252965,-0.008554397,0.0066302707,-0.001679015,0.002409754,-0.0023147734,0.0012738147,-0.036619686,0.02980558,0.018738788,0.02813882,-0.019792767,-0.0096574,0.013677231,-0.0105275465,-0.027280929,-0.0074636503,0.017451951,0.0027452507,0.0036399083,0.0012967939,-0.63062334,-0.017746085,0.050149847,0.033727366,-0.022709597,0.009534844,-0.022746364,0.016226392,-0.028187843,0.013517909,-0.028825132,-0.011667316,-0.002029831,0.00083414564,0.002769762,-0.009167177,0.037698176,-0.0024924793,-0.01637346,0.0056406325,0.0018904238,-0.018224053,-0.0046019717,0.0020053198,-0.013934598,-0.020662915,0.0061032805,0.017795108,-0.018518187,0.042061165,-0.036864795,0.020344269,0.0117959995,-0.023444932,0.04767422,0.013861065,-0.03340872,0.026374016,-0.013223775,0.0049206167,-0.039830647,-0.023714554,0.011311904,-0.012414906,0.007181772,-0.019964347,0.005061556,-0.019192245,0.023604253,0.030810537,0.000235537,-0.00028187843,0.021042837,0.0043752436,-0.000559161,-0.040345382,0.003857445,0.005858169,0.02563868,-0.00464793,-0.039708093,0.01576068,-0.017942175,0.0011803659,-0.030344825,0.011673443,-0.0074085,0.015172413,0.018751044,-0.009393905,-0.009050748,0.0055824183,-0.03191354,0.023371398,0.0040167677,0.040149294,0.015209179,0.00093985006,0.01859172,0.004819508,-0.0120901335,0.0037287613,-0.018640744,-0.015515569,0.023150798,0.009553228,-0.037207954,0.010637847,0.00070814294,0.019915324,0.031987075,0.014449333,0.015993537,-0.012561973,0.007236922,-0.009148793,-0.028923178,-0.008149963,0.0121269,0.015944514,-0.007531056,0.022023285,-0.011722466,0.016532782,0.050885182,0.007849702,-0.027207395,0.0029367441,0.005790763,-0.01784413,-0.016863683,-0.017795108,0.0069979383,-0.010809425,0.0047183996,-0.035369616,0.023775833,-0.023800343,0.017525485,-0.01659406,0.019339312,-0.02397192,0.0007020151,0.0122372005,-0.0105275465,0.03044287,-0.0005530332,0.015343991,-0.004715336,-0.006948916,-0.006967299,-0.02267283,0.034536235,0.000323624,-0.025271013,0.01395911,0.020748703,0.019278033,0.02647206,-0.009093643,-0.0009927023,-0.014964067,-0.0033672217,0.02489109,0.0049328725,-0.020319758,0.0012699849,-0.01198596,-0.017819619,0.01690045,-0.015307224,-0.018800065,-0.012200434,0.0034928413,-0.016091581,0.0013956046,0.019780513,-0.010784914,-0.026275972,-0.007966129,0.007886468,0.026324993,-0.015209179,-0.011593782,-0.026619127,-0.017415185,-0.006912149,0.00038930628,-0.0041178763,-0.006446437,-0.02236644,-0.013088963,0.0008410394,-0.017880896,0.001148961,0.0074268836,-0.002622695,0.010417246,-0.0022580912,-0.017194584,-0.004485544,0.0065751206,-0.0023974986,-0.010815552,-0.008597292,0.00982285,-0.0054292236,0.032305717,-0.016949473,0.031202717,0.009577739,-0.016348949,-0.011409949,0.020270735,-0.0014093921,-0.0033733493,0.023690043,0.02256253,-0.018751044,0.025320036,0.012745807,0.002356136,0.022770874,-0.031840008,0.0077271457,-0.015883237,-0.017549995,0.0003331987,0.008499247,0.014314522,0.022096818,-0.009583866,-0.008272519,-0.00629937,-0.0034131801,0.031178204,-0.008952704,0.011667316,-0.026202438,0.024989136,-0.02153306,-0.014106177,0.009485822,-0.017402928,-0.008198986,0.026104392,0.026374016,0.015196924,0.00500947,-0.012365884,-0.031643916,0.019657956,0.014767978,0.024118988,-0.010925853,-0.009105898,0.0073717334,0.00021600466,0.03701186,-0.0011198539,-0.010288563,0.019081945,0.016385715,0.0004178388,0.04196312,0.018554954,0.02625146,-0.021496294,-0.005061556,-0.001381817,0.0029520637,-0.0010662358,-0.040198315,-0.012954152,0.0075862063,-0.016103838,-0.020184947,-0.00599298,0.03546766,0.040737562,-0.01118322,-0.013763021,-0.0074085,-0.0041423873,-0.0034039884,-0.000022332928,-0.0075739506,-0.008971088,0.007420756,-0.013897832,-0.02214584,-0.019461866,0.027378974,-0.022660574,0.024903346,-0.016214138,-0.0010195114,0.014008132,0.016434738,0.017586762,-0.003119046,-0.034487214,0.03804133,-0.0010080218,-0.015294968,-0.020809982,-0.010748147,0.012905129,-0.008578909,0.020736448,0.023567487,0.009344882,0.011262882,0.017684808,0.0006231198,-0.0016958663,0.023212075,0.007059216,0.032036096,0.020736448,0.024192521,0.0067895935,0.0023469443,-0.0010984067,0.00032056012,0.000055724606,-0.010202774,-0.031987075,0.0022121328,0.002677845,0.0064586927,-0.011789871,-0.0054261596,0.0039708093,-0.012365884,0.0075494396,-0.014375799,0.00018498271,0.011360926,0.0016437802,-0.0076045897,-0.014988579,-0.026790706,0.0048103165,0.10745696,0.023959666,0.023346886,-0.00036881646,-0.02664364,0.019719234,-0.0027850813,-0.025957325,-0.0018076986,-0.007892596,0.004856275,-0.022930197,-0.014866023,0.018309843,0.0043721795,-0.0049696392,0.01837112,-0.014731212,-0.015723914,-0.04539468,0.009112027,-0.0075188004,0.0066915485,0.0023622639,0.02150855,0.0072920723,-0.015294968,0.012261711,0.009375522,0.0032875603,-0.009455183,0.004911425,-0.009455183,0.023690043,-0.006262603,0.016361205,0.017795108,0.03215865,0.0074085,0.027378974,-0.0013703274,0.028604532,0.01490279,-0.014829257,0.0037869753,-0.020724192,-0.027575063,-0.009222327,0.020626148,-0.004473288,0.038948245,-0.008137708,-0.020172691,-0.009252965,0.00771489,0.012084005,-0.019559912,-0.022856664,0.002976575,-0.034119546,-0.014081665,-0.021128627,-0.0031558129,-0.0017265053,-0.019486379,-0.014277755,-0.0074085,-0.025908304,-0.020724192,0.0010325329,-0.0070224493,-0.010325329,-0.055689372,0.0022550274,-0.011269009,-0.00050784077,0.030271292,-0.005392457,-0.007831318,0.012292351,-0.0077639124,-0.032673385,0.0032477297,-0.021361483,0.004096429,-0.0011106622,-0.0046080993,0.031545874,-0.008217369,0.016716616,0.015160157,0.019805023,0.022979219,-0.01656955,0.0128683625,-0.010913597,0.0122372005,0.031815495,-0.009969917,-0.019437356,0.005073812,-0.024719512,-0.0135056535,-0.038531557,-0.012286223,0.010509163,0.0028019329,0.022047795,-0.02688875,-0.02106735,0.028040776,0.022096818,0.0071388776,0.0013350927,0.024155755,0.05181661,-0.008511503,0.024744023,-0.014767978,-0.0073227114,-0.021324717,-0.03191354,0.026766194,0.008983343,0.011262882,0.016152859,0.012574228,-0.038752157,-0.038114864,0.027207395,-0.0051044505,0.005741741,-0.0025736727,-0.0022259203,-0.019130966,0.0014277755,0.02117765,0.036153972,0.00971255,-0.011287392,-0.025883792,0.0041607707,-0.007861957,-0.036423594,-0.0018276139,-0.040443428,-0.0056651435,0.0055180765,0.014265499,0.03237925,-0.002175366,0.016532782,-0.027575063,-0.019339312,0.0044947355,-0.027329952,-0.020233968,0.009706423,0.004179154,-0.003768592,0.011783743,-0.0058152745,0.024020944,0.027427996,-0.011262882,-0.0049604475,-0.009234582,-0.028776111,-0.02386162,0.02664364,0.01834661,0.005769316,0.028530998,0.024118988,-0.009105898,-0.010080217,0.009485822,-0.0006958874,-0.0033947967,-0.023015985,-0.03338421,0.016005792,-0.0007445267,-0.014915045,-0.007537184,0.008836276,-0.014817,0.01698624,0.011679571,0.002588992,0.012476184,0.011195475,0.021079604,-0.010594952,0.022488996,-0.0017586763,-0.01867751,-0.015981281,-0.0077332733,0.022942452,0.009179432,0.0137017425,-0.0133585865,0.028457465,-0.031178204,0.041129738,0.0036858667,-0.008922065,0.0054598628,-0.010313074,-0.0239229,-0.043139655,0.005416968,-0.019155478,0.006501587,0.016005792,-0.017194584,-0.0060174917,0.0050155977,-0.025516124,-0.021275694,-0.0040474064,0.0073349667,0.019057432,0.026619127,0.025712214,0.011232242,0.0055977376,0.020160435,0.00003880137,-0.010637847,0.0130154295,0.03171745,-0.0054537347,-0.010821681,0.02122667,-0.017611274,-0.022096818,-0.010815552,0.015895491,0.0015158625,-0.016116092,-0.03340872,-0.00588268,-0.02938889,0.024437634,-0.028310398,0.003679739,-0.016116092,-0.03105565,-0.010460141,0.020773215,-0.004215921,-0.0037839115,0.024069967,0.018322097,-0.013934598,-0.003330455,-0.015074368,0.0054108403,0.009626761,0.0028754664,-0.03274692,0.0014231796,0.024486655,-0.010404991,-0.020307502,-0.015270458,-0.009871873,0.025467103,-0.043164168,0.0058367215,0.007206283,0.009510333,0.00793549,-0.0082786465,0.005499693,-0.027207395,-0.0048103165,-0.012188178,0.022329673,0.012696785,-0.011170965,0.0076291007,-0.0017019942,0.006287114,-0.0014492228,-0.0005212453,0.0025169905,-0.025663191,-0.0050768754,-0.023334632,0.00038471044,0.013664976,-0.012145284,0.016545039,0.0238126,0.027452508,-0.02067517,0.0005706506,0.0057815714,-0.016042558,-0.016839173,0.011275137,-0.000018515027,-0.06005236,0.023175308,-0.001560289,-0.0066915485,-0.03772269,0.0198663,0.010858447,-0.0028356356,-0.0059286384,0.01828533,0.03130076,-0.008971088,-0.021140883,-0.022966964,0.012261711,0.016912706,0.013334075,-0.010760402,0.022207119,0.017255861,-0.01681466,0.035982393,-0.009430672,0.0072982,0.004032087,0.017978942,0.008683081,-0.03657066,-0.016324438,-0.010993259,-0.011740849,0.011740849,0.005845913,-0.022488996,0.004506991,-0.00033262421,0.01815052,0.004981895,0.041031696,-0.0043109017,0.008879171,-0.02938889,-0.01281934,-0.01417971,-0.0064403093,-0.010968748,0.023591999,0.01870202,-0.025908304,-0.012966407,-0.00093755213,-0.032207675,-0.031840008,0.005530332,-0.01281934,0.007739401,-0.010147624,-0.040002227,0.03188903,0.00033185823,-0.00194251,-0.009608378,-0.03149685,0.0133095635,-0.027354462,-0.024756279,-0.012273967,-0.01595677,-0.0038482533,0.014780234,0.03193805,0.0044518407,0.023297865,0.017157817,0.010588825,-0.02708484,-0.0131134745,-0.008346053,0.0050278534,0.033898946,-0.023395909,-0.0066915485,0.011177092,-0.0025215864,-0.0052270065,0.0021569827,0.003117514,-0.016937217,0.043997545,-0.0024649042,0.009271349,-0.028408444,-0.0022136648,0.023800343,-0.00037494427,-0.013383097,0.013003174,0.027182885,-0.016581805,0.0059960443,0.014584145,-0.021716895,-0.015491058,0.0035541193,-0.009124282,-0.009442927,0.03206061,0.010999386,-0.035173524,-0.03441368,0.020246224,-0.02486658,-0.007806807,0.0036062056,-0.011330287,0.011777616,-0.0061032805,0.0072246664,-0.027109351,0.008143836,-0.0136036975,-0.0023469443,-0.026128905,0.021962006,0.022488996,0.01606707,-0.03760013,-0.0032293464,0.027060328,0.018616231,0.008107069,0.22687536,0.0011397693,-0.00902011,0.038752157,-0.0015901619,0.0019608934,-0.0061431113,0.02225614,-0.025246503,-0.015466547,0.022868918,-0.00014323714,-0.017709319,-0.0012232604,0.0011642805,-0.008940448,-0.02541808,-0.016655339,-0.011936938,-0.008873043,-0.0011995153,-0.0037165058,0.017672552,-0.012427161,0.035639238,-0.010466268,0.017599018,0.011673443,-0.0072675613,-0.0037318252,-0.0289722,-0.01723135,0.04556626,-0.00043698816,-0.010962619,-0.004525374,0.009639016,-0.011416076,0.022268396,0.028776111,0.015883237,-0.00818673,0.013836554,-0.015307224,0.017525485,0.010907469,0.0054598628,-0.006765082,-0.015037601,0.0026426103,-0.028849645,-0.016826916,0.027452508,0.017623529,-0.020613892,0.006268731,0.0195354,0.009479694,0.0042281765,0.0054598628,-0.0056008017,0.018714277,0.010521418,0.024927856,-0.034046013,0.01720684,-0.004366052,0.014767978,0.016030304,-0.002677845,-0.00022711129,0.010166007,0.006210517,0.017611274,-0.021937495,-0.019388333,0.033506766,0.006115536,0.036497127,0.006912149,-0.00370425,-0.0102824345,0.00039102972,-0.040247336,-0.018309843,-0.026815217,0.021153137,-0.003771656,0.008419586,-0.027869197,0.0051197703,0.013150241,-0.010754275,-0.008260263,0.0005951618,-0.00064877997,-0.02517297,-0.012102389,-0.0036153973,-0.029462423,-0.027869197,0.03443819,0.03757562,0.013174753,0.000529288,-0.012745807,0.0023408164,-0.014326777,0.028702578,-0.010588825,0.0027850813,-0.023089519,0.0138488095,0.0052576456,0.00088776386,0.033653833,0.00039639152,-0.013052196,-0.00247716,0.004739847,-0.006415798,-0.016949473,-0.020050135,0.0023423485,-0.005649824,-0.013983621,0.004736783,0.010239541,0.0050155977,-0.014767978,0.03588435,0.012856107,0.00007635803,0.004268007,-0.031349782,-0.0036858667,0.02128795,-0.020233968,-0.00038030607,0.015098879,-0.014351289,0.0028524871,0.014216477,-0.017415185,0.01354242,-0.03674224,-0.0022917942,-0.024229288,-0.019118711,-0.006379031,0.0058796164,0.014731212,0.011244498,0.009136538,0.03532059,-0.00085712486,-0.014841512,-0.0027498465,-0.024584701,0.015564592,-0.0111587085,-0.0042863903,0.04159545,-0.024903346,-0.025957325,-0.02686424,-0.14912595,0.009902512,0.0198663,0.0073349667,0.010503035,0.0059071914,0.0011566207,-0.004209793,0.00033051777,-0.00057524646,0.017390674,-0.004681633,-0.016949473,-0.018775554,-0.008339925,-0.016508272,0.0013894768,-0.026962284,0.038556065,-0.0055456515,0.030982116,-0.017476462,0.013922343,-0.0123842675,0.008866915,0.013137986,-0.014424822,0.005389393,-0.010153751,-0.025295524,0.0037226335,-0.017084284,0.01940059,0.011005514,0.01804022,0.0016070134,0.0055456515,-0.011054536,0.008290903,0.007531056,0.0131134745,0.026177926,-0.008333797,-0.0034989691,0.02835942,0.0110667925,0.008180602,-0.007359478,-0.011232242,0.003474458,0.009387777,-0.011287392,-0.0016713552,0.020368781,-0.019719234,0.0066057597,-0.010668485,0.008033535,-0.009982173,-0.009737061,0.010987131,0.0007851233,0.01343212,-0.009105898,-0.0291928,0.001767868,-0.029535957,-0.0021661744,-0.023653276,0.02855551,-0.009498077,0.005683527,0.022709597,0.019192245,-0.0012776447,0.0042833267,-0.038948245,0.0063116257,-0.0077087623,0.012561973,0.011679571,0.028261377,-0.037428554,0.015797447,-0.0031619405,0.022182606,0.009424544,0.015147901,-0.013039941,-0.017439695,0.0049880226,0.018493677,-0.026766194,-0.0022764746,0.00058214023,0.008854659,0.016581805,0.016630827,0.029756557,-0.02960949,0.0039585535,0.011501865,-0.027011307,0.016275415,0.03188903,0.016655339,-0.028089797,0.016165115,0.024927856,-0.014032643,-0.030222269,-0.013910088,0.037698176,0.027746642,-0.010221157,0.03505097,-0.0007318881,0.018358864,0.005833658,0.010858447,0.035345104,-0.021594338,-0.008578909,0.008315413,-0.016446993,-0.017378418,-0.09750542,-0.046791818,0.0035694388,0.0082296245,-0.027305441,0.013088963,-0.007739401,0.027477019,-0.010104729,0.044389725,-0.019719234,-0.030614449,-0.007365606,-0.00996379,-0.0012730488,-0.005790763,0.00081193243,0.0032906241,-0.0020252352,0.009007854,-0.015920004,-0.025369057,-0.010454013,-0.01334633,-0.021324717,-0.013628209,-0.014964067,0.012188178,0.016054815,0.0067773378,-0.0033917327,0.0012592613,0.0070469608,-0.021962006,0.006765082,0.015711658,-0.020209458,0.0031006627,0.010852319,-0.026521083,-0.012843852,-0.009669656,-0.015638124,-0.018052476,-0.040051248,0.010913597,0.008664697,0.015944514,0.0024388612,-0.011115815,-0.0022320482,0.00793549,-0.014216477,-0.028849645,0.028432954,-0.009203943,-0.00034909265,0.029486934,-0.007892596,0.015343991,0.005125898,-0.00902011,-0.020319758,0.03299203,0.00929586,0.002883126,0.0088178925,-0.019988857,0.01815052,-0.0026441421,-0.00788034,0.0055793542,-0.020050135,0.03794329,-0.0237023,-0.005511949,-0.0073349667,0.007506545,0.011428332,0.0074146283,-0.024106734,-0.022194862,0.0060144276,-0.014498356,0.00990864,-0.006268731,0.00771489,0.018652998,-0.002708484,-0.021214416,-0.008824021,0.0018459973,-0.0054292236,0.0009092111,-0.04196312,0.007071472,0.009835106,0.0058397856,-0.009461311,0.032918498,0.006087961,-0.006127792,-0.025320036,0.011048409,0.015098879,-0.016140604,0.006072642,-0.008168346,0.021214416,-0.039315913,-0.020662915,0.016214138,0.0032753048,0.005940894,0.002031363,-0.0038482533,-0.0061461753,0.019633446,0.012905129,-0.01554008,0.0005097557,-0.02960949,-0.019829534,-0.010251796,-0.016949473,0.02078547,0.012347501,0.03149685,0.012077877,0.024437634,-0.0038543812,-0.01193081,0.015331735,-0.023824854,0.005508885,0.03760013,-0.0068998937,-0.026324993,0.02644755,0.026055371,-0.015380758,0.03233023,-0.010791042,-0.02938889,0.022488996,-0.026177926,-0.0015993536,-0.03277143,-0.03760013,0.008811764,0.025957325,0.016054815,0.021986518,0.0019823406,-0.003618461,0.01334633,-0.0038788922,-0.034315635,0.0039891927,-0.010239541,0.0022871983,-0.028236864,0.002389839,0.0074023725,0.0016728871,-0.026839728,0.014155199,0.011967577,-0.030099714,0.012218817,0.010558185,-0.032673385,0.0137997875,0.012341373,0.015932258,0.011716338,0.018714277,0.051375408,-0.028604532,0.002676313,0.00059899164,0.00419141,-0.0029061052,0.018934878,-0.009957662,0.0018398695,0.027256418,0.023297865,0.01281934,0.017880896,-0.011177092,0.002651802,-0.040835604,-0.004540694,-0.008162219,0.01060108,0.029977158,0.00068171683,-0.021055093,0.008952704,0.00016458867,0.00016717383,0.0007334201,-0.017611274,-0.0028754664,0.00084333733,-0.019915324,0.012794829,-0.034560747,-0.012414906,0.019719234,0.0145964,-0.028849645,-0.01992758,-0.019792767,0.003744081,-0.006477076,-0.004298646,0.0046142275,-0.02983009,-0.025491614,0.04853211,0.0012094729,-0.017880896,0.025148457,-0.03233023,0.0068815104,0.0125313345,0.0067895935,-0.02120216,0.0073472224,-0.009301988,0.0052944124,-0.0016453121,-0.0060787695,-0.005395521,0.018640744,0.006532226,-0.039659068,0.009749317,-0.0046938886,0.057160042,0.01951089,-0.005037045,-0.011789871,0.0005243092,0.04848309,0.022832152,0.013383097,0.006207453,0.010981003,0.015049857,-0.004476352,-0.0064525646,-0.037869755,-0.0051473454,0.0063116257,0.006648654,0.004687761,-0.002795805,-0.0113057755,0.014743467,0.017268118,0.02519748,0.007861957,-0.013187008,-0.008211241,0.02236644,0.00090844516,-0.035761792,-0.04027185,0.020344269,-0.010496908,-0.004684697,-0.028457465,0.022819897,-0.007868085,-0.0064648204,0.020013368,0.027673109,0.013395353,0.022378696,-0.0015809702,-0.019939834,-0.0147067,-0.019376079,0.0047183996,0.0009298924,-0.0004094131,-0.030565426]},{\"id\":\"f12677b3-22c9-4bc7-b6a1-d02c16495257\",\"text\":\"I’m not able to accept my vitacup post \",\"vector\":[-0.025738524,-0.012741378,-0.0039812597,-0.006905786,-0.028969303,0.022305824,-0.018980816,-0.011025027,-0.0051928014,-0.013549072,0.016369272,0.007922135,-0.02585968,-0.04550011,0.0007054705,-0.026101988,0.022251979,0.002927892,-0.00976637,-0.013239455,-0.008413482,0.008729829,0.0073769414,-0.003343518,-0.017769275,-0.011711568,0.015225038,-0.0070740557,-0.0032173155,-0.00034537344,0.003897125,-0.012128876,-0.007228864,-0.014713498,-0.016490426,-0.02039428,-0.015278884,-0.023800058,0.0067543434,-0.0030170747,0.014269266,0.015009653,-0.0015371433,-0.019169278,-0.0532809,0.025563525,-0.0118327215,-0.009369254,-0.009887524,0.013973111,0.036777012,-0.0090259835,-0.033007775,-0.011253874,0.017446198,-0.0037389516,0.02397506,0.02116159,0.016436579,-0.0012527675,0.011105796,0.0057346295,-0.00077067496,0.013892342,0.0025072177,-0.007255787,-0.005515879,0.004139433,0.0011795702,0.0020293319,0.019128893,0.010580795,0.0059567452,-0.0122298375,0.037961632,-0.0020310145,-0.03160777,0.0010929113,-0.015426961,-0.008776945,0.013010609,-0.032577004,-0.0066668433,0.0061788615,0.041300103,0.015103883,0.024109675,0.0015985616,-0.004378376,-0.0214039,0.0035504894,0.020784667,0.0037658748,0.025334679,-0.027703915,0.01327311,0.010681757,0.031715464,0.01027791,0.00620915,-0.020434666,-0.010345218,-0.032415465,-0.02167313,-0.005276936,-0.0010500026,-0.0075788647,-0.011704837,0.018900046,-0.0016734416,-0.020030819,0.00045096266,0.011462528,-0.008965407,-0.0008585959,-0.013757726,0.007632711,-0.015009653,-0.025711602,-0.016005808,0.017661583,-0.016894272,0.023436597,0.0014504844,0.02818853,0.0052702054,-0.029265456,0.0075182877,0.000846817,0.0017500044,0.0068855938,0.034542393,-0.0044086645,0.011805798,-0.021430822,-0.0068452093,-0.039873175,0.0029531324,0.0058995336,0.0013848592,0.016773118,0.029534688,-0.01302407,-0.008245213,-0.005980303,-0.013145225,0.015211576,0.0050077047,0.004085587,-0.007639442,-0.0128625315,-0.021121206,-0.014376959,-0.021996208,-0.0060274187,-0.0048428006,-0.024728907,0.016167348,0.0013857005,-0.034138545,-0.024903908,-0.0035908741,-0.00428078,-0.0011257239,0.010917335,0.03211931,0.0112606045,-0.007134633,-0.00586588,-0.0011206758,0.0049908776,0.026828913,-0.025576986,0.01782312,-0.00024819773,0.027623145,0.0024028905,0.006064438,-0.024015443,0.00659617,-0.040303946,0.02354429,0.014875037,0.021578899,0.01087695,-0.02552314,0.020353897,-0.020919282,0.013717341,-0.009490408,0.013306764,0.01618081,0.0023355826,-0.002360823,-0.6543401,-0.011785606,0.032334697,0.028996225,0.029750073,0.015305807,0.0033973642,0.009651947,-0.005276936,0.024432752,-0.026855836,0.017055811,-0.027555836,0.009187522,0.009739447,-0.03144623,0.02510583,-0.009813486,0.004442319,0.0035336625,-0.006750978,0.0033300563,-0.0047653965,0.026936606,0.015251961,-0.023328904,0.009746178,0.012478877,-0.028646225,0.01945197,-0.005425013,0.025805833,-0.014955807,0.018819276,0.0681694,0.007511557,-0.016773118,0.021134667,-0.009618293,-0.00020697166,-0.03015392,-0.012000991,-0.00796925,-0.01190676,-0.010143294,-0.0055966484,-0.003181979,-0.0027192375,0.022857748,0.0076865572,0.018953893,-0.006501939,-0.011536567,0.012512531,-0.0009877428,-0.02303275,0.04232318,-0.025832755,0.0122096455,-0.001638105,-0.016786579,0.007154825,0.013333687,-0.019923126,0.007895212,0.019492356,-0.007222133,0.01173849,0.011200028,0.0075519416,-0.012902916,-0.012600031,0.0043548183,0.024607753,0.025967373,0.023773136,0.004129337,-0.021269282,0.013050994,0.02440583,0.0020966397,-0.003964433,-0.018051967,0.0006840161,0.020878898,0.0051322244,-0.013387533,-0.017675044,-0.0022379863,0.0021353418,0.017540427,0.014525035,-0.003863471,0.0016086578,0.00023305346,0.005085109,-0.037557784,0.008675983,0.0031146712,0.002128611,0.0011198345,0.0036245282,-0.011637528,0.008702906,0.038419325,0.014767344,-0.015776962,0.008070212,0.044180878,-0.036696244,0.0041764528,-0.0026704392,0.011031758,0.004317799,-0.0031718828,-0.027784685,0.014350035,0.0074375183,-0.020151973,0.010688487,0.020676974,0.00033948402,0.014875037,0.011677913,-0.013697149,0.016463501,0.013683688,-0.017580813,-0.024594292,-0.008830791,0.008083674,0.015884655,0.032711618,-0.0038567402,-0.0028201994,0.012909647,0.027973145,0.00994137,0.0039004905,-0.010580795,-0.014969268,-0.0032004886,-0.008278866,0.00000400955,-0.0093423305,-0.025469294,0.024311598,0.007417326,0.010506757,0.016853888,-0.019290432,-0.0034798163,-0.028161608,0.007989443,0.0021302938,-0.0074375183,-0.007895212,-0.013151956,-0.016759656,-0.0030355845,-0.00848079,0.011226951,-0.012350992,-0.007989443,-0.023746213,-0.009544254,-0.0026401507,0.00899233,-0.012310607,-0.01764812,-0.002222842,-0.0026906317,-0.0061620343,-0.02218467,-0.042727027,-0.0012704359,-0.00025093212,0.0018476007,-0.0035504894,0.00076646823,-0.008548098,-0.012586569,0.0036985667,0.014175035,0.03322316,0.015561577,-0.017419273,0.029884689,-0.010075986,0.024876984,0.0052903974,-0.014484651,-0.0025526506,0.02081159,-0.0007992808,0.0017550524,-0.0008716368,0.012512531,-0.008871175,0.011953875,0.0038601058,0.0021942363,0.02226544,-0.0011408682,0.019196201,-0.020259665,-0.02296544,-0.01173849,0.011226951,0.00059062644,0.00676444,-0.00020802335,-0.01353561,-0.009214446,-0.012075029,0.025765449,-0.01310484,-0.011038489,-0.010042332,0.015440423,-0.021511592,-0.018603891,0.00021443862,-0.032873157,-0.002794959,0.03195777,-0.010143294,0.012021183,-0.006697132,-0.0067038625,-0.016975041,0.021296207,0.004758666,0.0032694791,-0.0019704376,-0.020057742,0.03707317,-0.007471172,0.01378465,-0.004785589,0.003155056,0.023746213,0.009241369,0.015238499,0.015198114,-0.018132737,0.007545211,-0.022198131,-0.015440423,-0.0003865995,0.0027141895,0.002510583,-0.033034697,0.0019653894,0.0020713992,-0.010755796,-0.025025062,0.007599057,0.02089236,0.04221549,0.008083674,0.023221212,-0.005791841,-0.018200045,0.0022800537,-0.0012990417,0.015534653,-0.019007739,0.0065995357,-0.015723115,-0.011940414,-0.043292414,0.008575021,-0.011516375,0.020932743,-0.02646545,0.010109641,0.00062428036,0.017028889,0.0007462759,-0.014201958,-0.033896238,0.012000991,0.015857732,0.014659652,0.015225038,0.004721646,0.005239917,-0.0056976103,0.008999061,0.015857732,0.0055730906,0.017325042,0.0091606,-0.04283472,-0.008850983,0.018926969,-0.0067173243,0.0057077063,0.023328904,0.0018560141,-0.0038668364,-0.009927909,-0.0119134905,-0.0010718777,0.010560603,-0.015561577,-0.02046159,-0.014632728,0.0031197192,0.0068216515,0.0010491612,0.019303894,-0.020273127,-0.0036750091,0.017446198,-0.006687036,-0.017607735,0.012054837,-0.007094248,-0.016221194,0.004092318,-0.030369306,-0.0112606045,0.09568485,0.020151973,-0.009705793,0.026438527,-0.01276157,0.01019041,0.0018947162,-0.0333847,0.0048899157,0.0045702034,0.011711568,-0.02346352,-0.002909382,0.0032408733,0.009685601,0.0076798266,0.010150025,-0.0012317338,-0.000075511,-0.030100074,0.006575978,-0.032280847,0.019519279,-0.00054224895,0.01113272,0.027703915,0.020757744,0.019573126,-0.008400021,0.0041730874,0.004933666,-0.022561595,0.0099750245,0.002162265,-0.006626459,-0.0074779033,0.030961614,0.019344278,0.02662699,0.018536584,0.011570221,0.022911595,0.023759674,-0.018226968,0.0013495225,-0.0083730975,0.005122128,0.006347131,0.016503887,-0.020219281,0.034219313,0.008595213,-0.0078077116,-0.01627504,0.016113501,0.013811572,0.003420922,-0.029669303,0.0005704341,-0.007329826,-0.019801972,-0.0063336696,-0.02124236,-0.007955789,-0.023826981,-0.011926953,-0.024796216,-0.009961563,-0.008386559,-0.011200028,-0.009773101,-0.011038489,-0.005993765,0.016073117,-0.0062629962,-0.0071211713,0.021215437,-0.027192375,-0.0062428038,0.018657738,-0.005411552,-0.019626971,-0.016207732,0.0013857005,0.0066937665,-0.0016153886,0.010210603,0.02038082,0.010102909,-0.012808685,0.033977006,0.030476999,0.039011635,-0.01961351,0.009355792,-0.015561577,0.008729829,0.0001674283,-0.01645004,0.0037726054,0.008312521,-0.01019714,-0.0083730975,-0.025253909,-0.02081159,0.017271196,0.0090259835,0.019976972,-0.027676992,-0.014457728,0.037369322,0.0157635,0.018967355,-0.015144268,-0.010230795,0.025657756,-0.0027478433,0.03750394,0.020865437,-0.019855818,-0.011846183,-0.022359671,0.030503921,-0.007774058,-0.003957702,0.03015392,-0.0009044493,-0.025509678,-0.011967337,-0.0030776518,-0.004314434,0.023598135,-0.009254831,-0.011671183,-0.02082505,-0.00094315136,0.025213523,0.01645004,0.0044927998,-0.032684695,-0.01601927,-0.032927003,-0.020138511,0.009375985,0.008783676,-0.03828471,0.009665408,-0.005438475,0.013602918,0.028242378,0.009402907,-0.0032644311,-0.019223124,0.0064279004,-0.028161608,-0.022453902,-0.026869297,0.0060745343,0.013865419,0.020165434,0.037827015,0.00710771,0.0076798266,0.008426944,0.004640877,0.0046610693,0.0064952085,-0.02073082,-0.019976972,0.026088526,0.015130807,0.0060408805,0.031015461,0.0070202095,-0.024042366,0.01267407,-0.01618081,-0.028888533,-0.034327008,-0.021175053,0.003641355,-0.0015379846,0.013387533,0.0061182845,0.0017466389,-0.019317355,0.022803903,0.019734664,0.02397506,-0.00041709837,0.010123102,-0.015103883,0.012694262,0.0010500026,0.007888481,0.008359636,-0.030665461,-0.0011164692,-0.0016969994,0.042888567,-0.0059500146,0.023355827,-0.010991373,0.004008183,-0.0026283718,0.023678904,0.0045601074,-0.02748853,0.017203888,-0.019478895,-0.0034158737,-0.019303894,-0.031096231,-0.020542359,0.0064447275,-0.0048899157,-0.045580883,0.020798128,-0.0037827017,-0.019828895,-0.006047611,-0.0051153973,0.01627504,0.01840197,0.0286193,0.043992415,-0.0080365585,-0.011839452,0.02234621,0.011960606,-0.0055226097,-0.0052197245,0.034703933,0.00007098875,-0.010506757,0.0037625092,0.015951963,-0.020326974,-0.040573176,0.0157635,0.0076932884,-0.016584657,-0.010641373,-0.0036077013,-0.03306162,0.016584657,-0.007289441,-0.021376975,0.010123102,-0.0061788615,-0.022063516,0.0153731145,-0.0052803014,0.014848113,0.03631932,0.001918274,-0.009840409,-0.024540445,-0.004253857,0.025321215,-0.0013453158,0.022426978,0.010755796,0.008575021,-0.0095106,-0.012680801,-0.007632711,-0.014094265,-0.01575004,0.02611545,0.004822608,-0.018388506,0.006441362,0.0036009704,0.02063659,-0.0075182877,-0.0044153957,-0.0015842587,-0.0025290928,0.0021774091,0.009275023,-0.0011088969,-0.027515452,-0.003957702,-0.015817346,0.011550029,-0.027946223,0.0063336696,0.004240395,-0.0095106,0.007639442,-0.013326956,0.012135607,0.0051961667,-0.00805002,0.0093356,0.029023148,0.02390775,-0.0071211713,0.019505817,0.010082717,0.014861575,-0.033465467,0.00057422015,-0.017796198,-0.01789043,0.031661615,0.0003672485,-0.020569282,-0.0183212,0.019976972,0.020865437,0.007094248,0.001236782,0.025576986,0.009712524,0.031015461,-0.04170395,-0.010769257,-0.0029564977,0.0019266874,-0.0009885841,-0.0081173275,-0.020676974,0.008622137,-0.0050783777,0.00830579,0.030046228,-0.012983686,-0.0055125137,0.036130857,0.017244274,-0.0035336625,-0.033788543,-0.0024012078,0.00079381204,-0.0067476127,0.0024937561,-0.00075637206,-0.015144268,0.014861575,-0.00064741744,-0.007100979,0.015359653,0.0056235716,0.0071615563,-0.02030005,-0.020326974,0.0058221295,0.001696158,-0.043157797,0.0052466476,-0.00019424627,0.025159677,-0.017863506,-0.0028185165,-0.018523123,-0.0070605944,0.015319268,0.009544254,0.0067206896,-0.024109675,-0.005933188,-0.011058681,-0.0021471207,0.008083674,0.016813504,-0.0067947283,0.0029750073,-0.0065827086,0.0062932847,0.0029413535,-0.040465485,-0.009227907,0.0065456894,0.040707793,0.021525053,-0.0044591455,0.008999061,0.0059903995,0.011085604,-0.016153885,-0.0060947267,0.010345218,0.026169294,-0.025630832,-0.028646225,-0.013199071,0.0010668295,0.016557733,-0.0026586603,0.0030372671,-0.0020276492,0.016853888,-0.010930796,-0.004119241,-0.0065221316,0.008386559,0.0214039,0.020717358,-0.00022001256,0.007955789,0.024015443,-0.0033064985,-0.006175496,0.021659669,-0.022736594,-0.0023944771,0.024648137,-0.025805833,-0.0068990556,-0.00089182914,0.01190676,-0.024701985,-0.01181926,0.013495225,-0.009685601,-0.02073082,0.009860601,0.00813752,-0.0096586775,-0.0073029026,-0.00010143505,0.000676444,0.0083529055,-0.030719306,-0.009120215,-0.029480841,-0.02106736,0.025119293,-0.0025745255,-0.04307703,-0.005721168,0.021053897,0.03564624,0.0033115465,0.2377852,-0.002776449,-0.013892342,0.038823172,0.0046274154,-0.012357723,0.00595338,0.002189188,0.025846217,0.0026754874,0.0021588996,0.004657704,-0.023221212,-0.007040402,-0.012795224,-0.019626971,-0.066607855,-0.029992381,0.00023810155,-0.025401985,-0.004290876,-0.013757726,0.02389429,-0.013838496,0.034300085,-0.017271196,0.020057742,-0.012936571,0.018011583,-0.0073096333,-0.016046192,-0.012270222,0.015211576,-0.006320208,0.027178913,-0.011200028,0.007605788,-0.0050144354,0.029965458,0.032092385,-0.026021218,0.0009852188,0.01755389,-0.012196184,0.00629665,0.026196219,0.010715411,-0.012115414,-0.008945215,0.004728377,-0.0286193,0.0032896716,0.016598118,-0.0020310145,-0.0003495802,0.011011566,0.017244274,-0.020488512,-0.029965458,-0.0055091484,-0.014888498,0.02124236,0.012775032,0.020178895,-0.010224064,-0.0061620343,-0.0057682833,0.00007477483,-0.006653382,0.008507714,0.012667339,-0.002195919,-0.011570221,0.017325042,-0.021201976,-0.015426961,-0.0044322223,0.025415447,0.031177,0.0099750245,-0.007787519,0.0074980953,0.007854827,-0.034838546,-0.0016540906,-0.039442405,0.023423135,0.009880793,0.0061553037,-0.008366367,0.0038432786,-0.0075923265,-0.016988503,-0.009800024,0.012223107,-0.008292329,-0.0036750091,0.011933683,0.0029194783,0.008386559,-0.01045291,0.05756168,0.017930813,0.025375063,-0.017365428,0.0033738064,-0.017190427,0.014511574,0.012539454,-0.009927909,-0.033007775,-0.026101988,-0.008837522,0.015534653,-0.017284658,0.03400393,-0.017715428,-0.0033519312,0.004583665,0.0005409869,0.012963493,-0.021619285,0.031230846,-0.011637528,0.0072154026,-0.021376975,-0.0019334182,0.008043289,-0.0016540906,-0.050238587,0.032334697,0.011368297,0.013946189,-0.0279193,-0.007915404,0.0020781301,0.009800024,-0.016719272,0.017715428,0.007444249,-0.046011653,0.013259648,0.018186584,-0.006185592,-0.010984642,-0.031877,0.01464619,-0.016221194,-0.022373132,-0.009429831,-0.021134667,0.012492338,0.0010441132,-0.015736578,0.029184688,-0.0022649094,-0.023167364,-0.02296544,-0.01688081,0.00040216444,-0.031177,0.0021992843,0.05053474,0.009443292,-0.021228898,-0.005926457,-0.1725235,0.007013479,-0.0010104593,-0.02835007,0.018496199,0.0063168425,0.009443292,0.0055831866,-0.01627504,0.00030456806,0.040384714,0.0096384855,-0.010715411,-0.019653894,0.0036615476,-0.019653894,-0.015453884,-0.0012990417,0.011597144,0.0033637101,0.0041764528,-0.019680819,0.007471172,-0.017001964,-0.021551976,0.0040956833,-0.0062226113,0.02818853,0.006323573,-0.00087331946,-0.0014311334,-0.026869297,0.031203924,0.010089448,0.023315443,-0.009692332,-0.007545211,-0.00015028582,0.018482737,0.0012224789,0.0023036115,0.010614449,-0.0055091484,-0.0076865572,-0.003984625,0.03451547,0.003431018,0.010614449,0.020003896,0.005387994,0.02972315,-0.013865419,0.0051053013,0.024271214,0.0147404205,-0.0015691144,-0.0037658748,0.029103918,-0.0073971334,-0.0062764576,-0.0012788493,-0.009402907,0.0137711875,0.0028858243,0.0045971265,-0.01302407,-0.0027427953,-0.012095222,-0.02346352,0.009093292,-0.016005808,-0.0054620327,0.005199532,-0.0014588978,0.0025980833,-0.006451458,-0.05799245,0.0032122675,-0.012398108,0.003148325,0.004644242,0.021996208,-0.018657738,0.00052584265,-0.02681545,0.012909647,-0.0072355946,-0.015601962,-0.0010870219,-0.02595391,0.0047990503,-0.020259665,-0.033950083,-0.023194289,-0.019034663,0.01087695,0.011018297,0.033411622,-0.00046400353,-0.039092403,0.03392316,0.0056504947,-0.046011653,0.022750055,0.027973145,-0.0078077116,-0.017957736,0.0076259803,0.008285597,-0.021511592,-0.0075654034,0.018644277,0.019600049,0.03236162,0.0069259787,0.0028471225,0.0118327215,-0.007168287,0.023651982,-0.018038506,0.015171192,-0.0060879956,-0.012048107,-0.0061620343,0.006700497,0.006892325,-0.12061568,-0.032927003,0.007888481,0.013932726,-0.014040419,0.0013141859,-0.0013983208,0.0049033775,-0.011179836,0.019990433,-0.0023911116,-0.034919318,-0.0036245282,0.024338521,0.011502913,0.0049134735,-0.0061519383,-0.011603875,-0.0012914696,0.020798128,-0.012297146,0.006912517,-0.0048798197,-0.00074459316,-0.026707757,-0.008682714,0.013165417,0.020744283,0.011502913,0.0015203162,0.0056605907,-0.0030473634,0.010143294,-0.012344262,-0.00080348755,0.015992347,-0.008864445,-0.005808668,0.027811607,-0.021578899,0.005721168,-0.006441362,0.0060375147,-0.0076798266,-0.007922135,-0.011691375,-0.009988486,0.0022581785,0.022373132,-0.015023114,-0.0014959171,-0.00036745885,-0.015951963,-0.004943762,0.025765449,-0.025159677,0.02748853,0.033411622,-0.034327008,0.007996174,-0.006713959,0.00535434,-0.027703915,0.00074795855,0.0012149068,-0.0031180365,-0.0050918395,-0.005034628,0.00547886,-0.011058681,0.005250013,-0.022090439,-0.003998087,0.011381758,-0.022050055,-0.0030759692,-0.0016759656,-0.0032089022,0.0075182877,-0.0049538584,-0.029965458,-0.014363497,-0.0030439978,-0.01566927,0.01780966,0.0051692436,0.01019714,0.019801972,0.005377898,-0.012411569,-0.00805002,0.005663956,0.023773136,-0.013589457,-0.038015477,0.017257735,0.0078077116,-0.010641373,0.014228881,-0.008601944,-0.019411586,-0.005448571,-0.03863471,0.04189241,0.003658182,-0.0140673425,0.00010490561,-0.009355792,-0.00830579,-0.008958676,-0.03710009,-0.0072355946,-0.000093442235,0.00030561973,-0.013111571,-0.00023683952,-0.0023961598,-0.010150025,0.03777317,-0.005475494,-0.02972315,-0.010789449,-0.015978886,0.00080138416,-0.0017903891,0.01302407,-0.00033191187,0.0083730975,-0.008756752,0.011953875,-0.011778875,-0.011940414,0.020071203,-0.039253943,-0.008433674,0.030907769,0.030423151,0.00076773023,-0.007975982,0.015521192,-0.014336574,0.010102909,-0.013286571,-0.03195777,0.007915404,-0.009779831,-0.010345218,0.0038264517,-0.041488566,0.0093221385,-0.004445684,0.02063659,-0.0038769327,0.008857714,0.016301963,-0.017001964,-0.0053139552,-0.022830825,0.0018610623,0.0005843163,-0.0019906298,-0.021282746,0.027219297,0.0052702054,-0.0069259787,-0.023692366,-0.0018173122,0.028161608,-0.02347698,0.006750978,0.025428908,-0.020757744,-0.004442319,-0.0000029315727,0.014686574,0.0050144354,0.035269316,0.003940875,0.015817346,0.0046105883,-0.006626459,-0.011247143,-0.031661615,-0.016544271,-0.0030591423,0.007814443,0.009820216,0.017580813,-0.009328869,0.033546235,-0.0014841383,0.008063481,-0.008521175,0.0056202062,0.008164443,-0.0011231999,0.04224241,0.005226455,-0.006199054,0.025725063,0.009261562,0.015803885,0.018684661,-0.002261544,0.012694262,-0.00052247726,-0.025401985,0.024298137,-0.029426996,-0.008810598,-0.0069730943,0.024042366,0.0076529034,-0.009308677,0.03675009,0.029588534,-0.0061620343,0.0072759795,-0.00085565116,-0.019088509,-0.030476999,0.031419307,0.016140424,0.0021000053,0.02312698,-0.0122433,0.0037995286,0.0103115635,-0.0031028923,-0.038930867,0.015871193,-0.0002866894,0.0043043373,-0.008453867,-0.02132313,-0.024971215,0.01464619,-0.0118932985,-0.044934727,0.021565437,0.0020713992,0.051315513,0.016503887,-0.007417326,0.003974529,0.0042101066,0.015130807,0.010150025,-0.0029851035,0.005226455,-0.020690436,0.02405583,-0.007639442,-0.00014082066,-0.03871548,-0.002737747,0.017621197,-0.0051961667,0.007141364,0.012532723,-0.004428857,-0.0057447255,0.0026738048,0.018967355,0.017446198,-0.0033771717,0.0053846287,0.010338487,0.009961563,-0.034030855,-0.042027026,0.013851957,0.008884638,-0.046442423,-0.016826965,0.020165434,-0.023705827,0.0014967585,0.012512531,-0.007006748,0.0022548132,0.015251961,0.02707122,-0.03895779,-0.016113501,-0.015278884,-0.0032021713,-0.017769275,-0.009672139,-0.024109675]},{\"id\":\"3454235b-5983-4cc8-935c-72159a36d94b\",\"text\":\"Better user interface, a little easy to understand instructions \",\"vector\":[-0.014528682,0.010657902,-0.0038442682,-0.020865098,-0.0003256029,0.0073969024,0.017670378,-0.0360831,-0.03372351,-0.025703572,-0.0013148391,-0.0009718376,-0.019221341,0.005554305,0.0063894386,0.0118575785,0.027334072,-0.016808731,0.021063939,0.00300582,-0.015456609,0.019619023,-0.021793025,-0.01650384,-0.015947085,-0.00053272943,0.012427591,-0.008755652,0.010810347,-0.0033769908,0.01147978,0.0041624145,-0.01895622,-0.023900744,-0.024298426,0.018266901,-0.0006014954,-0.014899854,-0.0005646269,-0.0064490912,0.005431686,0.005365405,0.0021358887,-0.020043219,-0.018929707,0.019049011,0.00903403,-0.0049511525,-0.022310011,0.015032414,0.0013164962,0.02645917,-0.01314342,-0.010843487,-0.008344714,0.0028252057,0.01569522,0.012778877,0.010923024,-0.012367939,-0.010830231,0.0075891158,-0.029640634,0.013209701,0.006273448,0.0030406173,-0.00594536,0.012679457,0.018319927,-0.0127855055,0.034333292,0.005898963,-0.0038475823,0.015920572,0.010319872,0.0020430959,-0.00896775,0.009657067,0.028341535,-0.00037779877,0.0037581036,-0.0066048503,-0.0069992193,0.014793805,0.023410268,0.020957889,0.020904865,0.009179847,-0.010187311,-0.030966243,-0.008437506,0.011698506,0.0092129875,0.02541194,-0.008331457,0.017232927,0.018346438,0.016106158,-0.0009908932,-0.022097914,0.0053521493,0.015483121,-0.021700231,-0.010014981,-0.03080717,-0.019711817,-0.0007166578,-0.022363037,0.026233817,0.00177466,-0.018505512,0.03793895,-0.004613122,-0.0049478384,0.014780548,-0.004633006,0.00038131993,-0.011307451,-0.006425893,-0.0041591004,0.015191487,0.024338195,0.02863317,-0.0008148357,-0.0010919711,-0.0004123889,-0.008371226,0.0047059143,0.00866286,-0.010094518,0.04446095,-0.0029759938,0.02143511,0.00052403007,-0.032556973,0.025822878,0.0016768964,0.0037315914,-0.019512976,-0.0025054023,0.012348055,0.024682853,0.01069767,-0.021342317,0.011499665,0.03345839,-0.007840982,-0.00038401256,0.007940402,0.0077879573,0.0071384083,-0.010167426,0.018081317,-0.0027174999,0.0072974814,0.0029776508,-0.010956164,0.011725018,-0.0108169755,0.0074234144,0.00089064403,0.008212152,-0.0098028835,-0.01810783,0.02061323,0.030091342,0.01562894,-0.016808731,-0.00057208346,-0.0022535366,-0.0026528765,0.021116963,-0.013309122,0.025531244,0.0011797927,-0.00573989,0.008192268,-0.0019453323,-0.0055244784,0.0016222149,-0.0042419513,-0.0038674665,0.00063256436,0.021037426,-0.038946413,-0.026207304,0.021342317,-0.0092129875,0.020202292,-0.00023943826,0.026300097,0.006164085,-0.020096244,-0.0034532133,-0.6948316,0.018532025,0.0069992193,-0.01976484,0.012387823,0.015867548,-0.0007630541,0.007768073,0.014488914,-0.0034001889,-0.0074432986,-0.00028852726,0.009822768,-0.014873341,-0.024855182,-0.0135742435,0.0064358353,-0.033696998,-0.007761445,0.020639744,0.005597387,0.021249523,-0.014157512,0.00436457,0.024364706,-0.013680292,0.016092902,-0.01365378,-0.016901525,0.014661243,-0.020136012,0.013375402,0.016106158,-0.011261054,0.05784961,-0.009955329,-0.025093792,0.009173219,0.03807151,0.029561097,-0.024788901,-0.008908098,0.020082988,-0.010193938,-0.009657067,0.007635512,0.015138463,0.0007328136,0.015191487,-0.02887178,0.011837695,0.00022866768,0.006303274,0.022164194,0.0013372088,-0.0030141051,0.021063939,-0.0077017923,0.003671939,0.010942908,-0.010763951,0.005302439,-0.029428536,-0.035844486,-0.02054695,0.023728414,-0.010021609,-0.016159182,0.00286166,-0.022919793,0.004755625,0.005289183,-0.013879133,0.006820262,-0.0034233872,-0.0046031796,0.028049901,-0.015271024,-0.006180655,0.01114175,0.014449146,-0.009232872,0.01963228,-0.014793805,0.03210627,0.0015128521,-0.01817411,-0.008669487,-0.016212206,0.008404366,0.018585049,-0.0012112759,0.0014026607,-0.007257713,0.016331512,0.024550293,-0.012029909,-0.0021541158,-0.0019552743,-0.018266901,-0.017378744,0.011864207,-0.013136792,0.00866286,0.023012584,0.021382084,-0.022310011,-0.009126823,0.019367158,-0.018094573,0.0091003105,-0.0041425303,-0.008609835,-0.0068931705,-0.006164085,-0.037647314,0.005272613,0.019645536,0.015575915,-0.03298117,0.0025633979,0.0050141187,0.02754617,0.010531969,0.016649658,0.019300878,0.0011499664,-0.0013587499,0.0004208811,0.0024888322,0.0068467744,0.0052328445,0.0138261095,0.0049909204,0.008404366,0.019831121,0.0029395395,-0.0007750674,-0.0040132836,-0.035340756,0.004609808,0.013222957,0.019035755,-0.020878352,0.0017812881,-0.024815414,-0.0026131081,0.010054749,-0.01035964,-0.000007838445,-0.015085438,-0.035579365,-0.012122701,0.017498048,0.010107774,0.001087,-0.013309122,-0.021143476,-0.014541939,-0.010969421,-0.0023761555,0.021077195,-0.025624037,-0.0034432712,-0.0054648262,-0.022137683,-0.01969856,0.014382865,0.0045733536,-0.02547822,0.004454049,0.01154606,-0.018227134,0.009159964,0.014634731,-0.0014490571,0.00036972083,-0.017312463,-0.011373731,-0.014860085,0.01171839,0.018386208,0.0014821973,-0.017100366,0.00081856403,0.0092991525,0.00682689,0.015788011,-0.02113022,0.0037083933,0.0028053215,0.0005161593,0.013680292,-0.0016536982,-0.0024026677,0.032716047,0.0014084603,0.011201402,0.0076951645,0.012056421,0.043082315,0.022058146,0.011347219,-0.008981006,0.023622366,-0.018439231,0.023397012,-0.028474096,0.004659518,0.02476239,0.005885707,-0.037382193,0.0045766677,-0.0157615,0.006104433,0.0019718444,0.001638785,0.021249523,0.00094615394,-0.022482341,-0.01117489,0.002036468,0.008656232,-0.006290018,-0.0068003777,0.01980461,-0.00028169208,0.018412719,0.002311532,-0.02626033,0.0031251248,0.007483067,-0.0033471645,0.0070522437,0.020295085,0.014780548,0.020692768,-0.014647988,0.009391945,-0.005183134,0.011002561,0.020706024,0.02465634,-0.028474096,0.028712707,0.016782219,0.03709056,-0.0013794627,-0.015920572,-0.011652109,0.007257713,-0.017484792,-0.03430678,0.010101146,-0.0050008628,-0.008543555,0.02567706,0.0066578747,0.008855073,0.022972817,0.00436457,0.017020829,0.020109499,0.013852621,0.0027406982,-0.0007883235,-0.007768073,-0.025345657,-0.0033107102,-0.014356353,0.014555194,-0.014886597,0.008914726,-0.0061839693,-0.0057896003,0.0015128521,0.004072936,0.016265232,0.002056352,0.023887487,-0.022667926,-0.02632661,0.028553633,0.010061378,0.0035924024,0.00068683154,-0.019433439,-0.0031615791,0.0038674665,0.01613267,0.019433439,-0.0005791258,-0.0060149543,0.0010447461,-0.004609808,-0.008198896,0.04615773,-0.028898291,-0.0069130547,0.00893461,0.0077150487,0.010386152,0.0026843597,-0.019990195,0.0071516642,0.022760719,0.005882393,-0.011486408,0.007668652,-0.013865878,-0.0022170823,-0.005832683,-0.0010041493,-0.013421798,0.016092902,0.0018972789,-0.019711817,-0.025000999,0.0145021705,0.007257713,-0.018121084,-0.0022386233,-0.012354682,-0.00032581002,0.063046,0.009703463,0.0074565546,0.03321978,-0.017126877,-0.00177466,-0.019592512,-0.033776537,0.009319036,0.02374167,-0.021209756,0.0058293687,0.009610671,-0.03393561,0.018492255,-0.00492464,0.0056504114,-0.013839366,0.006445777,-0.023582596,0.010081262,0.034412827,0.04408978,-0.0040861918,0.02102417,0.009829396,0.0023827835,0.0134615665,-0.018651329,-0.018081317,-0.0012005053,0.013289237,0.012851786,0.0115195485,-0.018253647,0.021249523,-0.003827698,0.0038707803,-0.03576495,0.0006023239,0.028712707,0.01562894,0.008212152,-0.021037426,0.020189036,-0.015098695,-0.014555194,0.00677718,-0.028076414,-0.0071251523,0.008815304,0.009657067,0.0022353095,0.016053135,0.0025054023,0.008159128,-0.022800487,-0.007257713,-0.010810347,-0.012487244,-0.012281775,-0.009875792,0.0014987675,-0.010578366,-0.008033195,-0.031682074,-0.023701902,-0.0027489832,-0.018823657,0.028368048,-0.0022651355,-0.041518096,-0.019049011,0.0062237377,0.0053852894,0.021660462,0.0019966997,-0.010969421,0.0016619832,0.011983512,-0.0019851006,-0.024775647,0.014144256,-0.020626487,-0.0076023717,-0.018346438,-0.015098695,-0.014382865,-0.012102817,0.03104578,0.020268572,-0.006664503,0.025796365,-0.023940511,0.00058409676,0.004795393,0.020401133,0.014329841,0.0027970364,-0.0038542103,0.015111951,-0.022681182,-0.02456355,-0.0045766677,0.029905755,0.001160737,0.002328102,-0.0015451638,-0.00788075,-0.011758158,-0.0045236433,-0.019274365,-0.0072842254,-0.0006126802,0.007960286,0.02700267,0.012931323,0.0124209635,0.013905646,-0.0045402134,-0.009047287,-0.033909097,0.025849389,0.021315804,-0.0024755762,-0.00064250646,0.0034764116,-0.02887178,-0.008179012,0.005597387,-0.00017119007,0.0071649207,0.002048067,-0.017577585,-0.0017928871,-0.024086328,-0.011261054,0.01565545,-0.025266122,-0.022005122,-0.01932739,-0.0085369265,0.013050628,-0.020918122,-0.022495598,-0.025809621,-0.013720061,-0.016715938,-0.017312463,0.015496378,-0.0056669815,0.0152047435,-0.0393441,-0.009862537,-0.00944497,0.00083596265,-0.013852621,0.009146707,0.026711036,0.027996877,0.01987089,-0.005186448,-0.00338859,-0.03104578,-0.02204489,0.008364597,0.0024159236,-0.011731646,-0.01637128,0.009895677,0.031920683,0.012029909,-0.00737039,-0.012699341,-0.019062268,-0.015324049,-0.008198896,0.0027025868,-0.006402695,-0.022230474,0.0013189816,-0.020692768,-0.0023479862,-0.021726744,-0.022906536,0.009219616,0.006260192,0.0039006067,0.010657902,0.010836859,0.027082207,-0.014024951,0.0031996905,0.0132362135,0.010041494,0.010505457,0.0064855455,-0.033537924,-0.0020198978,0.018213877,0.027599195,-0.011532805,0.008006683,-0.002477233,-0.014992646,-0.000024622164,-0.009789628,-0.016212206,0.0032328307,-0.016358024,-0.01804155,-0.03250395,-0.003980143,0.008954493,-0.00036371418,0.015801268,-0.0015559344,0.01314342,-0.018028293,-0.0006027382,0.007966914,-0.016848499,0.018081317,0.020772304,0.032928146,0.03709056,0.008430878,-0.019446695,-0.023277707,0.010147543,-0.005613957,0.009418457,0.012374567,0.003153294,-0.032901634,0.011665366,0.021580927,-0.026485682,-0.019512976,-0.0057498324,0.023967024,0.037011024,-0.019751584,0.006164085,-0.01199014,0.009756488,-0.017895732,0.0003086185,-0.018465744,0.006144201,-0.011837695,0.030913219,-0.010657902,-0.0032957972,0.004377826,0.0045501553,-0.015443353,-0.00431486,-0.0058061704,-0.008994262,0.0017232926,0.01745828,-0.000322496,0.016768962,0.00519639,0.011937115,0.00954439,-0.01480706,-0.012752365,0.023595853,-0.0039602593,-0.031337414,0.027652219,-0.003970201,0.012745737,-0.0055244784,-0.014952878,-0.014661243,0.009597414,-0.0040165973,-0.006263506,0.009279268,-0.013693549,-0.011831067,-0.005852567,0.029561097,-0.020454157,0.009988469,0.029163415,-0.025517987,-0.010691042,-0.008139243,0.0019453323,-0.00988242,0.016039878,-0.0037382194,0.018386208,0.034227245,-0.014316585,0.022203963,0.01572173,0.023237938,-0.014833573,0.009729976,-0.0051002833,-0.036030073,0.01569522,-0.018081317,0.0050936555,-0.0074366704,-0.0024076386,-0.005322323,0.009710091,-0.0038078139,-0.011115237,0.007781329,0.01725944,-0.022442572,-0.017365487,-0.00017150075,-0.00038131993,0.0021756568,0.0016735822,-0.00018693168,-0.0034863537,-0.0086230915,0.009756488,-0.0056669815,-0.039715268,-0.015933828,0.0007796242,0.007794585,-0.004672774,-0.01647733,0.0007945373,-0.00091384223,-0.022548622,0.017723402,-0.014409377,-0.0013728346,0.007542719,-0.0005169878,0.006445777,0.021249523,-0.026313353,-0.023754926,-0.030038316,0.0071516642,-0.014687756,-0.018638073,-0.0025617408,0.032212317,0.00984928,-0.024311682,-0.032053243,-0.015681963,-0.041359022,0.024126098,-0.018346438,0.019340646,-0.005047259,0.006001698,0.012122701,0.02472262,-0.020931378,0.013667036,-0.03889339,-0.011539432,-0.03237139,0.009696835,0.0033355656,-0.012798762,-0.022535365,-0.018532025,0.011784671,-0.006167399,-0.0032096326,0.009358805,-0.01395867,-0.012719225,-0.00048757583,0.012527012,0.015271024,0.0015037386,0.006853402,-0.008483903,0.004096134,0.015297536,-0.010008354,0.0023943826,-0.020454157,0.00084051944,-0.0029146844,0.0011897347,-0.00900089,-0.011665366,-0.005988442,-0.007867494,-0.0022253674,-0.0145021705,-0.01056511,0.025491474,-0.021474877,0.0068666586,0.0151782315,0.011048957,-0.008874957,-0.011307451,0.01334889,-0.0039271186,0.0076752803,0.004188927,0.0097763715,-0.011188146,-0.0015269367,-0.016623147,-0.0011483094,-0.016954549,-0.020401133,-0.00027837805,0.00037862727,-0.0047324267,0.010531969,-0.0041624145,-0.010174055,-0.028341535,0.007748189,-0.014820317,0.01338203,-0.011725018,0.029402023,-0.009637183,0.019380415,0.03876083,0.0018840228,0.034624927,0.22948955,-0.007668652,0.011327335,0.040218998,0.011599085,0.02234978,0.018200621,-0.019884147,-0.008258549,-0.008278432,0.007244457,0.016159182,-0.018664585,-0.0033753337,0.0041591004,-0.008092848,-0.028368048,-0.031576023,-0.022124426,-0.0057995426,-0.0024888322,-0.0080597075,-0.0006623906,-0.0071516642,0.036056586,0.0017928871,-0.024510523,0.022747463,0.036321707,0.00737039,-0.021938842,0.008232037,-0.0054084877,-0.008106103,-0.024735877,-0.01352122,0.0017183216,0.0045866095,0.019420182,0.024311682,-0.026883366,0.0068666586,0.0030903276,-0.024510523,0.0010704298,-0.027996877,-0.0031035838,-0.005736576,0.012348055,-0.0007286711,0.0010795434,0.0046959724,0.00433143,0.015575915,-0.005720006,-0.0015534488,-0.03223883,-0.0030373032,0.025173329,-0.005428372,-0.023450036,0.014343097,-0.011870835,-0.00040741786,-0.037011024,0.017604098,-0.0033720196,0.021885816,0.015814524,0.0017216356,0.00577303,0.0072709695,-0.017683635,0.03719661,-0.019221341,-0.01365378,0.019208085,0.022575134,0.027652219,0.008775536,-0.024205634,0.015947085,-0.03300768,-0.024749134,0.008503786,-0.035711925,0.024179121,-0.009232872,-0.0030505594,-0.0070124753,-0.0058260546,-0.012043164,-0.0034565274,-0.0076023717,0.008278432,0.022614902,-0.017975267,0.018465744,-0.020679511,0.024404475,-0.0013148391,0.024126098,0.028235488,0.0057796584,-0.03237139,0.0115195485,-0.002164058,0.032556973,0.0055244784,0.0022618216,0.011996768,-0.015363817,0.01565545,-0.009080427,0.0034962955,0.020228805,-0.015734987,-0.018730866,-0.0068997988,0.0037746737,0.0114068715,-0.011585829,-0.0046628322,0.0122221215,-0.0116057135,-0.0011383673,-0.016570121,0.010366268,-0.012348055,-0.023145147,0.011612341,-0.03661334,0.01732572,-0.00903403,-0.0041657286,-0.016079646,-0.004659518,-0.015496378,0.004639634,-0.0035890883,0.011459896,0.0059055914,0.0075626033,0.004361256,-0.0030687866,-0.020043219,0.012056421,0.020931378,-0.015231255,0.013706804,-0.00405968,0.0057995426,-0.0028185777,-0.016384536,0.032344878,0.0004030682,-0.028527122,-0.016358024,0.030913219,0.0040165973,-0.0134880785,-0.01154606,0.032716047,-0.017034085,-0.014515426,-0.008901469,-0.17211717,0.020189036,0.02187256,-0.028712707,0.014462402,-0.0116322255,-0.0039039205,-0.0065982225,-0.020507183,0.00058243977,0.017418511,0.0059221615,-0.03515517,0.001764718,0.0051135393,0.0046197497,-0.02126278,0.011267683,0.053819753,0.012321542,0.024987744,0.0012493872,0.0005443285,-0.0048517315,0.020599974,0.012387823,-0.015032414,0.0030207331,-0.0013628924,-0.016278487,0.0013595785,-0.0010679443,0.027387097,0.012971091,0.020082988,0.013044,0.00737039,-0.0016785533,-0.013514591,0.032795586,0.016835244,0.012560152,0.008232037,0.011685249,0.020825328,0.021382084,0.01817411,-0.0138261095,-0.016596634,0.004490503,0.026604988,-0.022442572,0.004689344,-0.01056511,0.028208975,0.0005492995,0.00037676314,-0.020745791,0.006409323,-0.010372896,-0.0071317805,-0.013309122,-0.00825192,0.007469811,0.005478082,-0.0083977375,-0.025093792,0.004798707,0.019261109,0.014223793,0.0061541433,-0.024709364,0.0009552675,0.0047158566,0.014780548,0.00944497,-0.005411802,0.0022137682,0.016715938,-0.0024755762,-0.022455828,-0.008013311,-0.0037779878,0.0058923354,0.00517982,0.004914698,-0.027837804,-0.008503786,-0.024576804,0.00015058098,0.041465074,-0.016358024,-0.01939367,-0.004172357,0.0071715484,0.015973598,0.015019158,-0.019340646,0.00060895196,-0.03104578,0.009783,0.017140133,-0.018770633,0.012507128,0.04721822,-0.00084051944,-0.020069731,-0.0018575107,0.023184914,-0.010187311,-0.034757487,0.016795475,0.023397012,0.01236131,-0.018969474,0.018121084,-0.007277597,-0.014449146,0.004483875,-0.012414335,0.03536727,-0.027493145,-0.018227134,0.012268518,-0.0124209635,-0.01721967,-0.097723946,-0.051142022,0.009597414,0.022535365,-0.029030852,0.015681963,0.007628884,0.008782164,0.009385317,0.016318256,-0.009743231,-0.030595072,-0.03141695,-0.008311573,0.01117489,0.0013512934,0.007476439,-0.00015234156,0.0019353902,0.0010720869,-0.01192386,-0.0057962285,-0.0085369265,-0.015536146,-0.026538707,-0.015748244,-0.022323268,0.013269354,0.018160854,0.014064719,0.012056421,-0.00047680526,0.020003451,-0.023701902,-0.015602427,0.0021408596,-0.007894006,-0.0149793895,0.023595853,-0.028792243,-0.0026661325,-0.02384772,0.0056901798,-0.03046251,0.003386933,0.0070124753,-0.007390274,0.011844323,0.005441628,-0.02802339,-0.017604098,-0.015788011,-0.04310883,-0.013163305,0.022522109,0.00032208173,0.0046926583,-0.006959451,-0.014343097,-0.008550183,0.0023347302,-0.009378688,-0.010134286,0.027678732,-0.010207195,0.00577303,0.013050628,0.010014981,-0.004000027,0.0011814496,0.009113567,0.01643756,-0.019539487,0.02537217,-0.02217745,0.000008731678,-0.0069395667,-0.008179012,0.010346384,-0.0041557867,-0.014913109,-0.002980965,0.0018392835,-0.0027870943,0.00204641,0.0065783383,0.00679375,-0.0058161127,0.014104487,-0.018147597,0.02146162,0.003000849,0.009047287,-0.020043219,-0.007993426,-0.005839311,0.011837695,0.013514591,0.016941292,0.001560077,-0.028792243,-0.013640524,-0.051380634,0.02561078,-0.0042850333,0.008232037,0.01565545,-0.015562658,0.0063165305,-0.011095353,-0.018213877,-0.0012336456,-0.021143476,0.009279268,0.0033521357,-0.00577303,-0.011539432,-0.0132362135,0.03706405,-0.005991756,0.015138463,0.00811936,-0.0056835515,-0.01752456,0.021925585,0.015257768,-0.0005567561,-0.0085369265,-0.02071928,-0.0010845144,-0.0008997576,-0.0046992865,-0.0010406036,-0.005630527,-0.008881585,0.03881385,-0.008245292,-0.026300097,-0.00067647523,0.004265149,0.01891645,-0.0033355656,-0.012798762,-0.01691478,0.003834326,-0.015045671,-0.00927264,-0.0136007555,-0.006402695,-0.0029776508,0.0071251523,0.0044308505,0.033431876,0.00784761,0.0009900648,-0.01804155,0.0057498324,-0.013680292,-0.017206414,-0.00016435489,0.0012651287,-0.00514668,0.024006791,-0.0007506265,-0.019049011,-0.02547822,0.006273448,0.006535256,-0.037488244,0.00954439,0.012089561,-0.032344878,-0.016265232,-0.0152047435,-0.0024871752,-0.0056901798,0.019976938,0.0081525,0.011201402,-0.003536064,-0.014939622,0.03600356,0.017246183,0.0030373032,-0.037673827,0.018425975,0.019340646,-0.0048583597,-0.0103265,0.00740353,0.005610643,0.012560152,-0.001565048,0.012440847,-0.00012997189,0.016689427,-0.00064126373,0.028447585,0.004656204,0.00094781094,0.006853402,0.016729195,-6.34325e-7,0.0035957163,-0.010353012,-0.00737039,-0.01830667,0.005335579,-0.021421853,-0.010127658,0.016251976,0.038946413,0.00022017548,-0.012646317,0.017272694,0.017564328,-0.029349,0.011214659,0.0014300015,-0.019711817,-0.035102144,0.019075524,0.014833573,0.03862827,0.02465634,-0.011347219,0.021660462,0.007469811,0.021315804,-0.049922463,0.021156732,-0.0027489832,-0.014051463,0.009869165,-0.013309122,-0.01725944,0.008656232,-0.011128494,-0.016344767,0.011943744,-0.0098890485,0.08775537,0.01222875,-0.007887377,0.0016603261,-0.00679375,0.0037746737,0.009590786,0.0034896675,0.0017464908,0.0014921394,0.009743231,-0.0039138626,0.0022071402,-0.017882476,-0.028076414,-0.008046451,-0.03443934,0.018532025,-0.026830342,0.011214659,0.010406036,-0.011685249,-0.004457363,-0.0022121111,-0.027360585,0.008596579,0.023383755,0.025531244,-0.025849389,-0.035261218,-0.02211117,0.008338085,-0.027360585,-0.0021839421,-0.018744122,-0.0004950324,-0.008676115,-0.004394396,0.0031731783,0.009650439,0.002457349,0.022402804,-0.01895622,-0.02700267,-0.003130096,-0.0032063185,-0.015681963,0.009968585,-0.008563438]},{\"id\":\"681de74f-a866-444d-83ba-f1a8db0a0c13\",\"text\":\"Provide phobe numvet\",\"vector\":[-0.023483818,-0.012729948,-0.002369861,0.008004545,-0.019044803,0.027149586,-0.023813166,-0.016524589,-0.014183368,-0.0010676904,0.017283518,-0.019187998,-0.00037856918,0.008906668,0.005480751,0.009264653,0.019445747,-0.003467085,-0.0043817367,-0.014441117,0.011025939,0.03871966,0.0022875245,0.0054879105,-0.012880302,-0.019187998,-0.0040273317,0.00042309356,-0.0008837756,-0.007055885,0.024328664,-0.026218824,-0.010231213,-0.015493592,-0.027120946,-0.0118206665,0.0037230444,-0.00934341,0.028810635,0.0014650538,0.0157943,-0.007882831,-0.007560644,0.0041204076,-0.008111941,0.0055881464,-0.009493764,-0.009257494,-0.022610335,0.018557945,0.017426712,-0.005860215,0.014777622,-0.029956188,0.0012610023,-0.0059532914,-0.0026204505,-0.021579338,-0.009858908,-0.01629548,-0.020276273,-0.010109497,-0.023369264,0.009636957,-0.007034406,-0.013739466,-0.012078416,0.011548597,-0.03253368,0.005065488,0.021650935,0.014448276,-0.005863795,-0.014555672,0.01506401,-0.022452822,0.014083131,0.01648163,0.00033001747,-0.014412478,0.026147228,-0.03854783,-0.016080689,0.010610676,0.040008407,0.0033578996,0.017870612,0.018744096,-0.0029587464,-0.006357814,0.012966218,0.0068625733,-0.0010864846,0.005219422,0.010553399,0.01791357,-0.02823786,0.012107054,0.007327954,-0.012543796,0.0025578032,-0.0037874817,-0.035970338,-0.009722874,-0.01934551,-0.008706196,0.011018779,-0.006508168,0.023541097,0.0041239876,0.0108755855,0.05143529,0.013660709,-0.046394862,0.007868512,-0.014233485,-0.009987783,0.0025882318,-0.030099383,-0.016066369,-0.0040022726,0.025517173,0.017612863,0.008047503,0.022051878,0.018300196,-0.01890161,-0.022424184,-0.0014077761,-0.00017384649,0.05822269,-0.009142938,0.04215632,-0.009844589,-0.019531664,0.03450976,-0.0349107,0.008233656,-0.027679404,-0.020161718,0.013896979,0.031502683,-0.0022069777,0.029612523,-0.009407847,0.012794386,0.029039746,-0.005072648,-0.013488877,-0.018987527,0.0067122197,-0.024629371,0.0122932065,0.006432991,-0.015923174,0.005405574,-0.009293292,0.031445406,-0.021035202,-0.012823024,-0.032476403,0.014484075,0.016524589,-0.008648919,0.019818053,0.011305167,0.0075749634,0.0070809443,-0.008548683,0.009372048,-0.0012252039,0.0153217595,-0.022954,0.0248728,0.022366906,0.017355114,-0.0005047589,-0.0054127336,-0.0035547914,-0.015665425,-0.023655651,0.034166094,0.00741029,0.042013124,-0.01698281,0.01724056,0.012665511,-0.014197687,-0.0031717476,-0.008806432,0.0037946415,0.014555672,0.00083455263,-0.011362446,-0.6506736,-0.030815352,-0.0021729693,0.0035297326,0.008341052,0.0059890896,0.017312156,-0.029727077,-0.042041764,0.019073443,0.009765832,0.0025882318,-0.0025757023,-0.0037373637,0.002822712,-0.013696508,-0.0018364632,-0.023311986,0.02107816,-0.0042958204,-0.016696421,0.016725061,-0.0036800862,0.021908684,0.025674688,-0.0030482425,0.019517345,-0.009772992,-0.0037982212,-0.0030303434,-0.0124364,0.014441117,-0.01267267,0.0030034946,0.060370598,-0.0060463673,-0.00027497727,0.025646048,0.0085415235,0.008741994,-0.029784355,-0.029727077,0.01553655,-0.0007557959,-0.020734493,0.0048972354,0.02488712,-0.004489132,0.0029963348,0.0061072246,-0.00621462,-0.009601159,0.01363923,0.0267916,0.0050762277,0.0017648663,0.020433785,-0.042184956,-0.027865555,-0.01868682,-0.024772564,-0.012128533,0.0020637838,-0.031731796,0.011706111,0.012765747,-0.0037982212,0.0028048127,-0.0006680896,-0.010596357,0.012472199,0.03588442,-0.014405318,0.0141475685,0.017183281,0.009593999,0.026046991,-0.019431427,-0.009314771,0.011992499,-0.0014498394,-0.0004711978,-0.035998974,0.0059962496,0.033650596,-0.0057492396,-0.01290894,-0.02177981,0.013259766,-0.007947268,0.0013782424,0.027321419,0.0015518651,-0.0007799599,-0.00075042614,0.014791942,-0.015350399,-0.00741029,0.0014229906,-0.039435633,-0.009894706,-0.011434042,0.019431427,0.00027094994,0.011190613,0.0044569136,-0.010338608,0.029841634,0.05097707,-0.030729435,-0.011928062,0.0026472993,0.006816035,-0.0030034946,0.018615222,-0.03777458,0.034280647,0.015207205,0.0011500269,-0.022323947,0.039321076,0.01602341,0.0027779639,-0.017584225,0.03422337,0.01913072,-0.003329261,-0.02418547,-0.008426968,-0.022939682,0.021837087,-0.03493934,0.0296698,-0.012500837,0.019545984,0.020362189,0.02276785,-0.016166605,0.021450464,-0.005065488,-0.015207205,0.00019230509,0.006296957,-0.004865017,0.026605448,-0.027321419,0.000027478149,0.0044175354,0.00886371,0.015636787,0.026204504,0.0006318436,0.00020483456,-0.0090140635,0.02342654,-0.014641589,0.006006989,0.00027452977,-0.02657681,-0.013997215,0.02513055,0.0046824445,0.0056848023,0.0054449523,-0.0071382215,-0.022094836,0.008405489,-0.0042242236,-0.01673938,-0.022853766,-0.011076057,-0.025202148,-0.010897065,0.023354944,-0.02561741,0.016052049,-0.011899423,-0.009064181,-0.013696508,-0.016810978,0.015149927,0.0051299254,-0.019717816,0.027120946,0.033908345,-0.0153217595,0.012966218,0.03585578,-0.006175242,0.032762792,0.0027958632,-0.001245788,0.00058978033,0.019288234,0.0113552855,0.027593488,0.04046663,0.010324288,0.009551041,0.038433272,0.020476744,0.01818564,0.024615051,-0.006798136,0.032218654,-0.026362019,0.0132239675,-0.025015995,0.029383412,0.011161974,-0.0013263345,-0.018157002,-0.03233321,0.016367076,0.0035368921,0.00044927123,0.0053268173,0.011405404,0.005312498,-0.016624825,0.007560644,-0.01411177,0.036228087,0.0017362274,-0.014935136,0.004217064,0.006060687,0.018171322,-0.000047265214,-0.005044009,-0.009443645,-0.0012081995,-0.011534278,0.011133335,0.008183538,-0.00012764405,0.021937324,-0.024629371,0.02802307,0.017383754,0.0021497002,0.023168791,0.032934625,-0.015651107,-0.0021514902,0.036457196,-0.010617836,-0.00096297974,-0.007940108,0.021364547,0.0021658095,0.011018779,0.007367332,0.016667783,-0.016596187,-0.0030554023,-0.0028066027,0.0061430233,0.0074604084,0.019445747,0.032705512,-0.00034321815,0.023011278,0.0011392874,0.019059123,0.00042891083,0.0054198937,-0.02868176,-0.015622467,-0.014763303,-0.02584652,0.012085575,-0.016581867,0.01791357,0.021164076,-0.010746711,0.023140153,0.004746882,0.01603773,-0.018787054,-0.021650935,-0.023813166,0.011262209,0.025044633,0.0076608798,-0.010975821,-0.014763303,0.002323323,-0.0053268173,-0.0025971814,-0.0076608798,0.006866153,-0.008792113,-0.003255874,-0.009286132,-0.011920902,-0.0016655254,-0.021708213,-0.002584652,0.012815865,-0.017083047,0.019717816,-0.03284871,-0.036944058,0.012565275,-0.018228598,-0.004016592,-0.031731796,0.0053733555,0.013646389,0.024973037,-0.009321931,0.011527118,-0.001627937,-0.004711083,-0.007567804,-0.02369861,-0.0120569365,0.020390827,-0.0016726851,0.006032048,-0.007710998,-0.01935983,-0.0011115435,0.07262801,0.02438594,0.017369434,-0.0006367659,-0.004861437,0.0068768924,-0.027292779,-0.030528964,0.01582294,-0.02249578,-0.009321931,0.00646163,0.033077817,0.0063255955,0.024629371,0.011033099,0.0012735318,0.0019152199,0.008713356,-0.005878114,-0.012565275,0.023354944,0.0028119725,0.009128619,0.011161974,0.012221609,0.011262209,0.039865214,-0.0037015653,-0.0024700968,-0.017297838,0.004474813,0.0054700114,-0.0009522402,0.0060284683,-0.0012941159,-0.028724719,0.0053339773,0.016639145,-0.004811319,0.022094836,0.009665596,0.006196721,-0.009142938,0.016095007,0.0035315224,0.010374406,0.031130379,0.010403045,0.00814774,0.03966474,-0.01699713,-0.016238201,-0.017870612,-0.010460323,0.0073601725,-0.024027957,0.0043459386,-0.023956358,-0.009164417,-0.024085233,-0.00909998,0.0150926495,-0.011147655,-0.02677728,-0.019531664,-0.0050547486,-0.00075266353,-0.02944069,-0.033335567,0.010080859,-0.022438502,-0.017383754,0.011455521,0.018457709,0.002373441,0.014068812,-0.0083052525,0.0038590787,0.00263298,0.014197687,-0.029082704,-0.0010363667,-0.0056776428,0.002969486,-0.0027976532,0.016624825,-0.0052015227,-0.011405404,0.0133958,0.023140153,0.009071341,0.019717816,-0.020720175,0.0043208795,-0.00862028,0.020419467,0.00082963036,-0.0029533766,0.020390827,0.00090122735,-0.021865726,0.0052731195,-0.0036049094,0.0068088756,-0.0012153592,0.00980879,0.01673938,-0.006171662,-0.017870612,0.04335915,-0.01315953,0.010918544,0.0119567,0.0044175354,0.010002102,0.010095178,0.008870869,0.011448362,-0.012121374,0.028667443,-0.012708469,0.016438672,0.024486177,-0.03087263,0.0078398725,-0.0045643095,-0.015880216,0.0030804612,0.025875159,0.0015196465,0.00670148,-0.0023107934,-0.017856294,-0.030443048,-0.018142682,-0.0108827455,0.0055702473,0.003663977,-0.009465124,-0.0129733775,-0.041211236,-0.013889819,-0.013345682,0.01649595,-0.018472029,-0.0036192287,-0.0018024547,-0.020691535,0.010582038,-0.042242236,0.015021052,-0.014706026,0.0099448245,-0.023354944,-0.043130036,-0.0012162542,0.00884939,0.013052135,0.007030826,0.02298264,0.0020763131,0.008434128,0.023813166,-0.0002231813,-0.010202574,-0.01745535,0.006629883,-0.047053553,0.03110174,0.019961245,0.005921073,0.021908684,0.020190356,-0.0022374066,0.014169048,-0.003977214,0.0066084038,-0.0008707986,-0.00478626,-0.008169219,0.0037624228,-0.011548597,0.03135949,-0.024729606,-0.011083216,0.004471233,-0.0018597323,-0.0059890896,-0.026161546,0.015149927,-0.011698951,0.005072648,-0.00358522,0.014305082,-0.037201807,-0.0010023582,0.014283603,-0.0035279426,0.0037588428,0.018772736,0.02179413,-0.0009934085,0.001028312,-0.02324039,0.0007656405,-0.00550223,-0.021965962,0.006604824,-0.01148416,0.00013267821,0.0030804612,0.0022302468,-0.009114299,-0.0076680398,0.002729636,-0.011834986,0.01651027,-0.005455692,-0.028323777,-0.0056096255,0.0052301614,0.0060141487,0.0042206435,0.016052049,0.026462255,-0.012772907,-0.024543455,0.014204847,-0.008820752,0.010811148,0.0085415235,0.034538396,-0.010589197,-0.024743926,0.0063327556,0.015235843,-0.024142511,-0.04373145,0.019187998,-0.015006733,0.028581526,-0.0009960934,-0.002971276,-0.025230786,0.012851663,-0.0062289396,0.018629542,-0.0026365598,-0.027077988,-0.025588771,-0.006343495,-0.01626684,0.014333721,0.012844503,0.0048685963,0.012529477,-0.009200215,-0.0018042446,0.0068554133,-0.011054578,0.035769865,0.025073273,0.004911555,0.008398329,-0.006239679,-0.001054266,0.013367161,-0.0001937594,0.029139983,-0.018472029,0.017126005,-0.0013800323,-0.014040173,-0.009787311,-0.0039127767,-0.0075749634,-0.0071811797,0.012021137,-0.005881694,0.016567547,-0.021937324,-0.04527795,-0.021622296,-0.024586413,-0.014469756,0.0027385855,0.0054163137,0.019588942,-0.02275353,0.0027797539,-0.0016324117,0.007209819,-0.0013773474,0.012465039,0.0037874817,0.022123475,0.033650596,-0.039206523,0.0017568116,0.00574208,0.019932607,-0.034824785,0.01600909,-0.0000407208,-0.008054663,-0.01268699,-0.010818308,-0.0075534843,-0.004711083,-0.018801374,0.001315595,0.0048506972,-0.036543112,-0.00046045825,0.028896552,0.018257238,-0.0067873965,0.0027135266,0.03705861,-0.00645447,-0.00029981247,-0.005362616,-0.0048506972,0.015651107,-0.026963433,-0.017999487,0.012264567,-0.01937415,-0.030528964,-0.005999829,0.0010095178,-0.011784867,-0.04238543,-0.014748984,-0.006057107,-0.0078470325,0.0020423047,0.014090291,0.008706196,0.0016234622,0.011477,0.0034330764,0.012386282,-0.020977924,-0.012780066,-0.015908856,-0.02656249,-0.030156659,-0.001651206,-0.0267916,0.014706026,0.0003275563,-0.012314686,-0.013352842,0.0019832372,-0.022853766,0.018500667,-0.04158354,-0.0024217688,-0.0010148876,-0.01794221,0.005835156,0.0016082478,0.012737107,0.017526947,-0.015937494,0.01290894,0.0044425945,-0.01244356,0.0065010083,0.013188169,-0.0248728,-0.013968577,0.024700968,0.02031923,-0.0022320368,0.02324039,-0.03376515,-0.026533851,-0.00934341,-0.019259594,0.011877944,-0.013982896,0.016367076,-0.0049222945,-0.020949285,-0.014448276,0.043387786,-0.02342654,-0.020877687,0.022309627,-0.027851237,0.006973549,-0.028610164,-0.0064294115,0.015779981,-0.020534022,0.013861181,-0.0006841989,-0.021622296,-0.011054578,0.00067211693,-0.000837685,0.00191343,0.019517345,-0.013574793,0.010911384,0.020462425,-0.0051764636,0.014061652,0.005187203,-0.00047791004,-0.007345853,-0.005623945,-0.0037230444,0.008434128,-0.010796829,0.035540756,0.0074604084,-0.020190356,-0.00024231113,-0.01914504,-0.014634429,0.00765372,-0.023097195,0.0075391647,0.0009969884,-0.01220729,0.012035457,-0.00980879,-0.026963433,-0.007875671,-0.0038912974,-0.00026446144,0.0136821885,0.2350673,-0.0055165496,0.005248061,0.020548342,0.009457964,0.004431855,0.007052305,-0.00837685,0.0028799896,-0.020634258,0.013295565,-0.027708042,-0.0032451344,0.0071990793,-0.0035476317,-0.018085403,-0.032218654,-0.014126089,-0.033077817,-0.0066979,0.021751171,-0.021722533,0.02153638,0.0071811797,0.020934965,0.0033847485,-0.011591556,0.0042958204,0.042213596,-0.010610676,0.0092503335,-0.008784953,-0.0008752734,-0.0020476745,-0.011405404,0.0039056167,0.015393357,-0.0026920475,0.013603431,0.020877687,-0.0051370854,0.0019098502,0.009479444,0.0071776,-0.009536722,0.012994857,-0.005484331,-0.01196386,-0.0041025085,0.03253368,-0.039206523,-0.022123475,0.00263119,-0.0045106113,0.010345767,-0.02989891,0.019560304,0.007610762,-0.008398329,0.0023072136,0.025989713,0.0021103218,-0.010753871,0.0028262918,-0.010095178,0.031216295,0.0054413727,-0.013367161,-0.0008305253,0.00096655963,-0.017655822,0.0016467312,0.0016198823,0.010889905,-0.013775264,-0.03450976,-0.026920475,0.02802307,0.02132159,0.05381231,-0.01746967,-0.014763303,0.0074818875,-0.0113481255,-0.006794556,-0.025187828,0.031273574,0.008956785,-0.024328664,0.008190698,0.010159615,-0.008283773,-0.024514815,-0.010667955,0.011161974,0.023870442,0.016653463,0.038662385,-0.000013767042,0.0045857886,-0.024615051,0.010002102,-0.011290848,-0.024128191,-0.011777708,-0.025388299,0.02132159,0.020534022,-0.0033095716,-0.0052802796,-0.026018353,-0.017584225,-0.0006707745,0.00933625,0.023340624,0.015021052,-0.0132239675,-0.009880387,0.009930505,-0.0060857455,-0.008641759,-0.026662726,0.010037901,0.020662896,0.02417115,-0.006246839,-0.017197601,0.0027063668,0.03347876,-0.032419126,0.0133958,-0.009071341,0.035225727,-0.018328834,-0.03952155,0.0033113617,0.017598545,0.0052301614,-0.019603262,0.010345767,-0.0031538482,-0.031216295,0.0072205584,-0.011040258,0.0069592292,-0.018114043,0.008183538,0.01603773,-0.0063041165,-0.009479444,-0.026906155,-0.021751171,-0.016123647,-0.0053518764,0.0021711793,-0.028037388,-0.036342643,-0.04951649,0.006157343,-0.018944569,-0.0068410942,-0.001003253,0.0075248457,0.0044425945,-0.010610676,-0.008255135,-0.188787,0.013617751,0.0071167424,-0.019574622,-0.0039807935,-0.0059711905,-0.0017389123,-0.013997215,-0.01964622,0.01746967,0.027808279,-0.018457709,-0.007274256,-0.010632155,0.00957252,-0.015021052,0.0038841376,0.0078398725,0.008348211,0.014892178,0.039063327,-0.0011750859,-0.007925789,0.02465801,0.014620109,-0.00052221067,-0.018858653,0.031244934,0.0052981786,-0.015192885,-0.031244934,-0.009751513,0.0031234196,0.013138051,0.005248061,-0.004707503,0.004188425,0.010560559,0.020662896,0.010474643,0.04212768,0.029154303,0.008355371,0.0019152199,-0.005695542,0.019803733,0.03396562,-0.019460067,0.023755888,-0.020705855,0.0076608798,-0.031130379,0.0046573854,-0.0046394863,0.018572263,0.0062575787,0.007947268,0.0004716453,0.015679745,0.009185896,-0.019946927,-0.028739039,0.0047576213,0.014569991,-0.028925192,-0.009021223,-0.016710741,-0.008885189,-0.02633338,0.011591556,-0.011534278,-0.01124789,0.0056096255,-0.014484075,0.02964116,0.023340624,-0.018328834,0.005820837,0.008749154,0.0075033666,0.0024593573,0.00910714,-0.0050762277,-0.0062289396,0.0065475465,0.018830013,-0.0071418015,0.013789584,-0.0011160184,-0.012636872,-0.0031234196,-0.023068557,0.007610762,-0.010202574,0.018915929,0.023154473,0.020491064,0.0065654456,0.02753621,-0.009193056,0.011290848,-0.00956536,-0.027149586,0.016195243,0.019903969,-0.0035905899,-0.014734664,0.026147228,-0.00085692666,-0.017197601,-0.0006962809,0.021464784,0.01506401,0.021837087,-0.014892178,-0.00502611,-0.010159615,-0.015636787,-0.0033042019,0.021135436,0.061172485,-0.0031269994,-0.021565018,-0.00067569676,-0.013696508,-0.008484245,-0.07784027,-0.010496122,0.006314856,0.023798846,-0.010553399,0.014892178,-0.026934795,0.016180923,-0.0038161206,0.02703503,0.01722624,-0.017011449,-0.006475949,0.020534022,0.002248146,0.0021461204,-0.02898247,-0.012071256,-0.011405404,0.0134602375,-0.0051335054,-0.0118063465,0.017312156,0.0040631304,-0.008691877,-0.006271898,-0.009765832,0.011534278,0.0022857345,0.020218994,-0.011054578,-0.0012287836,0.008663238,-0.017426712,-0.042184956,0.01628116,-0.036485836,-0.0030715116,0.017985169,-0.034022897,-0.0047039236,-0.007560644,-0.018371793,-0.0059890896,-0.028438332,-0.015407676,-0.03133085,0.018500667,0.004013012,-0.010360087,-0.029784355,0.0016109326,-0.011584396,-0.008176378,0.015865898,-0.028123304,0.01794221,0.0215507,-0.006891212,0.014319401,0.007374492,-0.0042636017,-0.011061737,0.0031466885,-0.000083734936,0.022166433,0.0011070687,-0.0070021874,0.017985169,-0.007270676,0.007975907,0.007703838,-0.022080516,0.017569905,-0.011634514,0.019588942,-0.0076608798,-0.012493678,0.00012384045,-0.006987868,-0.024328664,-0.0033686392,0.00030003622,-0.008691877,0.0030249737,0.024930079,0.024328664,0.00039557347,0.00053697755,-0.02776532,-0.020362189,0.02011876,-0.00070657296,-0.01506401,-0.0048184786,0.0051800436,-0.019932607,0.00011880629,0.028438332,0.021249993,-0.017283518,0.0038018012,-0.07680927,0.033392843,0.00431014,-0.012264567,-0.012994857,-0.03871966,0.017326476,0.0048363777,0.0074604084,0.010982981,-0.012178651,0.023154473,-0.015937494,-0.010023581,-0.029154303,-0.02848129,0.027393015,0.0031037303,0.030528964,-0.0034921442,-0.008176378,0.004628747,-0.009157257,0.022996958,0.006125124,-0.0021711793,-0.0150783295,0.011233571,-0.0122932065,0.018629542,0.0019420688,-0.039063327,-0.0048542772,0.008899508,0.004238543,-0.033192374,-0.02296832,-0.0047755204,-0.017312156,-0.004088189,-0.0186725,-0.011548597,-0.0042063245,-0.036514476,0.0023072136,-0.00038617637,-0.013410119,0.0066227233,0.02104952,-0.0025774923,0.016538909,0.016524589,-0.016223881,-0.0063112765,-0.036485836,-0.02868176,-0.0148492195,-0.0037695824,0.019946927,-0.03322101,0.006558286,0.017627183,0.0073100547,-0.011863625,-0.01769878,0.0108827455,0.014920817,0.0051299254,0.015651107,-0.05478603,0.0013907719,0.0015715543,0.0076751993,0.006554706,-0.0077611157,-0.0027815439,-0.013904139,0.011018779,-0.017655822,0.028338095,0.013603431,0.0059676105,-0.036027614,0.0012699519,0.020462425,0.00024566724,0.012758587,-0.011605875,0.021679575,0.009536722,-0.047540415,0.011047418,-0.0132168075,-0.018371793,0.023684291,0.007299315,0.0101882545,0.00598193,0.010667955,0.0047039236,-0.0040416513,0.002611501,-0.0111261755,-0.016324118,-0.0023269027,0.0067623374,-0.010553399,-0.008749154,0.0101739345,-0.0006676421,0.003039293,0.018815694,0.004614427,0.01052476,-0.016238201,0.010610676,0.009286132,-0.0018257237,-0.018228598,0.031502683,0.006279058,0.04424695,0.00454999,-0.017770378,0.011698951,-0.012615393,0.013109412,-0.019116402,0.010696593,0.012085575,0.0003962447,-0.0092431735,-0.027364377,-0.035053894,-0.008255135,-0.011598716,0.0021121118,0.030901268,-0.0021156915,0.07921493,-0.0070057674,-0.034538396,0.0050583286,-0.015379038,-0.018958887,-0.009880387,0.0067265388,-0.010352927,-0.005835156,0.026877517,-0.0023609113,0.01101162,0.0062683183,-0.0053017586,-0.0035691108,-0.0032916726,0.0030929907,-0.017140323,-0.009479444,0.031474046,-0.018142682,0.018500667,0.023755888,-0.017741738,0.0020512543,0.017269198,-0.012257407,-0.02011876,-0.029311815,-0.017183281,-0.011154814,-0.021364547,-0.008205017,0.0080689825,-0.0038805578,-0.0054664314,0.0031484785,-0.0068303547,0.0155651895,-0.009257494,0.025302382,-0.012930419,-0.037975054,0.0106393155,-0.015421996,-0.0009065971,-0.0036210187,-0.029283177]},{\"id\":\"8c443954-fcec-452b-8047-0039485f658c\",\"text\":\"Never got my ripple \",\"vector\":[-0.016492626,-0.01140974,0.00195457,-0.017736595,-0.013897679,0.00060484663,-0.012165485,-0.013269006,-0.009369898,-0.011403052,0.015395792,0.0022337944,0.007470504,-0.009670858,0.020184405,0.015342288,0.013161997,0.0050260373,0.039539497,-0.014820623,-0.0012540013,-0.019248083,-0.009135817,-0.016385617,-0.005123013,-0.015609808,0.027634844,-0.01623848,0.014272206,-0.017388819,0.019555733,0.0010650652,-0.023394648,-0.011536812,-0.016519377,-0.029373726,0.015155024,-0.015756944,0.010567051,-0.011831084,0.011871212,0.013182062,-0.0044040526,-0.0060359263,-0.018833427,0.010941579,-0.014753743,-0.008627529,0.00036115237,0.022271063,-0.009369898,-0.021428375,-0.028196637,-0.02784886,0.009938379,-0.021669142,0.004845461,-0.0016210057,0.0041800044,0.014499599,0.0011779253,0.003935892,-0.028811933,-0.0073233675,-0.00027776128,0.011904652,0.0069889673,-0.012158797,0.016506001,0.013041614,0.006534183,0.0012130373,-0.005882102,0.004169972,-0.0073568076,0.0116772605,0.008921801,-0.00006766382,-0.009677546,-0.017562706,0.011122156,0.003869012,0.019288212,0.0021635704,0.02006402,0.015395792,-0.01623848,0.013295758,-0.004932405,-0.01530216,0.02969475,0.0375866,-0.00748388,0.011710701,-0.00003735879,-0.006584343,0.0054641017,0.024103576,-0.019850004,-0.046602033,0.007891849,0.018699668,-0.022404823,-0.023060247,-0.017950611,-0.0073501198,-0.013248942,0.0073233675,0.025882587,-0.009082314,-0.010379787,0.028276894,0.004888933,-0.023127127,0.013636846,-0.0003116193,0.022444952,-0.004925717,-0.009577226,-0.02573545,-0.00046398048,0.007858409,0.0111020915,-0.0010316251,0.009089001,-0.0024662025,-0.008313193,0.00059983064,0.012774093,0.026497884,0.012018348,0.019903509,-0.014352463,0.008092488,0.00024369426,0.035847716,-0.018418772,-0.006654567,-0.002003058,-0.005831942,0.025722075,0.039111465,-0.016974162,-0.008406824,0.0060626785,0.010092203,-0.012740653,-0.017335314,-0.000954713,-0.042161196,0.011061964,0.0007611788,0.020839829,-0.013710414,-0.012185548,0.009410026,-0.019622613,0.02402332,0.008112553,-0.01741557,-0.0032486995,0.020492053,0.0012723933,-0.034108836,-0.01654613,0.02584246,0.021522006,-0.021602262,-0.007564136,-0.006751543,-0.016452497,0.022057047,-0.024491481,0.01080782,-0.00031768033,0.008574025,-0.0055042296,0.0006387047,-0.0036081797,-0.0014730336,-0.02993552,0.0066679427,0.017830227,0.0323432,0.0012899494,-0.03194192,0.017522579,-0.0017238338,0.041652907,0.0037218758,-0.00059523265,0.007958728,0.009309705,-0.015917456,-0.65531766,-0.017897107,0.0049357493,0.007403624,-0.0033239394,0.022779351,-0.028678173,0.018017491,-0.013075054,0.025681946,-0.010486795,0.012593517,-0.013690351,-0.010901451,-0.0027788668,-0.012988109,0.029453984,-0.013141934,-0.0018024179,-0.0032637473,-0.01627861,0.023274263,-0.016398992,0.012192237,0.014165198,-0.029748255,0.014927631,0.0091960095,-0.011222476,0.011918029,-0.001020757,-0.00017691868,-0.00384226,0.0109950835,0.0685922,-0.022070423,0.013121869,0.01530216,0.00926289,0.031888418,-0.009323082,0.01275403,0.015649937,-0.004079684,0.00193785,-0.009811306,0.01848565,0.0120451,0.0012339373,0.006908711,0.0072832396,-0.004006116,-0.044221103,0.0064238305,0.018057618,-0.0027872268,0.009135817,0.008099177,0.019783124,0.012807533,-0.014312335,-0.0015365696,-0.011603693,-0.014994511,-0.01570344,0.022993367,-0.019716244,-0.013161997,0.019288212,-0.01641237,-0.0020615782,0.020986967,-0.026404252,0.039914027,-0.018097747,0.015048016,0.012553389,-0.0051464215,0.015262032,0.006587687,-0.01926146,0.0043405164,-0.03785412,-0.013095118,0.025347546,0.017495826,0.0039593,-0.002033154,0.00007362033,-0.0007189608,0.008527209,0.01899394,0.007965417,-0.013763919,-0.011657196,0.028410655,0.010192523,0.0012815894,0.017067794,-0.011222476,-0.013195437,0.0056078937,0.0006771607,0.011891277,0.031085856,-0.02798262,-0.0015909097,0.019943636,0.032771233,-0.015957585,0.0008493769,-0.013088429,0.007490568,-0.0053102775,-0.018151252,-0.03956625,0.00999857,-0.00598911,-0.009423402,-0.016773522,0.020866582,-0.011082027,0.035553444,0.0050260373,-0.0052902135,0.008988681,-0.015074768,-0.0061395904,0.017696466,-0.0101323305,0.011155596,-0.02546793,0.032262947,-0.025869211,0.010653995,0.008560649,0.018739795,-0.010038698,0.0026618268,-0.02993552,-0.024638617,0.03796113,-0.022592088,-0.012205613,-0.00562127,-0.013235566,0.008841545,-0.0040897164,-0.002701955,-0.02419721,0.005912198,-0.020291414,-0.021053845,-0.0026049786,-0.009443466,-0.021321366,-0.015262032,-0.01009889,0.0012698853,-0.014780495,-0.015034639,0.000026804279,-0.027006172,0.0012406253,0.00602255,-0.024183834,0.0015850577,0.0106339315,0.006754887,-0.0031985394,-0.020451926,0.004721733,-0.016091345,-0.015141648,0.0015257016,0.02651126,-0.011637132,-0.011891277,0.0039659883,0.00959729,0.015663313,0.00045353046,-0.013663598,0.0046381326,0.03654327,-0.008038985,0.01278747,0.048367668,-0.002847419,0.024625242,-0.011162284,-0.0005408926,0.011403052,0.022057047,-0.01610472,-0.0024227304,0.0032670915,0.0070023434,0.031059105,0.035553444,0.020344917,0.0023107063,0.0052433973,0.0033874756,-0.0034092115,-0.031460386,0.014820623,-0.0065642786,0.004748485,0.032530464,-0.0079186,-0.004096404,-0.023314392,-0.0043070763,-0.006848519,0.027688349,-0.016332112,0.022257688,-0.006129558,0.0046214126,-0.046896305,0.0018241539,0.0072163595,-0.010934891,0.027474333,0.00062282063,0.002977835,-0.008868298,0.007417,-0.027634844,-0.027153308,0.008226248,0.0033222674,0.0029193151,0.009557162,0.01774997,0.007945352,-0.0136569105,-0.003681748,-0.0002819413,0.023983194,-0.007403624,0.019314963,-0.00017179818,0.028785182,-0.0058921343,0.010975019,0.002984523,0.0016485937,0.019689493,0.0024227304,0.008634217,-0.038335655,0.0075173196,-0.0045277807,-0.060245566,0.0075306958,0.002934363,0.027073052,0.009048874,0.028785182,0.014232079,0.018940436,-0.001029117,0.014941008,0.03194192,-0.010413227,-0.006875271,-0.023207385,0.005701526,0.0071896077,-0.0435523,0.02550806,-0.024116954,0.019408597,-0.002931019,0.0011077011,0.0033674114,0.0013141934,0.006801703,-0.004838773,-0.026832284,0.009637418,0.011255916,0.005440694,-0.025962843,-0.013161997,0.020465301,-0.0155028,0.018178003,0.007871784,0.004801989,-0.008413513,-0.009189322,-0.0080858,-0.0013760574,0.035981476,-0.0043739565,0.00936321,0.0011235852,0.0055042296,-0.0024779066,-0.011235852,-0.017522579,0.014539727,0.008767977,-0.029855262,0.0032888274,-0.008166056,0.002701955,-0.00020325271,-0.0044475244,-0.0084402645,-0.0022388103,0.0000912286,0.01906082,-0.018271634,-0.015863953,0.024143705,0.020117525,-0.010486795,-0.014793872,-0.042562477,0.0017121298,0.07174894,0.026417628,-0.017950611,0.000008902103,-0.0074103116,-0.013148622,0.006788327,-0.026136732,0.007965417,0.0030096031,0.02550806,-0.032530464,-0.0024110265,0.0053002457,0.0012874414,-0.005775094,-0.00062407466,-0.010513547,0.0041298443,-0.013462958,0.002862467,-0.026337372,-0.011623756,0.02677878,-0.0023458186,0.032610722,0.013763919,0.00058645464,0.0054540695,0.005668086,0.007570824,-0.020719446,0.0033105635,-0.014312335,-0.0044542127,0.029828511,0.0003713934,0.0061094943,0.0072029834,0.025788955,0.030443808,0.00595567,0.00017953118,-0.016398992,-0.012065165,-0.013870927,-0.025106778,0.009062249,0.0036583398,-0.015315536,0.011904652,0.010045387,-0.019207956,-0.0071026636,-0.0035580196,0.01601109,-0.01597096,-0.0065274946,0.0033406594,0.0007490568,-0.015007888,-0.012145421,-0.010493483,-0.00597239,-0.0009864811,-0.025307419,-0.009517034,-0.0052601174,-0.006721447,0.0001903992,0.009055561,0.015007888,-0.036061734,0.029855262,0.009858122,0.009684234,0.0059255743,-0.017241683,0.016131474,0.01543592,0.026792156,-0.012767405,0.0071695433,0.0051798616,-0.006574311,0.024812507,0.010332971,-0.008145993,0.0023976504,0.014004687,0.029373726,0.0074972557,0.033359777,-0.013208814,-0.0044040526,0.021388246,-0.020398421,0.014874128,-0.009323082,0.02170927,0.032236192,-0.004501029,-0.001961258,0.0040562763,-0.0013986295,0.011964845,0.010881388,0.03445661,-0.025093403,-0.019569108,-0.016706642,-0.0039994284,0.0064539267,-0.009517034,-0.015823824,0.011128844,-0.00390914,0.03782737,-0.008895049,0.013636846,-0.004256916,-0.0056446777,0.01758946,-0.02006402,-0.0046548527,0.026297243,0.0018575939,-0.03140688,-0.019047445,0.006427175,-0.0011913013,0.022244312,-0.017830227,-0.0039292043,-0.033787813,-0.003962644,0.00039751842,-0.010868011,-0.021200983,-0.015596433,-0.018057618,-0.001977978,-0.009624042,-0.027447581,0.012299245,-0.033012003,-0.007878472,-0.03493815,0.0036884358,0.015101519,-0.01601109,0.008112553,-0.038576424,0.0024444666,0.0061329026,-0.020920087,-0.013001486,-0.016372241,0.013168686,0.026564764,0.03097885,0.008239625,0.0029377071,-0.0127205895,-0.012914541,-0.010593803,0.0022505145,-0.008660969,-0.028544413,0.023555161,0.0020682663,-0.012138733,0.006092774,-0.02677878,-0.0029912111,0.018579284,-0.0040696524,0.0007745548,0.0010006931,-0.015101519,0.0073768715,-0.025869211,-0.007677832,-0.0011904653,-0.0043438603,-0.02388956,0.015489425,-0.0073233675,0.009925002,0.009945067,0.017870355,0.00031642633,0.02328764,-0.0022454984,0.022177432,-0.02117423,-0.025548186,-0.0041432204,-0.00959729,0.0118779,0.006771607,0.019100947,-0.0064372066,0.013396078,-0.008453641,0.004099748,-0.011904652,-0.023140505,0.0155295525,-0.010854635,-0.0015106535,-0.027768604,-0.014258831,-0.009129129,-0.002967803,0.003698468,-0.029855262,0.004962501,-0.01694741,-0.016158225,0.0051196693,-0.0043873326,-0.0022170744,0.0053470614,0.036516517,-0.00061613263,-0.014419343,-0.019408597,0.011362924,-0.008888361,-0.02415708,0.034242596,0.017161425,0.001875986,0.016158225,0.009650794,-0.016492626,-0.028437406,-0.034750883,0.016024465,0.00083265686,-0.005798502,-0.013041614,-0.011904652,-0.044221103,0.011061964,-0.020144276,-0.027527837,-0.004715045,-0.019475477,-0.019087572,-0.013235566,-0.008620841,0.04012804,-0.0016694937,-0.000013663389,-0.0015148335,0.001951226,-0.01654613,0.0076042637,0.004631445,0.022378072,-0.014178575,0.025360923,-0.018672915,0.00031245532,-0.021000342,-0.030524064,-0.021695895,0.021267863,-0.026404252,-0.0001899812,0.003955956,0.008226248,-0.00369178,0.02644438,-0.011556876,-0.0033824595,-0.0032704354,0.006764919,0.0240902,-0.015516176,-0.002056562,-0.027420828,-0.020960214,-0.008540585,-0.036516517,-0.010212586,0.027380701,-0.040716585,-0.028383901,-0.008179433,0.031620897,0.022150679,0.008380073,0.028704926,0.015917456,-0.010339659,-0.0072364234,-0.00582191,0.023795929,-0.0033239394,-0.026952669,-0.0030982192,0.012265805,-0.02499977,0.023729049,-0.021562135,-0.02446473,-0.025427803,0.0053169657,-0.013723791,-0.013636846,0.002710315,-0.01570344,0.027929118,-0.013670286,-0.031433634,0.0034744197,-0.0035145476,0.014165198,0.016265232,-0.0014947696,-0.013777294,-0.0041064364,-0.023367897,0.033226017,-0.024759002,0.0074771917,0.0061864066,0.020960214,0.0068451753,-0.029400479,-0.021214359,-0.019448724,-0.005898822,-0.008915113,0.0017054417,-0.028196637,0.011938092,0.002872499,0.025681946,0.00031788932,0.0050795414,-0.0071494794,-0.013750542,-0.0082596885,0.0049892534,0.00039542842,-0.01318875,-0.022016918,0.009209386,0.0015583056,-0.01348971,-0.017121298,-0.026765404,-0.02154876,-0.005932262,0.0013668614,0.019515604,0.040796842,0.010480107,0.017455699,0.025548186,-0.0010809491,0.02929347,0.0103129065,0.0014839015,0.020344917,-0.009851434,-0.0028925631,-0.010439979,-0.025788955,0.0026785468,0.030363552,0.03774711,0.019569108,0.020251285,-0.019756373,0.010125643,-0.0032420114,-0.012760717,0.0053437175,0.0073501198,0.013763919,-0.05526969,-0.010018635,-0.0051363893,-0.0024544985,-0.008400137,0.01774997,0.03194192,0.016800273,0.0059957984,-0.022204183,0.014138447,0.0053704698,-0.013777294,0.021629015,0.010707499,-0.016693266,0.038415913,0.022324568,-0.013676974,-0.0016460858,-0.006754887,0.0045645647,-0.0013325854,0.018646164,-0.02499977,0.00041465645,0.007992168,0.003638276,-0.00061111664,-0.0006562607,-0.007537384,-0.0042736363,-0.019421972,0.012733965,-0.004694981,-0.011336172,-0.013269006,0.011724076,-0.003785412,0.02288636,-0.018579284,0.021789527,-0.021428375,-0.010981708,0.012687149,0.014927631,-0.055109177,0.0102393385,-0.021227734,0.00029887032,-0.014914256,0.23798604,0.004604693,0.008406824,0.020679317,0.0006253286,-0.010861323,0.007677832,-0.00083349284,0.01161038,0.023354521,-0.0064238305,-0.011396364,-0.026310619,-0.013676974,-0.025989596,0.0043371725,-0.03180816,-0.009242825,-0.00192113,-0.016184976,0.011289355,0.0008456149,-0.008681033,-0.014553104,0.038950954,-0.015141648,-0.0015842216,0.017736595,0.0054841656,-0.009523722,-0.017495826,-0.013857551,0.002093346,-0.018418772,-0.0011377971,-0.00094384496,0.0063368864,-0.012566765,0.021134103,0.05906848,-0.0013150293,0.006821767,0.0039860522,-0.014686863,0.015355664,0.012225676,-0.019234708,-0.037158567,0.012914541,0.0020716102,-0.027474333,0.0007231408,0.0021150822,0.016626386,-0.020264661,-0.016318737,0.004985909,0.008099177,-0.037426088,0.011724076,0.006831799,0.020358292,0.0011804332,0.02413033,-0.026404252,0.012981421,-0.0051631415,0.0027755229,0.0061897505,-0.0025347546,0.004591317,-0.005507574,-0.016960785,0.0062064705,-0.03507191,-0.027327197,0.004825397,0.033654053,0.01734869,0.028597917,0.016506001,0.020866582,-0.0091960095,-0.013529838,0.0026183547,-0.04258923,0.010868011,0.007082599,0.023555161,0.019850004,0.021388246,-0.011851149,-0.027688349,-0.0062666624,0.01721493,-0.015275408,0.0120384125,0.019756373,-0.0018876899,0.007731336,-0.028036125,-0.00392586,-0.00811924,0.011550188,-0.008781353,-0.015101519,-0.011764204,0.013763919,0.008045672,-0.03761335,-0.0065609347,-0.018886931,0.0004748485,-0.0038757,-0.00798548,0.015021264,0.011623756,-0.01184446,0.0060994625,0.019475477,-0.0030146192,-0.013108494,0.0022170744,-0.0036048358,-0.008286441,-0.028785182,-0.018097747,-0.012272493,0.007590888,-0.043819822,0.029346975,0.013108494,0.008232936,-0.03183491,-0.012780781,0.014472847,0.045210928,0.0061663426,0.0051497654,-0.012259116,-0.027193436,0.020625813,-0.0029711472,0.00024912826,-0.008192808,-0.050213557,0.020665942,0.019395221,-0.019649364,-0.002867483,-0.011322795,0.004905653,-0.0042234766,-0.000988989,0.046468273,-0.0158372,-0.035259172,-0.010714187,0.030149536,0.024705498,-0.00005305993,-0.031112608,0.030176288,-0.015328912,-0.0071896077,0.017856978,-0.17185503,0.006721447,0.0041900366,-0.0038991082,0.010145707,0.01130942,0.0005057805,-0.008293129,-0.02798262,0.02124111,0.0087612895,-0.00036219737,-0.010727563,-0.018044243,0.009155882,-0.0021602262,-0.030657824,0.028276894,0.030925345,0.0031818193,0.026966045,-0.03298525,0.007136103,-0.011817709,0.0356337,-0.0040027723,-0.029453984,0.014098318,0.00069346273,-0.013697038,-0.011918029,-0.0027086427,0.034643877,0.009149194,0.020264661,0.012493197,0.014646735,-0.00079963484,0.014726992,0.025762202,0.010714187,0.018044243,0.008199496,0.0033473475,-0.021669142,0.010192523,0.0038723561,-0.027287068,-0.014098318,-0.0024879386,-0.00025268126,-0.011851149,-0.022311192,-0.014994511,0.010252715,0.029668,0.006393735,0.027220188,-0.02010415,-0.018606035,-0.000079002086,-0.013275694,0.0064405506,-0.03509866,-0.0013467974,0.0010659011,-0.018285012,-0.008767977,-0.021976791,0.015516176,-0.0010759331,-0.010165771,-0.0035747397,0.011603693,0.0052467417,-0.0030798272,-0.028276894,0.034269348,0.023969818,0.005918886,0.0021167542,0.045184176,-0.0147002395,0.033975076,0.015248656,0.0053169657,-0.00392586,-0.008614153,0.0147002395,-0.033547044,0.012098605,-0.0067749512,0.0051965816,-0.017843602,0.006731479,0.021200983,0.0062934146,0.013242254,-0.003735252,-0.014098318,0.0031182833,0.018244883,0.0053136214,0.0055744536,0.022351319,0.03164765,-0.0034041957,0.01563656,0.032610722,-0.036703784,-0.023648793,0.012192237,0.0041030925,0.027795358,-0.0021468503,0.00043346646,0.010914828,-0.02889219,0.026872411,-0.007925288,0.03191517,0.0015039656,-0.031032352,0.011717388,-0.008460329,-0.019181203,-0.09727038,-0.030791584,0.006373671,0.0036951238,-0.013844174,-0.017843602,0.011469932,-0.0004677425,-0.0017505859,0.035259172,0.016492626,-0.017535955,-0.0070959753,-0.0025481307,0.008453641,0.013409454,0.031299874,-0.007865096,-0.0043338286,0.022177432,-0.019047445,-0.017843602,-0.012018348,-0.002984523,-0.018124498,-0.018873556,-0.011764204,0.0068953354,0.0072230473,-0.015583056,0.017629586,-0.004571253,0.014272206,-0.021348119,0.0049725333,-0.0012506573,-0.031487137,-0.006741511,0.022672344,-0.036115237,0.004855493,-0.01352315,-0.0009965131,-0.0014847375,-0.018044243,0.000960565,0.0059289183,0.0349649,0.025146905,-0.016827026,-0.0004949125,-0.0073902477,-0.040850345,0.004801989,0.046869554,-0.008166056,0.014566479,0.034750883,-0.014432719,-0.010680747,-0.008567337,-0.006962215,-0.021976791,0.029641246,-0.016746769,-0.0033373155,-0.016639762,-0.022177432,-0.010326283,0.00030576732,-0.0016477577,-0.0010516891,-0.012673773,0.013429518,-0.029828511,0.03499165,-0.020144276,-0.009182634,0.020331541,-0.000053974305,-0.020157654,-0.0063636387,0.002763819,-0.008627529,0.04036881,0.018191379,0.012961358,0.020023894,-0.01654613,-0.00092378096,-0.028999198,0.017495826,0.020077396,-0.0041933805,0.00811924,-0.009035497,-0.0014747055,0.018833427,0.02177615,0.0033139074,-0.006661255,-0.011851149,-0.057088826,0.038576424,0.0011369612,-0.030952096,0.033145763,0.003865668,0.0037586598,-0.02784886,-0.009423402,0.00044182647,-0.008206185,0.027634844,0.0024595147,-0.0026066508,-0.019689493,-0.021053845,0.027139932,0.015489425,0.008293129,0.027768604,-0.006480679,0.0030530752,-0.004256916,0.021401623,0.0052266773,0.018298388,-0.003935892,0.027501084,-0.010567051,0.0006570967,-0.006748199,-0.016893907,-0.008273065,0.04497016,0.032797985,-0.014633359,0.008279753,0.014031439,-0.010975019,-0.011235852,-0.017107923,-0.017950611,-0.0016218417,-0.015048016,-0.012867725,-0.020692693,-0.002961115,0.00071561674,0.015676688,0.014218703,0.018044243,0.036570024,-0.0106339315,-0.0032687634,-0.015395792,-0.011717388,0.008721161,-0.0031717874,0.017067794,-0.033734307,0.041973934,0.008961929,0.0032821393,-0.041786667,0.029079454,0.0011578612,-0.03838916,0.00012717664,0.026190236,-0.036195494,-0.020853207,-0.01997039,0.011583628,0.009543786,0.015034639,0.0023107063,0.0017372099,-0.014726992,0.0037051558,-0.009644106,-0.0017723219,-0.017776722,-0.027073052,0.009510346,0.009945067,0.019809877,0.025681946,0.009791242,-0.015048016,0.02043855,-0.025615066,0.0052066133,-0.0042636045,0.010219275,0.007664456,0.015342288,0.0071561676,0.010379787,0.0042803246,0.027006172,0.00044015446,0.013215502,0.010225963,0.0008493769,-0.016198354,0.016506001,-0.02030479,-0.045317937,0.0024946267,-0.0050293813,0.00592223,-0.0118578365,-0.004644821,0.018405395,0.00073777075,-0.022979992,0.0012958014,-0.0129011655,-0.002897579,0.018606035,0.033038754,0.023087,0.0014437735,-0.017388819,0.024437977,0.016492626,-0.00050201855,-0.012372813,0.008253001,0.002818995,0.0129747335,0.009236137,-0.013951182,-0.013235566,0.0021067222,-0.010179146,-0.013195437,0.018164627,-0.0032002113,0.039780267,-0.0010826212,-0.008219561,0.006751543,0.005741654,0.018833427,0.021093974,-0.0029460671,-0.029052703,-0.018753171,0.024317594,-0.008380073,0.016532753,-0.019742997,-0.030711329,0.009162569,-0.0064572706,0.020425173,-0.023528408,-0.0227526,-0.0015089816,-0.01201166,0.018512404,-0.004949125,-0.022297814,-0.003778724,0.017509202,-0.0023909626,-0.01859266,-0.0240902,0.014272206,-0.009236137,-0.011128844,-0.009690922,0.002718675,-0.027902365,0.016452497,0.012968046,0.041305132,-0.008981993,-0.005350406,0.007564136,-0.0053972215,-0.010212586,0.012352749,-0.0014044815,-0.025989596,0.01986338,-0.031888418]},{\"id\":\"92ae9cb8-00e4-4abe-9ca9-e7da10a6f4a3\",\"text\":\"Where do I get confirmation this is not spam\",\"vector\":[0.0073829633,-0.0076978444,-0.034114383,-0.0052290405,-0.02655723,0.01420316,-0.022550866,-0.015288495,-0.009667528,-0.0023398364,0.011985591,-0.017298376,-0.01420316,-0.0010928728,0.0064617675,0.011556816,0.045021337,-0.008850176,0.015985254,-0.0038991694,-0.022068495,0.0034117731,-0.0147927245,-0.018825887,-0.0219747,0.0022862398,0.021344937,-0.00826731,-0.025672881,-0.008984168,0.00041056008,0.0017217981,-0.014725729,-0.014122765,-0.012622053,0.012729247,-0.0034703948,0.007831837,0.017284978,0.0038120744,0.0049275584,0.02923707,-0.0059592975,-0.029639047,-0.00041076945,0.013064227,-0.0004765093,0.00023260186,-0.016360432,0.020728573,0.026383039,-0.014444346,-0.017137585,-0.010531777,-0.025150312,0.013988772,0.013211618,0.024587546,-0.012072686,-0.012970433,0.0072757695,-0.010833259,-0.02770956,-0.006371323,-0.010089603,0.0055908193,0.005969347,-0.009057864,0.0004848838,-0.0055975188,0.012796243,0.00007940077,0.0027250638,-0.012059286,0.030630589,-0.013801184,0.000115777526,-0.019361854,0.0064986153,-0.003143789,0.014739128,-0.021599522,0.000388577,0.040304814,0.02450715,0.01877229,0.0033548265,0.017030392,-0.026584027,-0.025284303,0.0031404393,0.018517705,-0.0035608392,0.029210271,-0.009902014,0.0023683098,-0.013030729,0.051988922,0.0025743227,0.010250393,0.0073963623,0.0138145825,-0.0015526331,-0.0077447416,-0.038053747,0.0014914992,-0.001344108,-0.013265215,0.002820533,-0.009533536,-0.01995142,0.018464107,-0.013446105,-0.015569879,-0.010404484,0.028674303,-0.005497025,-0.0068503446,-0.010511678,-0.019549442,0.0044384873,-0.0024554047,0.026383039,-0.014417547,0.037946556,0.010947152,-0.028620707,-0.011630512,0.0013482952,0.008334307,0.031863313,-0.008568793,0.013024029,0.0056712143,-0.015422488,0.04038521,-0.031514935,0.020393593,-0.021210944,-0.0006201321,0.015945056,0.033712406,0.0121798795,-0.0049141594,-0.0007633361,0.016280036,0.016641816,-0.02111715,-0.020661578,-0.029665845,0.010391085,-0.0185713,-0.0045088334,0.011054346,0.0010426259,0.04475335,-0.0012009039,0.017378772,0.02669122,-0.03486474,-0.010860058,0.00962733,0.0090712635,-0.020875964,-0.00086089905,0.038911298,0.012407666,-0.023930984,-0.031166555,0.0074968566,-0.025297703,0.009339248,-0.00022024947,0.0013583447,-0.003922618,-0.004153754,0.0037584775,-0.026316043,0.0020082062,-0.014658732,-0.0026764916,0.019040274,0.017311776,0.023863988,-0.010766263,-0.010424583,0.013734187,-0.048612323,0.007992627,0.0075102556,0.021277942,0.019562842,0.010833259,-0.014899919,-0.6568827,-0.034033988,0.008515196,0.0005996145,0.012380867,0.009111461,-0.0038321733,0.010672469,-0.034784343,0.05169414,-0.0075303544,0.034033988,-0.012816342,-0.008193615,0.017499365,-0.012883338,-0.0058722026,-0.003580938,0.017700352,0.013553298,-0.0020149057,0.01995142,0.0047801672,-0.0007218823,0.010431283,0.0084214015,-0.008347706,0.000655305,-0.010531777,0.014350551,-0.0033498018,0.010350888,-0.002128799,-0.0073762634,0.045101732,-0.0075638522,0.0061066886,0.021063553,-0.031193355,0.034945134,-0.034007188,-0.0012913486,0.029880231,-0.012494761,-0.019911222,-0.003936017,0.03569549,0.0015928308,-0.005158695,-0.009660828,-0.0022560915,-0.005878902,-0.024332961,-0.0057415604,0.029478256,-0.007007785,0.03821454,-0.005523823,0.02095636,0.025699679,-0.033256833,0.015985254,-0.02602126,-0.031809717,-0.012615354,-0.0077313427,-0.0056779142,0.009479939,0.023301221,0.023622802,0.028701102,0.005225691,-0.021854106,0.004981155,-0.0037316792,0.005460177,0.0046227267,-0.012883338,0.01333891,0.027682763,-0.016038852,0.012896737,0.0036278353,-0.03633865,0.0013591821,-0.0042174007,-0.02111715,-0.0118515985,-0.010772962,0.000111276226,-0.003160538,0.017794147,0.0046059773,0.0035641892,-0.014725729,0.004528932,-0.019375253,0.0121865785,-0.0029829985,-0.015851263,-0.021237744,-0.0074901567,-0.0062507303,-0.013251816,0.03132735,-0.029156676,-0.01132903,-0.027923947,0.019361854,-0.012910136,0.024185568,0.0128230415,-0.01420316,-0.0013658816,-0.025458494,-0.031005766,0.023569206,0.013379108,-0.010223595,-0.0007076456,0.0065488624,0.010337489,0.022966241,-0.010002508,0.022108693,0.01200569,0.017807547,-0.00026526244,0.00540993,-0.0050816494,0.023582604,-0.03264047,0.024882328,-0.015261697,0.012849839,0.0051419456,-0.009995809,0.011637212,0.03312284,-0.02180051,-0.007691145,0.012112883,-0.012360768,-0.012039187,0.0017100738,-0.028674303,-0.016682014,0.026302643,-0.03923288,-0.0077648405,-0.006518714,0.00044259257,-0.0185847,0.019241262,0.0016246538,-0.00016152326,-0.02078217,-0.022952842,0.0054434277,-0.022537466,0.04191272,0.0142969545,-0.008943971,0.017941538,-0.0069206906,-0.0029829985,0.0069876867,-0.005885602,0.0013549948,0.0018323415,0.004579179,-0.02770956,-0.005610918,0.036794223,0.008166817,0.0123339705,-0.017191183,-0.012059286,-0.00828071,0.0107059665,-0.002110375,0.006575661,0.006012894,0.03647264,0.03416798,-0.0039628157,0.0085821925,0.029505054,-0.0010861732,0.03783936,-0.006049742,0.012119583,0.013620294,0.030496595,-0.01708399,-0.012327271,0.013747587,0.019402051,0.018129127,-0.00025960963,0.03976885,-0.0005761659,0.010752864,-0.031648926,-0.008997568,-0.021746913,0.0152081,-0.0185981,0.023194028,0.005986096,-0.0070412834,-0.026825212,0.013961974,-0.0024654542,-0.005641066,0.0035909875,-0.009144959,-0.009546936,-0.016333634,0.015074108,0.012983832,-0.005781758,0.0074633583,-0.013948575,-0.00877648,0.030603789,0.023287822,0.029210271,0.006518714,-0.02757557,0.000540993,0.0354811,0.0075772516,0.026463434,0.025713079,-0.007014485,-0.0074633583,-0.009185157,0.020929562,0.01385478,0.006733102,0.008026125,0.028191932,-0.0043346435,0.043815408,-0.006860394,0.021947902,0.013747587,0.008816678,0.014846321,-0.0084147025,-0.010518378,-0.019777229,-0.00090779626,0.027495174,-0.030201813,-0.025203908,-0.0036043867,0.022189086,0.019817427,0.017727152,0.016306834,0.0077648405,-0.022108693,0.020246202,0.0029294016,0.001725148,-0.023569206,-0.00507495,-0.01606565,-0.013024029,-0.019522645,0.007570552,-0.018531103,0.007825137,-0.0029109777,0.022617862,-0.0016087423,0.0007993465,0.0061301375,-0.03569549,-0.03834853,0.043011457,0.02180051,-0.02063478,-0.022376675,0.0035038926,0.0095670335,-0.025766676,0.0026781666,-0.005661165,0.01436395,-0.02381039,0.00027866164,-0.009687627,0.00013859804,0.03108616,-0.0051854933,0.0028104838,0.007798339,0.0152750965,-0.01116154,-0.016869603,-0.033578414,0.00041453796,-0.0064684674,0.0050816494,-0.029263869,-0.0042709974,-0.010880156,0.0011548442,-0.0032911804,-0.0035909875,-0.014618535,0.0057415604,-0.0021706715,-0.020179207,-0.0060095442,0.02110375,0.02383719,-0.0026932405,-0.0052926866,-0.011288832,0.014497942,0.0997437,0.00524244,0.01993802,0.0008876975,-0.013573397,-0.011121342,-0.024399957,-0.019294858,0.00040700092,-0.015757468,-0.02789715,0.0020634779,0.00019303233,0.013204918,0.020661578,-0.013017329,0.0007118329,0.029773038,-0.007349465,-0.034677148,0.028138336,0.009680927,-0.012963733,0.01638723,0.023127032,0.010732765,0.013278615,0.015502883,-0.0040666596,0.004880661,0.0029243769,0.0038120744,0.007952429,0.004478685,0.0022728406,0.021478929,-0.007878734,0.021545924,-0.0236764,0.023569206,0.017820945,0.03582948,0.030737782,-0.0021991448,-0.023086835,-0.024399957,-0.01571727,0.034409165,0.0067465007,-0.009191856,0.013372409,-0.015167902,-0.016454227,-0.01656142,-0.0029628996,-0.0058052065,-0.01555648,0.0063110264,-0.020862566,-0.026101656,-0.05472236,-0.024306161,0.007650947,-0.006880493,-0.049067896,-0.019911222,-0.017713752,-0.008990868,-0.0008860226,-0.008984168,-0.013084326,-0.0064249197,-0.011898496,0.0018306667,0.023877388,0.007999327,0.0034569954,-0.0049141594,0.0023046636,0.01368729,-0.014940116,-0.037222996,0.005369732,-0.015167902,0.010297291,-0.0038154242,0.02415877,0.0033866495,0.0038991694,0.02165312,0.011469722,0.013278615,0.033230033,-0.024386557,0.017097387,0.012970433,-0.008930571,0.00439494,0.022443673,0.0065957597,-0.016802605,-0.035561495,0.0056511154,-0.0067599,-0.011603713,0.020085411,0.021894304,0.01082656,0.00035989433,-0.0015325344,0.016172843,0.0116841085,-0.010746164,0.0082539115,-0.00073570025,0.013258516,0.02267146,0.02805794,-0.006036343,-0.005202242,-0.015770867,-0.020072013,-0.00046059774,0.02347541,-0.018611498,0.0108667575,-0.0067665996,-0.005728161,-0.01452474,-0.00135332,-0.006816847,-0.0020366795,0.01065907,-0.011074444,-0.009084662,-0.012789544,-0.0064952658,0.0053630327,0.0049309083,-0.008314208,-0.031836517,-0.014658732,-0.011704207,-0.015757468,0.006290928,-0.029933829,-0.015476084,0.014899919,-0.009319149,0.02485553,0.0022577664,0.0008818353,-0.022698257,-0.0064148703,0.006391422,-0.015824463,-0.0047835167,-0.005175444,0.0219613,0.01910727,0.0067532,0.0084415,0.006140187,0.009948911,-0.008468299,-0.007336066,0.011476421,0.009278951,-0.0071283784,0.0032241843,0.009278951,0.016172843,0.019455649,0.0304162,0.007315967,0.019321656,0.00029813236,-0.020674977,-0.016119245,-0.03532031,0.004766768,-0.020313198,-0.00194456,0.01757976,-0.012206677,0.0018507655,0.0041437047,-0.0123406695,0.023127032,-0.0047634183,0.031139757,-0.019348456,0.022189086,-0.001978058,0.012809642,-0.008468299,-0.020902764,-0.014765927,0.008260611,0.028111536,0.016588219,0.010685868,-0.00030504132,0.010525078,0.0001366091,0.013606895,-0.033203237,-0.013948575,0.010960552,-0.022148889,-0.015583278,-0.012347369,-0.004093458,0.005982746,-0.007570552,0.007885434,-0.00388912,0.008702785,0.014631934,-0.022926044,-0.021210944,-0.020339996,0.022349877,0.03497193,0.012789544,0.015744068,0.020246202,-0.0036077364,0.008153417,-0.031032564,-0.012213377,0.029639047,0.019830827,-0.012139682,-0.025672881,0.024976123,-0.0020869265,-0.011235235,-0.009513437,0.02789715,0.008702785,0.010779662,0.0033213284,-0.0036278353,-0.017526163,0.03229209,0.006967588,-0.0084147025,0.010109702,-0.013908377,-0.030871773,0.0129972305,-0.032077704,0.03162213,-0.0062339813,-0.00828071,-0.014645333,-0.007181975,-0.0077045443,0.00439159,-0.002467129,0.037571378,0.007014485,-0.032506477,0.019294858,-0.008575493,-0.024038177,0.0022376676,0.019067071,0.02113055,0.0092320535,-0.009660828,-0.018450709,-0.0027099897,0.0011205086,-0.0051419456,0.0021187495,0.016949996,-0.020835767,-0.013559998,0.029290667,0.011429524,0.008019426,0.025257505,-0.011087844,0.0027602366,-0.004716521,-0.00010379151,-0.025203908,0.00013807464,-0.004753369,-0.009098061,0.014444346,0.009084662,-0.0016757384,0.00726907,0.006002845,0.014270156,-0.004177203,-0.0027300885,0.01723138,0.012943634,-0.029933829,0.009506738,0.0270396,-0.030952169,0.0026429936,0.0031823118,-0.013251816,-0.02803114,0.02096976,-0.0049577067,-0.012742646,-0.015395689,-0.012856539,0.016507823,0.009647429,0.00038899574,-0.011744405,0.022684857,0.015837863,0.0020500787,0.0051687444,-0.009178457,0.0025240756,-0.00219412,0.0022895895,0.016333634,-0.028593909,-0.035373908,0.021398533,-0.0026664422,-0.00575161,-0.0422343,-0.0287279,0.005798507,-0.008970769,0.013137923,-0.0038991694,0.0012218402,0.009419642,0.011744405,0.0027016152,0.023555806,-0.011804702,0.006267479,-0.029290667,-0.030603789,-0.012106184,-0.029585449,-0.027789956,0.025203908,0.0061267875,-0.019991618,-0.02162632,-0.019013476,-0.018785689,-0.017660156,-0.007918932,0.006069841,-0.0010710991,0.0020685026,-0.008026125,0.0044820346,0.009017667,0.023113633,-0.018062131,-0.023729997,-0.01707059,-0.0028925538,0.014578338,0.0032426082,-0.01791474,-0.014283555,0.027950747,0.006136837,0.010786362,0.037919756,-0.017110787,-0.009111461,0.01757976,-0.01369399,-0.0006406496,-0.004582529,0.0012796243,-0.030523393,0.0032007357,-0.018356914,0.017016994,-0.001411104,-0.0014722379,0.020139009,0.01300393,-0.011094543,-0.018866085,0.0010844984,-0.0076107495,0.006223932,0.011697507,0.016856203,-0.01992462,-0.008240513,-0.0048438134,-0.02245707,-0.00456578,0.008079722,-0.009774721,-0.014846321,0.026034659,-0.015007112,-0.0019194364,-0.0045490307,-0.015985254,0.012849839,0.0014211534,0.0038187741,0.010886855,-0.019335056,0.013801184,0.014685531,-0.03111296,-0.011630512,-0.018155925,0.0017871193,-0.026744818,-0.024989521,-0.011630512,-0.020648178,0.013553298,0.019871024,-0.024292763,-0.013332211,0.0074901567,-0.0023817092,-0.012809642,0.024868928,0.2383987,-0.02942466,-0.00080604607,0.039688453,0.002076877,0.006284228,0.016146045,0.010612172,-0.026718019,-0.0071082795,0.012400966,0.014122765,-0.0020601281,-0.0017033742,0.018799087,-0.00025458494,-0.027401378,-0.0354811,-0.009915413,-0.036553036,0.0070546824,-0.00044552365,-0.011007449,0.0069139907,0.026959205,0.018490907,-0.011141441,0.023167228,0.028299125,0.017874543,-0.021076953,-0.015636874,0.008394604,-0.006796748,-0.012521559,-0.0006988524,0.0030834926,0.01926806,0.02332802,0.014685531,0.024815332,-0.009667528,0.0062507303,0.0014069168,-0.022001497,0.01150322,-0.0142969545,-0.02131814,0.003835523,-0.0011908546,-0.03837533,-0.01958964,0.0041269558,0.003497193,-0.009707726,-0.0092320535,-0.0038120744,-0.02096976,-0.02551209,0.012695748,-0.009379445,0.033819597,-0.0045222323,0.0047198706,-0.00946654,0.01928146,-0.009265551,0.019482447,0.026463434,-0.0059191,0.010357588,-0.0038958194,0.013271915,0.013104425,-0.009647429,-0.004793566,-0.0039092186,0.053704023,0.048397936,0.008026125,0.00020423323,0.0043681418,0.018946478,-0.011918595,-0.0035943373,-0.017150985,0.015288495,0.0026580677,0.00726907,0.006217232,0.013667191,-0.0017284977,-0.03349802,-0.022899246,0.010786362,0.0006624233,0.0110275475,0.007838536,-0.009017667,0.00013755124,-0.016655214,0.05121177,-0.012695748,0.011081144,-0.028754698,-0.021344937,-0.0054702265,0.032077704,-0.009325848,0.0004945145,0.012548357,-0.040840782,-0.0052290405,-0.0076844455,0.00092957,0.029290667,0.0002949919,-0.034596752,0.026972605,-0.008870275,0.0009881916,-0.007952429,-0.005543922,-0.0018909631,0.015797665,0.008809979,0.0032208345,-0.033524815,-0.008387904,-0.018557902,0.027267387,0.028969087,0.013030729,0.0023733345,0.0077447416,-0.020219404,-0.015114306,0.0049543567,-0.007691145,-0.006096639,-0.0049309083,0.012293773,0.02131814,-0.01284314,0.015958456,-0.026838612,-0.0033682256,-0.006994386,-0.0050649005,0.002386734,-0.009051165,-0.013499701,-0.022832248,-0.022751853,0.019495847,0.001056025,-0.016012052,-0.041537542,0.008977469,-0.017807547,-0.009245453,0.009010967,0.03194371,-0.00016591988,-0.023073435,-0.0027083147,-0.17193863,0.020058613,0.0038254736,-0.0020517537,0.011228535,0.02602126,-0.010953852,0.020581182,-0.0040130625,-0.0029695993,0.012126283,-0.0013910052,-0.01926806,-0.0027669363,0.010531777,-0.013868179,-0.010806461,0.014109365,0.020835767,-0.0024403306,-0.002080227,-0.013600196,0.0154492855,-0.01995142,0.0000352776,-0.019536044,-0.030121418,0.00011169496,-0.024600944,-0.02689221,-0.009178457,0.0048471633,-0.007952429,0.002589397,0.0077849394,0.013258516,0.012153081,-0.004512183,-0.015690472,-0.0025743227,0.017660156,0.010699267,-0.0005602543,0.011657311,0.011864998,0.018906282,0.0118515985,-0.009144959,-0.0047634183,-0.0072958684,0.026731418,0.0026932405,0.009573733,-0.009185157,-0.032908455,0.019415451,-0.0045088334,0.030818177,-0.00034063298,-0.012153081,0.0056343665,-0.02586047,-0.0056343665,-0.020460589,-0.0043714913,-0.03280126,-0.018691894,0.007952429,-0.0060899397,0.014658732,0.009453141,-0.014229958,0.01453814,-0.007905533,0.030469798,-0.004833764,-0.035561495,-0.013653792,-0.0050582006,-0.0008006026,0.008937271,0.018330116,-0.017445767,0.030844975,0.0064115208,-0.010324089,0.011422824,-0.0030985666,-0.002993048,-0.010176698,0.017968336,-0.0007097393,-0.012695748,-0.008186916,0.038294934,0.016266638,-0.0030148216,0.01925466,-0.0011104593,-0.0008261449,0.0101432,-0.00980152,-0.0059559476,0.015918259,0.03197051,0.013720788,-0.021009957,0.019080471,0.03800015,-0.020406993,-0.0076777455,0.02434636,0.015221499,0.00037769016,0.03239928,0.010953852,-0.01420316,-0.03566869,-0.003329703,-0.0030650687,0.020326598,-0.020339996,-0.0038958194,0.0007784102,-0.019241262,0.009272251,-0.102959506,-0.01741897,-0.008314208,0.0044820346,-0.019884424,0.018062131,0.015757468,0.002802109,-0.00523574,0.028647505,-0.005225691,-0.022162288,0.0012871614,-0.03245288,-0.012461263,0.008541995,-0.015020511,-0.0058688526,-0.0042040013,0.011563516,-0.025753276,-0.038911298,0.0071953745,0.007657647,0.0008207014,-0.023770193,-0.008870275,0.022202486,0.021358335,-0.004478685,-0.0075973505,-0.034677148,-0.0138145825,0.0055707204,-0.019857625,0.008521896,-0.03939367,-0.01774055,0.02062138,-0.0045557306,-0.00523909,-0.00877648,0.008836777,-0.03223849,-0.016427428,-0.025672881,-0.0063813725,0.025418296,-0.002823883,-0.028191932,-0.027320983,-0.023435213,-0.023716597,0.013385808,0.013881579,0.010089603,0.014350551,0.026517032,-0.013332211,-0.015998654,-0.0060798903,0.017311776,-0.03751778,0.009332548,0.019536044,0.01099405,-0.00026547178,-0.01402897,0.027736358,0.0059257993,0.024239166,0.0067163524,-0.03497193,0.015516282,-0.020795569,-0.012514859,-0.020005016,-0.0009069588,0.0037149303,-0.0039092186,-0.01570387,-0.019777229,0.0021237743,-0.017646756,0.005778408,0.020246202,0.023850588,0.006478517,0.0035340409,-0.019562842,0.0019361854,0.0185847,0.014913318,0.013124524,-0.028111536,0.0028590558,-0.0017954938,-0.004964406,0.02519051,-0.0047366195,-0.02062138,-0.0009488314,-0.06581691,0.013265215,-0.0064249197,-0.024949323,0.0050448016,0.0012980482,0.018812487,-0.014430946,-0.0018289918,0.024533948,-0.009841718,0.016789207,0.0073628644,-0.011188338,-0.012039187,0.005523823,0.021666517,-0.01401557,0.021170747,-0.0029042782,-0.0012193279,-0.0073963623,0.020567782,0.003497193,0.02485553,0.011556816,-0.035615094,0.0071551767,-0.0045724795,-0.0038589716,0.004920859,-0.016347032,-0.020420391,0.022202486,-0.020661578,-0.01200569,-0.0025475242,0.0371426,0.010846659,-0.0041705035,0.0045054834,-0.01199899,-0.0074432595,-0.0026496933,-0.031193355,0.006337825,-0.0025073267,0.015502883,0.024131972,-0.0035239914,0.0017770699,0.011382626,-0.02315383,-0.026262445,-0.025471892,-0.01570387,0.037490983,-0.0043781907,-0.0013415957,-0.0270128,0.034891535,0.018222922,0.010793061,-0.011737705,0.015261697,0.026235647,-0.031648926,0.0014596762,0.0032493076,-0.023622802,-0.018638298,-0.022698257,0.0075772516,-0.021411933,0.023060035,0.009734524,0.0066862046,-0.02450715,-0.01065237,0.010920354,0.014350551,-0.025967663,-0.014966914,0.021827308,0.016253239,0.0020350046,0.0019378604,0.01638723,-0.013566697,0.015569879,-0.023542408,0.013439405,0.010344188,-0.009788121,0.0022410173,-0.0034469462,0.0035876378,-0.00003608888,0.013124524,0.018008534,0.0337928,-0.011262034,-0.0061636353,-0.008059623,-0.0185847,0.027521972,-0.020005016,-0.04545011,0.0067699496,0.002567623,0.02350221,-0.011382626,0.012883338,0.011456322,-0.018209523,0.020165807,0.011737705,0.0061066886,-0.02519051,0.030496595,0.018075531,-0.0055707204,0.01672221,-0.03580268,0.0005091699,0.02180051,0.0019546093,-0.015837863,0.011871697,-0.015462685,-0.021894304,-0.013238417,-0.023957783,-0.024882328,-0.009513437,-0.011054346,-0.012374168,0.0103843855,0.011878397,0.05319485,0.024761735,-0.012715847,-0.0041671535,-0.0006138512,0.0024604294,0.018638298,0.0076777455,0.0006209695,-0.030442998,0.014752527,-0.00053513085,0.029317465,-0.03162213,-0.016802605,0.0031002415,-0.0028255577,-0.013935176,-0.01925466,-0.0017385471,-0.0111950375,0.0033749253,0.015958456,0.01641403,-0.027428176,0.0031303898,0.0076174494,-0.013097725,-0.009406243,-0.025981063,0.0071685757,-0.005342934,-0.009721125,-0.0024018078,-0.023207426,-0.001132233,-0.00096725527,-0.0024420056,0.026490232,0.013881579,0.016454227,0.020795569,-0.019576242,-0.011871697,-0.008361105,0.0065723113,-0.00081567676,-0.0015844563,-0.0042274497]},{\"id\":\"0762ec9b-88e0-4050-a6d8-8cfd203fc65c\",\"text\":\"How will you know if I get 1,000 views? \",\"vector\":[-0.004605545,-0.019269627,-0.0021756557,-0.010553967,0.01092554,0.010019424,-0.016975004,-0.022163983,-0.013637369,-0.023858875,0.0012149448,0.01816143,0.00031514413,-0.013780782,0.013402691,0.0013966569,0.030429846,-0.008050741,0.0048304447,-0.022959279,-0.026675005,0.0007349968,0.0050553437,-0.00046324354,-0.027352963,0.0010413813,0.021107934,-0.0050944565,0.012157597,-0.006355848,0.010195432,0.016961966,-0.014784681,-0.011935957,-0.009152421,-0.0056909285,0.0024478163,-0.0040188516,0.02239866,-0.007972515,0.024041403,0.007046843,0.00292369,-0.030351618,-0.021499064,0.0074770846,-0.00871566,-0.024406457,0.0013143568,0.025071375,0.022750676,-0.025671108,-0.020104036,-0.014132799,-0.015267073,0.030820973,0.013806857,0.015971106,-0.0037776553,0.0012222785,0.018748121,0.018396106,-0.02229436,-0.00013302465,-0.03439329,-0.005224833,-0.01792675,0.012848591,-0.008396238,0.0017584513,0.022750676,0.0120858895,0.0016451868,-0.014836831,0.014380514,-0.010560486,-0.0075553106,-0.0032300747,0.023037504,0.019243551,0.00992816,-0.024419494,-0.010847314,0.03162931,0.007261964,0.015462638,-0.010058537,0.030560222,-0.043676086,-0.014680379,0.0070207673,0.005127051,0.024654172,-0.0010992357,0.027744092,0.020051885,-0.022046644,0.0119164,0.010221507,0.009452287,0.007509679,-0.005433435,-0.031264253,-0.009028563,0.020781994,-0.0058897524,0.00076066464,0.018735085,0.000034936795,-0.0024315193,-0.026010087,0.000094981224,0.0068512782,-0.017744225,0.00088900386,0.005159645,0.009778228,-0.008161561,-0.023585085,-0.02229436,0.037052963,-0.010638712,0.012033739,-0.028317748,0.0013746559,0.001732376,-0.008598322,-0.016297046,0.004563173,-0.008324531,0.0355406,-0.0024038143,0.025736295,0.0010902724,-0.023754574,0.019686831,-0.02250296,0.026101349,-0.03530592,-0.009061158,0.023702424,0.018343955,0.024367344,-0.00092730194,-0.007711762,0.029673662,0.0069555794,-0.024210893,-0.008344088,-0.00568115,0.01125148,-0.006274363,0.008187636,0.03371533,-0.0035331997,0.022033606,0.0034614927,0.016622987,0.010390997,0.0030540666,0.0012890963,0.01042359,0.0077443565,-0.013330984,0.0028210187,0.03371533,0.042607,-0.0077052433,-0.018461294,-0.00037666547,0.00091019005,0.025097452,-0.021968419,0.020456053,-0.0039047722,0.020403901,-0.0075031603,-0.018787235,0.009889048,-0.0029416168,-0.010456185,0.024615059,0.013780782,0.0060266475,-0.019712906,-0.0013779153,0.0060429447,-0.01108851,0.0039699604,-0.01793979,-0.015136696,0.017665999,0.021368688,-0.0009688594,-0.6854668,0.00981734,0.028656727,-0.0050031934,0.006665492,0.006890391,-0.0036863917,0.015123659,-0.035514522,0.030560222,0.00209743,-0.018070165,0.013480917,-0.0072032944,0.0012222785,-0.014771643,0.029386833,-0.025084414,-0.006007091,0.017535621,-0.014328363,-0.0019067544,0.0018546039,0.013533067,0.003155108,-0.006883872,0.0059158276,-0.032020435,-0.024706323,0.023950139,-0.0058278237,0.01969987,0.022150945,0.00860484,0.047900278,-0.018122315,0.009126346,0.0027069394,-0.017835487,0.02422393,-0.04414544,-0.0051466073,0.0010715307,-0.015254036,-0.009537032,0.017470434,0.007679168,-0.0030785121,0.008689585,-0.023598123,-0.00286828,-0.0016517056,-0.00850054,-0.0018383068,0.033637103,0.005703966,0.034341134,0.007320633,-0.0099542355,0.0054464727,0.006150505,-0.024941,-0.017340057,-0.006857797,-0.00064862246,0.014341401,0.02228132,0.0060657607,0.01975202,0.00073295966,0.010795163,0.036062103,-0.01258132,0.007920365,0.01876116,0.01821358,0.019947585,0.0036277224,-0.014928094,0.00557359,-0.007216332,-0.0021169863,-0.020064924,0.006205915,-0.0013029488,-0.0013608034,-0.023532934,-0.0026629374,0.010775607,0.0014553262,-0.0039536636,0.017692074,0.0015962956,-0.005319356,0.014980245,0.017626885,-0.019725945,0.012125002,-0.0018888277,-0.001109014,-0.011851212,-0.014406589,-0.0007692206,0.016688175,0.0226203,-0.026987908,0.0021039487,-0.013559142,0.029647587,-0.025058338,0.013194089,-0.014888981,-0.008637435,-0.018474331,0.015879842,-0.026244763,0.0047457,0.022268284,0.011355782,-0.011831655,0.030090867,0.00046976237,0.021225274,-0.015593014,0.017366132,0.0069816546,-0.014654304,-0.0064340737,-0.0013893232,-0.006577488,0.009067677,-0.013226682,0.019556455,-0.011629572,-0.007138106,-0.0035266809,-0.00075129385,-0.014458739,-0.011838174,-0.019021912,-0.0013510252,-0.008239786,-0.0028845773,-0.017626885,0.012881185,-0.0047913315,0.004237232,0.015788577,-0.0026450106,0.03559275,0.0040449267,-0.029986566,-0.02058643,0.0077378377,-0.027874468,0.0059712376,-0.013806857,-0.026296914,-0.009869492,-0.008357125,0.008767811,0.02168159,0.013924196,0.004475169,-0.012001145,-0.021825004,-0.00019729612,0.016010217,-0.0065677096,-0.011675204,0.0013233202,0.0064471117,-0.014224062,0.024132665,-0.011616535,0.010136763,0.005136829,0.028239522,0.0006999581,-0.018330917,-0.0022359549,0.00066003035,-0.0029448762,-0.004119893,0.034784414,0.01065175,-0.007900808,0.028813178,0.0045045037,0.01042359,0.0065090405,0.007105512,-0.0012393903,0.021707665,-0.00915894,0.0057398197,0.027013984,0.0040807803,0.0072815204,0.017040191,0.026362102,0.0062939194,0.02571022,-0.023976214,-0.00021532472,-0.03173361,-0.0016003699,-0.00667527,0.030325543,0.025827559,0.008572246,-0.012496575,0.0036700948,0.0069816546,0.010456185,0.019504305,-0.0077508753,0.007653093,0.00014229359,0.012750809,-0.014641266,-0.0041459687,0.03851318,-0.025905784,0.007718281,-0.009537032,0.0023761094,0.032255113,0.0058310833,-0.024263043,-0.021838043,0.007816063,0.025592882,0.0076661306,0.014980245,-0.002715088,0.011505715,-0.006883872,0.014341401,0.012125002,-0.002157729,0.018500406,0.016153632,-0.026192613,0.013324465,0.034080382,0.019895434,0.0040449267,-0.017509546,0.012353161,-0.0124705,0.014523928,-0.007222851,0.00017845265,-0.0041296715,-0.02620565,-0.024836699,0.001815491,0.0016867443,0.025775408,0.015084546,0.0154496,0.00981734,-0.014706454,0.0016680027,0.008598322,-0.0025276719,0.005211795,0.014002422,-0.008859075,0.0060201287,-0.0037939523,0.023650274,-0.00910679,0.013324465,-0.014093686,0.01628401,-0.012144559,0.016205782,0.016896777,-0.014706454,-0.009224128,-0.0010919021,-0.0023907768,-0.013832933,-0.030847048,-0.0076335366,-0.013767744,-0.00882648,0.012587839,-0.007985553,0.0015881471,-0.012770365,-0.0044490937,-0.011284075,0.002664567,0.042450547,-0.012274935,-0.012822516,-0.027118284,0.020117074,-0.025345167,0.0055084014,-0.027822318,0.010384478,0.013428766,-0.03697474,-0.038095977,-0.008754773,-0.003156738,0.0024152223,0.003101328,-0.028500274,-0.0028014623,0.0010951615,-0.0036570572,-0.021772854,-0.008806923,0.021707665,0.020456053,-0.013174532,0.0012459091,-0.007653093,-0.012033739,0.076765604,0.001561257,0.010860352,0.010397515,-0.022881053,-0.011577422,-0.016362235,-0.017040191,0.029856188,0.0006531041,0.006336292,0.008187636,0.0027379037,0.0026466404,0.008780848,-0.01003898,0.009165458,-0.015958067,0.0045664324,-0.011746911,-0.024210893,0.018474331,0.026935758,0.027248662,-0.0070207673,0.009178497,0.018409144,0.005710485,-0.009152421,-0.01153179,-0.020325676,-0.0016215561,0.0048141475,0.0051563852,-0.004993415,0.025332129,0.0008132226,0.0069490606,0.029595437,0.00667527,-0.0040677427,0.015971106,0.006909948,-0.005651816,0.006714383,-0.010443147,-0.00915894,0.03168146,0.027379038,-0.017131455,0.021368688,0.0013168013,-0.0068186843,-0.023363445,-0.015566939,0.020977559,-0.010782125,0.0019442376,-0.020456053,-0.009198053,-0.02709221,-0.002664567,0.00408404,-0.007359746,-0.028761027,-0.02902178,-0.014289251,-0.0051237913,-0.010436628,-0.016766401,0.011596978,-0.028761027,-0.03866963,-0.015853766,0.025475543,0.01782245,0.022411698,0.0045370976,-0.009074195,0.00866351,-0.008454908,-0.013037637,-0.01881331,-0.018239655,-0.0059712376,-0.0007231814,-0.009895567,-0.00023223291,-0.015918955,0.011544827,-0.00007888789,0.02024745,0.039191138,-0.03590565,0.027013984,-0.0044588717,-0.010032462,0.008624397,-0.01920444,-0.018604709,-0.0041264123,-0.02069073,-0.012555244,0.0016916334,-0.012209747,0.011831655,0.025319092,0.021720704,-0.019061025,-0.0123336045,0.002134913,-0.0024412975,0.031238178,0.013467879,0.015658202,0.035071243,0.024093553,0.036896512,-0.010123725,0.027248662,0.004960821,-0.022437774,0.01760081,0.010338847,-0.000010828623,0.00617984,-0.018383069,-0.000791629,0.0043121986,-0.006962098,-0.0052606864,0.01003898,0.0047815535,-0.04320673,-0.03866963,-0.013109344,-0.0071707005,-0.009374061,-0.006779571,-0.015201884,-0.0017959345,-0.029908339,-0.03400216,-0.03491479,-0.0018546039,-0.03376748,-0.011134142,0.0108082015,-0.010462704,-0.013291871,0.0005919902,0.005430176,-0.019999735,-0.018409144,0.025723258,-0.026570704,0.0043187174,0.009882529,0.038878232,0.00046283612,0.028604576,-0.018304842,0.030377693,0.004038408,0.003344154,-0.0087417355,-0.0041916003,-0.006280882,-0.013533067,-0.014458739,0.03647931,-0.0057398197,0.022476885,0.014445702,-0.00089959695,0.01611452,-0.013337502,-0.008226749,-0.03460189,-0.03707904,-0.005319356,0.018409144,0.00849402,0.010553967,-0.004905411,-0.03499302,0.006668751,-0.029230382,0.013031119,0.0047033275,0.023311295,-0.007620499,0.044380117,-0.014902019,0.003344154,0.002460854,-0.013963309,-0.0028340563,0.01688374,0.024954038,0.010997247,0.02205968,-0.0016256304,0.0430242,0.00198661,0.014432664,-0.0073467083,-0.042398397,-0.004660955,0.0018073424,-0.007516198,-0.029569361,-0.014628229,-0.01285511,0.016544761,0.0069034286,-0.019608606,0.0039373664,0.0050781597,-0.035227694,-0.009993349,-0.015384411,0.009185015,-0.007881251,0.0060429447,0.02024745,0.0051498665,0.0014105093,0.007653093,0.0020534277,0.0081811175,0.008415795,-0.0064927433,-0.015280111,0.0073141144,0.0075227167,0.008252825,-0.025997048,-0.028526349,0.0019083841,-0.0029334684,-0.027822318,-0.02179893,-0.003205629,0.004556654,0.017235756,0.0030882903,-0.0032724468,0.0023402558,-0.005948422,-0.0021609883,0.0044230185,-0.012229304,0.0011302001,-0.008839518,-0.013115862,-0.014706454,-0.010052018,-0.010873389,0.021472989,0.014145836,0.01782245,-0.02366331,0.0041590063,-0.0012556874,-0.024588984,0.024354305,-0.00019474971,-0.03444544,0.022633338,-0.013806857,0.0060885763,-0.0016981523,0.011903362,-0.012281454,0.00040111106,-0.009458805,-0.0097977845,0.0058897524,-0.019621644,0.03228119,0.0071772193,-0.010664787,0.00030312507,-0.0055866274,0.02195538,0.013246239,0.004054705,0.024367344,-0.023206994,0.004641399,0.0073662647,0.014458739,0.031003501,0.006505781,0.023076618,0.038382802,0.0020713545,-0.011740392,-0.0023321074,0.0017796374,0.00054798817,0.0018839386,0.005218314,0.0038298059,-0.012535688,0.01770511,-0.008200673,-0.021264385,-0.00303451,0.0048858547,-0.0054203975,-0.009237166,-0.01688374,0.009510956,0.012568282,0.0054823263,-0.017287906,-0.015462638,0.0059647188,-0.0027770167,-0.012418349,0.030038716,0.0062091746,-0.008037703,-0.024132665,0.010749532,-0.002553747,-0.013585218,-0.0067665335,-0.006909948,0.0019344594,0.009634813,-0.014132799,-0.027040059,0.0022375844,-0.024510758,0.03846103,0.007913846,-0.011205849,-0.023937102,0.014771643,-0.010840795,0.022763714,-0.017066266,-0.0039634416,0.012164115,-0.013989384,-0.010723457,-0.019673795,-0.02222917,0.022594225,-0.012255379,0.0039406256,-0.016857665,0.0030508072,-0.011225405,-0.01737917,0.008865593,0.0023141806,0.0004986896,-0.02422393,-0.009028563,0.009224128,-0.01169476,0.013924196,-0.027483338,-0.004612064,-0.02444557,0.0015824432,0.0037287641,0.0006148061,-0.018174466,-0.023897989,0.02145995,0.013252758,0.010990728,0.02477151,-0.01108851,0.008487502,0.003608166,-0.0049184486,0.026883608,-0.0022473626,-0.002803092,-0.024184817,-0.0011399784,-0.011355782,0.01263347,-0.00061684323,-0.015436562,0.0017144493,-0.0029774704,-0.011284075,-0.0022001013,0.0017291167,-0.0121315215,0.0061570243,0.0070598805,0.0178746,-0.022268284,0.021642478,0.0002957914,-0.008298456,0.014237099,0.020495165,-0.013467879,0.019765059,0.027352963,-0.0067600147,-0.014576078,0.0055279583,-0.0005109124,-0.003702689,-0.00073947845,-0.0003707578,-0.014628229,-0.01567124,0.022268284,0.021942344,-0.018956725,-0.008344088,0.0042176754,-0.012913779,-0.023989253,-0.0057235225,0.01820054,-0.0019507564,0.009478362,0.008415795,0.010241064,-0.009276278,0.009595701,0.025084414,-0.004882595,0.007112031,0.24364737,0.01065175,-0.034523662,0.041563988,-0.005384544,0.01891761,0.020808069,0.015358336,0.007301077,0.007151144,0.009067677,-0.027248662,-0.029334683,-0.0014691787,-0.013063712,-0.028343823,-0.027457263,-0.04172044,-0.0041231527,-0.03436721,0.022033606,0.0013053934,0.030116942,0.0018529742,0.033298124,0.015579976,0.0013208756,-0.007398859,0.022920165,0.005368247,-0.0044295373,-0.02239866,0.0014300658,0.0066720108,-0.017483471,-0.00833105,0.015384411,0.003950404,0.03238549,0.02168159,0.0038102495,-0.010743013,-0.0073923403,-0.004739181,0.011264519,0.01814839,-0.014158874,-0.013911159,-0.008396238,0.018343955,-0.021199198,-0.00004420574,0.018239655,0.012125002,0.0010527892,-0.02014315,0.014641266,-0.011994626,-0.006010351,-0.013924196,-0.008578765,0.03614033,-0.02400229,0.02202057,-0.004149228,-0.0009297465,-0.0074836034,-0.018617745,0.015514788,-0.015280111,-0.0072815204,-0.011062435,-0.010280177,-0.0012597616,-0.00805726,-0.014902019,0.005941903,0.03400216,0.029491134,0.022555113,-0.012626952,-0.011492677,-0.006199396,-0.024680248,-0.0009900456,-0.018461294,0.019047989,-0.027170436,0.011629572,0.010436628,-0.012815997,-0.008474464,-0.03439329,-0.0039308476,-0.006140727,-0.011205849,0.0015164402,0.0189828,-0.0087417355,-0.0074575283,0.014445702,0.0201953,0.03095135,-0.006085317,0.004116634,0.0063232537,0.011551347,0.019960621,0.00799859,-0.016805515,0.021394763,-0.034966942,0.00976519,-0.007972515,-0.021446913,-0.005153126,-0.0049249674,-0.01589288,-0.0028291673,0.00998683,-0.007359746,-0.023272183,0.0042339726,0.0070663993,-0.00490867,-0.021525139,-0.0028291673,0.012118484,-0.01705323,-0.022411698,-0.0076074614,0.0020224634,0.009582663,0.002433149,0.0005781377,0.022633338,0.0054497323,-0.012509612,-0.008800405,-0.011205849,-0.01732702,0.0060266475,0.0030198428,0.00049298565,0.01727487,-0.030481996,0.011042879,-0.013376616,0.0008596692,0.0052280924,0.014197987,0.007900808,-0.0047880723,0.0031974805,0.0084288325,0.027066134,0.015710352,-0.040912107,-0.003956923,-0.018083202,0.003001916,0.004061224,0.015097584,0.005951681,-0.026518553,0.005703966,-0.16782047,0.031055652,0.022033606,-0.019725945,-0.0075879046,0.011075472,0.014367476,0.015006321,-0.013168014,-0.015749466,-0.0005263946,-0.022437774,-0.006632898,-0.018409144,-0.016010217,-0.0075031603,-0.013089787,0.024354305,0.018474331,0.010417072,0.029178232,0.0165578,0.006163543,-0.020156186,-0.008370163,0.00667527,-0.018226616,0.0357492,-0.0073467083,-0.028030919,0.0019458673,0.00074070075,0.017483471,-0.022685489,0.02118616,-0.015136696,0.0017388948,-0.012920299,-0.004700068,0.008637435,0.01913925,0.014471777,0.008187636,0.012203229,-0.036453232,0.0056322594,0.009693483,0.020547315,0.01589288,-0.023650274,-0.021981455,-0.0356449,0.018578634,-0.013480917,-0.009510956,0.01804409,0.017261831,0.02245081,-0.016479572,-0.023480784,-0.014523928,-0.03139463,-0.0015082916,-0.028578501,-0.025123527,-0.005540996,-0.02217702,-0.0022359549,-0.03822635,0.0034354173,-0.009028563,-0.017392207,0.008930781,0.00043757568,-0.0074510095,0.008233268,-0.019738983,-0.00096071087,-0.007933402,0.011662167,-0.0012279825,0.04182474,-0.0099998675,0.027379038,-0.0074966415,0.02106882,0.018735085,0.022098795,-0.018735085,-0.025853634,-0.0048141475,-0.020338714,-0.027509414,-0.021772854,0.016127557,0.002178915,-0.008474464,0.014197987,0.010351884,-0.03624463,-0.028448123,-0.01241183,-0.03199436,0.01621882,0.01075605,-0.0073336707,0.02471936,0.013402691,0.022372585,-0.012170634,-0.010351884,0.007796507,0.011108067,-0.008096373,0.021603364,0.01737917,-0.011212368,-0.010104169,-0.012620432,0.0055866274,0.028161297,-0.014315326,-0.04276345,0.0032431122,-0.021942344,-0.01947823,-0.083023675,-0.01103636,0.007542273,-0.0007582201,0.0027395335,0.030873124,0.014967207,0.0028862068,-0.020169225,0.021811966,0.005071641,-0.029908339,-0.009908604,-0.02069073,0.013937234,-0.03681829,0.015905917,-0.024641134,0.01975202,0.029647587,0.037000813,-0.020677693,-0.014980245,-0.008070298,-0.0094392495,-0.023924064,-0.0213035,0.026753232,0.004491466,-0.007320633,-0.0035103837,-0.01671425,0.008761292,-0.027822318,-0.020886295,-0.016479572,-0.03767877,-0.021446913,0.0042665666,-0.023676349,0.0036733542,0.008819961,-0.0054464727,-0.03598388,-0.010201951,-0.012183672,-0.031863984,0.02074288,-0.008233268,-0.015827691,0.003956923,-0.013233202,-0.0034843085,-0.006525337,-0.006029907,-0.0059842756,0.011740392,0.015462638,-0.02046909,0.019295704,-0.011447045,-0.0033278568,-0.0019344594,0.022333473,0.0071772193,0.015149734,0.018070165,-0.000088666115,0.024875812,0.0061570243,-0.0011513863,0.02156425,-0.015345299,0.010736494,-0.020703768,-0.0030703635,-0.011440527,-0.005322615,-0.015214923,-0.0017307464,-0.010091131,-0.009204572,-0.0020990595,0.010625674,0.020482128,0.0037711365,-0.000091925525,0.011068954,-0.00943273,-0.03134248,-0.013520029,0.029569361,0.015931992,0.0017926751,-0.02178589,0.022424735,-0.0067730523,-0.00034081197,-0.006059242,0.017418284,-0.0052997996,-0.024693284,-0.04573603,0.013044156,0.0005899531,-0.00002309597,0.0127834035,0.01522796,-0.000645363,-0.03410646,0.011590459,0.025423393,0.005700707,0.0056746313,0.00016908186,0.018070165,-0.0046739927,-0.002454335,0.0032805954,-0.00092893164,0.0001619519,-0.017131455,-0.0030198428,-0.01715753,0.0002727718,0.012926817,0.009061158,0.016544761,-0.009895567,0.005925606,-0.023493823,-0.03444544,0.016179707,-0.025944898,0.0074510095,0.03272447,0.010338847,-0.0034777897,0.010377959,-0.0053356527,0.010840795,-0.011812099,-0.003943885,-0.014380514,0.0025341907,-0.0043284954,-0.0053095776,0.03199436,-0.01644046,-0.00518572,0.005312837,-0.00623525,0.0074184155,0.008187636,-0.0091915345,-0.01633616,-0.015462638,-0.048473936,-0.0067013456,-0.020560354,0.010091131,-0.032150812,0.04816103,0.015527826,0.0028210187,-0.0065090405,0.02024745,0.013285352,-0.0060266475,0.012985487,0.012314049,-0.027613714,0.025371242,0.016101481,0.009015526,0.0106713055,0.027796242,0.010175875,0.03822635,-0.010462704,-0.027900543,0.028734952,0.024615059,0.0032740766,-0.016297046,0.002775387,0.025201753,0.022659414,0.008656991,0.026518553,0.0042665666,-0.020104036,-0.020091,-0.0048467414,-0.0009615257,-0.00419486,0.023050543,-0.00041313012,-0.014171911,-0.011427489,-0.0046446584,0.022372585,0.010501817,0.011401414,-0.0017111899,0.0070272866,-0.013676481,0.013611293,-0.00024893737,-0.029073931,0.012437906,-0.02598401,-0.0023761094,0.021525139,0.006310216,0.004501244,0.012405312,-0.024628097,0.016805515,-0.035331998,-0.025853634,0.030690597,-0.0012239082,-0.009061158,-0.006909948,-0.023454709,0.017900676,0.013493954,0.0056974473,-0.007926883,0.0427113,0.007959478,0.013493954,-0.010162838,-0.02052124,-0.01760081,0.010254102,-0.011231924,-0.010123725,0.0097521525,0.011596978,0.051498666,0.023545973,0.00023610346,-0.005638778,-0.018461294,0.0029139118,0.030273393,-0.015345299,-0.010364922,-0.012151077,-0.008598322,0.004618583,0.00551818,-0.044275817,-0.004227454,-0.0032170368,-0.009947717,-0.008917743,-0.018943686,-0.01744436,0.005211795,0.022385623,0.015514788,-0.015527826,0.0044034617,-0.005954941,0.00573656,0.00010414831,-0.016622987,-0.024419494,-0.0017943048,0.020064924,-0.01230101,-0.011212368,-0.0011473121,0.009530513,0.008546171,-0.0073727835,-0.0023989251,0.00584738,0.013226682,-0.00038644372,-0.012815997,0.006909948,-0.021107934,0.0018692712,-0.015358336,0.00012406126,-0.03204651]},{\"id\":\"8149eaba-eda8-49fc-ab5b-1160bf1226cd\",\"text\":\"How can I link my videos with both tik tok and Instagram? Do I always have to choose one or the other and can I do both at once? \",\"vector\":[-0.016168527,-0.002420633,0.015041067,-0.034616757,-0.0078116907,0.006554139,-0.008678968,-0.014694156,0.01756856,0.0008146212,0.008610825,-0.006845296,-0.011931258,-0.009422349,0.0011793423,-0.013430409,0.018857088,0.004485063,0.02601832,-0.007774522,-0.017246429,0.0017500417,-0.0061205,-0.013120667,-0.005417386,0.017754406,0.022276638,-0.013901217,0.003918235,-0.00039259787,0.0018383182,-0.02029429,-0.016936688,-0.031891026,0.009050659,-0.034591977,0.005082865,-0.016044632,-0.004841266,-0.0034474274,-0.0015479352,0.008313472,-0.007192207,-0.010475472,-0.010506446,0.0051664948,-0.0062196176,-0.0054514576,-0.010983448,0.003673539,-0.012606496,-0.009255088,-0.04636217,-0.02300763,-0.0074709747,-0.011819751,-0.02564663,0.029958237,-0.015846396,-0.005079767,-0.007762132,0.009732091,-0.008431175,-0.003908943,-0.022896122,0.006882465,-0.018658852,0.02065359,0.011057786,0.01727121,0.017680068,0.006659451,0.010054222,0.012934822,0.009806429,-0.005054988,-0.009069243,-0.010543615,-0.0025383348,0.03897792,0.010233873,-0.028174125,0.012414455,0.030850293,0.0045036473,0.010302016,0.024246596,0.0107108755,-0.010624147,-0.012922432,0.0074028317,0.02792633,0.006839101,0.0009160617,-0.006074039,0.010401133,-0.008716137,0.016503049,-0.018002199,0.023404099,0.0052687097,-0.00726035,-0.011571958,-0.010394938,-0.008517902,-0.016354373,0.015239302,-0.009124996,0.025200602,0.0032491926,-0.0241227,0.013120667,-0.00000889903,-0.06046162,-0.021706713,0.0016726063,0.002468643,-0.026637804,-0.028818388,-0.005476237,0.030404266,-0.0052315407,0.013851658,-0.014830442,0.016044632,0.011355138,-0.011894089,0.0022998336,-0.002005579,-0.0071426486,0.02336693,-0.0035496422,-0.0067957374,0.02105006,-0.0127241975,0.02527494,-0.013603864,-0.0008889593,-0.01684996,-0.0010229227,0.017295988,0.0023493923,-0.015536654,0.0017051292,-0.021235906,0.019005762,-0.014223348,-0.0153879775,0.02105006,0.0128604835,0.017444665,0.006671841,0.0072851297,-0.0029735223,-0.012971991,0.017655289,0.02948743,0.0017639801,-0.009688727,-0.0047731227,-0.0064550214,0.016118968,-0.016242865,0.004739051,0.021917338,0.018398669,0.002501166,-0.028620152,-0.002442315,0.0027117904,0.0061235973,0.022933291,-0.03825932,0.018262383,-0.00049752294,0.020876605,0.004912507,-0.013455189,0.0054514576,-0.015140184,-0.0014015822,-0.003033922,-0.00017384265,0.032733526,-0.032708745,-0.0141242305,0.008685163,0.011825946,0.011968427,-0.007179817,-0.008889592,-0.0036766364,0.0048939222,-0.005491724,-0.6517961,0.0020040302,0.027158171,-0.011671075,0.019278336,0.036574323,-0.0053740223,0.025894424,-0.022710277,0.010692291,-0.010809992,-0.0058974857,0.00898871,-0.0026111242,0.0023664283,-0.0183615,0.03417073,-0.033006098,-0.013752541,-0.0054018986,-0.02487847,-0.0057178354,0.003071091,-0.0060926233,-0.01110115,0.0022270442,0.023850126,-0.012575521,-0.012278169,0.051887963,-0.028545814,0.028768828,0.022127962,-0.0073966365,0.0405638,-0.01717209,-0.019662416,0.030404266,0.011082565,0.014074672,-0.05347384,-0.015734889,0.003385479,0.0032646796,0.014830442,-0.0061297924,0.010506446,-0.00065975025,0.021136787,-0.0019281433,-0.005330658,-0.010816188,0.008505513,-0.009224114,-0.0016633141,-0.011553373,0.023391709,0.0059315576,0.0034938888,0.0020396505,-0.024444832,0.019674806,-0.027257288,-0.009087827,-0.020579252,0.014136621,-0.005380217,0.011863115,0.009069243,0.0019358869,0.014756104,-0.010543615,-0.013356071,0.0032213158,-0.016527828,0.037218586,0.031048529,0.008431175,0.0016865446,-0.014954339,-0.010091391,0.0056404,0.0076258457,-0.0023757203,0.026117437,0.018175654,-0.028446697,0.0032460953,0.01263747,-0.0013527977,0.025374057,0.022759834,0.0016075604,-0.033030875,-0.010023248,0.027158171,-0.0085922405,-0.02225186,-0.00017258432,0.012222416,0.0007844214,-0.010735654,-0.010791408,0.00726035,0.034963667,-0.0016044631,-0.010952474,0.018621683,-0.0027582517,-0.013492357,-0.009329426,-0.023441268,0.017283598,0.008375421,0.0037943383,-0.0202819,0.020950943,0.0011522399,0.025497954,0.0024268278,0.021942116,-0.009199334,-0.0002927061,0.004770025,0.021904947,0.03664866,-0.006814322,-0.010370159,0.005240833,0.0041288594,-0.007012557,-0.016986245,0.02795111,-0.0019699584,-0.04831974,0.027356405,-0.00023404873,0.0061607664,-0.002874405,-0.030676838,0.007824081,-0.010636537,0.018349111,0.000036031695,-0.011949843,-0.014681767,-0.032758303,0.0015370942,-0.009137386,-0.010772823,0.011714439,-0.022127962,-0.016726064,0.012358702,-0.0050085266,0.0068762703,-0.02752986,-0.0134427985,-0.015003898,-0.0051014493,0.015103015,0.019848261,-0.016527828,-0.018609293,-0.012507378,-0.02300763,0.0011344297,-0.013554306,-0.007086895,-0.007972756,-0.01796503,-0.010178119,-0.021669544,-0.0016973857,0.013987944,0.007737353,0.006303248,0.008239135,0.018473007,-0.01761812,-0.00038930686,-0.002970425,-0.010079002,0.018980984,0.01185692,-0.008418785,-0.0049992343,0.010562199,-0.034319405,0.021731492,0.018398669,0.01569772,0.00003917751,0.005411191,-0.001322598,0.012352508,0.0022378853,0.006297053,-0.00668423,-0.0027148877,0.03023081,-0.02225186,-0.0027195339,-0.02485369,-0.0011150709,-0.011262216,0.005197469,-0.0043952377,0.01610658,0.01492956,0.013888827,-0.021273075,-0.005875804,-0.009775454,0.029413091,0.008294888,0.0018723898,0.00037904666,-0.018448228,0.018919036,0.00036801212,-0.018807529,-0.0075886766,-0.015226912,0.005278002,0.031197205,0.007074505,0.030726397,0.007985147,-0.03402205,-0.0111197345,0.006969193,0.0072789346,0.015511875,0.020219952,0.019402234,-0.0141614,-0.0037230977,0.03560793,-0.0141614,-0.0062258122,0.01531364,0.02406075,0.010723265,0.030825514,0.014941949,0.042843502,0.0056373025,-0.012154273,-0.030453824,-0.0050209165,-0.009211725,-0.022784615,-0.018708412,0.0082515245,-0.03099897,-0.0077869114,0.01034538,0.0063249297,0.010735654,-0.011943648,-0.0058789016,-0.016998636,0.013356071,-0.0046027647,0.012160467,0.00035349294,-0.0210005,0.003630175,-0.023515606,-0.010407328,-0.0078116907,0.03434418,-0.008678968,0.004457186,-0.00041815158,-0.006473606,-0.0062474944,0.0076320404,0.02874405,0.00310826,-0.035880502,0.01727121,-0.0027985182,-0.005912973,-0.025770526,-0.01567294,0.011441866,0.014260517,0.027455522,0.021012891,0.009434738,0.03025559,0.0071488433,0.0012227062,0.020975722,0.033154774,-0.00896393,0.039944317,-0.010971058,0.018398669,0.010741849,-0.003177952,-0.01987304,0.025051925,0.0041877106,-0.012278169,-0.01530125,-0.011175488,-0.03283264,0.024184648,-0.019439401,-0.018175654,-0.016317204,0.014210959,0.011218851,-0.0145702595,-0.005795271,0.007415221,0.0032770694,-0.029908678,-0.0000462435,-0.03134588,0.008344447,0.08989949,0.0043580686,0.0038005332,0.031122867,-0.045767464,-0.006777153,0.0023695256,-0.036103517,-0.0061390847,-0.009248894,-0.001215737,-0.0064302417,-0.027975889,-0.0055443803,0.013492357,-0.0020551377,0.012798536,-0.011745413,-0.025398836,-0.025014756,-0.00091528735,-0.017444665,0.011627711,0.026092658,0.018497787,0.008586045,0.0016013656,0.019687196,-0.011757803,-0.0068762703,0.0060120905,0.016490659,0.0046213493,0.0071612326,-0.008573656,-0.0041226647,0.001759334,0.040043432,0.016589776,0.027059052,-0.0042093927,0.012265779,0.0058665117,-0.012420651,0.019910209,-0.008170991,-0.015871175,0.011602932,0.006343514,-0.004494355,0.009230309,0.019315505,-0.016626945,-0.015945513,0.018696021,-0.017791575,-0.011510009,-0.020913774,-0.01683757,-0.04430548,-0.011367528,-0.00994891,0.020133223,0.0008641799,0.017940251,-0.024271376,-0.015412757,-0.011336554,-0.012377286,-0.0032399003,-0.01766768,-0.0038841635,-0.041480634,-0.015437537,-0.0025414324,0.022289028,0.018138487,0.014743715,-0.012154273,-0.0021449628,0.0027226314,-0.025572293,-0.019303115,-0.038556673,-0.017593341,0.0058696093,-0.020504914,0.02331737,-0.008939152,0.008462149,0.013678202,0.0206412,0.03632653,-0.021384582,0.015053457,0.02181822,0.004708077,0.009236503,-0.0018383182,-0.033055656,-0.008239135,-0.020789877,-0.028124565,-0.023614723,-0.013740151,0.00019300793,0.0117020495,0.029710444,-0.015251691,-0.0056373025,0.012550742,-0.0019358869,0.0071302587,0.020864215,0.03783807,0.050748114,-0.005005429,0.0012265779,-0.0043859454,0.019067712,-0.007855055,-0.032361835,-0.0015843299,0.02185539,-0.030751176,0.016267644,-0.008164797,-0.026935156,-0.015288861,0.013938386,-0.009069243,0.012699418,-0.016218087,-0.011807362,-0.038383216,0.014471142,-0.0007089218,0.006142182,-0.007861249,-0.0054421653,0.0026684266,-0.012674639,-0.0124516245,-0.036450427,-0.008883398,-0.03486455,-0.009930326,0.030899853,-0.001918851,0.03860623,0.021979285,0.03137066,-0.027728096,-0.01052503,-0.0005981891,-0.01492956,-0.010556004,-0.0019699584,0.031990144,0.020950943,0.014991508,-0.017283598,0.004302315,-0.004181516,0.0058076605,-0.0061669615,-0.009310842,0.009502881,-0.012129493,0.018634073,0.021954507,0.024320934,0.002298285,0.04014255,0.010940084,0.01917922,-0.02409792,0.0052439305,-0.010958669,-0.033006098,-0.0064798007,0.02370145,0.004156736,0.0017314573,-0.011479035,0.0065727234,-0.017878303,0.001700483,0.008530292,0.005693056,0.0017422982,-0.015722498,0.026290894,0.0003577519,0.01532603,-0.016403932,-0.023986414,-0.02948743,0.0049403836,0.005411191,0.0044076275,0.0034629146,0.0018088927,-0.0031221984,-0.0103329895,0.022264248,-0.021335023,-0.02562185,0.012872874,-0.0077497424,-0.017295988,-0.0398452,0.013356071,0.010853357,0.023453657,0.013752541,-0.022127962,-0.001700483,0.009075438,-0.012278169,-0.01878275,-0.017085364,0.015784448,0.024444832,0.014830442,0.029760003,0.033105213,0.007960367,0.017345546,0.01568533,0.005404996,0.011510009,0.028867945,0.005615621,-0.014780884,0.009106412,-0.028372359,-0.023788178,-0.009546245,0.017890692,0.030453824,-0.023949245,-0.00883384,-0.010760434,0.0017934056,0.026166996,-0.017655289,0.016626945,-0.009979884,-0.026885597,-0.010617953,0.010159534,0.008282498,0.015635772,0.028223682,0.0028713075,-0.010655122,-0.008802865,0.013641033,0.014508311,0.01681279,0.024382884,-0.0020752707,0.008325863,0.028496256,0.0036518571,-0.018398669,-0.005785979,0.0022595671,0.021421751,-0.017828744,0.0015905247,0.000578443,0.0032863617,-0.010977253,-0.013219785,0.0050611827,-0.031544115,-0.009087827,-0.014867611,0.03952307,0.0101967035,0.0026963032,-0.0149791185,0.015127795,0.015437537,0.0050580855,-0.016242865,0.0066780355,-0.040043432,-0.013467578,-0.011962232,0.015610992,-0.012333923,-0.011825946,0.031915806,-0.0048660454,0.017444665,-0.019711975,-0.0032337054,0.005181982,-0.006386878,-0.002383464,0.015127795,0.0064859954,-0.050723333,0.008059484,0.0149791185,-0.008654189,-0.02294568,0.011231242,0.00043441303,0.0004297669,0.003850092,-0.02257399,-0.009837403,-0.001479792,-0.027405964,-0.023862517,0.01568533,0.010221483,0.021743882,0.013083498,-0.009713506,0.014037503,-0.023874907,0.034121167,-0.013380851,0.0042093927,-0.040762033,-0.018101318,-0.004206295,-0.0050766696,-0.010370159,0.009025879,-0.002143414,-0.010432107,-0.005538185,-0.028917504,-0.022412924,-0.0017515905,0.030404266,0.04254615,0.0040328396,-0.010227677,-0.0077125733,-0.007762132,-0.028273242,-0.017147312,-0.0039801835,-0.016341982,0.022016454,0.01569772,-0.025212992,-0.022004064,-0.01090911,-0.02909096,-0.033204332,0.0047731227,-0.011373723,0.00012070255,-0.0036580518,-0.015598603,0.04893922,-0.0076815994,0.020046497,-0.013678202,0.001866195,-0.013405629,-0.013504747,0.0058510248,-0.007663015,-0.036128297,-0.0025135556,0.009750675,0.0066284765,0.022301417,0.012872874,-0.032089263,0.009632973,0.004506745,0.020703148,0.018547345,-0.013318902,0.013913606,-0.0076382356,-0.016143749,0.019228777,0.010655122,-0.007167428,-0.0030246298,-0.020975722,0.008220551,0.033947714,0.013492357,-0.0062351045,-0.009781649,0.016986245,0.014508311,0.008332057,0.007012557,-0.0013690592,0.011138319,-0.030800736,0.0042558536,0.015090626,-0.011373723,-0.015425147,0.019972159,-0.010630342,0.0062722736,-0.016044632,0.012581716,-0.008573656,-0.019711975,0.010964863,-0.014793273,-0.0110515915,0.016490659,0.006061649,0.0031841467,-0.010475472,-0.009434738,-0.024717404,-0.022487262,-0.016403932,0.015239302,0.00032445465,0.039101817,0.020145614,0.012798536,-0.0077063786,-0.01302155,0.025597071,0.00083940057,-0.0073532728,0.24660411,-0.0075143385,-0.016007463,0.035781384,0.010686096,-0.0055165035,0.0099922735,0.020009328,0.010085196,-0.000359107,-0.041802768,-0.0010809993,0.005578452,-0.011410892,-0.0072913244,-0.023094356,-0.02149609,-0.018262383,-0.014954339,-0.015078236,-0.0072107916,0.0020303582,-0.0011096504,-0.023800569,0.019166829,0.00029328687,-0.0065603335,0.009942715,-0.008499318,0.003747877,-0.0123153385,0.003295654,0.014421583,0.004878435,-0.007241766,-0.011609127,0.007012557,-0.033947714,0.0306025,0.015202133,-0.0009501333,0.003369992,-0.0041350545,-0.0041350545,0.020219952,-0.013133056,-0.021099618,0.00094471284,-0.009224114,0.014458752,-0.0059966035,-0.0057766866,0.009651558,0.019340284,-0.022239469,-0.010506446,0.003689026,-0.011311774,-0.014756104,0.03142022,0.01569772,0.04849319,0.006436437,0.022759834,-0.0017639801,-0.011763997,-0.012352508,-0.0015463865,0.003342115,-0.017159702,0.010964863,-0.023280201,-0.003236803,0.0076444303,-0.0036704417,-0.032634407,0.02185539,0.0024639969,0.022809394,0.04021689,0.004299218,-0.0039677937,0.0025693092,-0.011838336,-0.015586212,-0.0065231645,0.024890859,-0.034988444,-0.0036332726,-0.016391542,-0.008635605,0.0010918402,-0.018919036,-0.018634073,-0.0024732891,-0.0051324232,-0.0068762703,0.0005989634,0.0041071777,-0.0056744716,-0.014954339,0.04477629,0.02834758,-0.0015967195,0.0012970442,0.0142976865,-0.015846396,-0.014632207,0.030949412,-0.013752541,0.023936855,-0.023044799,0.01947657,-0.010227677,-0.0092055295,0.017134922,0.019414622,-0.030280368,-0.0047762203,0.0069072447,-0.020306678,-0.02869449,-0.012550742,-0.0022425314,0.009868377,-0.009236503,-0.012470209,0.014681767,-0.007037336,-0.025002366,-0.0037881434,0.019340284,0.015610992,0.0097878445,-0.018088927,-0.0016184015,0.036475208,-0.06447587,0.014372025,0.016998636,-0.016267644,0.0017035805,0.009242699,0.0035124733,0.020108445,-0.042298354,-0.0012645214,-0.020665979,-0.000054350025,-0.011633906,0.013541916,0.03365036,0.0019823483,-0.0069815824,0.017940251,-0.0016060118,0.00050139474,-0.01917922,-0.0086603835,-0.016441101,0.010048027,-0.01569772,0.012984381,-0.009366595,-0.024147479,-0.014458752,-0.15323551,0.015363199,0.03293176,0.020133223,-0.004924896,-0.0055939388,0.014818053,-0.015623381,-0.010599368,-0.0054142885,0.0048536556,-0.00650458,-0.022982849,-0.013467578,0.014186179,-0.017494222,0.026637804,-0.0067028147,0.028000668,-0.00037130312,0.025919203,-0.0056744716,0.010370159,-0.016589776,0.0062505915,-0.004574888,-0.028099786,0.010549809,0.0001283493,-0.004729759,-0.010723265,0.02522538,0.013876437,-0.006777153,0.0044076275,-0.008195771,0.022264248,-0.004481965,0.0059842137,0.01089672,0.0019265946,0.013727761,-0.008455954,0.030775955,0.019464182,0.013690592,0.00047738972,-0.0034288429,0.008115238,-0.009911741,0.023466047,-0.018051758,0.0038036306,0.011386112,-0.008226745,0.0022316903,-0.0042403666,0.025720967,-0.013318902,-0.013467578,0.009688727,-0.01339324,-0.002617319,-0.030949412,-0.033922933,0.00937279,-0.01720926,-0.000008784087,-0.015003898,0.014917171,-0.0050364034,0.01490478,0.015499485,0.016651725,0.00031245215,-0.00080920075,-0.022127962,0.0015665197,0.010977253,0.030305147,-0.00067330146,0.033799037,-0.018237604,0.01610658,-0.0051014493,0.0018305747,0.00994891,0.0067585683,-0.01490478,-0.018237604,0.013702982,0.015759667,-0.023020018,-0.011175488,-0.011063981,0.0127241975,0.029784782,-0.0014658535,0.021508478,-0.01911727,0.0027474107,0.0044355043,0.012848094,0.0412824,0.028843166,-0.0011444964,-0.0025151044,0.009849792,0.024246596,-0.0064116577,-0.025919203,0.004977552,0.013554306,0.0060058953,0.008270109,0.007124064,0.00746478,-0.005742615,0.00878428,0.004835071,0.029338753,-0.0073408834,-0.004094788,0.014966729,-0.025547512,-0.042001,-0.096243,-0.016924297,0.01245782,-0.0020350043,0.0011777936,0.024209427,0.0019482765,-0.0041722236,0.032659188,0.035013225,-0.021235906,-0.025349278,0.00042163616,0.004237269,0.014941949,-0.013343682,-0.004141249,-0.023193473,-0.00310826,0.019166829,0.0024128894,-0.012631275,0.002970425,-0.03290698,-0.023837738,-0.022933291,-0.018807529,0.0058293426,0.010611758,-0.0003147752,-0.021558037,-0.009806429,-0.01645349,-0.032337055,-0.010085196,0.014681767,-0.02218991,-0.032039702,0.0007650625,-0.03677256,-0.007855055,-0.012848094,0.009471907,-0.03176713,-0.011348943,-0.012507378,0.0014031308,-0.0010933889,-0.00091528735,-0.013987944,-0.0039058453,-0.004509842,-0.021929726,-0.019018153,0.01950135,-0.0023044797,0.001156886,0.0127241975,0.0051943716,0.029363533,-0.024593508,-0.0025522732,-0.023862517,-0.0015781351,0.0124516245,-0.026811259,-0.0009903997,0.00650458,0.01336846,0.0060523567,-0.024432441,0.009224114,-0.009645363,0.023738619,-0.037218586,0.00079913414,-0.02218991,-0.0018630975,0.01454548,-0.004249659,-0.00591607,-0.012835705,0.0062629813,0.0018600002,0.0016524731,-0.023614723,-0.014842832,0.010983448,-0.021595206,-0.030899853,-0.018064149,0.010475472,0.0099241305,0.009143581,-0.00075267284,0.020467745,-0.0018042466,-0.00041118238,0.014260517,0.031841468,0.0017035805,0.005327561,-0.0475268,0.013975555,0.025770526,0.0060058953,-0.00034110327,0.015945513,0.012271974,-0.044107247,0.007972756,0.010506446,-0.0058138557,0.0049187015,-0.0099241305,0.006851491,0.010698485,-0.005801466,0.0041784183,-0.0053337556,0.013331291,0.005404996,-0.033204332,0.00031806622,0.0014170692,0.02482891,-0.0059904084,0.017357936,0.00015099919,0.010295821,-0.01571011,-0.019588077,0.04485063,-0.015635772,0.00458418,0.03139544,-0.008276303,-0.032634407,0.01874558,0.043487765,-0.015772058,0.01245782,0.008387811,-0.017147312,0.02980956,-0.021929726,0.013207395,0.006061649,-0.018212823,-0.0070249466,0.0222023,-0.015871175,0.035781384,0.0013706079,-0.02673692,-0.0040700086,0.013925996,-0.033427346,0.030329928,-0.020343848,0.037317704,-0.036128297,0.022090793,-0.002228593,0.003949209,-0.009608194,0.036276974,0.0064116577,-0.022326197,0.0067461785,0.002937902,-0.024358103,-0.01261269,0.01687474,-0.0062722736,0.006659451,0.009577219,0.03283264,0.019724365,0.023627112,-0.013219785,0.0018011492,0.006739984,0.008858618,-0.030280368,0.021570425,0.00919314,0.03367514,-0.0048505585,0.03434418,-0.022623548,-0.010661316,-0.022747446,0.010376354,-0.027306847,0.0019358869,0.01909249,0.0037974357,-0.009862183,0.0128604835,-0.016726064,0.0071426486,0.009657753,-0.0032213158,-0.00046190261,-0.016936688,-0.004051424,0.03513712,-0.019996937,-0.021582816,-0.00093774364,0.017110143,-0.018980984,-0.007241766,-0.002398951,-0.012606496,-0.006659451,-0.015487095,0.005773589,-0.022685498,-0.019687196,0.06868836,0.00883384,0.013269343,0.01838628,-0.008858618,0.018968595,0.017395105,-0.013641033,-0.013913606,0.0306025,0.010066612,0.027876772,0.008369226,0.0016385347,-0.0074833645,0.005903681,-0.03137066,-0.00650458,0.019811092,0.0042682434,0.06903528,0.010066612,-0.029512208,-0.0042930227,-0.016267644,0.041480634,0.024308546,-0.0031423317,-0.044355042,0.007737353,-0.012587911,0.023404099,-0.00052965863,-0.009471907,-0.0042031975,0.010469276,-0.011491424,-0.0048598503,-0.00901349,-0.017048195,0.025745748,-0.024172258,0.018460618,0.0103329895,-0.0056373025,0.0058727064,0.034914106,-0.0031268445,-0.02829802,-0.027034273,0.008059484,-0.0043363865,-0.02564663,-0.012959601,0.013083498,0.0058696093,-0.013207395,0.019996937,0.023131525,0.013356071,0.010122365,-0.028248461,-0.024197038,-0.0087285265,-0.01683757,0.00546075,-0.015003898,0.00373239,-0.036549546]},{\"id\":\"e2f89401-f015-489a-ae84-067b12834941\",\"text\":\"Responding as soon as possible. \",\"vector\":[-0.038595513,-0.019153254,-0.009084002,-0.015317349,-0.003412248,0.021859406,-0.012217096,-0.005248097,0.0015090741,-0.0048934068,0.01948167,0.018864248,0.01337969,-0.020296143,-0.009084002,-0.02971513,0.022411145,0.00027710147,0.021636084,0.0009179243,-0.006857338,-0.015501262,0.013846043,-0.0063975547,-0.0034253846,-0.02675938,-0.0059049297,-0.018509557,-0.0019195948,-0.025734723,0.0053499057,-0.000036408055,-0.013281166,0.003133094,-0.002377736,-0.0045584217,0.0070872293,-0.027534444,0.015553809,-0.015619491,0.025248665,-0.0038359053,0.027560718,-0.010443646,-0.0056684697,0.028270097,0.000034612025,-0.019718131,-0.006282609,0.009359872,0.022542512,0.00045526747,-0.033682402,-0.008551967,0.010292575,0.00039307357,0.004298973,0.014673652,-0.020046547,-0.00515614,0.00032800605,-0.0026815212,-0.016355144,0.012854224,-0.0004203732,-0.0013875599,-0.0017997228,0.021071207,-0.016880611,0.009143117,0.018509557,0.0063811336,0.016604742,-0.0070543876,0.038280234,-0.007159481,-0.0002360494,0.014384645,-0.0050280574,0.018312508,0.0076586744,-0.015317349,-0.018273097,0.0047948817,0.018076047,0.0013629288,0.02003341,0.01058815,-0.013162936,-0.014568559,-0.0066372985,0.026457239,0.0021462021,0.015356759,0.0006695593,0.008400896,0.015658902,0.018837973,-0.013064411,-0.026575468,0.016144957,0.024394782,-0.025077889,0.004180743,-0.0011937942,-0.0038523262,0.013025001,-0.030608423,0.008965773,-0.008092184,-0.014686788,0.013143231,-0.012223665,-0.019704994,0.027797177,0.022608196,0.012972455,-0.018746017,-0.017327258,-0.020296143,0.020335553,0.017327258,0.016657287,-0.012072593,0.002596133,-0.01192809,-0.033551037,0.00547142,-0.011212141,0.005934487,-0.014910112,0.015107161,0.009070866,-0.00008205282,-0.011133322,0.0067982227,-0.028795565,0.02616823,-0.013143231,-0.0147393355,0.024079502,0.022962887,-0.003351491,0.009556922,-0.0195999,0.016026728,0.016696697,-0.021360213,-0.0016568615,-0.0036552763,0.018259961,-0.008722744,0.018903658,-0.016223779,0.0008670197,0.0034779315,0.013504489,0.0068179276,-0.0027931829,-0.011409191,0.01149458,0.0077046524,0.027035251,0.020335553,0.017300984,0.024657516,0.022884065,0.0030050115,-0.0061972206,-0.0137934955,-0.027376805,0.023251893,-0.014135049,0.003110105,0.0121908225,0.012676879,0.028322645,-0.0034352373,0.01019405,-0.02908457,-0.021123754,-0.014529149,0.019783814,0.043245893,-0.009819655,-0.02200391,0.037097935,0.0091496855,0.021636084,-0.008157867,0.014424056,0.009635742,0.010042978,-0.017892133,-0.6965584,-0.043009434,0.015291075,0.002561649,-0.005527251,0.013846043,0.014555422,0.011619378,-0.019862633,0.02495966,-0.019980863,-0.00044459393,-0.007954249,-0.008006795,0.0045518535,-0.013543899,-0.004065797,0.023002297,-0.0046963566,-0.030214323,-0.027035251,0.0062596197,-0.024132049,0.007960818,0.015383032,-0.0022463694,0.03515371,-0.0007890208,-0.021622946,0.030240597,-0.014529149,0.023514627,0.014765608,-0.0001023736,0.055646904,0.0066340147,-0.013504489,0.021911953,0.010108662,0.04991932,-0.039436262,0.0056027863,0.014713062,-0.007770336,-0.026614878,0.0007795788,-0.0005829394,-0.010542172,-0.0011790155,-0.019310893,0.018010365,0.0061807996,-0.011619378,-0.00987877,0.005317064,-0.002891708,0.028007364,-0.011566832,-0.020834746,0.004243142,-0.0026289746,-0.013898589,-0.010923135,-0.025104161,-0.050287142,0.0023711675,-0.0028506557,0.0031248836,0.020716516,-0.007461624,0.004716062,0.024736336,-0.0020542457,0.0038720313,-0.0005595397,0.01220396,0.013517626,0.0005078141,-0.0055371034,0.0115536945,0.0054418626,-0.02105807,-0.017090797,-0.0038818838,0.010857452,-0.009110276,0.001031228,-0.005192266,0.009813087,0.017458625,0.013491352,0.010778631,0.0017718073,-0.027797177,0.0003380638,0.029478671,-0.0062234937,-0.0027274995,0.020519467,-0.002361315,0.0029229075,-0.020414373,-0.006739108,-0.0026224062,0.0028227402,-0.007836019,-0.014516012,0.012821383,0.009819655,-0.008387759,0.007941113,-0.011205573,-0.020677106,-0.014870702,0.009215369,-0.026155096,0.0032151982,0.02813873,0.015002068,0.0006974747,-0.004742335,-0.0016396197,0.013609583,0.0067522447,0.0097868135,0.008545399,0.0031971352,-0.005569945,-0.025288075,-0.006469806,0.00021654967,-0.012368168,0.03286793,-0.026404692,-0.00027320153,0.001390023,0.03596818,-0.0074878978,0.011908384,-0.018627787,-0.01908757,-0.0017964386,0.004381077,-0.0000071071395,0.002638827,-0.008006795,-0.0027209313,0.027166618,-0.020453783,-0.0005295717,-0.02774463,-0.012565218,-0.0052448125,0.007770336,0.028322645,-0.009819655,-0.0053630425,-0.030949976,0.006325303,-0.024526149,0.022713289,0.0117179025,-0.007612696,-0.006269472,0.008952635,-0.026273325,-0.017800178,0.01129753,-0.01692002,-0.026746245,-0.009931317,-0.019586764,0.0021462021,0.0077243573,-0.004141333,-0.0013760654,-0.031974636,-0.008762154,-0.005133151,-0.0030115799,0.002558365,0.002913055,-0.002957391,0.0036355713,0.018588377,0.006624162,-0.0015197477,0.036073275,-0.01837819,0.01747176,-0.0014745904,0.0052086865,-0.008670197,0.006538774,0.0055995025,0.013924862,-0.0031807143,0.011934658,-0.0096226055,0.021662356,0.006069138,-0.0039015887,0.018785426,-0.010765495,-0.012473261,-0.01983636,0.013701539,-0.028033638,0.02668056,0.006519069,0.0016429039,-0.018746017,0.003931146,-0.028874384,0.009307325,0.016867474,-0.028900657,0.0011272898,-0.018522695,0.011093912,0.0066143097,-0.014949522,0.025669038,-0.010207186,-0.019061297,0.020125367,-0.0038556105,0.051548265,-0.00072169537,0.012118571,-0.0235409,-0.016591605,0.00448617,0.024394782,0.0010566803,0.007179186,0.018351918,-0.007100366,0.02385618,0.010496194,-0.0126637425,-0.0007364741,0.023317575,0.007947681,-0.02306798,0.017721357,0.03864806,0.0028194562,-0.00826296,0.0031610094,-0.0008473147,0.0007290848,-0.004716062,-0.000218397,0.0021790438,0.00070322194,0.009865633,0.006988704,0.021123754,0.0391998,-0.0049623745,0.008794996,0.017458625,0.002991875,0.0046963566,-0.003095326,0.0036322873,-0.0072514378,0.009215369,-0.007691516,-0.005954192,-0.016631015,0.018102322,-0.025064752,0.015120299,-0.009609468,-0.006758813,-0.012341894,0.0048277234,0.003016506,0.0032677448,-0.0069230213,0.002558365,0.0068704747,-0.008768722,-0.027140345,0.0023563888,0.02932103,-0.008125026,0.008092184,0.012959317,0.008860678,0.026549194,0.011107048,0.0046273894,-0.00056816067,0.049288757,-0.0038162004,-0.008315507,-0.0078754295,-0.006151242,0.014673652,-0.026470374,-0.01889052,0.010410805,0.03255265,-0.0016502932,-0.032421283,-0.016289461,-0.030319417,0.011350077,0.00010427226,-0.014476602,-0.0016166305,-0.010049547,0.01928462,-0.009826223,-0.014397782,0.022726426,-0.012309053,0.004397498,-0.034812156,-0.0042562787,-0.0052448125,0.092166826,0.006857338,0.015054615,-0.0012414146,-0.016828064,0.0037997796,0.0003758317,-0.015383032,0.026877612,-0.022345463,-0.0060560014,-0.007159481,0.005103593,0.017314121,0.022332326,0.0058228257,0.0054451465,-0.020611424,0.0054878406,-0.025419442,-0.0042891204,-0.0057045957,0.03194836,0.017117072,-0.0015509472,-0.002596133,0.015199118,-0.00033539542,0.017681947,-0.014292689,0.009537217,0.0031018944,-0.013366554,0.022897203,-0.0044106343,0.022621334,-0.00096554466,0.00042365736,0.01177045,-0.00017046872,0.012998727,0.02204332,-0.0007762946,-0.0043285303,0.020085957,0.0001486085,-0.008065911,0.016381418,-0.006065854,-0.013964272,0.036047,-0.0009359872,-0.024171459,0.009458397,0.0036815496,0.02543258,-0.010016705,-0.021898815,-0.00066914875,-0.004236574,-0.022673879,0.018102322,-0.015461852,-0.014752472,-0.012302484,-0.028795565,-0.020913567,-0.00041667852,-0.0071332077,-0.0100232735,-0.0053564743,-0.023987545,-0.0070084096,0.025130436,0.0044730334,0.003980409,0.0065683313,-0.006725971,0.0047718924,0.028191278,-0.0030559162,-0.0423526,0.008952635,-0.00916939,0.0098590655,0.0009581553,0.001069817,-0.01940285,-0.014397782,0.037308123,0.012867361,0.004916396,0.025721585,-0.015580081,-0.011074207,0.01904816,0.0039771246,0.028454011,-0.01597418,-0.009464965,-0.0019869201,-0.018903658,0.011980636,0.00020751821,-0.00033847432,0.01070638,0.003550183,0.022765836,-0.0073696678,-0.0069361576,-0.006883611,-0.024158321,0.020598287,-0.020769063,0.008243255,0.029899044,0.016696697,0.021241983,-0.0055371034,0.010542172,0.0046536624,-0.030214323,0.01861465,-0.0014918322,-0.007363099,0.0060789906,0.002614196,-0.03397141,0.004187311,-0.0016297672,0.004298973,0.0040920703,0.0127359945,-0.02829637,-0.017117072,0.013754086,0.0049131117,0.012230232,-0.018548967,-0.014082503,-0.008821269,-0.019507945,-0.016591605,-0.014581695,0.004555138,-0.018246824,-0.023790495,0.0022036752,-0.00562906,0.017235301,-0.009294189,0.014818155,0.008860678,0.0131563675,-0.0062300623,-0.04605714,-0.003730812,0.01050933,0.03089743,0.004502591,0.006170947,-0.0008982193,0.0077637676,0.009602901,0.008959204,0.011093912,-0.0088409735,-0.025708448,0.015080889,0.009727699,0.02105807,0.013885452,0.0184176,0.016696697,-0.0043153935,0.012289348,-0.0007044535,0.0037012547,-0.0063614286,-0.018220551,-0.009845928,-0.00097047095,-0.012118571,0.00018750533,0.0007155376,-0.020296143,0.007455056,-0.003016506,0.038674336,0.0029672435,0.02227978,0.0010008494,0.012466692,-0.01192809,0.013208915,-0.002395799,-0.00015250844,-0.010791768,0.00655191,-0.005054331,0.0058589512,-0.0050674677,-0.0020066253,0.016880611,-0.014542285,0.010726085,-0.010726085,-0.028243825,-0.0012832878,0.005221823,-0.01310382,-0.005477988,-0.018798564,-0.01224337,-0.008821269,0.015566945,-0.015146572,0.00051602453,-0.0188117,-0.022148414,-0.016565332,-0.020138504,0.014555422,0.0082038455,0.020296143,0.011678493,0.004522296,0.0148312915,0.0015952834,-0.017366668,0.012335326,0.008085616,0.018128594,0.0016724613,-0.018404463,0.0013793495,0.03278911,-0.004853997,-0.019928318,0.0074419193,0.0049098274,0.0018719744,-0.028427737,0.0045091594,-0.024092639,0.017419215,-0.016617877,-0.0024877554,0.008722744,-0.0017833019,-0.008381191,0.03066097,-0.022200959,0.025971182,0.017169617,0.011540558,-0.008532262,-0.0020870871,-0.009977295,-0.0057998365,-0.004387645,0.01648651,-0.0060954113,0.023356985,-0.014634242,0.01050933,-0.0027866145,-0.003691402,0.013025001,0.022844655,-0.017406078,-0.03420787,-0.0017274711,0.011560263,0.0067785177,0.005546956,0.006151242,-0.011468306,0.00019571575,0.00009503554,0.018246824,0.001765239,-0.015356759,-0.021583537,-0.012000341,-0.0113172345,-0.0111530265,0.0045157275,-0.005546956,-0.0061610946,-0.032447558,-0.01956049,-0.0112252785,0.012394441,0.016197504,-0.011658788,0.012722857,0.010909998,0.0027045105,0.020834746,-0.014844429,0.02188568,-0.03817514,0.022936612,0.018194277,-0.02113689,0.001743892,-0.0011732682,-0.017721357,-0.006699698,-0.0067916545,-0.016985705,-0.007914839,-0.0063417237,0.025682176,0.00972113,0.014621105,-0.028506558,-0.033656128,0.020966113,-0.014227006,-0.0034450898,0.037019115,-0.013438806,-0.015251665,-0.0024269985,0.010877157,0.0026486795,-0.014384645,-0.03983036,-0.016722972,0.005783416,-0.013366554,-0.03720303,-0.01849642,-0.019862633,-0.016762381,0.022187823,0.014174459,0.026825065,0.015908498,0.041196574,0.023238756,0.001546842,-0.0048310077,-0.0014811587,-0.02153099,-0.013110389,-0.021701766,-0.007494466,-0.011639083,0.01987577,0.014936385,-0.014988932,-0.027534444,-0.016565332,-0.020493193,-0.010345122,-0.018588377,0.006699698,0.016512785,-0.01003641,0.026023729,0.017064525,-0.0098590655,0.021872543,-0.009648878,-0.0019754255,-0.005336769,-0.0066044573,0.011579968,0.00018514483,-0.0203881,-0.013189209,0.016171232,-0.0013588235,-0.0024532718,0.015816541,-0.0042267214,0.009451829,-0.002220096,0.024907112,0.006982136,0.012893634,-0.007474761,-0.017695084,-0.0056750383,0.016066138,-0.000892472,-0.020874158,-0.011271256,0.014542285,0.0103911,0.011192436,-0.012315621,-0.0049689426,0.024040092,-0.021938227,0.010088957,-0.0048901225,-0.010345122,-0.015632628,-0.015658902,0.003868747,0.00015332949,0.0049065435,-0.038753156,0.002738994,0.004781745,-0.023199346,-0.0013161293,0.0029606754,0.0036782655,0.0020328986,0.005110162,-0.0040789335,-0.0035863088,-0.012992159,0.009110276,0.019205801,-0.026654288,-0.005908214,0.007376236,0.0037603697,0.004459897,-0.018785426,0.014003682,-0.00503791,-0.017209027,0.02062456,-0.006689845,-0.0142664155,0.021636084,0.018982477,0.000010564494,0.0075404444,0.23751086,-0.0015714732,-0.0020952977,0.010292575,-0.019166391,-0.004459897,0.030529603,0.0053926,-0.008387759,0.021951362,-0.014923248,-0.02042751,-0.01699884,0.0017422498,-0.0010813115,0.008847542,-0.03864806,-0.013465079,-0.017747631,-0.017274711,0.0045912634,0.0021741176,-0.0027291416,-0.0040953546,0.030398237,0.013898589,0.006975568,0.0023728097,0.0027094367,-0.00940585,-0.01244042,0.0042694155,0.021622946,-0.007376236,0.004236574,-0.015777132,0.014305825,0.00023235472,0.009123412,0.026299598,-0.0032037036,0.020361828,0.015803404,-0.03286793,-0.011993772,0.0132286195,0.0037833587,-0.015527535,-0.0149757955,0.018654061,-0.019021887,-0.02821755,0.003911441,0.008033069,0.00017734495,-0.011304098,0.009464965,-0.002440135,-0.0010837746,0.010056115,-0.010148072,0.010207186,-0.0007906629,0.024276553,-0.008565104,0.01786586,-0.007238301,-0.004404066,0.0078031775,-0.0016437249,0.0027619833,0.0075076027,0.0015041479,0.013162936,-0.029610038,-0.0066799927,0.009156254,-0.0061184005,0.024526149,0.008880384,-0.0004203732,0.023317575,-0.024696926,-0.008433737,-0.021662356,-0.03003041,0.018365053,0.009931317,-0.0030082958,0.018115457,0.009662015,-0.0023826621,-0.008788427,-0.012046319,0.0018112173,-0.0044336235,0.00008626066,0.04377136,0.00053614005,0.014726198,0.0032973022,0.040592287,-0.018115457,-0.025616491,-0.010056115,0.0047324826,-0.0054451465,0.01648651,-0.0027012262,-0.016460238,-0.0107523585,-0.017182754,0.012085729,-0.0145028755,0.0013752443,-0.008729313,0.0061807996,-0.0030477056,0.00013506132,-0.022726426,0.017366668,-0.01833878,0.0005698027,0.015908498,0.005310496,-0.0030280007,-0.0037373805,-0.011238415,0.016512785,-0.026877612,0.018299371,-0.0049492377,0.0008440306,-0.001646188,-0.008295802,0.013018432,0.01747176,-0.004026387,-0.025222393,0.01173104,0.016066138,0.0021330656,0.036861476,0.014634242,0.016066138,-0.024854565,0.013202346,0.018312508,-0.022726426,0.004285836,-0.033314575,0.0011355003,0.011960931,-0.031107618,0.022936612,-0.006722687,-0.0376234,-0.028900657,-0.005159424,0.019271484,-0.020795336,0.0032644607,-0.0014228647,0.0053696106,0.0012964244,-0.006239915,-0.17025115,0.019468533,0.010561877,-0.0005792447,0.01892993,-0.0057768472,0.01936344,0.009570058,-0.014424056,-0.0052513806,0.029925317,-0.012972455,-0.024893975,-0.008591377,0.012926476,-0.038753156,-0.019310893,0.009813087,0.017852724,0.014489738,-0.014121912,-0.014358372,0.0029721698,-0.018404463,0.008348349,0.008184141,-0.023081116,0.040723655,-0.009202232,-0.030608423,-0.03081861,-0.0025895645,0.01102166,-0.0028621503,-0.0013374764,-0.013859179,0.007829451,-0.013478216,-0.009707994,0.027008979,-0.010483056,0.0235409,-0.015383032,-0.0013662128,-0.020217324,0.0080396375,0.007225164,0.012893634,-0.019100707,-0.031711902,-0.015606355,-0.036441103,-0.010555308,0.009819655,0.022765836,0.00798709,0.003747233,0.007349963,-0.014318962,-0.012407578,0.004279268,-0.003606014,0.031738177,0.011008523,-0.019573627,-0.019980863,-0.020532604,0.014069365,-0.030004136,0.011284393,0.009300757,-0.014988932,0.0032398293,-0.02829637,-0.0035009205,-0.015172845,-0.014516012,0.014121912,0.00021860228,0.007895134,-0.012230232,0.046241052,-0.015737722,0.0030066536,-0.021268256,0.00038034742,-0.0041511855,0.004006682,0.00060387596,-0.011829564,0.010640697,-0.023317575,-0.026693698,0.0018604798,0.011914953,0.01601359,0.00029167495,0.0027915407,0.006482943,0.002162623,0.001247983,0.0015484841,-0.007080661,0.011192436,0.025117299,-0.002418788,-0.012998727,0.011363213,0.016867474,-0.013990546,0.022095867,0.012269643,-0.0045091594,0.009307325,0.0023974408,0.019941453,0.005123298,-0.018273097,-0.004555138,0.003789927,0.058904793,0.00027484362,-0.003013222,0.01003641,-0.01652592,0.0035271938,-0.11560263,-0.017025115,0.017747631,0.007750631,0.007106934,0.012860793,0.009340167,0.0043088254,0.00877529,0.014305825,-0.00976054,-0.018627787,-0.009517512,-0.017353531,0.022463692,-0.024079502,-0.016814929,-0.001012344,-0.017379804,0.0153042115,-0.030871157,0.0120988665,-0.00798709,-0.0029097707,-0.007060956,-0.030529603,-0.02125512,0.009793382,0.015448715,0.02255565,-0.012808246,0.00009560001,0.010975681,-0.011914953,-0.0071463445,-0.002855582,-0.03809632,-0.021163164,0.020046547,-0.010594718,0.0046832203,-0.003612582,0.00083417806,-0.032447558,-0.0020066253,0.012919907,0.0021741176,0.017773904,0.024276553,-0.008144731,-0.020204186,0.0211763,-0.02176745,-0.021938227,0.021741176,0.0033662696,0.028033638,0.004955806,-0.035784267,0.025222393,0.010496194,0.001824354,-0.03596818,-0.0013128452,0.011507716,0.0077769044,-0.015488125,0.0009458397,0.010207186,0.002796467,-0.003944283,0.034601968,-0.004679936,0.008368054,-0.01952108,0.02176745,-0.0022365167,-0.014857565,0.0024943238,-0.014883839,-0.004088786,-0.026930157,0.0001829896,0.004400782,0.00085224095,0.008000228,-0.01090343,-0.010148072,0.009826223,-0.016854338,-0.009826223,0.014358372,-0.0020263302,0.008926362,-0.027481899,0.04140676,-0.031317804,0.0037373805,0.025248665,-0.0016782086,-0.02876929,0.010377963,-0.046372417,0.0046503786,-0.003251324,-0.0145028755,0.011054502,-0.012801678,0.008742449,-0.0033826905,0.01244042,0.003885168,-0.0070543876,0.013964272,0.0025813542,0.006033012,-0.0064336807,0.009281052,0.0259055,-0.022962887,0.029032024,-0.02160981,-0.019021887,-0.02093984,-0.00023994935,-0.0018342065,0.0021905384,0.030477056,0.0036651287,-0.007849156,-0.026864475,-0.008611082,0.0055436715,-0.032500103,0.015606355,0.02231919,-0.012755699,-0.042956885,0.005796552,0.026641151,0.0027209313,-0.01015464,-0.039436262,-0.03318321,-0.003075621,-0.008138162,-0.0054057366,0.014765608,-0.0140299555,0.013543899,0.0015763995,-0.008322076,0.023527762,0.017195892,-0.013064411,-0.014095639,-0.016696697,-0.040355828,-0.008335212,-0.022503102,0.0148312915,-0.016933158,0.034339234,-0.0140299555,0.0089854775,0.007691516,0.019468533,0.014791882,-0.0039212937,-0.0015189266,0.0011781944,-0.034575697,-0.023317575,0.011488011,0.020558877,0.0011322161,0.034549423,0.012486397,0.0031068206,-0.0122630745,-0.0075864224,-0.00134815,0.011678493,-0.02030928,-0.013570173,0.0053006434,0.015947908,0.013662129,-0.001765239,0.025997454,-0.006522353,0.0047948817,-0.04093384,0.0007873787,-0.0027521309,0.011868974,0.011336939,0.009793382,-0.00066134887,0.04660888,0.005560092,0.018207414,-0.00019263684,0.019744404,-0.003671697,-0.009129981,-0.021084344,0.00049467746,-0.025012204,-0.017787041,-0.03696657,0.013314008,0.0043121097,-0.0041905954,0.011803291,0.022726426,-0.019113844,0.0066175936,0.011087343,-0.004542001,-0.015672037,0.030529603,0.00037398437,0.009504375,0.008486284,-0.021833133,0.023488352,0.016355144,0.008033069,-0.0039180093,-0.010102093,0.009281052,0.005034626,-0.0043745087,-0.023278166,-0.024710063,0.0009179243,-0.006088843,-0.012919907,0.037176754,-0.011166163,0.039331168,0.0056586172,-0.018706607,-0.0067325393,-0.0043153935,0.013465079,0.016762381,-0.0052875066,-0.000083900166,0.0049328166,-0.0075273076,0.0030263586,0.013701539,-0.037912406,-0.018680334,-0.012729426,-0.021360213,0.012157981,-0.013419101,-0.010850883,0.018864248,-0.013241756,0.038332783,0.0028260245,-0.023041707,-0.012525808,0.012703152,-0.012578354,-0.018089185,-0.027245438,0.028716745,0.006246483,-0.017025115,-0.01597418,-0.0039212937,-0.001447496,-0.011212141,0.004430339,0.020677106,0.013714676,-0.03904216,0.02231919,-0.0066175936,-0.003014864,-0.015094025,0.0066964137,-0.022687016,-0.0056027863,-0.013964272]},{\"id\":\"075a7882-71e8-4194-ab3a-b29c52c8c48c\",\"text\":\"I am missing a coupling\",\"vector\":[-0.03222967,-0.003097304,-0.012954529,-0.0190027,-0.015215782,0.027325748,0.019057188,0.0089837145,0.008173205,-0.023525208,0.013186104,0.021046001,0.005537346,0.004794947,0.019997107,-0.011503786,0.029941173,0.0041683344,0.020405767,-0.022312848,0.0030666545,-0.00067939766,-0.0038822722,-0.0198064,0.014330353,-0.019057188,0.014466573,-0.021808835,-0.018553175,-0.007028956,0.006398938,-0.008220882,-0.025486777,-0.030513298,-0.009950876,-0.02639945,0.0008471186,-0.0072877742,0.027121417,-0.022844108,0.012613979,0.0024775027,-0.013805905,-0.012859175,-0.020977892,0.023702294,-0.00461105,0.006954035,-0.008064229,0.009079068,-0.012974963,0.007151554,-0.037378788,-0.025336934,0.017041132,0.008323046,-0.010645599,0.026808111,0.0015162998,-0.010625166,-0.0240156,-0.0077645443,-0.0126889,-0.014888855,-0.009576271,-0.0072741522,0.0011255183,-0.008418401,-0.013880826,0.009528594,0.015924128,0.006845059,0.0009765277,0.00035544927,0.041192953,-0.026740002,-0.023634184,0.008568243,0.010305049,-0.003097304,0.032965258,-0.020405767,-0.008329858,0.009726114,0.01431673,0.021332065,0.026018035,0.023852136,-0.0003807777,-0.016278299,0.014534682,0.045034356,-0.009664815,0.016128458,0.014030668,0.0198064,-0.00664754,0.03342841,0.005132091,-0.01689129,-0.00004472382,0.0068212203,-0.020637343,0.0055611846,-0.0022050624,-0.002954273,0.011101936,-0.0023497962,0.0075261593,-0.008881549,-0.012661656,0.03533549,0.0022254954,-0.003671131,0.0035246946,-0.0056156726,-0.0062525016,-0.008731707,-0.03173928,-0.0036609145,0.004287527,0.035662416,0.0016789124,-0.0052002016,0.0015750447,0.012069099,-0.0151885385,-0.011265401,-0.031385105,0.004546345,0.010952095,0.028769681,0.01527027,0.039231382,-0.0018423765,0.026767245,-0.023566073,-0.009984932,-0.0044407747,-0.024315285,0.0067803543,0.021086868,-0.010611544,-0.03263833,0.005608862,0.012314295,0.017490659,-0.0366432,-0.0022374147,-0.022925839,-0.00027414292,0.0005989426,-0.021863323,-0.023756782,0.013104372,0.015011452,-0.019642936,0.014439329,0.0035281,-0.0037937292,-0.0016950886,-0.0012089532,0.013424489,-0.012559491,-0.0062490962,0.010802252,0.00027520713,-0.016482629,0.0027380236,-0.024165442,-0.0036166431,0.03222967,-0.011748982,0.021863323,-0.014820744,0.0058404356,0.0137514165,0.025214337,-0.015638065,-0.021563638,-0.036316272,0.0011187074,0.015229405,0.028551728,-0.02306206,-0.0102369385,0.006804193,-0.01390807,0.009045013,0.009494539,-0.017545147,0.0038958942,-0.00956265,-0.009453674,-0.68088245,-0.004273905,0.0001780439,-0.024723943,-0.001265144,0.015038697,-0.0014635145,0.0071924203,-0.005612267,0.014875232,-0.03282904,0.020705452,-0.009719303,0.013540275,0.0013596467,-0.0038652448,0.015964992,-0.047786005,0.00025988236,0.010025797,-0.011387998,0.022653399,-0.00039716667,0.010475324,0.0045156954,-0.021127734,0.01343811,0.015556333,0.013867204,0.010870363,-0.021563638,0.02190419,-0.011163236,-0.028333776,0.0578118,0.009603515,0.006146931,0.017586011,0.008697652,0.012103154,-0.022163007,0.0031024122,-0.0035042616,-0.0028691355,-0.019220654,-0.0054760473,0.013356378,-0.017994672,0.0027244017,-0.035172023,0.014684524,0.0038277842,-0.0127638215,0.023388987,-0.0042092004,-0.027489211,0.018158136,-0.0077373004,0.018539554,0.0006849316,0.000009232103,0.0036881587,-0.004777919,0.0116468165,-0.027053308,0.0038005402,-0.023361742,-0.0062184464,0.017531523,-0.018335223,0.0025558292,-0.0008786195,-0.024805676,0.024751188,0.018961836,0.019847265,-0.0008317939,0.007907576,0.024206309,-0.003711997,-0.0039469767,-0.012000989,-0.017259084,-0.004726837,0.045306798,-0.01431673,-0.026685514,-0.00293384,-0.010339104,-0.010345915,0.028306533,0.0058370302,-0.021154977,-0.004471424,-0.0067122444,0.030704005,-0.013737795,0.0071787983,0.035281,-0.015460979,-0.01418051,-0.01682318,-0.0076147025,-0.004937978,0.024315285,-0.00090245804,-0.018403333,0.0025064494,0.032311402,-0.010631977,-0.0055032913,-0.016904911,-0.0054726414,0.0036200485,-0.017259084,-0.02362056,0.0045156954,-0.0034565844,0.026821733,-0.012089532,-0.0049516,0.015760664,0.00648067,-0.012273429,-0.028143069,0.03195723,-0.005135497,-0.019029945,-0.00029329886,0.0042841216,0.03244762,-0.026058901,0.017722232,-0.018757505,0.0006913169,0.010087097,0.008949659,-0.002768673,0.01404429,-0.0075738365,-0.020378524,0.004668943,-0.016087592,-0.0042670937,0.010761386,-0.0017223326,-0.027829763,-0.02144104,0.000922891,-0.008520566,-0.010952095,0.0013034559,-0.0048460294,-0.00050146016,-0.01702751,-0.0035281,-0.0081868265,-0.0021556828,-0.02565024,-0.023443475,0.010829496,0.016973022,-0.025827326,-0.010529812,0.003219902,-0.0076691904,0.010986149,0.0064329933,-0.0024706917,-0.004866462,0.00037268962,-0.03495407,-0.012355161,-0.024546858,-0.010202884,0.00586768,0.00034906395,-0.016278299,-0.012716144,-0.008738518,-0.00081434066,0.008166393,-0.03340116,0.03786918,0.022748753,0.00698809,0.030377077,-0.017667744,-0.0010139882,0.030976446,-0.015283893,0.0000066979305,-0.023225524,-0.002297011,0.027489211,-0.00400487,0.018130893,0.033155967,-0.006031144,0.03446368,0.039885238,-0.0134312995,0.04653278,-0.0031415755,0.014752635,-0.011544651,0.002686941,-0.009739735,0.026276853,0.012900041,0.0041683344,-0.012750199,0.0034208267,-0.000115042116,0.025227958,0.02767992,-0.020378524,0.039912485,-0.017531523,0.00969887,-0.0030938985,0.013819527,0.026889844,-0.015542711,-0.0008896874,0.012259807,0.024574103,0.015924128,-0.004389692,-0.002564343,-0.027230393,0.008936037,0.022735132,0.02266702,0.007383128,-0.0014498924,0.008970092,-0.011898824,0.033319432,-0.002072248,0.023007572,0.030513298,0.011857958,0.0057144323,0.007975685,0.021086868,0.04587892,0.009215288,-0.012028233,0.026276853,0.028442752,-0.0064466153,-0.016101213,0.009017769,-0.0016286813,-0.021590883,0.010775008,0.01601948,0.039258625,0.036452495,0.0013026044,-0.016196568,0.012716144,-0.016360031,0.028197557,0.026658269,0.006092443,-0.012273429,-0.008711274,0.0018883508,0.010979339,0.0021284388,-0.015760664,-0.022135762,0.01845782,-0.0051116585,0.013662874,0.015079563,0.010482135,0.0010259075,-0.0073763174,-0.03438195,0.008697652,0.018416954,-0.022231117,-0.0081595825,-0.00712431,0.037024617,0.0017521308,0.028878657,0.007308207,0.011142802,-0.011408431,0.0057314597,0.015215782,0.014275864,0.03440919,-0.0107409535,0.022176629,0.017218217,-0.014153266,0.012920475,-0.02571835,0.010434458,0.019928997,0.011340321,0.0061571477,-0.020909782,0.005108253,-0.009685247,-0.010849929,0.008152772,-0.0066441344,-0.001702751,-0.011626383,-0.003262471,-0.020582853,0.010005365,0.024328906,-0.0001426054,0.0032573626,-0.0057314597,-0.007451238,0.0005389207,0.061244547,0.029832197,0.0039163274,0.00130601,-0.0038380006,-0.0151068065,-0.0076964344,-0.02720315,0.00593579,0.007083444,0.015392869,0.013267836,0.010012176,0.012355161,0.0015912207,-0.005441992,0.023416232,-0.020392146,0.0014362704,-0.0233345,-0.0025490182,-0.008874738,-0.010979339,0.033264942,0.014425706,0.019928997,0.013615197,0.020664586,0.03173928,-0.023416232,-0.007049389,0.0078054103,-0.004008276,0.00176405,0.010836307,-0.014085156,0.015992237,0.006031144,0.0047847303,0.043535937,0.022367338,0.0062218523,0.015215782,-0.011272212,0.0032301187,-0.028933145,-0.015311137,0.0054896693,0.026440317,-0.00075133884,0.027393857,-0.00003972199,0.022544423,-0.01939774,0.0151612945,0.0030887902,-0.02612701,-0.01181028,-0.010809063,0.0013179292,-0.012246185,-0.017000265,0.004151307,-0.013356378,0.00057936105,-0.030268101,-0.006187797,0.0023923651,-0.026821733,-0.01716373,-0.0062627182,-0.008772573,-0.015706174,0.0050844145,0.0036609145,0.006947224,0.013656063,-0.003977626,0.0022033597,0.0124437045,-0.007846276,-0.0119941775,0.0137514165,-0.0064602373,-0.019029945,0.000936513,0.01214402,0.008363913,-0.009814656,0.022639778,0.017081998,-0.007437616,0.016959399,-0.023034815,-0.00019326224,0.013601575,-0.0074308054,0.030377077,-0.0007262233,0.002734618,0.019656558,-0.01804916,-0.01268209,-0.04206476,-0.017749475,0.014725391,0.0020875726,0.010100719,-0.014807123,-0.012375594,0.022326471,-0.026453938,-0.008323046,-0.004188767,0.011265401,0.0253778,0.013097561,0.007955252,-0.005540752,-0.01330189,0.012940908,-0.035934858,0.025554886,0.013186104,-0.026167877,0.020392146,-0.00023710808,-0.04402633,-0.02096427,0.0055611846,-0.0032011718,0.035389975,0.008493322,-0.020106083,-0.015733419,-0.002768673,-0.012995396,0.0014022155,0.0006155445,-0.014126022,-0.032583844,-0.0022612533,0.009256154,0.004750675,-0.0065181307,-0.023280011,0.0009620543,-0.0053364215,-0.021972299,0.032556597,-0.017926563,0.001473731,-0.036071077,-0.014194132,-0.009467295,-0.026985198,-0.006967657,-0.011299456,0.009528594,0.016251056,0.029913928,-0.0051184692,0.0029202178,0.0036949697,0.013928503,-0.0035655606,0.011762604,0.005343233,-0.016959399,0.034926828,0.029123852,0.009555838,0.027039686,0.022081275,0.008908793,0.02449237,-0.013819527,-0.026576538,-0.0027397263,-0.013281458,-0.007240097,-0.01634641,0.013962558,-0.0072741522,-0.003521289,0.008493322,-0.010141585,0.0096239485,0.0009118231,-0.015501845,0.024955519,0.002305525,0.03996697,-0.016809558,0.02191781,-0.01892097,-0.02238096,0.00685187,-0.01621019,0.013206537,-0.0078122215,0.020201437,-0.0045633726,-0.006310395,-0.026290474,0.02442426,-0.011408431,-0.0007368655,0.02016057,-0.03345565,0.012116776,-0.036779422,-0.03615281,-0.0184442,-0.01723184,0.009746547,-0.01825349,0.028252045,-0.0039844373,-0.0062388796,-0.016973022,0.010611544,0.025268825,0.00313817,0.045633726,0.014289486,-0.020541988,-0.024832921,-0.024138197,0.018008294,-0.0027805923,0.007921197,0.030649517,0.0076419464,0.00549648,0.000014007787,-0.009256154,-0.011953312,-0.0145483045,0.0044748294,-0.0084796995,-0.007158365,-0.0055169133,-0.0005465831,-0.020378524,0.005608862,-0.009167612,0.0033595276,-0.01166725,-0.019928997,-0.012757011,0.013914881,-0.029941173,0.025268825,0.011701304,-0.0008786195,0.010563867,-0.011265401,0.012396027,0.008915604,0.0062116357,0.042909324,0.004321582,0.0042841216,-0.016564362,-0.01166725,-0.00969887,-0.025050873,-0.027189527,0.027666299,-0.01492972,-0.0038311896,0.0008194489,0.013077128,0.01566531,0.0010710304,-0.0075738365,-0.02278962,-0.0023804458,-0.0033816635,-0.0034072048,0.0036200485,-0.025064494,0.0054351813,-0.013186104,0.0005265757,-0.03203896,-0.0045361286,0.0055203186,-0.025527643,-0.021209465,-0.037378788,0.017735854,0.01445295,-0.0033390946,-0.014030668,-0.013853582,0.015093185,-0.017586011,0.0067939763,0.002283389,0.009923632,-0.00025647687,0.018294357,-0.003541722,-0.021059625,0.025813704,0.004525912,-0.0137241725,0.0030070583,0.03342841,-0.004931167,0.010318671,-0.010529812,0.008391157,-0.003296526,0.011687683,-0.013962558,-0.009971309,0.03282904,0.0013349567,0.019261518,0.007621513,-0.008786195,-0.019166164,-0.008643164,-0.010563867,-0.010727331,-0.016932156,0.0054317755,0.005401126,0.00861592,-0.001476285,-0.027039686,-0.0046757543,-0.04130193,-0.015515467,0.033292186,-0.00013685861,0.020364901,0.0075397813,0.0015912207,0.0006117133,0.03590761,-0.016591605,-0.015719797,-0.009603515,-0.015474601,-0.022762375,-0.009576271,-0.007996119,-0.0005065684,0.008445645,-0.016482629,-0.02314379,-0.017041132,-0.013710551,-0.010918039,-0.012770632,-0.0062116357,0.010032609,0.0031432784,-0.010427647,0.042146493,0.021223089,0.012675278,-0.007294585,-0.012505003,0.007253719,0.017558768,0.014425706,0.017081998,-0.02631772,0.005942601,0.019111676,0.008397968,0.017054753,0.012341539,0.002700563,-0.009807846,-0.0105843,-0.02761181,0.00064108573,-0.0049584107,0.01811727,-0.018021917,-0.027925115,0.006327423,0.008139149,0.0019564608,0.00035374652,-0.00086670025,0.0016959399,0.008731707,-0.011435675,0.0031756305,0.012831931,-0.039176896,0.0069097634,-0.0063069896,-0.0011485055,0.0038992998,0.021631747,-0.0021352498,-0.0010659221,-0.0015775987,-0.010216506,-0.009453674,0.017885696,0.011932879,-0.022748753,-0.018403333,0.01044808,0.00093991857,-0.013097561,-0.004049142,-0.0017121161,-0.01750428,0.0067837597,0.0054488033,-0.018130893,0.021876944,0.009862334,0.0004618712,-0.0022544423,-0.010461702,0.0033544195,-0.038386818,-0.008261748,-0.0081595825,-0.029069364,-0.023579696,0.009474106,0.027788896,-0.002249334,0.0069574406,0.22470865,-0.0046621324,-0.001982002,0.025268825,-0.0041819564,-0.0057961643,0.001090612,-0.0066305124,-0.0025881815,0.026467562,0.012532247,-0.005189985,-0.01458917,-0.0017402115,0.005169552,-0.0015844097,-0.019642936,-0.019942619,-0.032747306,0.008861116,0.024369773,-0.0016874262,0.009290209,-0.028660705,0.043862864,-0.021550016,0.0049890606,-0.017259084,-0.022067653,-0.005455614,-0.029587,0.006667973,0.023048436,-0.013812716,-0.008493322,0.0036438871,0.015556333,-0.00970568,0.009801035,0.019179787,0.031248886,-0.013758228,0.0024213118,0.0016797638,0.0015171511,-0.005033332,0.0028912711,-0.022884972,-0.006078821,0.008500133,-0.035444465,-0.0031875498,0.0005001831,0.032011718,-0.009807846,-0.006058388,0.0190027,0.0130839385,-0.0026358585,0.0077373004,-0.02082805,0.009528594,-0.0077168676,0.021046001,-0.014425706,0.024683079,-0.025527643,-0.0026443722,0.007607891,-0.023293633,-0.004130874,-0.013451733,0.024505991,0.018621285,-0.038686503,-0.021400174,0.018103648,0.014997831,0.04187405,0.00038971714,-0.013717362,-0.003036005,0.009072257,-0.035035804,-0.017313572,-0.009038202,-0.005581618,-0.0015648281,-0.0015239621,-0.015025075,0.02767992,-0.0075329705,-0.016482629,0.0027993226,0.013206537,0.0027363207,-0.019356873,0.00055381976,0.00076623796,0.009065446,-0.021658992,0.010666032,0.031112665,-0.004396503,-0.017041132,-0.0007713462,-0.012600358,-0.003534911,-0.004835813,-0.03487234,-0.017041132,-0.013948936,-0.00043398867,0.008145961,0.0014728796,-0.02190419,0.021931432,-0.028006848,-0.017872075,-0.005230851,-0.008316236,-0.03018637,-0.002775484,0.015569955,0.005792759,-0.010434458,-0.000054700875,-0.0093310755,-0.009692059,-0.05841117,0.020937026,0.0050980365,0.011122369,-0.015256649,0.0024008788,0.012777443,0.015692553,-0.03683391,-0.010802252,0.009971309,0.0018236462,0.0072196643,0.004314771,-0.017190974,0.0018951618,-0.019738289,0.028769681,-0.019820021,-0.016278299,-0.005636106,-0.010202884,0.015079563,0.015597199,-0.008377534,0.017885696,-0.011728548,-0.024369773,-0.020106083,0.0072877742,0.009194856,-0.016128458,-0.021386553,0.03879548,0.021141356,-0.010604733,-0.014330353,-0.17730406,0.00095354056,-0.010550245,-0.021618126,0.01642814,0.026276853,0.0046927817,-0.0042023896,-0.015311137,-0.0078054103,0.012109965,-0.018498687,-0.013390434,-0.0014388246,-0.018362466,0.0060345493,-0.019724667,-0.024955519,0.015556333,0.013553898,0.022367338,-0.019261518,0.028960388,-0.01214402,0.021127734,0.008881549,-0.0075942692,0.022340093,-0.01811727,0.0078054103,-0.016169323,-0.019111676,0.03282904,0.0020194626,0.0144938165,-0.0022510367,-0.023048436,-0.008827061,-0.007103877,0.023307255,0.008901982,0.0017998078,-0.002010949,-0.004137685,-0.008963281,0.03285628,0.008091473,-0.0145755485,-0.009528594,0.0006632215,0.019043567,-0.009208477,-0.01634641,0.0128183095,-0.006667973,0.022598911,0.006838248,0.01947947,-0.005918762,0.007103877,-0.006215041,-0.007315018,0.009474106,-0.0019394334,-0.020392146,-0.010345915,0.008922415,0.014194132,-0.037378788,0.021223089,0.0038992998,-0.012157642,0.013172481,-0.014017046,0.008690841,0.008813439,-0.022149384,-0.011122369,0.007423994,-0.005779137,0.003981032,0.019928997,-0.023579696,0.0034906394,-0.027870627,0.00010647515,0.0062729344,-0.010904417,-0.008990525,0.0074035614,0.011135992,-0.030022904,-0.01037997,-0.024505991,-0.018961836,0.030595029,0.011544651,-0.010836307,0.015079563,-0.0053568548,0.0067462996,-0.020664586,-0.008670408,0.017994672,0.024505991,0.015883261,0.0046451045,-0.002002435,0.0124437045,0.00641256,0.007383128,-0.013124805,0.019615691,0.022830484,0.00042036665,0.020541988,0.00008960727,-0.004049142,0.04179232,-0.00834348,0.039885238,-0.009794224,-0.011340321,-0.0069301967,-0.01370374,0.014071534,-0.11148251,-0.01404429,0.016591605,0.024546858,-0.019833643,-0.0012957935,-0.011231345,0.038305085,-0.010972527,0.013220158,-0.012450515,-0.02164537,-0.0069438186,0.0071651763,0.017013887,0.0014686227,-0.0057280543,-0.022176629,-0.017259084,0.010168829,-0.0054351813,-0.0063785054,-0.0052342564,-0.004965222,-0.0010676249,-0.0057042157,-0.03514478,0.013656063,0.021795213,-0.012368783,-0.01939774,-0.01051619,0.0076010805,-0.016945777,-0.029587,-0.019901752,-0.01668696,0.0018542958,0.019111676,-0.012600358,-0.004076386,-0.011857958,-0.0009833387,-0.007819032,-0.005864274,0.014725391,-0.011449298,0.043944597,0.003711997,-0.018580418,0.0011059367,-0.010523001,-0.03955831,0.001131478,0.040838778,-0.009848712,-0.008568243,0.01255268,-0.01709562,-0.0063478556,0.010216506,-0.006565808,-0.029423537,0.03400053,0.0031330618,-0.001750428,-0.0012864283,-0.024751188,0.014956964,-0.0068075983,-0.005608862,0.003671131,-0.0051048473,-0.00081476633,-0.044080816,-0.0041002245,-0.0064159655,-0.02191781,0.0011961826,-0.022517178,-0.026031656,-0.019166164,0.0009373644,-0.020392146,-0.00042334647,0.027121417,0.017885696,0.022067653,-0.0022731726,0.0018151326,-0.008970092,0.0151885385,0.017817587,-0.015392869,-0.022435447,0.023906624,-0.010986149,-0.013737795,0.0048732734,-0.0018423765,-0.031303372,-0.02110049,-0.037324302,0.02394749,0.0009961093,-0.006368289,0.008629542,-0.020841671,-0.0026682108,-0.008105095,-0.011347133,0.023974733,-0.019506715,0.008847494,-0.0029048931,-0.0075465925,0.012327917,-0.009521783,0.03149408,-0.00024370624,0.0056599444,-0.0018713233,-0.0054181535,0.00068663433,-0.0024860164,0.042909324,-0.0035042616,0.0090109585,0.010080285,0.011272212,-0.0048290016,0.001462663,0.018743882,-0.04694144,0.004934572,0.017899318,0.011585518,-0.0063614775,0.01017564,0.031248886,0.0066441344,-0.0027516456,-0.014807123,0.00029649152,0.02007884,0.019356873,-0.008139149,-0.0003852474,-0.02536418,-0.0011723441,0.017817587,0.018716639,0.024873786,0.024247173,0.007989308,-0.011279022,-0.031085422,-0.021468284,0.008629542,-0.0034685037,0.003977626,-0.033619117,0.047813248,-0.0062184464,0.006994901,-0.010638788,0.03149408,-0.014711768,-0.011851147,0.006167364,0.019615691,-0.016155701,-0.027843384,-0.002932137,-0.0036541035,0.03669769,0.0028282693,0.011476542,-0.008282181,0.005625889,0.005189985,0.0030956012,0.015488223,-0.001022502,0.0031824415,-0.012402838,0.019724667,-0.01622381,-0.011857958,0.013935314,0.010631977,0.023988355,-0.02496914,0.009358319,-0.002174413,0.021958677,-0.0021046002,0.020528365,-0.006926791,-0.012920475,-0.014139644,-0.004781325,-0.019234275,0.00030841076,-0.00325566,-0.018512309,-0.010114341,0.019928997,-0.045061603,-0.026140632,-0.0075397813,0.027707163,0.00146692,-0.0075125373,0.01818538,0.026426695,0.0014277567,-0.010563867,-0.0025081523,-0.041029487,-0.020201437,0.0026750218,0.005006088,0.0089837145,-0.005847247,-0.012361972,0.032393135,0.009910011,0.0077917883,-0.016169323,-0.0084524555,-0.009317453,0.028061336,-0.0012949421,-0.015174917,-0.0151068065,0.005135497,-0.0011851147,-0.010298238,0.02849724,-0.023634184,0.049502376,0.0038311896,-0.018811993,0.0024655834,-0.009065446,0.011449298,-0.0075125373,0.011524218,-0.010986149,-0.010386781,0.009576271,-0.008561432,0.021468284,0.0028793518,-0.012934096,-0.0038345952,0.016932156,0.0024076898,0.008064229,-0.007853087,-0.006664567,-0.017013887,-0.002804431,-0.009651192,-0.004314771,-0.022244738,-0.00017846959,0.0018270517,0.012062288,-0.023770403,0.0047711083,-0.0038584338,-0.0016039914,-0.0012489678,0.020950647,0.006133309,-0.017940184,0.012021421,0.011231345,0.012082721,-0.0021522772,0.008643164,-0.0077441116,-0.000565739,0.0041683344,0.0015554631,0.009242532,0.011279022,-0.031439595]},{\"id\":\"1eed2a9f-7d19-48cf-b043-817c175f7ec2\",\"text\":\"I'm still waiting on my order. Why is it taking so long?\\n\",\"vector\":[-0.0077986154,-0.024307372,-0.018622993,-0.007330192,-0.010811716,-0.0058173114,-0.004804504,-0.0046905633,-0.020509345,-0.030662738,0.004377226,-0.010716766,-0.011742233,-0.011609302,-0.0069693793,0.0069060787,0.016192254,0.01697718,0.00032263447,-0.0069946996,0.0015318708,-0.0040069185,-0.024661854,0.002198108,-0.0016086226,-0.008659502,0.0027472395,-0.019433238,0.014115999,-0.003383409,-0.009545707,0.010476224,-0.038790513,-0.0071782707,-0.022142496,-0.019306637,0.00024528924,-0.0012762953,0.02259826,-0.029498009,0.033777118,0.013394374,0.0030479166,-0.013508315,-0.039144997,0.018015308,-0.02985249,0.004114529,-0.012843661,0.014812305,0.017572204,0.0150781665,-0.03253643,-0.042563222,0.008317679,-0.012457528,0.024218751,0.022800822,0.011489031,0.0007928381,0.0021949431,0.0053077424,-0.010102752,0.00078927743,-0.010330633,-0.001910091,-0.012261297,-0.005257102,-0.002981451,0.008665832,0.011678932,0.028485201,-0.0048646396,0.004263285,0.041626375,0.001296868,-0.008406299,0.014976886,-0.00856455,-0.013685557,0.021851314,-0.02104107,0.005972397,0.03522037,0.0028738403,0.025902543,0.019192696,-0.0018721108,-0.009545707,-0.017660825,0.02407949,0.015913732,-0.0055292943,0.02000294,-0.004766524,-0.008178418,0.0007445715,0.051526565,-0.007380832,-0.009279845,-0.009381127,0.019066095,0.007608714,-0.014786985,-0.02838392,0.028561162,-0.021661414,-0.004361401,0.004377226,-0.033422638,-0.024611214,0.02820668,0.010298983,-0.017787427,0.01271706,-0.018863533,0.010881347,-0.0049880752,-0.0054438384,-0.038917117,0.010982628,-0.00015488829,0.013748857,-0.008988664,0.033650517,0.0011077578,-0.030536136,-0.019534519,0.018736932,0.01968644,-0.001402105,0.009172235,0.0066845273,0.011609302,-0.019547177,0.014470482,-0.038587954,-0.008102457,-0.00025438867,-0.00852024,0.008013837,0.024674514,0.006276239,0.007627704,-0.019648459,0.005541954,0.015027526,-0.00019118714,-0.014040039,-0.013052552,0.026434267,-0.0075517436,0.0027488219,-0.013622256,-0.015647871,0.0024259896,-0.02411747,0.0074061523,-0.014812305,-0.039676722,0.010912998,0.015825111,0.015192107,0.00095267175,0.009108935,0.020749887,0.03648638,-0.014736344,-0.01281834,0.008115117,-0.01406536,0.012666419,-0.013027232,-0.00006636656,-0.009020314,0.0074378024,-0.0024813775,-0.03246047,0.012362577,-0.00852024,-0.021737374,-0.010450904,0.010678786,0.018471071,-0.009007654,-0.01824319,0.032663032,-0.022978062,0.02112969,0.0037062413,-0.0071782707,0.011090239,0.010811716,-0.023598406,-0.6554888,-0.011571322,0.0079062255,-0.0014329639,-0.0025130277,0.036283817,-0.0119574545,0.024712496,-0.019521859,0.04350007,0.009153245,0.004108199,0.018926835,-0.019053435,-0.0025715807,-0.007785955,0.019914322,-0.015457969,-0.023725009,0.019230677,-0.0071213003,0.0062540844,-0.0015152545,0.004412041,0.005785661,0.0012501838,0.031928744,0.0022424185,-0.020711906,0.021433532,0.020382743,0.023345206,-0.0035923005,0.00033054702,0.043018986,-0.0050039003,-0.009811569,0.018015308,-0.0046430877,0.019205356,-0.037043422,0.0011615632,0.018027967,-0.037600465,-0.024320032,-0.008051817,0.024775796,0.005133666,-0.0017755775,0.015027526,0.025712641,0.015888412,-0.025535401,-0.010374944,0.010881347,-0.0017803251,0.044183712,0.02138289,0.021610772,-0.0008505998,-0.00852024,-0.0022645735,-0.0066845273,-0.016496096,-0.034916528,0.015913732,-0.044462234,0.004652583,0.023813628,0.010393933,0.03109318,0.01835713,-0.02126895,0.014040039,0.03987928,0.03106786,0.0016363165,0.017015161,0.02818136,0.002201273,0.012248636,-0.00059185916,-0.014078019,-0.008539231,0.02118033,0.01831915,0.003399234,-0.009716619,0.0067225075,-0.0057350206,0.0036556008,0.033397317,0.013052552,-0.0057223607,-0.010058441,0.0036207857,-0.0040195785,-0.0032821281,0.013166493,-0.034916528,-0.009590018,-0.013204473,0.002327874,0.0011876747,0.04955159,0.011773883,0.002405417,0.022395698,0.020661267,0.009146915,0.01271073,0.0030874794,-0.018255848,0.0036144555,-0.007184601,-0.0226489,0.0027282494,-0.012400557,-0.027143233,0.013812157,-0.016052993,0.0059882225,0.03230855,-0.013875458,-0.011849844,0.016610038,0.0015753899,0.014584423,0.0024307373,0.0015184195,0.006545266,-0.00707699,0.007773295,-0.020585306,-0.009298836,0.019230677,0.030738698,-0.010469894,0.0027409093,-0.04233534,-0.009248195,0.010039451,-0.014343881,-0.000526185,0.01560989,-0.029295446,-0.0067035174,0.009324156,-0.017470924,-0.0028516853,-0.0015453221,-0.02000294,-0.009254525,0.010204032,0.009343146,0.0001523167,0.00140527,-0.028890325,-0.0023595241,-0.011045928,0.014559103,0.020825848,-0.000922604,-0.010875017,0.0037378913,-0.003668261,-0.010894007,0.013229794,-0.01692654,-0.033751797,0.008260708,-0.031776823,-0.0034751946,-0.014445162,-0.023167964,0.007216251,0.0026238034,-0.015344028,0.010083761,0.00025003677,-0.00038633053,0.016660677,-0.016407477,0.020205503,0.03370116,0.014533782,0.0013846973,0.030662738,-0.025877222,0.038030908,-0.0031444498,-0.006792138,-0.012292947,0.026484907,-0.012577799,-0.024244072,0.012577799,0.01267908,0.0023800968,0.028637122,0.026662149,0.013077873,0.005674885,0.009507727,-0.015293389,-0.020268803,0.00709598,-0.0081467675,0.033321355,0.030865299,0.01410334,-0.010609155,-0.025725301,-0.024788456,0.001978139,0.03240983,-0.011026938,0.013875458,-0.00992551,0.037473865,-0.013824818,0.013090532,-0.0017502573,-0.02701663,-0.009495067,0.008286028,0.018787572,0.022003235,0.022180477,-0.008172087,-0.033169433,0.01705314,0.0031507798,0.010894007,0.008172087,-0.01131812,-0.008070807,-0.017774766,0.02400353,0.009260856,0.015394669,0.016483437,0.016128954,-0.0064313253,0.017154422,-0.017698806,0.027295154,-0.001095889,0.0058869417,0.012774031,0.017825406,-0.00843162,-0.0170025,-0.0033770788,-0.0041366844,-0.03420756,0.018610332,-0.0044721765,0.034891207,0.025699982,0.015179448,0.016572056,0.027421754,-0.007918886,0.001225655,0.022319738,-0.011919474,-0.0081467675,0.027725596,-0.023205943,0.003396069,-0.009919181,0.018597672,-0.036663618,0.032814953,-0.000488996,0.010292653,0.021750035,-0.0010104334,0.008317679,-0.018116588,-0.03673958,0.007792285,0.0011140879,-0.0020430218,0.014002059,0.0042917705,0.034865886,-0.017648164,0.03284027,0.0012715477,0.0037473864,-0.006925069,-0.001767665,-0.009773589,0.002668114,0.041575734,0.0065579265,0.019066095,-0.010216692,0.011394081,-0.0040227436,-0.0042063147,-0.008672161,0.011729573,0.018154569,-0.0079378765,-0.024218751,0.015356689,-0.02405417,-0.007988516,-0.002593736,-0.010191372,0.00426645,-0.00080905884,0.013052552,-0.027776236,-0.021686733,0.031776823,0.009393786,0.019180035,-0.002745657,-0.014078019,-0.0016426466,0.093634024,0.017217722,-0.00078769494,0.010362283,0.002207603,-0.0070073595,-0.002256661,-0.015698511,0.022458998,0.0072732214,-0.01683792,-0.00033292078,-0.0057128654,0.011432061,0.02825732,0.004804504,0.0055641094,-0.010786396,-0.00026546625,-0.033650517,0.0022186807,-0.0014527453,-0.009659648,0.006374355,0.011653612,0.016774619,0.008925363,-0.011197849,0.011830853,-0.008874723,-0.010849697,-0.030434856,-0.019838361,0.031776823,0.0002575537,0.04261386,0.002275651,0.0075644036,-0.0041651693,0.059755623,0.018585011,0.013508315,-0.0061369785,-0.018192548,0.027624315,-0.01974974,-0.016268214,0.005079861,-0.010748416,0.0043265857,0.007969527,-0.018787572,-0.023737667,0.003098557,0.0028437725,0.018053288,-0.022129837,-0.013356394,-0.006257249,-0.020167522,-0.0011742233,-0.012008095,0.0047222134,-0.016217574,-0.0057255253,-0.04089209,-0.038993075,-0.0027092593,-0.004465847,-0.0019923816,0.007621374,0.0011275392,0.022218456,-0.008608861,-0.0033422636,0.010058441,0.0058679515,0.00074061524,-0.008235388,0.0044436916,0.007203591,-0.030131014,-0.00010840202,-0.0012201162,-0.022902101,0.022851462,0.031397022,-0.013672897,0.018876193,0.0061369785,0.011887824,0.015799792,0.0087164715,-0.00636486,0.007722655,-0.003557485,-0.010691445,0.011982774,-0.023560427,-0.007634034,0.0062699094,0.0010563262,0.0011607719,0.0049121147,-0.0014155563,0.0028833353,0.00565273,-0.015192107,-0.013634916,-0.00049928227,0.013584276,-0.017534224,-0.011906814,0.012558809,-0.011735903,0.02392757,0.017939348,0.013419695,0.024535254,0.0115080215,-0.016166935,-0.030004412,0.020623285,-0.009412777,-0.011590312,0.0018515381,0.010969968,-0.031624902,-0.0117485635,0.009235536,-0.0045386422,0.019066095,-0.0041525094,0.004529147,-0.035954654,-0.0011599807,0.006466141,0.02532018,0.002191778,-0.021901956,-0.02552274,-0.012103045,-0.00841896,-0.024408653,-0.01554659,-0.029523328,-0.01838245,-0.015774472,-0.014976886,0.02243368,-0.0039088028,-0.0042379647,-0.013951419,-0.0065895766,-0.008406299,-0.023699688,0.0076656844,0.0031571097,0.0062794043,0.053476218,0.022269098,-0.0014535366,0.0053457227,-0.011514352,-0.0037980268,-0.014394522,-0.007235241,-0.009640658,-0.002188613,0.010191372,0.024231412,0.013837478,0.027219193,0.0034118942,0.003924628,0.008881053,0.017850727,-0.014926245,-0.0055704396,-0.026206385,0.029270127,-0.0014535366,-0.014457822,0.016128954,0.02686471,-0.010140732,-0.000264675,0.013128513,-0.0009218128,-0.0032599731,0.028080078,-0.016306195,0.018116588,-0.0018436256,0.010355953,-0.01409068,0.0015548172,-0.019167375,0.00035764754,-0.0001253151,-0.0006733585,0.029118206,-0.008254378,-0.0015769724,-0.0022487484,0.0015635211,-0.00086167734,-0.010121741,-0.022775501,-0.012951272,-0.010931987,-0.0048266593,-0.021408211,-0.021825995,-0.011514352,-0.0033390985,-0.017989988,0.0055482844,-0.011609302,-0.03096658,0.0020762547,-0.019268656,0.0021648754,0.028662443,0.027700275,0.03114382,-0.008906373,0.0032441479,-0.022269098,0.0226489,0.008007507,0.025117617,0.030713378,0.0025874057,-0.0057191956,0.00054477947,0.006070513,0.0028279475,-0.040461645,0.010134402,-0.00011275392,0.013812157,-0.016103635,0.00070500874,-0.025294859,0.015698511,-0.011406741,0.0015342446,-0.01566053,-0.017800085,-0.025851903,-0.008020166,-0.017420283,0.018977474,0.01824319,-0.008640511,-0.023623727,0.0029482183,0.009438097,0.011710583,-0.0068554385,0.016128954,0.017876046,-0.006070513,-0.004551302,0.0038929775,-0.0035954653,-0.025016338,-0.020167522,0.02000294,-0.026738109,-0.030282935,-0.015382009,0.023433825,0.0007501103,0.0039689383,-0.012254966,-0.003383409,-0.00083160965,0.0066085667,-0.0026649488,-0.009020314,-0.002888083,0.013584276,-0.012913291,-0.020851167,-0.02544678,0.001154442,0.008317679,-0.010014131,-0.020914467,-0.024180772,0.021408211,0.0023057188,-0.0027377445,0.010317973,-0.009102604,0.0060167075,-0.0031903426,0.033549238,0.024421312,0.0030669067,-0.029675249,0.014989546,-0.017572204,-0.033397317,0.025104957,-0.000024133296,-0.036537018,-0.016090974,0.014989546,-0.016508756,-0.039296918,-0.010672456,0.017926687,0.027168551,0.010064771,-0.02405417,-0.05793257,0.006500956,-0.010210362,0.011900485,0.017926687,-0.008773442,0.008792432,0.0023785143,0.02249698,-0.0036429407,0.007361842,0.003817017,0.0013973574,0.0008877888,-0.033903718,-0.012533489,-0.009317826,-0.00986854,-0.017787427,0.009153245,-0.022370378,0.012039745,-0.017901367,0.03251111,0.0062540844,0.00013837083,0.015065507,0.0017233547,-0.0054596635,0.0033359337,-0.008691152,-0.02261092,-0.010558515,0.016027674,-0.0036714259,-0.025978504,-0.020433385,-0.010406594,-0.021509493,-0.02413013,0.024750475,0.019458558,0.020420725,0.00565273,-0.020015601,0.030282935,-0.012444868,-0.0011496944,-0.015154127,0.010235682,0.0142679205,0.0011853009,-0.01266009,-0.000039983133,-0.027725596,0.0025098627,0.029194167,0.019306637,-0.00089728384,0.016648017,-0.03096658,0.0055830996,0.014115999,-0.01836979,0.013305754,0.0036872511,-0.0054818187,-0.02259826,-0.015014866,-0.01678728,0.017762106,-0.019053435,0.008887383,0.022737522,-0.030308254,-0.0007516928,-0.011666273,-0.0067161773,-0.00048583094,0.004108199,0.010261003,-0.021699393,0.021901956,-0.004807669,0.010204032,-0.02394023,0.01000147,-0.0022867287,0.008260708,-0.008931694,-0.0061654635,-0.019192696,-0.028890325,0.001170267,-0.0016125789,0.011007948,-0.024320032,-0.012603119,0.0012034997,-0.025066977,0.026282346,-0.0052444423,-0.0150781665,0.011096569,0.012115706,-0.036790222,0.031700864,-0.020977769,0.003415059,-0.041828934,-0.011001618,0.005070366,-0.00845061,-0.034435444,0.012103045,-0.000051678882,0.0027377445,-0.0021585452,0.23051491,0.004364566,-0.010096421,0.041297212,0.016027674,-0.0031776824,0.03770175,-0.00843162,-0.007228911,-0.0054659937,0.029042246,0.006244589,-0.019433238,-0.010349623,-0.005605255,-0.024459293,-0.02683939,-0.00979891,-0.0032251577,-0.00009143948,-0.00067375414,0.0106977755,-0.00060887117,-0.020370085,0.020078901,-0.018990135,-0.011026938,0.013685557,0.010982628,-0.0023563593,-0.027750917,-0.012951272,0.01266009,0.014305901,-0.011438391,0.012223316,-0.007368172,-0.0029482183,0.007672014,0.017230382,-0.008380979,-0.012457528,0.008444279,0.0037473864,-0.008437949,0.0008434785,-0.021420872,-0.024307372,-0.011457381,0.0119574545,-0.018901514,-0.03529633,-0.0042537902,0.018521711,-0.000885415,-0.005940747,0.019483877,-0.021458851,-0.026105104,-0.0014266338,0.00635853,0.022205798,-0.0019765564,0.0084696,-0.017293682,0.010963637,-0.017939348,0.013900778,0.0039341226,0.014217281,0.002826365,-0.0005760341,0.024446633,0.013191814,-0.03681554,-0.0038739874,0.0148376245,0.012179006,0.009849549,0.013736197,-0.018888853,0.026611509,-0.01698984,-0.0017375973,-0.0030320915,-0.020939788,0.004535477,0.0058837766,0.0117169125,-0.0021411376,0.010944648,0.009849549,-0.0090772845,0.011685262,0.024598554,0.011849844,0.03284027,0.03496717,-0.0017660825,-0.01705314,-0.015901072,-0.007330192,-0.004614603,-0.0016331516,-0.020015601,-0.0113877505,-0.016052993,0.032966875,0.005636905,-0.023535106,-0.00353533,-0.034764607,-0.00006997667,-0.014381861,-0.016736638,-0.0112674795,-0.010235682,-0.004681068,0.0037062413,-0.00020612209,0.022902101,-0.020205503,-0.014660384,0.01836979,-0.002120565,-0.030991899,0.009260856,0.004681068,0.022003235,-0.01843309,0.010526865,0.0022803987,0.0011987522,-0.0007168776,-0.013077873,0.009552037,0.004111364,0.020952448,-0.008982333,0.0011354518,-0.031118501,0.0040195785,0.01704048,0.00019593467,0.016280875,-0.035650812,0.011849844,0.0052824225,-0.03423288,0.012628439,-0.0076910043,-0.008830412,0.00078492553,-0.027320473,0.02818136,0.023066683,-0.0370181,-0.005494479,0.01844575,0.009260856,-0.008127778,-0.03106786,0.035144407,-0.008260708,-0.013204473,-0.01127381,-0.15870689,0.008754452,-0.0027377445,-0.024826435,0.016660677,0.013331074,0.011856174,0.0071339603,-0.007969527,0.038587954,0.034612685,0.019002795,-0.02701663,-0.009412777,0.003658766,0.0000018807775,-0.038993075,0.029118206,0.021344911,0.00058275973,0.031422343,0.002065177,0.005079861,-0.007488443,0.023623727,0.0058489614,-0.025775943,0.027523035,-0.014115999,-0.02689003,-0.024877075,-0.014926245,0.013748857,0.012495508,0.0055957595,-0.0096469885,0.013470335,0.015356689,-0.00708332,0.013926098,0.0051748115,0.015837772,0.00711497,0.0141793005,-0.0034213893,0.0028342775,0.025737962,-0.0028232,-0.011432061,-0.020800527,0.010039451,-0.025699982,-0.023016043,0.00703268,0.016749298,0.026586188,0.005219122,0.03537229,-0.02558604,0.01554659,0.012906961,0.010261003,-0.000005535698,-0.018698953,-0.0031966725,-0.014331222,-0.013989399,0.0015611473,-0.022446338,0.012381568,-0.027700275,0.009305166,0.01422994,0.019205356,-0.007988516,0.025978504,-0.0040132483,0.005541954,-0.00421581,-0.010052111,-0.018040627,0.040461645,-0.009362136,0.02242102,-0.0068934187,0.00042490425,0.01544531,0.030409535,-0.004127189,-0.017787427,0.005364713,-0.012134695,-0.00077068293,-0.021585453,0.00419682,0.015179448,0.028054759,0.00711497,-0.0037568815,-0.02977653,0.010052111,0.021015748,-0.02402885,0.028789043,0.028966285,0.02681407,-0.024522593,0.020294124,0.027700275,-0.013229794,-0.008020166,0.012989252,0.029498009,0.03658766,0.00019553903,0.0036207857,0.00635853,-0.033523917,0.025155598,-0.014546443,0.028485201,-0.014040039,-0.012172676,0.036081254,0.0068491083,-0.018154569,-0.09449491,-0.027117912,-0.011166199,0.008615191,-0.0049279397,0.005215957,0.008324008,0.041803617,-0.008779773,0.038030908,0.010628145,-0.03527101,0.0069757095,-0.02254762,0.011818194,-0.013533636,0.006241424,-0.0078176055,-0.016192254,0.005219122,-0.027143233,-0.018812893,-0.008412629,-0.031548943,-0.011976445,-0.04106933,-0.017293682,-0.014875605,0.020673927,0.010393933,0.009748269,-0.01272972,-0.017977327,-0.02975121,0.0038233472,-0.0015358271,-0.035979975,0.0058489614,0.014761664,-0.050285876,0.00050442544,-0.0004328168,0.0123182675,-0.0108180465,-0.0169392,0.008058147,0.010469894,0.017369643,0.033220075,-0.017863387,-0.026003825,0.006247754,-0.011476371,-0.012356248,0.03271367,-0.0075580734,0.010672456,-0.005494479,-0.004282275,0.012147356,-0.0060989982,0.0091659045,-0.038587954,0.012223316,0.0002605209,0.007589724,0.001773995,-0.0003586366,-0.000031749132,-0.017546885,0.003807522,-0.009552037,-0.02696599,-0.016331516,-0.028890325,-0.016825259,-0.014002059,-0.028662443,-0.0035891354,-0.01133711,-0.009153245,-0.01415398,-0.0070263497,-0.018597672,0.026535548,0.01266009,-0.0015437397,-0.0031571097,0.0007857168,-0.029244807,-0.01141307,0.015432649,0.01986368,0.0026380462,-0.019053435,0.020180183,-0.03284027,-0.013482995,0.044588834,-0.015065507,-0.03395436,-0.009849549,-0.04486736,0.023649048,0.0071529504,-0.03397968,0.0007900687,-0.004092374,0.017736785,-0.0150781665,-0.006212939,0.007184601,-0.013166493,0.015268068,-0.009229206,-0.007634034,-0.015913732,-0.0058552916,0.008229058,0.019268656,0.030409535,0.004415206,0.01717974,-0.002770977,-0.013115853,0.0029339758,-0.011121889,-0.0010009384,-0.020015601,0.019952301,-0.0038455022,-0.01705314,0.019002795,-0.017914027,0.021674074,0.015812451,0.02261092,-0.031118501,0.0014899343,0.021433532,-0.00987487,-0.009786249,0.0082670385,-0.024725154,0.007963196,-0.013204473,-0.0022376708,-0.004481672,0.0006982831,0.014002059,0.026738109,-0.005108346,0.01685058,0.010166052,0.010083761,-0.020572646,-0.00083160965,-0.019559838,0.014736344,-0.029016925,0.021003088,-0.03922096,0.033498596,0.00023797012,0.015407329,-0.015103487,0.05793257,0.019572498,-0.015344028,-0.001829383,0.016749298,-0.008786102,-0.00012768887,-0.015989693,0.00031946946,-0.02250964,0.013280434,0.0112674795,-0.007349182,-0.023155304,-0.0034562044,0.0045956126,-0.013014572,0.00039879282,-0.000030438614,0.0032884583,0.0005621871,0.009013983,-0.007615044,0.01821787,0.00351634,0.003104887,-0.038714554,-0.01268541,-0.019889,0.026788749,0.024218751,0.032941554,0.0017660825,0.006785808,0.0076466943,-0.010178712,-0.0011283305,-0.002272486,0.0023199613,0.008254378,-0.017230382,-0.009817899,-0.010590165,-0.028991604,-0.012267627,-0.0016917045,0.01831915,-0.019964961,0.020711906,0.02118033,-0.023231264,0.010343293,-0.016040333,-0.01836979,-0.014685703,0.033194754,0.0007651442,0.006095833,-0.006811128,-0.030460175,0.014217281,-0.0015769724,0.004918445,0.016470777,0.010552185,0.04524716,0.013331074,-0.021762693,0.0038455022,-0.015090827,-0.0045766225,-0.005649565,-0.014521123,0.023762988,-0.0030922268,0.046108045,0.0015413659,0.0032267403,-0.0019528188,0.00564007,0.037094064,0.038714554,-0.011799203,-0.0045576324,-0.0062635792,0.00044112498,-0.024408653,-0.0053488878,-0.015090827,-0.012153686,-0.011482702,0.0010674038,0.0076656844,-0.011514352,-0.017888706,0.00043400368,-0.013584276,0.0018784407,0.0033485936,-0.022737522,-0.012634769,0.016065653,-0.00026942254,0.0068680984,-0.066794634,0.023433825,-0.0041651693,0.0037727067,-0.008950683,-0.01823053,0.0000348647,-0.0007311202,0.00281054,0.0341316,0.027295154,-0.02545944,0.024851756,0.0058173114,0.0049880752,-0.028713083,-0.017597524,-0.02268688,0.011007948,-0.02838392]},{\"id\":\"c6bcf8ae-6940-4a18-849a-996c7c7c703e\",\"text\":\"As far as I know, no improvement. Please give me more time to post if the tea worked for me. I want to put in a great review that is truthful. Thank you.\",\"vector\":[-0.026098022,-0.0054156366,-0.007656476,-0.030625904,-0.0011237198,0.0033101058,-0.022335788,-0.024395116,-0.013425235,-0.0021847358,-0.01095008,0.00932638,-0.015260149,-0.016105002,-0.01947121,-0.03569502,0.04131857,0.004392573,0.0013935117,-0.0048315004,-0.0058017606,-0.007062439,-0.021319324,0.02009165,0.0086201355,0.006484903,0.017345877,-0.028724985,-0.0022606405,0.0010181132,0.012448373,0.00011488839,-0.008098704,-0.03168197,-0.008191109,-0.030810716,-0.0010016123,0.010560656,0.015233747,-0.005036113,0.0059865722,-0.0010222385,0.020421669,-0.01384766,-0.038546395,0.02075169,0.010989683,-0.023259846,-0.0241311,0.029226616,0.014916928,-0.045569234,-0.024870345,0.0054651396,0.0029388326,0.012019347,0.026982477,0.02493635,-0.009207572,-0.009583795,0.003603824,0.0095375925,-0.0072868527,0.013504439,-0.009207572,-0.008936956,-0.025675597,0.015339353,0.013247023,0.025345575,0.0066367127,0.029860256,0.002910781,-0.007412261,0.048658226,-0.0125275785,0.00089353055,-0.0041648587,-0.02237539,-0.00046450386,0.0056994543,-0.008653138,-0.019563615,-0.0019075186,0.025121162,0.04807739,0.014850923,0.012996208,-0.01735908,-0.01335923,0.0009875863,0.0035642216,-0.00074460875,0.022652607,-0.025503986,0.015220546,-0.002427301,0.041529782,0.0014454898,-0.0025527086,0.0019025683,-0.017029058,-0.02494955,-0.017187469,-0.033107657,0.0072934534,-0.012435173,-0.025147563,0.030837117,-0.007253851,-0.030599501,-0.0027573213,0.0032705034,-0.0029239818,-0.013728853,0.009590396,0.0055542453,-0.025556788,0.00041025676,-0.018375542,0.012441773,-0.04295547,0.031127535,-0.0035774224,0.006177984,-0.004488279,0.011821335,-0.021147715,0.0177023,0.027484108,0.0091283675,0.027404903,0.022771416,0.011405509,-0.0082109105,0.00067282934,-0.033081256,-0.004567484,-0.010448449,-0.015563767,-0.0060591768,0.024329113,-0.004092254,0.0029899857,-0.012164556,0.01077847,0.0029850355,-0.0012681038,-0.008191109,-0.0121183535,0.013755255,-0.030916322,0.013247023,0.012006146,0.000071934155,0.014679313,-0.013088614,0.021279722,-0.012514378,-0.012910402,0.010158031,-0.0061317813,0.010177833,-0.010527655,0.025147563,0.024117898,0.027959337,-0.0273521,0.0069634328,0.0054156366,-0.006679615,0.02880419,-0.0012433523,0.015814584,-0.0032408014,0.01319422,0.0014108376,-0.0020642783,0.012666187,-0.013953268,-0.0044552768,0.004682991,0.025768,-0.0011022685,-0.0029536835,-0.01820393,0.03334527,-0.023246644,0.0027787727,-0.010910478,0.011035886,0.023629468,0.004633488,-0.004214362,-0.6374412,-0.034850165,0.015563767,0.02009165,0.017108263,0.015867386,-0.013570444,0.013431835,-0.029833855,0.010692664,-0.027932936,0.0028513772,-0.010989683,-0.007999697,0.020025644,-0.009451788,0.019695625,-0.017794706,-0.008230711,0.00001183433,-0.012771794,0.015893787,-0.00033662093,-0.0076366747,0.0045938855,-0.010362644,0.016078599,0.008415523,-0.035483804,0.030995527,-0.012164556,0.023233443,-0.006323193,0.013808059,0.06336394,-0.02543798,-0.008600335,0.0044354755,-0.011062288,0.01978803,-0.031998787,0.016527427,0.0045773843,-0.023589866,-0.020368867,-0.002816725,0.012362569,-0.0043496704,0.014996132,0.024170702,0.030810716,-0.005808361,0.0012103502,0.0038381387,0.023405055,-0.013174419,0.041793797,-0.009379183,-0.018613158,0.0077752834,-0.0020048746,0.018586755,-0.04419635,-0.030625904,-0.03556301,0.010085427,-0.015022534,0.01142531,0.013702451,0.0059007667,-0.0022094874,0.00981481,-0.019682424,0.012811396,0.017953116,0.021794554,0.017002657,-0.0016591782,0.0042572645,0.015880587,0.01738548,-0.029094609,0.008085502,0.0029932861,0.036170248,0.009847812,-0.0006715917,-0.019708825,-0.01593339,0.018877173,0.00034157123,0.023035431,0.017755104,-0.010514453,-0.0043694717,0.015524165,0.009273577,-0.00660041,0.019550415,-0.025239969,-0.010395646,-0.020659285,0.01784751,-0.00498661,-0.012758593,0.0038546396,-0.014204083,-0.0075244675,0.029728247,-0.0066994163,0.02302223,-0.014494501,-0.0016773293,-0.0011179445,-0.0004892554,-0.03104833,0.005098817,-0.0006662289,-0.008758744,-0.012784994,0.0010445149,0.023405055,0.020830894,0.013451636,0.003554321,0.016197408,0.014903726,0.0051747216,-0.025728399,0.015893787,0.01640862,-0.023048632,0.015088538,0.00080690015,-0.004333169,-0.00010973182,0.038704805,-0.016567029,0.006778621,-0.024197103,0.0005890866,0.015260149,0.0030774414,0.011247099,-0.00013211134,-0.006144982,0.010441849,0.018797968,-0.011940142,0.013379032,0.0058908663,-0.00949799,-0.02381428,0.018362341,-0.0021335827,-0.005184622,-0.008923755,-0.036803886,-0.035140585,-0.018230334,0.027906535,0.038229577,0.00081143796,-0.008006298,-0.0074716643,-0.02106851,-0.0074716643,0.01384766,-0.015233747,-0.013570444,0.0114187095,-0.021253321,-0.009418786,-0.008448525,0.0043859724,-0.0027490708,-0.015510964,-0.009577195,-0.007900691,0.0070360373,0.017121464,0.021002505,-0.002605512,0.0054090363,0.031629167,0.00740566,-0.013398833,0.034242928,-0.018375542,0.02914741,-0.011280101,-0.008540931,-0.015365755,0.0018926676,-0.012824597,-0.0081383055,0.0126001835,-0.0130094085,0.0225074,0.009022761,-0.00042696405,0.026005616,0.010045825,-0.0023695473,-0.008613535,-0.004709393,0.008771945,-0.0080459,0.03799196,0.010811472,-0.008930355,-0.017900312,-0.0066631143,-0.0036170247,-0.005049314,0.00017573593,-0.009398984,0.023537062,-0.022177378,0.012276763,-0.029173814,0.0042077615,0.008402322,-0.017834308,-0.011478113,0.000780911,0.011299903,0.032579623,0.032843642,-0.0151545415,-0.011352706,0.022929825,0.010804871,0.014415296,0.021622945,-0.026454445,0.03553661,-0.013385632,0.0402625,0.012085351,-0.0006736544,0.023563465,0.018454747,-0.004910705,0.008943556,-0.008976558,0.01850755,-0.0058149616,-0.0049371067,-0.007161445,-0.0043166685,0.026982477,-0.008316517,-0.01416448,0.010217435,-0.010580458,-0.003752333,0.0047885976,0.027536912,0.032896444,0.005329831,0.030837117,0.016699038,-0.024038695,-0.0042110616,0.00595357,0.021213718,-0.021002505,-0.0027540212,-0.017293075,0.0045575835,-0.0151809435,0.03551021,-0.052090436,0.026771264,-0.0139268655,0.017425083,0.0009867613,-0.0021203817,-0.014402095,-0.0046598897,-0.020540476,0.027272895,-0.0052539264,0.0012656286,0.00020347827,0.002301893,0.01143191,-0.015405358,0.03184038,-0.0054090363,-0.0060888785,0.007755482,0.004890904,0.0037226314,-0.00026257258,0.054334577,-0.005435438,0.016448222,0.0025147563,0.0030031865,-0.007016236,0.007174646,-0.024711937,-0.006385897,0.009286777,-0.0026748162,-0.027114484,0.018599955,-0.008567332,0.010171232,0.0035048178,-0.0053661335,-0.0052638273,0.014006071,0.008250513,-0.017319476,-0.02109491,0.016223809,0.013247023,0.004471778,-0.011016085,0.011240499,0.013913665,0.103494436,0.02525317,0.013808059,0.016369017,0.008144906,0.023299448,-0.0036401262,-0.011629923,0.0193128,-0.03925924,-0.005164821,0.00980821,-0.0024570026,0.017134665,0.0023431457,-0.00019460898,0.006725818,-0.017319476,-0.0027886734,-0.019207194,-0.016619833,-0.0006674665,0.0107916705,0.005920568,0.008342919,0.026956076,0.02010485,-0.0025543587,0.025873609,0.013280026,-0.005184622,0.003607124,-0.008059101,0.021372128,-0.033926107,0.04393233,0.008521129,-0.007465064,0.01593339,0.01432289,-0.02013125,-0.0023431457,0.012903802,-0.021860559,-0.0037721344,-0.007267052,-0.005854564,0.027022079,-0.0034685156,-0.017345877,0.011662925,-0.005240726,-0.033239666,0.004956908,-0.0029998864,0.006785222,-0.02637524,-0.01898278,0.0006715917,0.02219058,-0.02428951,-0.011940142,0.006937031,-0.017636295,-0.032606028,-0.036830287,-0.025662394,-0.02431591,-0.0024421518,-0.013082013,-0.003653327,-0.00022895173,-0.010824673,0.0014570405,0.018428346,-0.0056730527,0.0075706705,-0.02348426,0.0066697146,0.013808059,-0.018494349,-0.044328354,0.004633488,-0.0023282948,0.010593658,0.006871027,-0.008989759,-0.0022754914,0.0016022496,0.020184055,0.019880436,-0.0016525777,0.028909797,-0.019748427,-0.008191109,-0.01735908,0.0128708,0.011445112,-0.0051384196,0.003201199,0.0006823174,0.007933693,-0.012468175,-0.016553828,0.004442076,0.011280101,-0.00014768419,0.0025972615,-0.011134892,-0.004138457,0.035483804,0.0038678404,-0.004616987,0.009379183,0.0070492383,0.031180337,0.0021335827,0.02365587,0.012950005,-0.009233974,-0.029913059,-0.015854185,0.009425386,-0.0225074,0.0114187095,0.0037721344,-0.0003677666,0.0049965107,0.00051070674,0.010085427,0.0134912385,-0.011893939,-0.01689705,-0.018560354,-0.019761628,-0.008956756,-0.008065701,0.0066202115,0.011233898,-0.011181095,-0.014864123,-0.019180791,-0.01899598,-0.018375542,0.0071812463,-0.026124423,-0.016817845,-0.017834308,0.0045476826,0.015471362,0.012336167,0.0014760167,-0.038229577,0.02479114,-0.00085887837,-0.012983007,-0.01705546,0.003268853,-0.009920416,0.014032472,0.0008572283,-0.026203629,-0.0071680457,0.010534255,-0.0056103487,-0.014190882,0.0045476826,-0.019880436,-0.022560202,0.014402095,-0.009557394,0.0014454898,0.034691755,-0.0052242246,-0.012184357,0.008144906,-0.027642518,-0.0071416437,-0.03350368,-0.01947121,0.013715653,0.005917268,-0.0025527086,0.019761628,0.036460668,0.011761931,0.006418899,0.027246494,0.022071771,0.003221,0.025385179,-0.02670526,0.027589714,-0.014600107,-0.0033365074,-0.026111223,-0.019867234,-0.014309689,0.004910705,0.02316744,0.010243837,0.016487826,-0.018137928,0.016303014,-0.014428496,-0.015378956,-0.009920416,-0.03363569,-0.04105455,-0.029807452,-0.005131819,-0.008428724,-0.025715198,0.008171308,-0.005392535,-0.012685988,-0.033846904,0.02285062,-0.003250702,-0.016619833,0.002188036,-0.018137928,0.026494047,0.023669071,0.015418558,0.061832644,-0.0032127497,0.012824597,0.03746393,0.0063132923,0.0034817164,0.009762007,0.036460668,-0.01994644,0.008389122,0.009946818,0.012454974,-0.012659587,0.0034355135,-0.0021995867,0.0056730527,0.0028744787,-0.021768153,-0.0008885802,-0.032711633,0.0014100126,-0.0120457485,-0.0026137624,-0.009359382,0.00739906,-0.008125105,0.030282682,0.010012822,0.015735378,0.011280101,-0.0015939991,-0.03907443,0.0016459773,-0.010468251,-0.008402322,-0.019497612,0.025490785,-0.002861278,-0.0134912385,-0.02027646,0.0024999054,-0.007940293,-0.026678858,-0.022150977,0.024329113,-0.02654685,-0.0050790156,-0.02124012,-0.005055914,0.0049305065,-0.03395251,-0.01432289,0.0014108376,-0.013055611,0.018797968,-0.00074584637,0.016870648,-0.022929825,0.0047423947,-0.017319476,0.0020543777,0.010309841,-0.010191034,0.020038845,-0.0035642216,-0.01658023,-0.0192996,-0.0018283137,0.0402361,0.002234239,-0.021174116,0.019840833,0.031998787,0.0005160696,0.014969731,-0.0056730527,-0.0038546396,-0.024553526,-0.008455126,-0.0073792585,-0.051720813,0.028381765,-0.028883396,-0.03733192,-0.030335486,0.0010436899,-0.0022936426,-0.029253019,0.0053133303,0.0029355325,0.029728247,0.01061346,-0.008976558,-0.045595635,0.0037622338,-0.010989683,-0.0000748734,0.030652305,-0.011682726,0.0022144376,0.0064221993,0.022296187,0.0048876037,-0.006494804,0.016672635,-0.014309689,0.020844096,-0.02155694,-0.021768153,-0.015682574,-0.015273349,-0.019576816,0.04374752,-0.007788484,-0.011055687,-0.01899598,0.034480542,-0.011214097,0.024527125,-0.0015684225,-0.011154694,-0.018718764,-0.022494199,-0.00034755285,-0.023946289,-0.016487826,0.026942875,0.026744863,-0.016778244,-0.02027646,-0.016078599,-0.02927942,-0.0070492383,-0.0076828776,0.031761173,-0.007069039,-0.041873004,-0.024527125,0.024038695,-0.00867954,0.0064354,-0.009544193,-0.014124878,-0.021834157,-0.012276763,0.0132998265,0.007465064,-0.029226616,-0.017887112,0.036117446,0.023603067,-0.025477583,0.0017309575,0.010540855,-0.003844739,-0.013913665,0.0018761666,0.0047522956,-0.0035477206,0.0075244675,-0.022652607,-0.009729004,0.01479812,0.0026979176,-0.012983007,0.021754952,0.02751051,-0.0039998484,0.014666111,-0.004230863,-0.022692211,-0.018533953,-0.006003073,-0.004237463,0.006243988,-0.007511267,0.023141038,0.0072010476,-0.024197103,-0.010435249,0.011161294,-0.023550265,-0.0048215995,0.017068662,-0.011398909,-0.029041804,0.026494047,0.006019574,0.01320082,-0.015101738,-0.0060855784,-0.0036467267,-0.012124954,0.018758366,0.031180337,-0.02349746,-0.016804645,0.0037556335,-0.017147865,0.017596694,-0.016633034,0.0043166685,-0.023682272,0.0040196497,0.0047720964,-0.00014139316,-0.040632125,0.017266674,-0.0136364475,-0.017530689,-0.003940445,0.23845962,-0.0006258014,-0.008415523,0.03717351,-0.0009108566,-0.0054651396,0.047417346,0.03551021,-0.008758744,0.0008960057,0.035932634,0.0031318946,-0.014454898,-0.0044156746,-0.0048050988,-0.028434567,-0.026890071,-0.020778092,0.0037127307,-0.021979365,-0.008567332,-0.00531003,0.007854488,-0.0064618015,0.039972086,-0.0057555577,0.0025015555,-0.021108111,-0.0012639785,-0.00096778513,-0.026164027,-0.012151355,0.01623701,-0.005346332,-0.049951904,-0.004778697,0.030784313,-0.008224111,0.022177378,0.02204537,-0.025319174,0.0022771414,0.0144813005,-0.0073396564,-0.022467796,0.03746393,-0.00031063182,-0.01593339,-0.005775359,0.04102815,-0.0037721344,-0.026903272,0.03265883,-0.0032457518,0.0016014245,-0.023735074,0.022982629,-0.022903424,-0.016963053,-0.017570293,-0.0273521,0.023378653,0.014652911,0.02043487,-0.038546395,-0.0007470839,-0.019854033,-0.0034784162,0.020632882,0.0024207004,-0.017240271,-0.018731965,-0.0147453165,0.012468175,-0.034137323,-0.02220378,0.0209233,0.036619075,0.032104395,0.00067984225,-0.0015552216,-0.0061878846,-0.025926411,-0.024606328,0.0000509727,-0.023603067,0.014309689,0.0225206,-0.01816433,0.0005531969,-0.008455126,0.01784751,-0.010705865,-0.012501177,0.012283363,-0.007465064,0.0046070865,0.012454974,-0.0027474207,-0.0016451522,-0.003989948,0.030889919,0.003828238,0.010554056,-0.0011113441,0.0056400504,-0.012811396,0.0068116235,0.011227298,-0.0010824673,-0.0015667723,-0.01689705,0.011227298,-0.010837873,-0.030837117,-0.004003149,0.009616798,-0.018058723,0.0026616154,-0.029041804,-0.003123644,-0.016672635,-0.010884076,-0.014402095,0.0038018364,-0.0110094845,-0.015365755,-0.015854185,0.030045068,-0.041767396,0.0080459,-0.012078751,0.0089831585,-0.008600335,-0.010474851,0.00022647658,0.0032556523,0.012164556,0.0019487711,-0.013088614,-0.023180641,0.0077686827,0.008105304,-0.006468402,0.016382217,-0.000346109,-0.01820393,-0.0060921786,-0.013940066,0.007986496,0.0049668085,-0.0014859174,0.0022325888,0.00006218824,0.035483804,0.03170837,-0.037912756,-0.027985739,-0.012501177,-0.00071490696,-0.029543437,-0.013689251,0.036011837,-0.00022544526,-0.017240271,0.01801912,-0.16696398,0.01881117,0.010263638,0.0021335827,0.013049011,0.0004442901,0.029569838,-0.0007499716,-0.0048050988,0.024012292,0.017768305,0.040024888,-0.010923679,-0.015748579,-0.018784767,-0.006537706,-0.032843642,0.009900616,0.023761477,0.0044981795,0.00073429564,-0.018560354,0.006158183,-0.018045522,0.0043100677,0.0060888785,-0.0009108566,0.026969276,-0.019233596,0.009273577,-0.0402361,-0.00289593,0.021688947,0.0012169506,0.027589714,0.0009026061,-0.004049352,-0.013583644,-0.006451901,-0.0066202115,0.0052539264,0.00852773,0.010098628,-0.009068964,-0.021147715,0.009266976,0.007735681,0.013530841,-0.0010486402,-0.0137816565,-0.016118202,-0.027932936,-0.0071944473,0.007550869,0.008012898,0.009194371,-0.018731965,0.0017870611,-0.017240271,0.009709204,0.0135176405,-0.0094649885,-0.00038694905,-0.012771794,0.00579186,-0.012560581,-0.014217284,-0.017662698,0.02108171,0.009418786,-0.004620287,-0.010177833,0.03923284,0.0109830825,0.016831046,0.0085013285,-0.016448222,0.017623095,0.015524165,0.011200896,-0.018256735,0.0136364475,-0.013438435,0.019814432,-0.013570444,0.028460968,0.011979745,0.021358928,-0.016949853,-0.042585846,0.015339353,-0.00547174,-0.0047687963,-0.033714894,0.020896899,0.021596542,0.00353782,0.0147453165,0.004844701,-0.015418558,0.008428724,0.017425083,-0.016910251,0.016553828,0.03157636,-0.0051384196,-0.041952208,0.0067159175,0.033714894,0.00064436503,0.0013077062,0.005715955,0.015999394,0.03471816,-0.031629167,0.023391854,-0.017121464,-0.0028942798,0.0046103867,-0.007610273,0.024870345,-0.03165557,-0.0039305445,0.028091347,0.004283666,-0.038493592,-0.106240205,-0.03603824,0.0013621596,-0.0071020415,-0.009359382,0.005999773,0.016659435,0.0031813977,-0.016184205,0.009577195,0.000029340887,-0.026982477,-0.008534331,-0.006451901,0.027008878,-0.025028756,0.004712693,-0.0015717227,-0.022903424,0.013530841,-0.0019421707,-0.02832896,-0.024857145,-0.014098477,0.015273349,-0.027616117,-0.01820393,0.0041615586,0.02959624,0.008870951,-0.012210759,-0.011590321,-0.004715993,-0.023510661,-0.023075035,0.004283666,-0.026837269,0.004438776,0.04279706,-0.014784919,-0.00209398,-0.0042902664,0.017913513,-0.03360929,-0.0057951603,-0.009715804,-0.0151809435,0.03107473,0.002186386,-0.014177681,-0.018071923,0.015260149,0.0047027925,-0.014969731,0.02927942,-0.007986496,0.010158031,-0.008738943,-0.019972842,0.0052836286,-0.01754389,0.016765041,-0.009286777,-0.0056235497,0.012151355,0.019550415,0.036434263,0.007696078,0.009055763,-0.0033744597,0.00982141,0.012157955,-0.014705714,0.019326001,-0.043615513,-0.0016798044,-0.029015403,-0.041107357,0.025226768,0.00837592,-0.020527275,-0.0007982371,-0.0020032246,-0.039655264,0.03912723,-0.016857447,-0.0025312572,0.00061713834,0.0122635625,-0.013953268,-0.014824522,0.020646084,-0.00079246174,-0.005970071,-0.034902968,0.027484108,-0.009002959,-0.009379183,0.03250042,-0.017477887,-0.027563313,-0.023193842,-0.030124273,0.01738548,0.010527655,-0.02541158,-0.014507702,0.0025972615,0.004392573,0.011464912,-0.008870951,-0.026507247,-0.0074386625,0.013121615,-0.008098704,-0.011062288,0.0060789776,-0.0034388138,0.0073858593,0.0038381387,0.03569502,-0.02558319,0.014507702,0.015260149,0.0035708218,0.0071020415,-0.0010651412,0.0321836,-0.008131705,0.010481452,-0.018599955,-0.011781733,-0.00020316888,-0.023946289,0.018943178,-0.0035774224,-0.0016121502,-0.009735605,-0.0062637893,0.027220093,0.0060393754,0.0063132923,-0.013583644,-0.026150825,0.01688385,0.0009182821,-0.017623095,0.008276914,-0.04604446,0.0057984605,0.00034672781,-0.0014265137,0.016329415,0.0058842655,0.001721057,-0.029728247,0.014085275,-0.011557318,0.0041417573,0.011115091,0.0031450954,-0.0193128,0.03181398,-0.0054981415,-0.010257037,-0.02237539,0.034374937,0.015431759,-0.0025840607,0.00029990615,0.0059007667,0.0066235117,0.012580382,0.006640013,0.01705546,0.0028447767,0.014784919,0.02493635,0.012850999,-0.017398681,-0.014560505,0.014692513,-0.0036599275,-0.012025948,-0.01577498,0.005214324,0.007260451,0.02122692,0.0049833097,0.03152356,0.02154374,0.018217131,-0.02122692,-0.009478189,0.020144451,0.019590018,0.005247326,0.02686367,-0.0017623096,0.008309917,-0.006342994,0.019246796,0.015629772,0.011728929,-0.0031252943,-0.009068964,-0.020619681,-0.003557621,-0.020487674,-0.022626206,-0.014969731,0.020065248,0.011306503,-0.007451863,0.037833553,0.019207194,-0.0019256697,-0.00885775,-0.0030790914,-0.012177757,-0.02105531,0.02605842,-0.00011860112,-0.01817753,0.017319476,-0.015893787,0.01062006,0.014415296,0.023391854,-0.001400112,0.012322966,0.02397269,-0.0064387,-0.013689251,-0.023550265,-0.010144831,0.006564108,0.010488052,-0.015616571,0.028434567,-0.020738488,0.054281775,0.014032472,-0.022626206,-0.00932638,0.028038543,0.018745165,0.016976256,0.010191034,0.014256886,-0.017504288,0.0011113441,-0.006742319,0.014283287,-0.010527655,-0.021979365,0.011656324,0.01912799,0.024012292,0.012943405,0.003201199,0.029965863,0.0027721722,0.010171232,0.0077752834,-0.015141341,-0.013794857,0.00547504,0.0017342578,-0.0067027165,-0.046730906,0.011247099,0.022335788,0.0025494085,0.012507778,0.010389046,0.0030675407,-0.007273652,-0.004775397,0.026335636,0.017451484,0.008804947,0.024183903,-0.013913665,0.0010098628,-0.02461953,-0.008877552,-0.0018002619,0.0046400884,-0.010012822]},{\"id\":\"967131ae-29c9-41b2-85e6-67892519418b\",\"text\":\"None issues thus far using bounty \",\"vector\":[-0.022399299,-0.009227384,0.00625842,-0.009833151,-0.01655294,0.008353952,-0.017679948,-0.010340305,-0.025244996,-0.033613034,0.019300025,-0.019511338,-0.012918337,-0.007938367,0.039501656,0.017229145,0.016834693,-0.025583098,0.023343168,-0.0060400623,-0.012819724,0.0074664326,-0.039135378,0.010044465,0.0076495716,0.00005247084,0.026667843,-0.020581996,0.005663219,-0.012312571,0.03028836,-0.010128991,-0.014411624,0.013834032,-0.023484044,0.006096413,0.005765354,-0.0065049534,-0.0028650675,0.016299363,0.012390052,0.014566587,-0.004071319,-0.0070790234,-0.009699319,0.006399296,0.014594763,-0.003972706,-0.008811799,-0.002954876,0.017017832,-0.0034725955,-0.029302226,0.022061195,0.0008809158,0.0015822146,0.024878718,0.007410082,-0.012361877,-0.015975349,-0.008854062,-0.00047501657,-0.008086287,0.0005243232,0.00625842,-0.00090336794,-0.0077622724,0.017510898,-0.0038459173,-0.00503632,0.016975569,-0.005222981,-0.0032295843,-0.007635484,0.029555803,-0.004317852,-0.021117326,0.008945632,0.036965884,-0.014439799,0.013207133,0.015834473,-0.002051508,0.042544577,0.024061635,0.010150122,0.005261722,0.021525865,-0.0111151235,-0.014622938,0.0041875415,0.017975789,0.021215938,0.024709666,-0.029414928,0.016172575,-0.0076213963,0.029217701,0.006399296,-0.018201191,-0.015270968,0.017947614,-0.021187764,-0.012326658,-0.019370463,0.00093858695,0.002738279,-0.010988335,0.024822367,0.016567027,-0.028780986,0.018835133,-0.0014334142,-0.00916399,0.0006026855,0.0017415807,0.012361877,-0.022990977,-0.005434295,-0.0025974028,0.025653536,-0.011911074,0.016581116,-0.012333701,0.008121506,0.0027312352,-0.015327319,0.011129211,0.018060315,-0.00605415,0.019553602,0.038994502,0.007096633,-0.011502532,0.002805195,0.0056667407,-0.01844068,-0.001064495,0.008191944,-0.011882898,0.011904029,0.056463137,-0.018835133,0.021060975,0.015299143,0.0070649358,0.0058745327,-0.02227251,-0.0073326,-0.016412064,-0.020990537,-0.018567469,0.010629101,0.009783844,0.0011155625,-0.015031478,-0.0010565707,0.0042650234,0.0062795514,-0.01738411,-0.009628881,0.011685671,-0.0023138898,0.00981202,-0.0040431437,0.023385432,0.037923843,-0.02775259,-0.010826328,0.007952455,-0.006617654,0.016355714,-0.01286903,0.025484484,-0.0025833154,0.01031213,0.0044833818,0.007712966,0.008170813,-0.010537531,-0.025301345,-0.007029717,0.029724855,0.024794191,-0.02090601,-0.00053092674,0.014439799,0.004571429,0.0067127454,-0.006670483,0.011770197,0.011509577,-0.010333261,-0.0024758973,-0.6757544,-0.017243233,-0.0013946733,0.0022187985,0.0010583316,0.00605415,0.0041206256,0.016778342,-0.017102357,0.03693771,-0.011058773,0.0005467753,-0.0005731896,-0.0056596966,-0.011044686,-0.013178958,0.022230247,-0.017975789,-0.0012802115,0.012213957,-0.0162571,-0.0076495716,-0.006216157,0.01046005,0.013129652,-0.022596525,0.018806959,-0.009896546,-0.009826107,0.0087836245,-0.019877616,-0.009706362,-0.0029971388,0.00033259965,0.058773503,-0.0056596966,-0.007082545,0.020779222,0.003058772,0.03924808,-0.029471278,-0.011093992,0.020229807,0.00046357038,-0.0052582,0.024047548,0.016721992,0.0047721774,-0.01366498,-0.021568129,-0.0049165753,0.015440019,-0.013383228,0.007952455,-0.007846798,0.0040854067,0.034148365,-0.0013400838,-0.0029302225,-0.009565487,-0.029527629,-0.010262823,-0.020765135,-0.028935948,-0.045136698,0.021258201,-0.0046841297,-0.0014501433,0.033838436,-0.014876515,0.008121506,0.005046886,-0.0028985254,-0.012601366,0.032767776,0.033359457,0.035726175,-0.010896766,-0.02038477,0.020990537,-0.010861547,-0.032316975,-0.014594763,0.013672024,0.0108826775,0.017510898,-0.009882458,-0.0012009686,-0.0074453014,-0.014108741,-0.01514418,0.0060717594,0.019835353,-0.0094668735,0.012749286,0.0272877,-0.0076284404,0.00931191,0.03493727,-0.029133175,-0.0023614354,0.019990318,0.014200309,-0.0049130535,0.026498793,0.0064380374,0.007846798,0.004930663,0.027851203,-0.010058553,0.02014528,0.007459389,-0.024258863,0.002990095,0.00047677752,-0.04440414,-0.00003067907,-0.0210328,0.0033211538,0.010847459,0.032598726,-0.0053814664,0.005370901,-0.011706803,-0.0036663,0.024413826,0.006511997,-0.02192032,0.0012282634,-0.012939469,0.014946953,-0.0056385654,0.020314332,-0.0023086069,-0.008987894,-0.003564165,0.0069663227,-0.015003303,0.0021395555,-0.009185121,-0.007903148,0.018454768,0.024343388,-0.0019969186,-0.008635704,-0.03104909,-0.0049236193,0.009713407,-0.025399959,0.01160819,0.0036451689,0.015820384,-0.017229145,0.0027189085,0.007853842,-0.00024763375,0.008396215,-0.021610392,-0.0054096417,-0.00007759191,-0.007138896,0.009023113,-0.019497251,-0.010178298,-0.0036240374,-0.013960821,-0.014989216,-0.0016544135,0.00625842,-0.033556685,0.003743782,-0.039783407,0.006304205,0.008206032,-0.013228265,-0.009347129,-0.039191727,-0.009318953,-0.017341847,0.019835353,0.005913274,0.0010873873,-0.007395995,-0.005578693,0.014961041,0.005339204,0.00801585,0.039219905,0.009826107,0.026202952,-0.011763154,0.00274004,0.008438477,0.031725295,0.00022782305,-0.01490469,-0.018947834,0.020469295,0.008523003,0.018947834,0.020117106,0.023639008,0.032204274,-0.037557565,0.0096007055,-0.038374647,0.00801585,-0.026372004,-0.00034074404,-0.0009192165,0.011826548,-0.0089667635,0.012643629,-0.008748405,0.02392076,0.0054096417,-0.009896546,0.014580675,0.010953116,-0.002379045,0.022497911,-0.0038529611,0.014890603,-0.00857231,-0.0061069783,0.0005639446,0.022948714,-0.008438477,0.019159148,0.009431655,0.0014263703,0.01914506,0.001260841,-0.008523003,0.006853622,-0.0066528735,0.029950256,0.0078186225,0.015623158,0.015003303,0.0017169273,-0.0023631963,0.0039586183,0.010488225,0.017764475,0.024836455,0.035754353,-0.022004845,-0.022638787,0.0019229586,0.0057160472,-0.011558883,-0.024582878,0.009628881,0.012418227,-0.033782087,0.0017160468,0.015834473,0.010269867,0.027090471,0.01160819,-0.000087442226,0.0027629323,0.004930663,0.028879598,-0.0051314114,0.0057407008,-0.013397316,-0.0026819285,-0.0036557345,-0.0070015416,-0.013094433,0.021060975,-0.014989216,0.04584108,0.003599384,-0.0050609736,0.032007046,0.0021536432,0.020511558,-0.04826415,-0.000007848614,0.037839316,0.02656923,0.00034888842,0.0012581996,0.006811359,0.012509797,-0.014693376,0.028132955,0.015665421,0.020539735,-0.0046735643,-0.005149021,0.0033563727,0.0052687656,0.030034782,-0.024794191,0.0028738722,-0.019271849,0.004212195,-0.003891702,-0.0078679295,-0.016102137,0.019046446,-0.01366498,-0.0012247415,-0.024343388,-0.0013779443,-0.001044244,0.017398197,0.0030799035,-0.01660929,0.00712833,0.0081003755,0.020962361,-0.01299582,-0.027372224,0.027682152,0.014228485,-0.0041276696,-0.026879158,-0.0070543704,0.01973674,0.09754261,0.023526307,0.010361437,0.02345587,0.0137635935,-0.007233987,-0.01760951,-0.023596745,0.025075944,0.0022804318,-0.008544135,-0.0066458294,-0.01531323,0.009755669,0.008346908,-0.0010759411,0.0013207133,-0.025822587,-0.0032190187,-0.0075791334,0.023582658,-0.00010268546,0.027907554,0.018736519,0.011051729,0.022962803,0.020751048,0.010474137,-0.0162571,0.0067127454,-0.005913274,0.00029628002,-0.007712966,0.02804843,-0.0074312137,0.022652876,0.0028404142,-0.0002973806,0.0026009248,-0.0061703725,0.0005524984,0.003951574,0.010333261,0.007233987,0.0074805203,-0.007536871,-0.027090471,0.015820384,-0.014510237,-0.0094668735,0.017989876,0.005504733,0.008677967,-0.0071846806,0.00080123276,0.026963683,0.0042685457,0.016102137,-0.005804095,-0.021821706,-0.024949156,-0.023286818,-0.0028914816,-0.00951618,-0.000936826,-0.03623333,-0.039501656,-0.01660929,-0.019793091,-0.0010213517,-0.0113687,0.025146382,-0.011305306,0.013686112,0.015454107,0.022836015,0.00981202,-0.0105657065,0.029274052,0.017694037,-0.00040523888,-0.010086728,0.007825667,-0.008656835,-0.017285496,-0.0027435618,-0.0022769098,-0.015834473,0.004064275,0.0017380588,-0.017370021,0.0059167957,-0.005208893,-0.020356596,-0.0012265025,0.009713407,0.010537531,0.025667623,-0.005828748,0.0068500997,0.02238521,0.011255999,-0.021497691,0.0028703504,-0.0023808058,-0.0040149684,-0.009502092,0.028851423,-0.022103459,-0.003530707,-0.00089676434,-0.027766677,0.015285055,0.0016473697,0.0075509585,0.011925161,0.0026502314,0.017637687,0.011037641,0.01172089,-0.0421783,-0.028006166,0.014003083,0.0033105882,-0.012622498,-0.006198548,0.008283514,-0.027851203,-0.0074382573,0.02032842,-0.023300905,0.005152543,0.005860445,-0.01405239,-0.041586623,-0.033274934,0.004148801,0.021793531,-0.020694697,-0.01175611,-0.02003258,0.0038740924,0.007019151,-0.02303324,0.007205812,-0.028541496,-0.026484706,0.018426592,-0.015989436,0.0121083,-0.008530047,-0.009671143,-0.024371563,-0.0040924503,-0.0045502977,-0.027020033,-0.012798592,0.0021360337,0.04305173,0.00916399,-0.0035518385,0.0022381688,0.018666081,-0.0042755893,0.009586618,-0.0012828528,-0.007395995,-0.020427033,-0.026893245,0.010685451,0.0036979974,0.0044023776,-0.0048496593,-0.0081849005,0.003418006,0.00013889502,-0.021511778,-0.013735418,-0.027682152,-0.019102797,-0.015186442,-0.029781206,-0.006638786,-0.008360996,-0.026625581,0.0049165753,0.0056808284,0.008107419,0.014376405,0.0009826107,0.02532952,0.01744046,-0.0017706363,0.014637026,-0.0044340747,-0.022314772,-0.020173457,-0.019398637,-0.0014651113,0.0103825675,0.021230027,0.0090512885,0.0076425276,-0.0009614793,-0.017778562,0.034148365,-0.0009773278,-0.006885319,0.008403258,-0.027372224,0.008297602,-0.030908214,-0.002696016,-0.0005907991,-0.013559324,-0.010579795,-0.008375083,0.00986837,-0.010558663,-0.010234647,0.007973586,0.010481181,0.024596965,-0.0053779446,0.037078585,0.0520678,0.020060755,-0.03338763,-0.01031213,-0.0118476795,-0.01732776,0.0068148808,0.019793091,0.006047106,-0.006371121,0.009783844,0.0075016515,-0.039388955,-0.03130267,0.015749946,0.012854943,0.019370463,-0.037191287,-0.0211455,-0.03845917,0.0018102578,-0.008670923,0.010636144,-0.00028615457,-0.018637907,0.002884438,0.0080017615,-0.018891484,0.019229585,-0.010474137,0.00010411623,-0.010509356,0.018426592,-0.020229807,-0.018553382,-0.011572971,0.029217701,-0.022596525,0.017637687,-0.0064274715,0.018933747,0.0057125255,-0.015031478,0.009262603,0.028245656,-0.006476778,0.0019000663,0.006821925,-0.0029812902,0.012030818,0.0007994718,-0.023188204,-0.033021357,-0.001081224,0.0060788034,0.013143739,0.02827383,-0.0023878496,-0.0068994067,-0.0152287055,-0.0053744228,0.0001508915,-0.023357255,0.020708784,-0.012953556,-0.0016368041,0.0011507815,-0.024202513,0.0053849886,0.00972045,0.022850102,0.013672024,0.016693816,-0.030908214,0.007593221,0.0036240374,0.0003158706,-0.017764475,0.021934407,0.0022381688,-0.01236892,-0.009382348,-0.0074241697,0.0021395555,-0.021835793,0.0194409,0.01490469,0.006191504,0.01007264,0.036148805,0.012918337,0.023963023,0.006008365,-0.00986837,-0.00070438045,-0.0067620524,0.0011948054,0.0089245,-0.0020303766,-0.006371121,-0.017877176,0.019835353,-0.014277792,-0.021990757,-0.023878496,-0.017524986,0.0019352853,-0.019567689,-0.028668284,-0.01340436,-0.0046172137,-0.00090248743,0.015538633,-0.020652434,0.007029717,0.024991417,0.021849882,0.0085018715,0.009178077,-0.010086728,-0.008198989,-0.0020796834,-0.0023367822,-0.0089245,-0.0161444,-0.02068061,0.0076073087,0.0161444,-0.020342506,0.0048003527,-0.031837996,-0.006050628,-0.020314332,-0.026611494,0.026583318,0.033669386,-0.005504733,0.018694257,0.029950256,0.018750608,-0.0025745104,-0.018637907,-0.02721726,0.0066141323,-0.015764033,0.023005065,-0.015158267,-0.034740042,0.0036275592,0.018299803,0.008311689,0.018454768,0.012967644,-0.01938455,0.016130311,-0.019821266,-0.008994938,0.006311249,0.004722871,0.019074623,-0.013953777,-0.010917896,0.017539073,-0.012312571,-0.018299803,-0.015679508,-0.002160687,0.012242132,0.024287038,-0.030710988,-0.009340085,0.003386309,-0.025202733,0.010424831,0.019356374,-0.033669386,-0.0012546777,-0.0038987456,-0.023540394,-0.014228485,0.01984944,-0.0068712314,-0.007741141,0.012812681,-0.013531148,0.009135814,0.0045256442,-0.0027840638,-0.009128771,0.00086286606,-0.008544135,-0.012178738,-0.015918998,0.006011887,-0.0059977993,-0.019018272,-0.012939469,0.006487344,0.006195026,0.029443102,0.000050930008,-0.021539954,-0.02975303,0.015130091,-0.0069733663,0.0050292765,-0.039867934,0.0038318296,0.008269426,-0.019314112,0.0141298715,0.2346432,0.0010275149,-0.009065377,0.022962803,-0.0025709886,-0.0011842396,0.010136034,-0.0036205156,0.0054624705,0.015172355,0.047221664,-0.007029717,-0.017750388,-0.011594102,0.010086728,0.03034471,-0.020173457,-0.011889942,-0.023300905,-0.010896766,0.0037508258,0.0038388735,-0.006561304,-0.0012661238,0.013777682,0.0016614574,-0.003747304,0.0023138898,-0.0019476119,0.01316487,-0.011143299,-0.02473784,0.017426372,0.001512657,-0.008699099,0.0011208454,-0.009706362,-0.011255999,0.017341847,0.006300683,0.001353291,-0.0003660577,0.015158267,-0.018412504,-0.0071529835,0.018919658,0.007536871,-0.007734097,0.0017935287,0.011763154,-0.027949816,0.0041875415,0.010826328,-0.008114463,-0.00048822368,-0.016045786,0.0019423291,-0.010953116,-0.0064626904,-0.024202513,0.000512877,0.011185561,-0.009368259,0.005043364,-0.056801237,0.01520053,-0.0013849881,0.016397977,0.019525426,-0.010333261,0.009741582,-0.0062020696,-0.01355228,0.015566808,-0.010276911,-0.030429235,0.017891264,0.010234647,0.01684878,-0.0032260625,0.013249396,-0.010995379,-0.011453226,-0.027823027,-0.013841076,-0.04023421,0.019666301,0.01631345,0.006649351,0.014806077,-0.023723533,-0.009804976,-0.014566587,-0.011389832,-0.0063570333,-0.009544355,0.0021325117,0.03138719,-0.0018895005,-0.016440239,-0.018046226,0.04136122,-0.014975128,-0.005265244,-0.027174998,0.0024371564,-0.0106995385,0.0047792215,-0.0053885104,-0.012573191,0.013171914,-0.020793311,0.005476558,0.00092626025,0.0059907557,0.035331722,-0.011051729,-0.019215498,0.005004623,-0.007635484,0.024061635,-0.010051509,-0.0042192386,0.009023113,0.0058146603,-0.008656835,-0.009023113,0.004398856,-0.0033070662,-0.030710988,-0.0047616116,-0.007839754,-0.002523443,-0.021849882,-0.018243454,-0.047137138,0.012270307,0.00022276031,-0.01984944,0.008896325,0.0010099055,0.007529827,0.0154118445,-0.014890603,-0.0015954217,-0.033246756,0.024639228,-0.011967423,-0.017708125,0.010593882,-0.020257981,-0.0119815115,-0.003456747,0.008297602,0.030964565,-0.019807179,-0.02427295,-0.032316975,-0.006008365,0.004891922,-0.03989611,-0.0034690737,0.032373324,-0.009058332,-0.03169712,0.007938367,-0.18505482,0.023286818,0.00058199436,-0.0071459394,0.020342506,-0.005325116,0.029133175,-0.0055329083,-0.02780894,-0.0054906458,0.018299803,-0.018215278,-0.021215938,-0.011488445,0.009340085,-0.019539513,-0.023793971,0.023695359,0.017567249,0.0026836896,0.020314332,0.0007519261,-0.010431875,-0.008339864,0.022878276,-0.0039022677,-0.0138129005,0.010946072,0.013045126,-0.017665861,-0.021286378,-0.02786529,0.023047328,0.014059434,0.03352851,0.014122828,0.002842175,0.003352851,0.023906672,0.010234647,0.0018049749,0.041135818,0.013291659,0.008170813,-0.0162571,0.018722432,0.03521902,0.0020796834,0.0070543704,-0.012770417,0.0014475018,-0.02090601,-0.012143519,-0.0036310812,0.0004290117,0.0018067359,-0.0026555143,-0.0077481847,-0.012375965,-0.008093331,0.00309223,-0.010939028,0.0025428133,0.00044772183,-0.018187104,0.003460269,-0.019581776,0.013749506,-0.009452785,0.0034814004,0.0036909536,-0.0072198994,0.0070755016,0.01172089,0.016693816,0.0020497472,-0.014101696,0.0065401723,0.007677747,-0.000030706586,0.012404139,0.021300465,-0.012080125,0.0029724855,0.016891044,0.005254678,0.014242573,-0.00425798,0.012692936,-0.013418447,0.02292054,-0.015918998,-0.0056350436,0.0008043144,-0.00069293426,0.029724855,0.0024688535,0.008713186,0.015510458,-0.0034761175,0.0006141317,0.02675237,-0.023554482,0.021370903,0.021004625,-0.007783404,0.007903148,0.03386661,0.018750608,-0.015594983,0.00041052172,0.0025797933,0.016355714,0.019159148,-0.006064716,0.032091573,-0.016355714,0.002199428,0.014932865,-0.023596745,0.050630867,-0.00049042486,-0.019342287,-0.0052898973,-0.016003523,0.007712966,-0.10120538,-0.004687652,-0.0015963021,-0.01884922,-0.012974688,0.012375965,0.0028245656,0.017708125,-0.0061421976,0.018285716,0.011685671,-0.015510458,-0.012636585,0.008621616,0.005198328,-0.017933527,-0.0023878496,-0.0047052614,0.009368259,0.022864189,-0.015031478,-0.010065597,-0.0056385654,-0.02214572,-0.0226247,-0.0073326,-0.025132295,0.018201191,-0.008170813,0.00590623,0.006448603,-0.0027312352,0.004751046,-0.020173457,-0.0053568133,0.0004206472,-0.01632754,-0.027470836,0.0058534015,-0.03893815,0.012432314,-0.0020708784,0.007846798,-0.00951618,-0.012601366,0.0017327759,0.0060330187,0.013031038,0.02214572,-0.010143078,-0.045700204,-0.0026414266,-0.00957253,-0.022300685,0.018356154,-0.010791108,0.008748405,0.02599164,-0.016989656,-0.003021792,-0.009276691,-0.015510458,-0.020257981,0.041276693,0.0043918123,0.0062760296,-0.02403346,-0.025188645,-0.017130533,-0.009769756,-0.02851332,0.021075062,-0.01890557,0.0048461375,-0.013186002,0.004969404,-0.0036944754,-0.029893907,0.015820384,0.010079684,-0.0137635935,-0.006909972,0.010995379,-0.016059874,0.04913758,0.016454328,-0.012319614,0.026780544,0.017229145,-0.015242793,-0.01590491,0.0090512885,0.010227604,-0.018497031,0.015242793,0.014707464,0.0067303553,-0.000918336,0.009445742,-0.012967644,-0.013918557,0.0032331063,-0.06097117,0.023145942,-0.0021096193,-0.024188424,-0.013848119,0.006268986,0.014214397,-0.022103459,-0.0087836245,-0.002696016,0.009459829,0.034740042,-0.02373762,-0.017341847,-0.007677747,-0.022342948,0.018313892,0.006483822,0.016891044,0.037106764,0.004634823,-0.01684878,0.0064626904,0.0060999347,0.006617654,0.011706803,-0.027005946,0.021906232,0.014763814,-0.0056385654,0.014510237,0.0009614793,-0.002414264,0.012537972,0.0046982174,-0.013087389,-0.002954876,-0.0023314992,0.023934847,-0.013855163,-0.018919658,-0.0031380148,-0.026907332,-0.026484706,-0.02192032,-0.037980195,-0.019948054,0.022779664,0.010213517,-0.00083645177,0.021849882,0.014031258,-0.013686112,-0.019469075,0.010706583,-0.015454107,0.0066563953,-0.001799692,-0.02597755,-0.033021357,0.02616069,-0.0026044466,0.0020074842,-0.01022056,0.030795513,0.006198548,0.0015417127,-0.0065683476,0.031612594,-0.032542378,-0.010199429,-0.02373762,-0.0061034565,-0.0068254466,-0.00590623,-0.006152763,0.0076425276,-0.007536871,-0.012742242,0.018821046,-0.001945851,-0.007600265,-0.011425051,0.0017741582,0.013559324,0.026357915,0.00026590363,-0.016665641,0.0066423076,0.003856483,-0.03941713,-0.0017838435,0.008579354,0.0062760296,-0.024132075,0.009734537,0.0005872772,0.023850322,0.000468413,-0.012291439,-0.014524325,0.010009246,0.0010732997,-0.013686112,-0.02599164,0.018060315,-0.011213737,-0.024540614,-0.017299583,0.030485585,0.023286818,-0.0033669386,-0.0033281976,0.026681932,-0.025780324,-0.00511028,0.0052898973,-0.017116444,-0.014651113,0.017567249,0.020708784,0.012080125,0.006836012,-0.01938455,0.02108915,-0.019356374,0.027259523,0.0017072421,0.017257322,-0.023991197,0.0009465112,-0.012305526,-0.0012353072,-0.027992079,-0.0018296283,-0.0041628885,-0.029696679,0.013312791,-0.020666523,0.0586608,0.019483164,-0.008839974,0.008769536,0.01684878,0.0007435616,0.010347349,0.005444861,-0.007241031,-0.015172355,0.020751048,-0.015764033,-0.008318733,-0.026174778,-0.029414928,-0.026893245,-0.002410742,0.0074030384,-0.009910633,-0.023244554,0.013080345,0.0022293641,0.027949816,0.004870791,-0.015890824,-0.0044235094,0.0060928906,-0.008206032,-0.013045126,-0.02621704,0.012735198,-0.0010275149,-0.00872023,0.002088488,0.017510898,-0.001316311,-0.015862647,-0.0021043366,0.017158708,-0.00433194,-0.0024706144,0.01579221,-0.027907554,-0.0075791334,0.009023113,-0.019525426,-0.029922081,0.015369581,0.00093770644]},{\"id\":\"8ef30981-c212-47c6-a9d5-e525f599255b\",\"text\":\"Make the money earned tax exempt for people who live on disability\",\"vector\":[-0.005616607,-0.022694854,-0.0014654574,-0.01706481,-0.0038227863,0.006913264,-0.018784728,-0.033296537,-0.02027622,-0.021619905,0.02840552,0.014028081,0.012368629,0.015479261,-0.0062347027,0.01154898,0.034210242,-0.011394456,0.007773223,-0.020504646,-0.005022026,0.01694388,-0.014686487,0.0069535743,-0.021593032,-0.007773223,0.0067688175,-0.02370262,-0.012025989,0.0008524007,0.008109144,-0.023057649,-0.0212168,-0.015264272,-0.027626181,-0.00034326976,-0.0015838697,0.017790401,0.03555393,0.008283824,0.024414772,-0.013047189,0.0043703383,-0.0013646809,-0.009090035,0.016070483,-0.022641107,-0.011730378,-0.037838195,0.005035463,0.006442974,0.02942672,-0.023554813,-0.006352275,-0.030286679,0.015667377,0.0065437504,0.0017006025,-0.010521061,-0.005616607,-0.007370117,0.006728507,-0.033135295,-0.0031072735,-0.027733676,-0.0084450655,-0.002070956,0.00012439591,-0.006086897,-0.0043434645,0.034908958,0.021646779,0.0140012065,-0.02190208,0.011643038,0.0012974967,-0.0052302973,-0.00979547,0.029964196,-0.0037354468,0.024146035,-0.0022053244,-0.028136782,-0.009896247,0.010312789,-0.011018224,-0.013255461,0.017051375,-0.014081828,0.003617874,0.019684998,-0.0057039466,-0.00028133424,0.028781751,0.009956712,0.026914028,-0.007376835,0.034156494,0.007396991,-0.0320066,0.000070596,0.023192018,-0.013147966,-0.012872511,-0.0075179227,-0.00367834,-0.0154255135,0.0012059581,0.004299795,-0.03262469,0.0021532567,0.03765008,0.02652436,-0.040982418,0.02031653,-0.0006806609,-0.01291954,-0.0152373975,0.00021121063,-0.021848332,0.01620485,0.008922074,0.015089592,0.013551072,-0.0081628915,0.00063237216,-0.02660498,-0.008525687,-0.026080944,0.0067654583,-0.0012714628,-0.0054016174,0.010070926,-0.006395945,-0.01295985,0.016500462,-0.028996741,0.018193508,-0.032570947,-0.008586152,0.014068391,0.021660216,0.004736493,-0.00051437976,0.0063623525,0.006735225,0.0029359537,-0.024441646,0.02720964,-0.0022187612,0.001822374,0.003456632,0.014767108,-0.012778453,-0.0031207104,0.00851225,-0.014659612,0.0008238474,0.00196682,-0.0059659653,-0.012926258,-0.018193508,0.028298024,0.018502554,0.019604377,0.024831316,-0.0074238647,0.0109174475,0.010037334,0.01736042,0.013638412,0.024347588,-0.007242467,0.0077530676,-0.01822038,0.0058551114,-0.023111397,0.008344289,-0.029184857,-0.0048641427,0.006980448,0.029023616,0.0025462848,0.033296537,0.0053613065,-0.0038765338,0.012906102,0.011858027,-0.015815184,-0.01022545,-0.011542262,0.016742326,-0.003396166,0.005082492,-0.64840907,0.0045114253,0.022452991,-0.014081828,0.0107763605,0.017790401,-0.010017178,0.00012439591,-0.028378645,0.01201927,0.0013949139,0.01518365,-0.0022523534,-0.009849218,0.0019466649,-0.022184255,0.009345335,-0.003443195,0.0021079073,0.026967775,-0.006641167,0.024266968,-0.020854006,0.029453594,0.0128590735,0.01026576,-0.009829062,-0.039450616,0.007074506,-0.0055158306,-0.0026705756,0.031039143,0.0016099036,0.02284266,0.04649153,0.02288297,0.012187231,0.012825482,-0.023931045,0.024804441,-0.040874925,-0.013611538,-0.01201927,-0.012455968,-0.00039680724,0.02039715,0.006261576,0.019389387,0.011300398,-0.0070476322,-0.009687975,0.009567044,-0.022735165,-0.005707306,0.033914633,0.022170817,-0.0051395986,0.0014856127,0.017817276,0.0069065453,0.009022851,-0.0018660438,0.0040612905,-0.020141851,-0.0026907308,0.0063825077,-0.0167692,0.0036413886,-0.008250231,0.0033357001,-0.0037119323,0.000060833278,-0.007323088,0.00958048,0.018112885,0.0054688016,0.0019097135,-0.026040632,-0.037945688,0.028593635,-0.006308605,-0.014310255,-0.02284266,-0.010077644,0.020827131,-0.0017988594,-0.0019920142,-0.018381624,0.019738745,0.0056468397,-0.0043636197,0.027733676,0.019470008,-0.019496882,-0.007994931,0.0023245765,-0.013698878,-0.009936557,0.019953735,-0.012308163,-0.018878786,-0.017763527,-0.022909844,-0.0035271754,0.019416261,-0.0093050245,-0.019402824,0.017172305,0.052188758,-0.04829207,-0.011999114,-0.0061708773,0.0059189363,-0.01680951,-0.008572716,-0.027303698,0.03426399,0.0023564892,-0.012892666,-0.034183368,0.006224625,0.031173512,0.026887154,-0.006641167,0.0031794966,0.026766222,0.008572716,-0.008290542,0.006036509,-0.020733073,-0.0075246408,0.006164159,0.03461335,0.0013797975,0.031281006,0.005129521,0.0048641427,-0.0082569495,-0.01424307,-0.01244925,-0.019214708,0.0018945971,-0.0006613454,-0.019496882,-0.0008099906,-0.019658124,0.0006193552,-0.021539284,-0.01998061,0.0057778494,-0.0167692,0.007450738,-0.0207062,-0.002878847,0.007558233,-0.024159472,-0.011092127,-0.0038127087,-0.01877129,-0.012852356,0.001266424,0.0021582954,0.0023967996,-0.015586756,-0.03743509,-0.00453494,0.0022489943,0.03152287,0.007585107,-0.0162586,-0.014390876,-0.006103693,-0.004612202,0.0214721,0.017548537,0.0293461,0.021042122,-0.02327264,0.010480749,-0.009902965,-0.0002280067,-0.016863259,-0.01865036,0.017306674,-0.0014604186,-0.03743509,-0.025597217,0.0142833805,-0.008525687,0.022479864,-0.009835781,0.0059827613,0.0083846,0.031818483,0.013268898,0.026403427,0.0051530353,-0.0055527817,0.024307277,-0.0066646817,0.0041755037,-0.007497767,0.003177817,-0.01706481,0.021593032,-0.016366094,-0.0035943596,-0.038187552,0.007887436,0.025395663,-0.005237016,-0.014014644,-0.004736493,-0.006741944,-0.00851225,0.014632739,-0.00876755,0.008700366,0.021163052,0.005478879,0.0046726675,-0.02862051,0.011804281,-0.012852356,0.005848393,0.019658124,-0.0014007925,-0.017400732,-0.013880275,-0.023675745,-0.012314881,0.005868548,0.0016392968,0.006348916,0.02523442,0.00053453504,0.0008901919,0.001176565,0.026766222,0.0077866595,0.013960896,-0.013678722,0.005394899,0.006849439,-0.019241583,-0.0011698465,0.031818483,0.008344289,0.00057694514,0.017131995,-0.004632357,0.008935511,0.0015057679,0.016607957,0.02039715,-0.015062719,0.004974997,0.016782636,0.028351773,0.022439554,0.03996122,0.011824436,-0.0175351,-0.014740234,0.011461641,0.0016628113,-0.00945283,-0.003520457,0.007726194,-0.0029107595,-0.004101601,0.00058450334,-0.02382355,-0.030232932,0.012731424,0.016177978,-0.029534215,0.008700366,0.02600032,0.010494187,-0.016634831,-0.01261721,0.015062719,0.028593635,-0.00074574567,-0.007860563,-0.02186177,0.0020054511,0.014122139,-0.0015485979,0.009338616,0.017400732,-0.0010699099,0.00051647925,-0.0044778334,-0.017185742,0.013376392,-0.019214708,-0.017924769,-0.01163632,0.009640946,-0.004340105,-0.0025815566,-0.008780987,0.025745021,0.007195438,-0.014498371,-0.04200362,-0.015438951,-0.024414772,0.026981212,0.008290542,0.0096812565,-0.006913264,-0.01013811,-0.0076119807,-0.008928793,-0.011743815,0.032866556,0.0052806856,-0.015076156,-0.024495393,-0.0288355,0.009949994,0.10045396,0.016822947,-0.0175351,0.012355192,0.0055964515,0.009251277,-0.010158265,-0.03101227,0.010023897,0.0063321195,0.02066589,-0.0122947255,-0.00034935834,-0.009694694,0.024562579,0.00496156,0.0032181276,-0.022479864,0.01951032,-0.0017266363,-0.0045886873,0.00894223,0.022358933,0.018717544,0.0204509,0.012462687,0.0152373975,0.022143943,0.00058030436,-0.0029779437,0.007511204,0.0075246408,0.0018240536,0.01835475,0.0013016957,0.016460152,-0.0015737921,0.022117069,0.044046022,-0.0058416743,0.025422536,0.008310697,0.011643038,-0.024092287,0.017682906,-0.0350702,-0.019658124,0.014337128,-0.0062514986,-0.006006276,0.027451502,-0.016782636,-0.006197751,-0.010453876,-0.009956712,0.013685441,0.019738745,-0.009103471,0.0015217243,-0.01133399,-0.012966569,-0.005677073,-0.0008204882,-0.008364445,-0.0014889719,0.004289717,0.0030300117,0.0028654102,-0.010998069,-0.024750695,0.012133484,-0.012052862,-0.024710383,-0.00975516,0.013221869,-0.02092119,0.016742326,-0.008330853,0.0066176527,-0.00406465,-0.0077329124,-0.021888644,-0.013087501,-0.010420284,-0.0045618135,0.0048708613,0.02493881,-0.015008971,-0.019711873,0.025489721,-0.0112466505,-0.013342801,0.03544643,-0.026255623,0.019456571,0.007323088,0.023393571,0.020141851,-0.011481795,0.00067646184,0.019671561,-0.018260691,-0.009116909,0.010628555,-0.0078068147,0.003943718,-0.0004354382,0.00996343,0.03361902,-0.037327595,0.022130506,-0.008283824,-0.032785933,-0.010554653,0.0034935833,-0.004068009,0.0036044375,-0.0111996215,0.011125719,0.019429699,-0.018045701,-0.027142454,0.030125437,0.0004795279,-0.026067507,-0.031146638,-0.0055930926,-0.011723659,0.0077799414,-0.0071080984,0.010252323,0.03361902,-0.007813534,-0.035016455,-0.025341915,-0.014995534,-0.009640946,-0.009842499,-0.028109908,0.009405801,0.010561371,-0.0040512127,0.00024606247,-0.024750695,0.030017942,-0.03665575,-0.007040914,0.016957317,0.0024757413,0.022587359,0.00032290453,0.0018593253,-0.0027008087,0.018489117,0.023971356,-0.0068796715,0.0022809068,-0.020088105,0.022130506,0.022264875,0.011367583,-0.008465221,-0.009002696,0.0140012065,0.024791004,-0.020840568,0.020598704,-0.012160357,-0.004383775,0.0076455725,0.0029409924,0.0069670114,-0.012066299,-0.018274128,-0.017185742,0.0023749648,-0.0010707497,0.0031727783,-0.023044214,-0.037193224,0.0045618135,-0.0036380296,-0.0026101097,0.018166633,-0.028942993,-0.013557791,0.025543468,0.024925373,0.016540773,0.022238001,0.01796508,-0.016890131,0.030851027,0.016137667,0.0032450014,0.015062719,-0.0058887033,0.0036010782,-0.022614233,0.017078247,0.024817878,0.012254415,0.0039504366,0.031146638,0.0005093409,0.026846843,-0.0003627952,-0.009244558,-0.010904011,-0.024602888,-0.027451502,-0.030877901,-0.0137190325,-0.011239932,0.005848393,0.0044643963,-0.005331074,0.008626463,-0.0081158625,-0.03179161,-0.026215311,-0.016272036,0.0057308204,-0.021955827,0.00010980433,0.011837873,-0.029480468,0.00517655,0.029722331,0.020719636,-0.021028684,0.022815786,0.012738142,-0.02891612,-0.028754877,-0.0033676126,0.02010154,-0.005022026,-0.022049885,0.0030300117,0.008848172,0.017911334,0.0055897334,-0.0092579955,0.019819366,0.030555416,0.01338983,0.0014730156,-0.011407893,-0.0034112826,-0.02870113,0.011784125,-0.022023011,0.023810113,0.001446142,0.024374463,-0.01424307,-0.017105121,0.009372209,0.018542865,-0.005085851,0.054284908,0.020598704,0.028002413,0.0107293315,0.008438347,-0.015640503,-0.012805326,-0.0035775637,0.018032264,-0.009647665,-0.020948064,0.0106084,0.006547109,-0.0083846,-0.010097799,-0.007544796,0.009593917,-0.030152312,-0.007121535,0.011958804,-0.0029544292,-0.011219777,-0.01185131,-0.015640503,-0.002447188,0.010769642,-0.003661544,0.028942993,0.0065034395,-0.0020558394,-0.0007524641,0.011589291,0.011737096,-0.000748685,0.010010459,0.005757694,0.042245485,-0.015089592,0.006839361,-0.00096913346,0.0172798,-0.005878626,-0.00093134225,0.01171694,-0.014592429,0.0019181116,-0.037730698,-0.026806533,-0.014014644,-0.01248956,0.0014209478,-0.006130567,0.000036583948,-0.015533009,0.022506738,0.024696946,-0.016675143,-0.02100181,0.023003902,0.0076926015,-0.0066243713,0.015412077,0.002925876,0.0016930442,0.00053999375,0.0031156717,0.006224625,-0.015774872,0.003255079,-0.03289343,0.030125437,-0.0103531,-0.009096754,-0.008686929,0.027397756,-0.0046256385,0.00011568295,-0.010427003,0.011266806,0.00027566554,0.014740234,0.02703496,0.026376553,-0.010453876,-0.0170245,-0.029695459,-0.00018696129,-0.025758458,-0.030662911,-0.025126927,0.025032869,-0.008686929,-0.014108702,-0.00008130349,0.010178421,-0.056273565,-0.004282999,0.005525908,0.021203363,0.028593635,-0.0096812565,0.0099164015,0.04264859,0.0023934406,0.031495996,0.0073902723,-0.011589291,0.014404313,-0.006567265,-0.007161846,-0.0077866595,-0.01475367,0.0015292825,0.024750695,0.013537635,0.016298909,-0.011327272,0.00027818498,-0.0127650155,0.0077799414,0.015895804,-0.019255018,-0.009674538,0.004538299,-0.03969248,-0.0017073209,0.021740837,-0.007726194,-0.01013811,-0.010285916,0.008324134,-0.027733676,-0.0107293315,-0.010131392,-0.00011190384,-0.016312346,-0.009479703,0.0067184293,0.026107816,0.00786728,0.0029661865,0.012193949,-0.03238283,-0.020410588,0.009002696,0.002259072,0.0062481393,-0.009036288,-0.019470008,0.033269662,0.00022779674,0.0016863258,-0.0068460796,0.0046357163,-0.021552721,0.0060297903,0.015008971,-0.010561371,0.01877129,-0.016567647,-0.009009413,-0.0025899545,-0.012650803,-0.025073178,-0.015600193,-0.0029628274,-0.007900873,-0.0052806856,0.00028091433,-0.024589451,-0.038913142,0.004444241,-0.02417291,-0.013678722,0.030098563,0.2222994,-0.0037052138,0.01343014,0.0350702,-0.0013075743,0.020383714,0.027894918,-0.013188276,-0.036951363,0.004340105,-0.041197408,-0.005525908,0.024992557,0.0048171137,-0.015801746,-0.03743509,-0.02523442,-0.005025385,-0.018999718,0.015344893,0.007323088,0.041466147,-0.010641992,-0.009439393,0.026416864,0.012771734,0.0086399,0.024132598,0.039773103,-0.004847347,0.008673492,-0.006308605,0.004366979,-0.01026576,-0.024414772,-0.0011916814,-0.025785333,-0.02331295,0.020719636,0.028056161,0.02746494,-0.0044173673,-0.0055998107,-0.001381477,0.013215151,0.00393364,-0.016702015,0.0047230558,-0.0062414207,-0.01749479,-0.040740557,-0.026793096,0.00543185,0.0108233895,-0.016285473,-0.0023716055,0.032114092,-0.014807418,-0.0052974815,0.031872228,0.014068391,0.03168411,-0.036628876,0.029937321,-0.025422536,0.0018072575,-0.007396991,0.008834735,0.0154255135,-0.014619302,0.00067142304,-0.012556745,-0.008485376,-0.008008367,-0.026403427,-0.012825482,0.018515991,0.038832523,0.0065773423,0.023138272,-0.0492864,-0.011219777,-0.004336746,0.0060230717,-0.005680432,-0.049313273,0.02327264,0.007323088,-0.024307277,0.017145433,0.021324296,-0.0007545636,-0.022708291,-0.016607957,0.0069199824,-0.002104548,-0.015774872,-0.01244925,-0.024347588,0.0032265256,-0.016043609,0.06723804,-0.02536879,-0.009224404,0.011898339,0.01120634,0.0042628436,0.0293461,0.023836987,-0.02425353,0.0017039616,-0.02703496,0.0044576777,-0.0024186345,0.013934023,0.003973951,0.004094883,-0.008008367,0.004595406,0.021122742,0.00384966,-0.029157983,0.009862654,0.0053176368,0.0094461115,0.016661705,-0.01672889,-0.016984189,0.029480468,-0.048775796,-0.019228145,-0.024791004,0.008606308,-0.032329082,-0.03345778,0.023030777,0.008626463,-0.016957317,-0.016930442,0.0016846461,-0.010413566,0.009876091,0.0022825864,-0.020840568,0.0027528764,-0.014968661,0.035312064,-0.00479024,0.0080688335,-0.022977028,-0.050334472,-0.018086012,0.019953735,-0.03880565,0.017185742,-0.008861608,-0.022560487,-0.027317135,0.022238001,0.0061843144,-0.041009292,0.025556905,0.020477774,-0.022345496,-0.016137667,-0.0081293,-0.17145431,0.014807418,-0.007921028,-0.014955224,0.04267546,-0.014498371,0.020370279,-0.006647886,-0.021633342,0.021055557,0.009956712,0.0020508005,-0.05406992,0.016164541,0.0099164015,0.017844148,-0.04106304,0.0298567,0.0057677715,0.0042225327,0.01185131,-0.006432896,0.0025681197,-0.032060344,0.015895804,0.0050892103,-0.006741944,0.017803838,0.0034028846,-0.010467313,-0.010648711,0.04017621,0.04041807,0.011575853,0.01741417,0.008700366,-0.014780545,-0.0027915074,0.0067184293,0.0140952645,0.0021079073,0.0005723262,0.0010573128,-0.001167327,-0.0028032647,0.03931625,0.004850706,0.0017652673,0.0048238323,-0.00487758,0.016581085,-0.033215914,0.004528221,0.01869067,0.024871625,-0.006708352,-0.0070812246,0.0054956754,-0.0015452388,0.004528221,-0.0028805267,-0.043347307,0.009076598,-0.0069535743,0.009835781,-0.029937321,-0.00027671532,-0.02613469,-0.026322806,-0.0054217726,-0.039208755,-0.006899827,0.009949994,-0.0011757251,-0.001133735,0.0033894477,-0.017037937,-0.016715452,-0.011938649,-0.003537253,-0.0047969585,0.03636014,-0.008230076,-0.007302933,-0.0030098564,-0.020007482,0.0025042945,-0.00014644077,0.016352657,-0.013168122,-0.0072693406,-0.018301,0.006399304,-0.009002696,0.0065303133,0.033430904,0.017951643,0.011071972,-0.0054553645,0.0049380455,-0.015156777,-0.001103502,-0.032651566,0.013839965,0.019443134,0.000066449466,-0.010547934,0.02626906,0.0043602604,0.01929533,-0.011179467,0.019308766,0.016917005,0.0067688175,0.027048396,0.010252323,-0.017696343,-0.008666774,-0.013013598,0.0041687856,0.047002133,-0.003307147,-0.0036245927,-0.022600796,-0.0039101257,0.010890574,-0.10969851,-0.036467634,0.012274571,0.0014998893,0.01467305,0.0045886873,0.0020894315,0.041466147,-0.015573319,0.016997626,-0.0150492815,-0.014834292,-0.0012177153,-0.0045886873,0.008666774,0.0027226435,0.0007545636,0.0072021564,0.0037488835,0.025731584,-0.017158868,0.009466267,0.0068292837,-0.026148127,-0.0093990825,-0.0013949139,-0.010850264,0.013497325,0.0083510075,0.012751579,-0.0007596024,-0.008451784,0.0004345984,-0.009083317,0.009929839,-0.013752625,-0.0056098886,-0.026228748,0.04923265,-0.018421933,0.0050455406,-0.005650199,0.013074064,-0.007961338,0.009271433,-0.012261134,0.0048070364,0.0038328639,0.043186065,-0.021713963,-0.036816992,-0.010554653,-0.034586474,-0.00868021,0.030259807,-0.021418354,0.007430583,0.016688578,-0.013504043,0.0004165426,0.010232168,-0.008243513,0.014982098,0.019886551,-0.011884902,-0.004434163,-0.0017098403,-0.0060902564,0.008565998,-0.011958804,-0.012657521,0.0051832683,-0.025126927,-0.00859959,-0.009560325,-0.016930442,-0.014054954,-0.019684998,0.0072962143,0.012892666,-0.028378645,-0.012953131,-0.0066109346,0.0025395663,0.012079736,-0.0030098564,0.02053152,0.017588848,-0.015747998,-0.012476123,0.014108702,0.02078682,-0.0016905247,-0.004555095,-0.010709177,-0.008740677,-0.019496882,-0.0015133262,0.030985396,-0.008223358,-0.010191857,-0.03498958,-0.041143663,0.02729026,-0.01244925,-0.01633922,0.006594138,-0.0030988755,-0.01279189,0.017454479,-0.010803235,-0.014431186,-0.011327272,0.037461963,-0.009835781,0.009513296,-0.019255018,-0.040283702,0.028109908,0.008337571,-0.00028175412,0.029910447,-0.00042515062,-0.002378324,0.0005231977,-0.0001719498,0.01056809,0.014229634,-0.022278313,0.0062951683,-0.00020249766,-0.017790401,-0.02511349,0.0093990825,-0.0014864525,0.023689182,-0.019147525,-0.01351748,0.011528824,-0.009096754,0.011696786,-0.016231725,0.008156173,-0.033350285,-0.018959407,-0.029453594,-0.02233206,-0.008277105,0.0048910165,0.020907752,-0.00162502,0.012240978,0.031254135,0.007981494,0.0031660597,0.008142737,-0.0055326265,-0.017844148,-0.0025160518,-0.005660277,0.0014352244,-0.008357726,0.029211732,-0.008337571,-0.0056367624,-0.013752625,-0.013168122,0.00992312,-0.01445806,0.015385203,0.009956712,-0.03781132,-0.018892223,0.008989259,0.016366094,0.006960293,0.019402824,0.008485376,-0.0040512127,-0.020907752,-0.013201714,0.038214426,0.0063153235,0.0034969426,-0.012502997,-0.0037858349,0.023595124,0.042326104,-0.014404313,0.011609446,-0.010346381,0.020195598,-0.019537192,0.0074843303,-0.008458503,-0.009909683,0.009123627,0.014175886,0.018784728,-0.0027999054,-0.0167692,0.028163657,0.035016455,-0.0066243713,0.0028167015,-0.01843537,-0.019550629,0.012086455,-0.024199782,-0.032974053,-0.014310255,0.03195285,0.0335384,0.023460755,-0.0032701956,-0.0021952468,-0.019725308,0.021848332,-0.007182001,-0.025315043,-0.012610492,0.014269944,0.008915355,-0.0010900651,0.0007205515,-0.01120634,0.040014964,0.0034868647,0.0035338937,-0.010877137,0.0064698476,-0.019658124,-0.0062044696,0.0014587389,-0.03383401,-0.029184857,-0.028969867,-0.013920586,0.0035607675,0.016030172,-0.010480749,0.05595108,0.008451784,0.012167076,-0.022977028,0.015694251,-0.00064538914,-0.008834735,0.025503159,-0.014565554,0.004632357,0.023729492,-0.0046726675,0.029910447,-0.007847126,-0.01980593,0.0016703695,0.008411474,0.033296537,-0.004773444,0.016836384,0.011938649,0.020329967,0.015116466,-0.0036010782,0.004612202,-0.0030854386,-0.0076186988,0.0016493744,-0.002900682,-0.007255904,0.00033592148,-0.008189766,0.006224625,0.00041717247,0.024078852,-0.0032920304,0.004944764,0.008908638,0.0024505472,0.0018744417,0.0030165748,0.03179161,-0.025462847,-0.01586893,0.008613027,-0.00744402,0.007726194,-0.023178581,-0.038214426]},{\"id\":\"b210ab4a-d9ed-4879-8b05-913ee9c6f24f\",\"text\":\"Make it easier to post Bounties- sometimes the site lags and doesn’t let me submit stuff.\",\"vector\":[-0.016779402,-0.00045558144,-0.0034045647,-0.021794548,-0.004568319,0.013738302,-0.0263562,-0.0087498315,-0.020500747,-0.034812592,0.009690171,-0.003641317,-0.0062022433,-0.012404487,0.035132706,-0.009890243,0.02048741,-0.008723155,0.001545559,-0.015992451,-0.012537868,0.0012871322,-0.021767873,0.0051585324,-0.009490099,-0.011017318,0.023368452,-0.0008173789,0.013218114,0.008122938,0.012204414,0.008943235,-0.04951124,-0.00984356,-0.048844334,0.012871322,0.014285167,0.007929535,-0.0062355883,-0.017899808,0.006975856,0.013191437,-0.004841751,-0.01715287,0.001168756,0.015605644,-0.000102797596,-0.011764254,-0.023995345,0.011150699,-0.0039214185,-0.027449928,-0.039507624,-0.013484877,0.0043815845,0.014365195,0.013064725,0.023915317,-0.0010512135,-0.0091299685,-0.008523082,0.0070225396,0.0045616496,0.00068316376,0.012391148,-0.017286252,0.0030094218,0.015285528,-0.0038647312,-0.016899446,0.010163676,-0.0029777435,0.03025094,-0.0077628074,0.010457115,0.007269296,-0.00832301,0.0009403401,0.013804993,-0.008843198,0.023808612,0.010190352,-0.0027159823,0.026796358,0.032118283,-0.010983973,0.02424877,0.009816884,-0.014151785,-0.032838542,-0.0038180475,0.014045079,0.0031578087,0.003938091,-0.001372163,0.00868314,-0.0032528432,0.021034274,-0.0017156205,-0.022714881,-0.0075093824,0.02612945,-0.022968307,-0.022954969,-0.009063278,-0.007902858,-0.02084754,-0.023315098,0.01180427,0.025542572,0.003467921,0.030117558,0.021981284,0.016779402,0.002095758,-0.0008328012,-0.0024125392,-0.0025592588,-0.012711264,-0.0256226,0.030571057,-0.005231892,0.0028393602,0.00053435995,0.013138085,0.0052218884,-0.018726774,0.015005427,0.01772641,0.007115907,0.02222137,0.02728987,-0.0045349733,0.0017306259,-0.0017406296,0.005341932,0.0028043475,0.008563097,-0.014285167,0.0010762225,0.03206493,0.05116517,-0.002399201,0.008096262,-0.0018656747,0.027823396,0.006208912,0.001196266,0.010010287,0.015592306,-0.0073960084,0.011424132,0.006448999,0.0006931674,-0.000009606339,-0.009156645,-0.024168741,0.015498939,0.006522359,-0.029477328,0.009770201,0.033532128,0.01765972,-0.0054219607,0.025049059,0.025729306,0.011937651,-0.036946695,-0.01620586,0.008296334,0.0060088397,0.00044307692,-0.0063422937,0.018713435,-0.0034545828,0.019220285,0.0042315302,0.010330403,-0.012051025,0.0018106549,-0.012417824,-0.013418186,0.02851698,0.04364245,-0.00788952,-0.0028710384,0.018353304,-0.011430801,-0.015872408,-0.00998361,0.009870237,-6.610464e-7,-0.0038113785,0.01107734,-0.6483412,-0.005768753,0.029290594,0.0065356973,-0.011104016,-0.008483068,-0.0073559936,0.022914954,-0.020674143,0.012017679,-0.033692185,0.018406658,-0.004151501,0.00021090961,-0.00962348,-0.011317426,0.026809696,-0.014218476,-0.007042547,-0.0021074289,-0.0065190243,-0.011344103,0.0036013024,0.019233624,-0.0039914437,-0.029050507,0.020073926,-0.008423046,0.014538592,0.014818693,0.00080820895,0.011657549,0.008649795,0.017699735,0.05746078,0.02070082,-0.0034579174,0.033852242,0.00962348,0.037186783,-0.01787313,-0.02250147,0.02344848,-0.01057049,-0.005802098,-0.022021297,0.031744815,-0.008162952,-0.013144754,-0.010150338,-0.005962156,0.021474434,-0.003691335,0.020273998,-0.012264435,-0.0070692236,0.004908442,-0.0049617947,0.0034345754,0.00065732107,0.000114728995,-0.00023279253,-0.046736903,-0.034119006,-0.026983092,-0.0021107635,-0.007869513,0.00045766553,0.01150416,-0.0009186656,0.0054319645,-0.0073426557,-0.016419271,0.0071425834,0.011544175,-0.0025292481,0.01918027,-0.02084754,-0.021287698,0.008836529,-0.006869151,-0.019487048,-0.019273637,-0.015058779,0.029770767,0.023421803,-0.0042482032,-0.01809988,0.023221731,0.015312204,0.019420357,0.02012728,0.012517861,0.002157447,0.0019273637,0.0134515315,0.007942873,0.02316838,0.03790704,-0.01150416,-0.01896686,0.010717209,-0.02091423,-0.0103704175,0.035052676,0.009836891,-0.023901979,0.0016672696,0.031237964,-0.025755981,-0.005872124,0.007536059,-0.01946037,-0.00036409002,-0.010537145,-0.03692002,0.007402677,-0.00086531293,0.0127512785,0.0052719065,0.007109238,0.030677762,0.017539676,-0.023195056,-0.005255234,0.03193155,0.02568929,-0.008229643,-0.009029932,-0.013644935,0.0014021738,0.0023175047,0.029077183,0.0030611071,0.012337795,0.010290388,0.03417236,0.008383032,0.021381065,-0.017312929,-0.0049051074,-0.0013738303,0.0077828146,-0.006639068,-0.0129113365,-0.0068191327,-0.01259122,0.012464508,0.001490539,0.017713074,-0.009763531,-0.0059955018,-0.011490823,-0.007796153,-0.01469865,-0.01860673,-0.0007827831,-0.009490099,-0.01932699,0.009390063,-0.010003618,0.017166208,-0.0054019536,0.00047475504,-0.022461457,0.004221527,-0.0058287745,0.015098794,-0.01273794,-0.022981646,0.012731271,-0.028116835,-0.019206947,-0.0058521167,-0.015939098,-0.005448637,-0.0263562,-0.00087698386,-0.017032826,0.0047317115,0.00012619147,0.02236809,0.0144985765,-0.0054753134,0.007909527,0.00086447934,-0.001703116,0.043482393,-0.009470092,-0.0034245718,0.021941269,-0.0036746624,0.0076627713,0.017126193,-0.006102207,0.01867342,0.010457115,0.017072842,-0.0084964065,0.018900169,-0.011117354,0.0059254766,0.01613917,-0.013218114,0.008796515,-0.026569609,-0.00803624,-0.021954607,0.012557875,-0.0046950313,0.0055219973,-0.011737579,0.0024158738,-0.013258128,0.017166208,0.03358548,0.0011529169,0.00195404,-0.02686305,0.007149252,-0.018206585,-0.022141341,0.027449928,-0.003958098,-0.012064363,0.02158114,0.035426147,0.028196864,0.011970996,-0.0083696935,-0.0012112714,0.019940546,-0.00090366014,0.015445586,0.007616088,-0.005175205,0.005021816,0.008783177,0.022741558,-0.012791293,-0.0063122828,-0.012271104,0.02889045,0.02801013,0.041161552,0.023555186,0.02923724,0.0011154034,-0.02468893,0.00781616,0.0026242824,0.007722793,-0.022901617,0.014818693,0.013791654,-0.012791293,0.009430077,-0.0044549447,0.017713074,0.0135782445,0.03590632,0.0029744091,-0.006862482,0.00078111584,0.020727497,-0.0040414617,-0.023995345,-0.0060922033,0.022834925,-0.026729668,-0.029103858,-0.03451915,-0.0052785757,-0.026289508,0.04214858,-0.01846001,-0.013858345,0.038040426,0.033825565,0.023048336,-0.031878196,-0.02953068,0.01743297,0.008983249,-0.01245117,-0.014018403,-0.0064156535,0.01990053,0.0031994905,0.00027947608,0.025035722,0.000044886026,-0.0033545466,-0.006075531,0.003289523,-0.0072226124,0.045296382,-0.018553376,0.003691335,0.0066790823,0.022021297,0.030464351,-0.0075760735,-0.013885022,0.01831329,0.008936565,0.0039747707,-0.03163811,-0.0016147507,-0.0047717257,0.00524523,-0.0039714365,0.012524529,0.0059988364,0.011237398,0.01772641,0.0017472986,-0.008282996,0.013538229,-0.009776869,-0.015458925,0.0117976,-0.01839332,0.00564871,0.08258987,0.0002805181,0.017099518,0.011304088,-0.006435661,-0.015245514,-0.021341052,-0.02627617,0.022061313,-0.009763531,-0.008363024,-0.010883937,0.0110373255,0.0017773095,0.02496903,-0.014752002,0.00063814747,-0.022248046,-0.007402677,-0.035426147,0.008076254,0.008943235,-0.0111640375,0.006572377,0.02374192,0.026009407,0.014551929,0.00840304,0.011557513,-0.018206585,-0.007722793,-0.016512638,0.0027476605,0.01795316,-0.00035262754,0.015352219,0.0074893753,0.0050251507,-0.023395129,-0.008743162,0.007149252,0.027476603,0.010603835,0.006408985,0.022074651,-0.027129812,-0.0068224673,0.0016530979,-0.0030027525,-0.011190714,0.03169146,-0.0010370418,-0.021060951,-0.018846815,0.012484515,0.01360492,0.0062622647,-0.013338157,-0.026609624,-0.025969392,-0.016019126,-0.0018940184,0.0074093463,-0.011250735,-0.031958226,-0.023034997,-0.03337207,-0.012611228,-0.013304812,0.00077444676,-0.03075779,-0.009896913,-0.0114508085,-0.01259122,0.02388864,-0.0014972081,0.03539947,0.004648348,0.013858345,-0.01788647,-0.026116112,-0.008549759,-0.009943596,-0.0021941268,0.0012629568,-0.006712428,0.00012837976,0.0032878558,-0.015338881,0.013051387,-0.0032478413,0.0141918,0.014431886,-0.0041248254,0.016232537,0.0042148577,0.023208393,0.01874011,0.0025592588,0.0024192082,0.023808612,-0.012677918,-0.019553738,-0.003467921,-0.0014980418,0.0075894115,0.0052218884,0.021060951,-0.0055720154,-0.008643126,0.02424877,0.003387892,0.030304294,0.003294525,-0.005125187,0.023315098,0.004558315,0.011744248,0.006002171,-0.0016672696,-0.037586927,-0.021261023,0.022021297,0.010157007,-0.010717209,-0.0077494695,-0.00969684,-0.06412986,0.0009236674,0.00095034373,-0.013638265,0.006935842,-0.011330765,-0.03025094,-0.02830357,-0.03451915,0.022168018,0.013351495,-0.023301762,0.0039947783,-0.0020424053,-0.0011229061,-0.0035146044,-0.034038976,0.031211289,-0.035346117,-0.0055019897,-0.006238923,-0.006418988,0.046043318,-0.016472625,0.003387892,-0.038307186,-0.01918027,0.0025842679,-0.04494959,-0.0155789675,-0.009463423,0.01099731,0.015045442,-0.0088765435,-0.008576435,0.017993174,-0.009590135,0.0032495086,-0.003684666,0.0017289587,-0.036653258,-0.0009470092,0.012844645,0.014551929,0.0037880368,0.004928449,0.001075389,0.008229643,0.006338959,-0.016472625,0.016499301,0.006115545,-0.032118283,0.0022041304,0.0065356973,0.012744609,-0.031317994,-0.02923724,-0.015432248,0.0036113062,0.002535917,0.028970478,0.010470454,0.0030377654,0.0011512497,0.022408104,0.016912783,-0.0021174324,-0.00004472972,-0.0110373255,-0.008716485,0.011384117,0.01049046,0.026582947,0.0023525176,-0.022488134,-0.0005577017,-0.031291317,0.0031144598,-0.0030761126,-0.0022891613,0.008963241,-0.00933671,-0.011550845,-0.03134467,-0.026249494,-0.004821744,0.019033551,0.00082446483,0.002739324,0.013064725,-0.009950265,-0.027396575,0.009876906,0.0028893782,-0.0004380751,0.009330041,0.014458562,0.016459286,0.037266813,-0.011110685,0.000054498876,-0.0012471178,0.01361159,-0.00644233,0.028703714,-0.01947371,-0.018419996,0.024875663,0.016672697,-0.014992089,-0.032091606,0.024595562,0.013651604,0.01411177,-0.02388864,-0.018713435,-0.014738664,-0.016766064,-0.0074293534,0.014938736,-0.012177737,-0.0028977147,0.01158419,0.009176652,0.0039747707,-0.00080529123,0.014071756,0.030811144,-0.020007236,-0.017539676,-0.010310396,-0.014378534,-0.015458925,0.02627617,-0.032171637,0.0025575918,0.009236674,0.019193608,-0.009936927,-0.03451915,-0.03849392,0.017766425,-0.03091785,-0.006125549,-0.008729824,-0.005448637,-0.0049151108,0.0036579897,-0.0063723046,-0.0032428396,-0.0048684273,0.0043815845,0.011250735,0.00593548,-0.032785192,0.013431525,-0.020834202,-0.0077428003,-0.015258852,0.0075093824,0.025235794,-0.038547274,-0.012324457,-0.0070025325,0.0012546204,0.0059321453,0.010883937,0.01888683,0.02540919,0.030731114,-0.027089797,0.006522359,-0.006695755,0.00593548,-0.03545282,0.012437832,0.007135914,-0.020100603,0.004711704,-0.0054819826,-0.0026242824,-0.013531561,-0.006689086,0.008303002,0.0003495014,-0.011470815,0.030197589,0.015138809,0.01793982,0.0018923511,-0.04329566,0.009156645,0.0040147854,0.03337207,0.008963241,-0.0058454475,0.002410872,-0.036173083,0.050578292,0.01918027,-0.017913146,-0.016485963,-0.010217029,0.023995345,0.00007372458,-0.02953068,-0.005111849,-0.029290594,-0.015805716,0.020060588,-0.02063413,0.006862482,-0.005822106,0.012031018,0.0046150023,0.02424877,-0.014311843,-0.015218837,-0.0152055,-0.019753812,-0.009530113,-0.010970634,-0.016632682,0.037053403,0.0049617947,-0.03475924,-0.0097035095,-0.0062122466,-0.012897998,-0.003351212,0.013598251,-0.00003068818,0.0059588216,0.0028393602,0.0030444344,0.04430936,0.007122576,0.03219831,-0.016459286,-0.032118283,-0.023941992,0.0025942717,-0.023341775,-0.008122938,-0.018700097,-0.0074760374,0.001650597,0.019593753,0.0068224673,0.021941269,0.013018042,-0.0038714001,0.0049751326,-0.0027976786,0.01823326,0.017032826,0.012617897,-0.029103858,-0.0032178306,0.00075777405,-0.013431525,-0.0056920587,-0.015658997,0.0057854257,0.00151138,0.016846092,-0.006275603,-0.022888279,-0.023688568,-0.018580053,0.024648914,0.0008407207,-0.03147805,-0.0040948144,0.005712066,-0.028917124,0.0032678486,0.008002894,-0.01476534,0.0034612517,0.014471901,-0.017339604,0.0037847022,0.022421442,0.0065023517,-0.02114098,-0.010257043,-0.019166932,-0.016459286,-0.008916558,0.011517499,0.004221527,-0.00095451187,-0.018486686,-0.0010987307,-0.039107475,-0.0005906303,-0.025755981,-0.03438577,-0.0049551255,0.01679274,-0.0033578812,-0.00026384543,-0.028143512,-0.001187096,-0.0056220335,-0.0056053605,0.022954969,0.22472127,-0.01057049,-0.007856174,0.039827738,-0.011117354,0.012677918,0.011964327,-0.0030394327,-0.01295802,0.02272822,0.044682827,-0.004434937,-0.033238687,-0.007616088,0.004981802,-0.020740835,-0.027196502,0.014418548,-0.033558805,-0.011117354,0.02822354,0.01744631,-0.019100241,-0.022248046,0.040441293,-0.0062722685,0.017779764,0.0031361342,0.014165123,0.016952798,-0.019153593,-0.012051025,0.014685311,-0.02063413,-0.035292763,-0.018206585,-0.014085094,-0.010797238,0.023208393,0.032251664,0.00448829,-0.00730931,0.0036579897,0.005742077,0.0009536783,-0.006955849,0.004558315,-0.0052785757,-0.024008684,0.026222818,-0.027770044,-0.022168018,0.0033712192,0.01310474,-0.020033913,0.009443415,-0.00043890873,0.0053119212,0.0036779968,0.019553738,0.00575208,0.0086231185,-0.0058687893,0.022794912,-0.045589823,0.027770044,0.0021474434,-0.0012446168,0.033238687,-0.011637542,0.011824276,0.013558237,-0.0030811143,0.00445161,-0.00803624,-0.006255596,0.0044682827,0.011150699,0.035239413,0.004161505,-0.0045649842,0.003641317,-0.0001579738,-0.04452277,-0.019700458,-0.023355113,0.020580776,0.029690739,0.008423046,-0.025502557,-0.022861602,0.0021991287,-0.026369536,-0.016125832,-0.012177737,-0.006208912,0.016952798,0.008303002,-0.01309807,0.002657628,-0.016565992,0.034999326,-0.0073293173,-0.0075160516,-0.014445225,-0.013644935,-0.010470454,0.017286252,0.021474434,0.023328437,-0.006362301,-0.036253113,0.013845007,0.00020882553,0.0074160155,0.034252387,0.010417101,-0.00694918,0.0029193892,0.00868314,-0.00011045662,-0.0106238425,0.004191516,-0.0032244995,0.0034212375,-0.0043082247,-0.000220288,0.015298867,-0.002095758,-0.045723204,0.028116835,0.017499663,0.00022403937,-0.0031061233,-0.030811144,-0.014231814,-0.011050663,-0.012164399,-0.023928653,0.011617535,-0.011770924,0.009876906,0.0012921339,-0.027663339,0.010957296,-0.03993444,-0.0010162009,-0.011390787,-0.030464351,0.018900169,-0.010330403,0.0061222143,0.0060488544,-0.0037113423,0.027930101,-0.013698287,-0.021461096,-0.008949904,0.01947371,0.0031378015,-0.041561697,0.0044316025,0.023915317,-0.027903425,-0.03793372,-0.005992167,-0.1701949,0.018766787,-0.01375164,-0.004101483,0.012764617,0.0070892307,-0.0012237759,-0.01860673,-0.023195056,0.010737217,0.011464146,-0.007842837,-0.039000772,-0.0048517548,-0.0072759646,-0.01585907,-0.012064363,0.024155403,0.019153593,0.00694918,0.03003753,-0.03748022,0.024782296,-0.0039714365,0.021754535,-0.009296696,-0.024542209,0.017272914,0.0043782503,-0.022208031,-0.027850073,-0.010283719,0.027636662,0.009870237,0.003301194,0.017753087,-0.012978027,-0.005742077,0.017006151,-0.0018773456,0.027583309,0.049564593,0.001552228,0.030010855,0.01425849,0.012924674,0.03139802,-0.0129113365,0.0037847022,-0.020380704,0.001979049,-0.014671973,0.0041081524,-0.000454331,0.012971358,0.012504523,-0.010103654,-0.025542572,-0.028250217,0.028116835,0.010223698,-0.020780848,-0.0026126115,0.0012754613,-0.034572504,-0.008196298,-0.011717571,-0.0038613966,0.0034112337,-0.0029694072,-0.005191878,0.011424132,0.018780125,-0.0013254794,0.013764978,0.0075027137,-0.034279063,0.009109962,-0.022234708,0.013284804,0.004394923,0.023275085,-0.01375164,0.009183321,-0.011664218,0.0037246805,0.0117976,-0.013911698,0.007836168,-0.027636662,0.021447757,-0.010683864,-0.014578606,-0.004251538,0.0036013024,0.016606005,0.033852242,0.017472986,0.016419271,-0.006775784,-0.012184407,0.0047650565,-0.012171068,0.022194693,0.014511915,0.014591944,-0.014045079,0.008923227,0.018873492,-0.00669242,-0.003567957,0.02215468,0.0009961936,0.028250217,-0.02475562,-0.006652406,0.009029932,-0.01288466,0.0065190243,-0.013118078,0.041161552,-0.020927569,-0.020834202,0.0014296838,-0.009376724,-0.020567438,-0.102650456,-0.01273794,0.009716848,-0.015445586,-0.015218837,0.034012303,0.0029477328,0.021100964,0.00459833,0.03486594,-0.009209998,-0.021327714,-0.007949541,-0.020954246,-0.0006098039,0.009256681,0.0012637904,0.0043315664,0.012924674,0.023835286,-0.009563459,-0.009383393,0.005602026,-0.018139893,-0.026236156,-0.003958098,0.0014705318,0.026796358,0.005255234,-0.004088145,0.014511915,-0.013211445,-0.004011451,-0.024382152,0.0018906838,-0.0050184815,-0.011390787,0.005558677,-0.0074360226,-0.015258852,-0.00042682103,-0.03206493,0.0047717257,-0.009763531,-0.019260298,0.019820502,0.0010128663,0.007949541,0.027823396,-0.03518606,-0.009096623,-0.010070309,-0.011657549,-0.028436951,0.020900892,0.0069825253,0.009750193,0.025902702,-0.033532128,0.005508659,0.009730185,-0.014045079,-0.0122444285,0.020887554,0.01136411,0.027823396,-0.02236809,-0.008523082,0.005848782,0.003567957,0.0036713278,0.029370623,-0.019273637,0.037746985,-0.023555186,-0.018846815,-0.010610504,-0.021394404,0.020674143,0.013411517,-0.009183321,-0.002490901,-0.0016389261,-0.027663339,0.015458925,-0.004344905,-0.0011279079,0.007556066,0.025969392,-0.040788084,0.0012437832,0.005942149,0.0037513569,-0.0011237398,-0.011277412,0.027156489,0.011370779,-0.0043282323,0.010110323,0.0050251507,-0.019086903,-0.0077694766,-0.048017368,0.010977304,0.0026809697,-0.0065323627,0.001002029,-0.019340329,0.008763169,-0.016419271,-0.012417824,-0.0011787596,0.024448842,0.018806802,-0.011410793,-0.018126557,0.005588688,0.0013913366,0.01006364,-0.015018765,-0.0034479136,0.0003690918,-0.019313652,-0.011017318,-0.026502918,0.007969549,0.00524523,0.043135602,-0.0064556682,0.015512277,-0.011750917,-0.020567438,-0.017326266,-0.01671271,0.0052085505,0.005912138,-0.0017723077,-0.040761407,0.004668355,0.012064363,0.01657933,0.025795996,-0.00040764743,-0.015712349,-0.0057787565,-0.038280513,-0.012777954,-0.03155808,-0.016632682,0.0041848468,0.014938736,-0.0015555626,0.021407742,0.020807525,-0.0021424415,-0.000046527242,-0.006418988,-0.032545105,0.005488652,0.0028660365,-0.007229281,-0.042095225,0.029423974,-0.0051885433,0.0057254042,-0.016165847,0.020033913,0.0087498315,-0.01846001,0.009856898,0.020300675,-0.034999326,-0.00948343,-0.00347459,-0.000545614,0.0027343223,0.033532128,0.03654655,0.010563821,-0.022248046,0.00030198423,0.0015630653,0.0034279064,-0.0115775205,-0.025075736,0.014992089,0.027476603,0.022114664,-0.007536059,0.00846973,-0.009203329,-0.0076761097,-0.03241172,-0.007696117,0.0065623736,0.018780125,0.010183683,0.012984696,-0.01425849,0.004821744,0.018339965,0.006609057,0.0019407019,-0.006609057,0.011157368,0.024995707,-0.03451915,0.03262513,-0.034412447,-0.01962043,0.019033551,0.019086903,0.0082096355,-0.0026592952,-0.0045483117,0.013591582,-0.021847902,0.02620948,-0.008709816,-0.02148777,-0.022114664,0.035079353,0.01527219,-0.0069691874,0.026836373,-0.047003668,0.045829907,-0.0144985765,0.0111640375,-0.04727043,-0.015672335,-0.011497492,-0.004168174,0.0017573022,-0.017833116,0.014325181,0.019740473,-0.014925398,-0.01680608,0.022354752,0.0015397235,0.06898495,0.036573227,-0.018366642,0.020767512,0.0054519717,0.010110323,0.01744631,-0.0021341052,0.020540763,0.0020874217,0.016979475,0.009209998,0.024635576,-0.022128003,-0.028490303,0.006095538,-0.014391872,0.0044416063,-0.022621514,-0.028356923,0.02923724,0.0077494695,0.036146406,-0.0076827784,-0.031291317,0.009069947,0.011477484,-0.032998603,-0.020273998,-0.00796288,0.012111047,0.00760275,0.008389701,-0.015712349,0.007189267,0.005495321,-0.00293106,0.009376724,0.004735046,0.018926846,-0.002609277,-0.024862325,-0.016966136,-0.020460734,-0.010030294,0.009810215,-0.006065527,0.007929535,-0.03374554]},{\"id\":\"f0c5a1ff-7b02-4896-8dd6-f2ce02c06e45\",\"text\":\"Did not like the taste of the product. \",\"vector\":[-0.0012217705,-0.022070281,0.0016674327,0.013813129,0.00794991,0.0014009955,-0.005812011,-0.041810635,-0.0010289437,-0.027190996,0.0200476,0.0074634417,-0.013013016,-0.022403127,-0.013416273,0.02020122,0.034129564,-0.005271136,0.019445915,-0.012936206,-0.008519589,0.015272532,-0.004275797,-0.006173662,-0.0042725964,-0.00042966,0.029392904,-0.025321934,0.009735759,0.026141249,0.024541026,-0.005699996,-0.013211444,0.018152934,-0.016655125,-0.002923608,0.000005378876,-0.012827391,0.01117596,-0.013787525,-0.013160237,0.0005668791,0.024899475,-0.012846594,-0.037995704,0.031057136,-0.01268017,0.021903858,-0.009402913,0.0023331258,0.013480281,-0.013365066,0.010491065,0.00047126578,0.005242332,0.0038085317,0.015080505,-0.011470402,0.023619298,-0.0058504166,0.014005155,0.017141594,-0.01797371,-0.035000086,-0.0019298694,-0.0044742245,-0.0148756765,-0.021622218,-0.019855572,0.0069065643,0.0023043216,0.011380789,0.007969112,0.014261191,0.018869834,0.004957492,-0.018677808,-0.0032612553,-0.020380445,-0.009927786,0.02391374,-0.00988298,-0.024861071,0.027703067,0.010363047,0.014530028,0.017884096,0.003933349,0.0075402525,-0.021071741,-0.01705198,0.02543715,-0.018997852,0.012404932,-0.022390326,0.025872411,0.025629178,0.035870608,-0.02135338,-0.023440072,-0.019317897,-0.0008897242,-0.013352264,-0.009082868,-0.03645949,0.006340085,-0.0037317208,-0.021724632,0.03246533,-0.03159481,-0.012667368,0.03848217,-0.0062440718,-0.028829625,-0.011988874,-0.014619641,0.0073866313,-0.013032219,0.011335983,-0.030289028,-0.016104648,0.0016386288,0.03517931,-0.01374912,0.023068821,0.0006140857,-0.018498583,0.007962711,-0.0063944925,0.0096589485,0.046931352,0.025091503,0.024195377,-0.00040145605,-0.0069001634,0.030903514,-0.048237134,-0.00096333446,-0.009799768,-0.0096717505,0.023363262,0.038866226,-0.0033572686,0.0070729875,-0.012910603,0.02249274,0.0207773,0.040940117,-0.009818971,-0.0011449598,0.0057672053,-0.03960873,0.012654566,-0.023542486,0.01884423,0.003202047,-0.006074448,0.0062792767,-0.0050439043,0.022390326,0.008929246,-0.014786064,0.008935647,-0.014965289,0.003696516,0.036843542,0.031133946,0.00047006563,0.00029404103,-0.013557092,-0.012129693,0.023836927,-0.005837615,0.0061352565,0.006362488,0.0076234643,0.015502964,0.0071369964,0.0006024841,-0.0014986092,-0.021378985,0.010427056,0.024477016,0.0129938135,-0.008410774,-0.031466793,0.012692972,-0.005143118,0.00702178,0.0015010096,0.008225149,0.017372025,-0.026064439,-0.022812786,-0.690682,-0.019778762,0.0010505466,-0.0010161418,0.00508871,0.030314632,0.007405834,0.008225149,0.0041157748,0.021801444,-0.015861414,0.018344961,-0.00013691912,-0.0046022423,-0.012104089,-0.011374388,0.018524187,-0.020482859,-0.0076170634,0.02836876,-0.004362209,0.02018842,-0.0030852307,-0.019650742,0.030596271,-0.009377309,0.011592018,0.0044326186,-0.03325904,0.014171578,-0.01733362,0.024182577,-0.00033304648,0.0120336795,0.06334324,-0.023875333,-0.0015594177,0.0029604132,0.018588195,0.010753501,-0.03768846,-0.015246929,0.0022307115,-0.01189286,-0.025526764,-0.00029684143,0.0050151,0.027062979,0.0038533378,0.00041805836,0.01232172,-0.0009881379,-0.0052167284,0.015093307,0.021468597,-0.0025875613,0.032132484,-0.00083131605,-0.011848054,0.030519461,0.0004068568,0.012065684,0.0057992097,-0.018549789,-0.027882293,0.010523069,-0.028035915,-0.007937108,0.033412665,-0.016872756,-0.008961251,0.008065126,-0.019535527,0.012148896,0.00044886267,-0.005693595,0.012660967,0.011707234,0.026704527,-0.0028660002,0.007085789,-0.0033828723,-0.004554236,0.0015810207,0.04419177,-0.008852436,-0.011636824,-0.0020290832,-0.01811453,-0.013902741,-0.0021491,0.02708858,0.018997852,-0.0052807373,0.008916445,0.015003694,-0.02399055,0.0036709125,0.017384827,-0.027165392,0.0076618697,0.0012041681,-0.013006615,-0.00351089,0.007745081,0.012187301,-0.010663888,0.011073546,0.029853767,-0.01625827,0.0051111137,0.0036261063,0.005623185,-0.0150421,0.0014442016,-0.021814246,0.01081751,0.00630488,-0.0062216683,-0.027447032,-0.01081751,0.0019138672,0.0039237477,0.025962025,-0.016719135,0.028957643,0.007636266,0.0150421,-0.013173039,-0.005751203,-0.0018098527,0.03200447,0.010241429,-0.0002214309,-0.002485147,0.029904975,0.0011633624,-0.010977533,0.013057823,-0.027933499,-0.008154739,-0.0027443832,-0.008916445,-0.006925767,0.019330699,-0.017807286,0.0059336284,0.010235029,0.009678151,0.029188074,-0.0028996048,-0.016719135,-0.01990678,-0.0020818906,0.0066633304,-0.0046246457,0.0025603573,-0.02198067,-0.025232323,-0.010683091,0.0016594316,0.037227597,-0.0023859332,-0.00207869,-0.023043217,-0.004205387,0.020367643,0.0021875054,0.012430536,-0.019868374,0.011131154,-0.024899475,-0.0035492955,0.012660967,-0.016667927,0.0015658186,-0.0034084758,-0.011924865,-0.00045126298,0.007649068,0.001992278,0.023017613,-0.0021394987,0.013569894,0.031133946,0.009012458,0.01454283,0.03343827,-0.027600653,0.037790876,0.0011553613,-0.014376407,0.004880681,0.0038629393,-0.003030823,-0.013838732,0.0029028053,0.008103531,0.0020498862,-0.014926883,0.019010654,0.0124881435,0.002678774,0.009876579,0.020969328,-0.006605722,-0.002672373,-0.013531489,0.01167523,0.024477016,-0.008186743,-0.011067145,-0.0186266,-0.014926883,-0.007841094,0.017679268,0.011656027,0.011937667,0.015016496,0.003000419,-0.031902052,-0.027728671,0.0106126815,-0.017948106,-0.024182577,0.007527451,0.015759,-0.008289157,0.01697517,-0.025795601,0.0045798393,0.018447375,0.004471024,-0.004637447,0.016463099,0.00061448576,0.033463873,-0.010919925,0.0087436205,0.00336687,-0.0134418765,0.024733054,0.017218404,0.004218189,0.019177077,-0.018012114,0.004679053,0.009281295,-0.0068233525,0.022953603,0.013403472,0.0043206033,-0.045599967,-0.009722957,0.007213807,-0.026448492,0.000809313,-0.00061768625,0.011284775,0.022070281,-0.00472706,-0.011047943,0.016962368,-0.008212347,0.0045446344,0.0007369029,0.00415738,-0.003955752,-0.00008141137,-0.0073738294,0.0067593437,-0.026346078,0.031492397,-0.041605808,-0.0063208826,0.0047174585,0.0308011,0.015067703,0.0021154953,-0.0056487885,-0.0037669258,0.0072906176,0.009537332,0.0068873614,0.009978993,0.0037637255,-0.0064457,0.008109932,-0.012904202,0.02585961,0.0050022984,0.025168313,0.017576853,0.025206719,-0.0077898875,0.0071497983,0.019689148,-0.027933499,-0.0032180492,0.010695893,0.0063208826,-0.013979551,0.0018002513,0.000035004887,0.03697156,-0.003338066,-0.017000774,-0.008634806,0.0036165048,0.0051111137,0.011553613,-0.009102071,0.0057928087,0.016373485,0.003702917,0.0063912924,0.0028595992,-0.011848054,0.0054759644,-0.0009233289,-0.014453217,-0.018869834,-0.017576853,0.0087308185,0.07460882,0.026909357,-0.01811453,0.013813129,0.019407509,0.020828508,-0.02929049,-0.009127675,-0.0009201284,0.013147435,-0.008109932,-0.010644686,0.004170182,0.00008186143,0.0035268923,-0.019740356,-0.010273434,-0.010260632,-0.007892301,-0.008967652,0.0008769224,-0.002478746,-0.0139155425,-0.0060040383,-0.006461702,0.020572472,0.018754618,0.022838388,0.019740356,-0.008647608,0.017820088,-0.015528568,-0.012219306,0.0035652977,-0.020546868,0.009626944,0.013723516,0.006045644,0.016565513,-0.004621445,0.028957643,-0.006791348,0.00071890035,0.0021474997,-0.0064457,-0.021161353,0.00055847794,0.019381905,-0.008641207,0.012603359,0.02929049,-0.000012451738,0.0048358752,-0.010343844,0.01848578,0.011707234,-0.016527107,-0.0039525516,0.007015379,0.020585274,-0.021007733,-0.02177584,-0.005709597,-0.005664791,-0.01611745,-0.02185265,-0.01282099,-0.020111607,-0.0004484626,-0.0041861846,0.0035300928,-0.0056071826,-0.025910817,-0.0028131928,-0.00014281993,0.006055245,-0.0037765272,-0.027984707,0.012923404,0.018012114,0.012846594,-0.021212561,0.007405834,-0.009582138,0.0027059778,0.008807629,-0.0071369964,-0.007847495,-0.0046758526,-0.0073866313,0.0015314138,-0.0020610876,0.009402913,-0.017423233,-0.008359567,-0.013966749,0.012449738,0.014235587,-0.0053191427,0.0013409872,-0.014030758,-0.00945412,-0.012884999,-0.022108687,0.02112295,-0.013262652,-0.0067273392,0.00005665791,-0.007169001,0.00008566196,0.014773263,-0.0065865195,-0.031620413,0.0036133043,0.013697912,0.008180342,-0.017077584,0.03354068,0.009070066,-0.015874216,-0.009441318,-0.0039589526,0.030570667,-0.00003633007,-0.0037093179,0.008026721,-0.00028323953,-0.048160322,-0.029136868,-0.017845692,0.00091292744,0.006311281,-0.026192456,-0.00651931,-0.04434539,-0.015490162,-0.0048006703,0.0067209383,-0.010715096,-0.038687002,-0.02808712,-0.0045638373,-0.0012705774,-0.005338345,-0.012782585,-0.027242202,-0.017999312,-0.015387748,-0.018421771,0.015515766,-0.009550133,0.007642667,-0.029546525,0.011188762,-0.02342727,-0.033079818,0.0051335166,0.019151473,0.03610104,0.035486553,0.021942263,-0.014517226,0.029495317,-0.0036229058,-0.015234127,-0.004246993,-0.017346421,-0.016847152,-0.020290833,0.019087465,0.02155821,-0.0046118437,0.024771458,0.00045086295,-0.017359223,0.0043302043,-0.0013441877,-0.015733397,-0.000623287,0.0040869704,0.007329023,-0.005040704,0.016808746,0.0004992697,0.017935304,-0.0076746712,0.02350408,0.018460177,0.014376407,-0.017077584,0.024630638,-0.013147435,0.02570599,0.00272198,0.0042309905,-0.004067768,-0.012660967,0.0017986511,-0.024771458,0.0120400805,0.00587602,-0.011297577,0.009326102,-0.02857359,0.0021683027,-0.0022435132,0.007104992,-0.010939127,-0.0054599624,-0.029751353,-0.018306555,-0.026755735,-0.013224246,-0.0032996607,-0.005831214,-0.0014762061,-0.008500387,0.013070624,-0.021225363,-0.010567876,-0.008340364,-0.020290833,0.0293673,-0.016386287,0.022095885,0.028624795,-0.031466793,-0.018575393,0.019791562,0.0013353864,-0.011297577,0.01182245,0.02299201,0.009146877,0.0036709125,-0.013646705,0.015784603,-0.012904202,-0.026448492,-0.025117107,0.0072522126,0.012923404,-0.0021426992,-0.017308015,-0.016463099,0.01811453,-0.0014610039,-0.017474439,0.013224246,0.00529994,-0.023734514,0.023388864,0.0021507002,0.024528224,0.018460177,-0.0054247575,-0.011265573,-0.029316092,-0.02801031,0.008429977,0.02484827,0.03717639,-0.00852599,0.012769783,-0.004957492,-0.0043718102,0.003338066,0.0021491,0.00012741779,0.020226823,0.005917626,-0.011592018,-0.0036453088,-0.0016354283,0.00587602,-0.0011089548,-0.02105894,-0.015426153,-0.0039365496,-0.0050311023,0.0050247014,0.018357763,-0.0027715869,-0.009588539,-0.02749824,-0.0014794065,-0.015080505,-0.014747659,0.0042789974,-0.02377292,-0.012712175,-0.018024916,-0.004720659,0.0053831516,0.013102629,-0.0025891615,0.011841653,0.006000838,-0.02929049,-0.0002850398,-0.017461637,0.028983247,-0.024477016,0.023248045,0.004026162,-0.0014201982,0.014658046,-0.011611221,-0.03108274,-0.023939341,-0.008340364,-0.011771243,0.017218404,-0.021238165,0.017512845,0.0125201475,0.026397286,-0.011195163,-0.0020626879,0.016309477,-0.026832545,0.0034500817,-0.0062280693,-0.01009421,-0.012942607,0.0229152,0.007770685,-0.015118911,-0.021455795,0.005715998,-0.01374912,0.058068905,0.008890841,-0.028343156,-0.018729014,-0.009473323,-0.015912622,0.024681846,0.009377309,-0.01045906,0.016731936,-0.0077066757,-0.008077928,-0.006784947,-0.005357548,-0.014107569,-0.030007388,0.0041509797,-0.0042373915,-0.014440415,0.0107471,0.016603919,0.001920268,-0.017039178,-0.02492508,-0.004906285,-0.023235243,0.0052967393,-0.024745854,0.00029384103,-0.011239969,-0.001339387,-0.031646017,0.025001891,-0.01890824,-0.0060200403,0.004054966,-0.023043217,0.008084329,0.0004812672,0.016987972,-0.026192456,-0.033745512,-0.007956311,0.006512909,0.007905103,0.025744393,0.0016362284,-0.009870178,0.0032260504,0.0032644558,0.02119976,0.014222786,0.007764284,0.0042725964,-0.00379573,-0.01253935,-0.00959494,-0.0073162215,-0.012372927,-0.016143054,0.01776888,-0.0022691167,0.010446258,-0.0186266,-0.03167162,-0.007578658,-0.020265229,-0.0024915477,0.0033220637,-0.009274894,0.008346765,-0.0007941109,-0.0229152,-0.008929246,-0.0016642323,-0.013966749,-0.004858278,0.008116333,-0.005965633,0.00010361447,0.011303978,0.016066242,-0.009575737,-0.002557157,-0.0025315534,-0.0036613112,-0.0029412105,0.0115408115,0.0071241944,0.0067657446,0.000837717,0.006253673,-0.0014674049,0.020406049,-0.032388523,0.0025731593,-0.034820862,0.00121777,-0.012660967,-0.0072330097,-0.049261276,0.0075594555,0.015118911,-0.027395824,0.012091288,0.22162454,0.022812786,0.009127675,0.036561903,0.008961251,0.017154396,0.0031220359,0.0068233525,-0.012340923,0.01739763,0.022121489,0.007655469,-0.016373485,-0.008442779,-0.00025943623,0.005722399,-0.03115955,-0.019535527,-0.00045886406,-0.028778417,-0.008647608,0.00558798,-0.00780909,-0.0028515982,0.039019845,-0.00616086,-0.025923619,0.008993256,0.009857376,0.009735759,-0.016667927,-0.008948449,0.033515077,-0.013953948,-0.007098591,0.0012009677,-0.007329023,0.025974827,-0.0053127417,0.019497123,-0.0092108855,0.004554236,0.013275453,-0.014209984,-0.008551594,0.03402715,-0.0055239713,0.0015018097,-0.0026387684,-0.0030500258,0.0073034195,-0.019407509,0.01998359,0.028419968,0.012584156,0.0053095412,-0.0026483696,-0.026026033,-0.017948106,0.013902741,-0.0200476,0.015810207,-0.005866419,0.011348784,-0.027805481,0.01942031,-0.02607724,-0.021366183,-0.011265573,-0.0041381777,0.009902182,-0.007745081,-0.02808712,0.009172481,-0.018280951,-0.013774723,0.0066569294,0.033131026,0.015374946,0.018831428,-0.00006415896,0.011790446,-0.025513962,0.0018674607,-0.0125265485,-0.029751353,0.027882293,0.0021491,0.0007801089,-0.00902526,-0.001977876,-0.011777644,-0.01160482,-0.008282756,0.019689148,-0.0029748152,0.006624925,0.00027343817,-0.0044870265,0.0013553892,-0.0059624324,-0.0039077457,-0.014619641,0.03159481,-0.010286236,0.01418438,0.0017058381,0.03267016,0.021455795,-0.013659507,-0.017410431,-0.019497123,0.0043558083,-0.014798866,0.009799768,-0.004762265,-0.011131154,0.004304601,0.006618524,-0.02277438,0.026602114,-0.009518129,0.0022899196,0.0091852825,-0.017615259,-0.0020610876,-0.009390111,0.014965289,0.02242873,-0.03359189,0.0067273392,0.010126214,0.0064649023,-0.0007621064,-0.018652204,-0.023107225,-0.010523069,0.0042373915,-0.008570797,-0.0037157186,0.010593479,0.022595154,0.022198299,-0.010964731,-0.012353725,-0.019612338,0.008071527,-0.007981914,-0.023555288,0.011483203,-0.0010657487,-0.0008409174,-0.009402913,0.0032324512,0.02098213,-0.013480281,-0.049082052,-0.02169903,-0.013595498,-0.00988298,-0.020239625,-0.019548329,0.0523081,0.008321161,-0.003914146,0.003875741,-0.16314597,0.02657651,-0.0057864077,-0.0038373356,0.0012129693,0.0020386847,0.038430966,-0.010932726,-0.012648165,0.02277438,0.031850845,-0.0038437366,-0.007514649,-0.01324985,0.015374946,-0.016847152,-0.011496005,-0.006778546,0.031210758,0.00551437,0.008417175,0.0032484534,0.00881403,-0.006938569,0.022300713,0.019164275,-0.0040133605,0.008353166,-0.008481184,-0.0034276785,0.01404356,-0.017871294,0.013633903,0.01382593,0.038123723,-0.004858278,-0.0018706612,-0.0044454206,0.00888444,0.026653321,0.015131712,0.00033764713,0.011022339,0.0096717505,-0.011860856,0.027472636,0.011777644,0.006554515,0.0041861846,-0.013672309,0.014427614,-0.02908566,-0.0050663073,0.011271973,0.026602114,0.0200604,0.009639746,0.0153237395,-0.009722957,-0.0035012888,-0.012782585,-0.011592018,-0.010516668,0.0012105689,-0.0053991536,-0.020073202,-0.004714258,0.0047014565,-0.011835252,0.01655271,-0.01017742,0.010010998,0.011668829,0.022377525,0.010433457,0.015259731,-0.009018859,-0.00995339,0.030468253,0.0042245896,-0.024989089,0.004685454,-0.019036258,0.0107471,-0.014338002,0.017474439,0.001512211,-0.010561475,0.015797405,-0.010548673,0.017781682,-0.016194262,-0.0032996607,-0.011207964,0.013480281,0.035691384,-0.0024179376,0.007047384,0.0076106624,-0.02070049,0.009934187,-0.015784603,-0.0336687,0.024553828,0.031364378,0.0020066802,-0.019868374,0.01825535,0.0100302,-0.030545063,-0.009575737,-0.0047718664,0.014273993,0.02041885,-0.0062440718,0.048262738,0.0074826446,-0.01962514,0.02198067,-0.013941146,0.025744393,-0.01339067,-0.002113895,0.0106062805,-0.008007518,0.0060040383,-0.1153185,-0.039096657,0.0032868588,-0.0030500258,-0.029264886,-0.008346765,0.015912622,0.023619298,0.0025667583,0.023004811,0.007873099,-0.026525304,0.000658892,-0.025449952,0.027421428,0.007265014,0.012667368,-0.0054119555,-0.01725681,-0.000109215245,-0.008589999,-0.0027331815,0.0016706332,-0.012884999,0.006938569,0.0009257292,-0.0077194776,0.008122734,0.0028131928,0.0023187236,0.016424693,-0.013813129,0.028906435,-0.0057928087,-0.00888444,0.0051271156,-0.01310903,0.015797405,0.02177584,-0.01990678,0.0065385127,0.013160237,-0.017948106,-0.031108342,0.019138671,-0.0018962647,-0.0055783787,0.035076898,0.010292637,0.0038053312,0.006167261,0.0040869704,-0.026064439,0.00012661767,0.0100238,-0.012801787,0.010971132,0.008071527,-0.026026033,-0.0125265485,-0.017039178,-0.0019282692,-0.0067529427,0.010881519,0.014171578,-0.00061088527,0.00094733224,-0.0031204356,-0.0058568176,-0.011137554,0.010638285,0.00087852264,-0.018101728,0.016424693,-0.0037637255,0.0016770341,-0.019113068,-0.015221325,-0.006452101,-0.007962711,-0.019253887,-0.005050305,0.00651931,-0.014350804,0.0015506165,0.024041757,0.011118352,0.010849515,0.007405834,-0.01984277,-0.02693496,0.029572127,0.007405834,-0.01102874,-0.024169775,0.023235243,0.00780909,-0.009089269,0.0143636055,-0.026883753,-0.009294097,-0.010471862,-0.032926198,0.017039178,0.0037093179,-0.022262309,0.012795386,0.0026259667,0.0048486767,0.003760525,-0.023862531,-0.011374388,-0.014581235,0.01776888,-0.021891056,-0.018575393,-0.0082507515,-0.022966405,0.013582696,0.0065225107,0.013646705,-0.0023123228,0.019817166,-0.026269266,0.013365066,0.005402354,-0.007655469,0.010875118,-0.03371991,0.022147091,-0.008109932,-0.015310938,0.017218404,0.0077898875,0.007866698,-0.007111393,0.009633345,-0.009793367,-0.023760118,0.016565513,0.0054247575,-0.040940117,-0.0148500735,-0.01211049,0.0011761641,-0.02422098,-0.008980454,-0.006144858,-0.034155168,0.007770685,0.008282756,0.010196623,0.015131712,0.0110799465,-0.018536989,-0.021686228,-0.008391571,-0.0074698427,0.023248045,0.015605379,-0.010875118,-0.021033335,0.046752125,0.00015442156,0.018101728,-0.03717639,0.007169001,-0.00343728,-0.022646362,-0.008154739,0.0027027773,-0.038738206,-0.008513188,-0.016015036,0.033796716,-0.015554171,0.028317554,-0.004560637,-0.014568434,-0.0067401407,-0.010881519,0.01733362,0.004499828,0.008417175,-0.037150785,0.035973024,-0.005056706,0.032030072,-0.008846035,-0.013710714,0.01884423,0.013864336,-0.011739239,0.0013129833,0.00343728,0.00888444,0.013889939,0.036126643,-0.00074290374,-0.00043286043,-0.008289157,0.03359189,0.01990678,0.008295558,-0.0044678235,-0.016872756,-0.027984707,0.02335046,-0.040965717,-0.029239282,-0.007175402,0.0014009955,0.002750784,-0.01662952,0.00071529986,0.020572472,-0.015067703,-0.000909727,0.001024143,-0.0071626,-0.014209984,0.015579775,0.005773606,0.0243618,0.014376407,-0.011521609,0.013595498,-0.012443337,0.028061517,-0.012814589,0.022812786,-0.011419194,-0.0055399733,0.005568777,-0.020009194,-0.012116891,0.024016153,0.005466363,0.009518129,0.0043014004,-0.017039178,0.028957643,-0.0050311023,-0.006202466,-0.012577756,0.023235243,0.007514649,0.0125009455,0.0039525516,-0.0115664145,-0.012686571,0.006173662,-0.009978993,0.050054986,-0.032106884,-0.011764842,0.007085789,0.005664791,0.0076618697,-0.018434573,-0.009895781,0.0038053312,-0.0035492955,0.010343844,0.0034564824,-0.025321934,-0.00046366474,0.016424693,0.021942263,-0.01583581,-0.039583124,0.015285334,0.00945412,-0.060424436,-0.0033412664,0.0068233525,-0.011860856,0.0015482161,0.0023107226,0.005034303,-0.0061416575,-0.003667712,0.054535612,-0.030570667,-0.016002234,-0.0027907896,-0.0003896544,-0.01825535,-0.0039013447,-0.0049734944]},{\"id\":\"8c0811bd-4249-4db0-b7d3-41a48611a7bd\",\"text\":\"No improvements! It is great!\",\"vector\":[-0.0159373,0.003918305,0.0062257145,-0.01148093,-0.004007432,0.007539518,-0.0153431175,-0.027464446,-0.01151394,-0.0425963,0.004637926,0.012345796,0.017310522,-0.008628854,-0.003974422,0.004835987,0.034066476,0.0031508189,-0.008793904,-0.0106358705,-0.0011652583,0.012682499,-0.010200136,-0.021549026,0.003472668,0.003532086,0.008523221,-0.02318633,0.013296489,-0.008272343,0.027068323,-0.0018716755,-0.02923379,-0.020426681,-0.016016524,-0.018617725,-0.0024724603,-0.00825914,0.019119479,0.00786962,-0.0058626025,0.0049614254,0.0028982912,0.019304335,-0.033617537,0.011117819,0.022063984,-0.013652998,-0.023212738,0.00412957,-0.00024448143,0.01860452,0.00080503506,-0.00040870692,-0.0010868591,0.002985768,-0.00526842,0.017336931,-0.0027431436,0.0028982912,0.009678576,0.004344136,-0.0279662,0.009546535,-0.0059154187,-0.010589656,-0.0016282257,0.00078687945,0.015356322,0.027332405,0.024519939,0.01362659,-0.017257707,-0.011210247,0.023463614,0.008173313,-0.012629683,0.0014953598,0.011969481,0.00046131684,0.021707475,-0.027570078,-0.02367488,0.028837668,0.017706644,0.034647454,0.012081715,0.025945978,-0.028441545,-0.0050373487,-0.0014169607,0.017350135,0.023938961,-0.007651753,-0.02380692,0.005492889,0.011883654,0.028045423,0.013745426,0.0015877882,-0.0113620935,-0.01502622,-0.021469802,-0.015607199,-0.02683065,0.003984325,0.0032168392,0.0011223451,0.0279662,0.0039480138,-0.025246162,0.005446675,0.01489418,-0.0022826518,0.006757178,0.014075528,0.000006357033,-0.00461812,-0.0009119054,-0.01284755,0.010233146,-0.0062521226,0.036284756,0.002181971,0.013045612,-0.008767496,-0.019647641,-0.011632777,-0.006757178,0.015607199,0.01622779,0.018274419,0.0191855,-0.022011168,-0.0018931321,0.017099258,-0.021575434,-0.0037664582,-0.010589656,-0.014735731,0.003736749,0.021747086,-0.023397595,0.0022578943,-0.017970726,0.008074283,0.0060606636,0.013996304,-0.007064172,-0.013520958,-0.0001151229,-0.0237409,0.03245558,0.015290301,-0.0032118876,0.013091826,-0.012880561,0.009143812,-0.01264949,-0.02022862,-0.002822368,-0.017416155,0.005331139,-0.0062389183,0.0025483835,0.000991955,0.035915043,-0.0051825936,-0.00013534162,0.004997737,0.027570078,0.00044151075,-0.014630099,0.017178481,-0.03390803,0.008371374,0.016465463,0.0147885475,-0.011183839,0.0125174485,-0.011784623,-0.014841364,0.011626175,0.037103407,-0.026236467,-0.010880145,0.020756783,-0.0077903955,0.011560154,0.00588571,0.010272759,0.011857246,-0.017455768,-0.0029676126,-0.65703404,-0.030501379,-0.01190346,0.0027959598,0.024493532,0.029154565,0.01453767,-0.014682915,-0.030237298,-0.009170219,-0.007466896,0.0032531503,-0.018142378,0.010160524,-0.0056183278,-0.0042946204,0.026592977,-0.018617725,-0.03232354,-0.0074801003,-0.0149602005,0.024638776,-0.0085364245,-0.006595428,0.012411816,-0.018089563,0.024784021,-0.0029775156,-0.023846533,0.018102767,-0.016280606,0.016373035,-0.019013846,0.013943488,0.053846158,-0.026144039,-0.01840646,0.005974837,-0.0017396349,0.031240806,-0.020836007,-0.002627608,0.00230906,-0.014247181,-0.018274419,0.008800506,0.009995474,0.0030996532,0.0071962127,-0.014167956,0.022856228,-0.01281454,-0.0051066703,0.040958993,-0.00030018605,-0.034937944,0.03190101,0.018749766,0.003541989,0.00230906,-0.0049614254,0.020532314,-0.01047082,-0.022209229,-0.004644528,0.005786679,-0.016663523,0.010979176,0.0038423815,-0.02780775,-0.008041273,0.0021390577,-0.0045091864,0.010087902,0.014577283,0.016320217,0.032534804,-0.0032151886,0.01183744,0.021654658,0.006998152,-0.021126496,0.016056137,0.01635983,0.02565549,0.0078960275,-0.027464446,-0.031029541,-0.013877467,0.0005974837,0.015527975,0.013600182,0.00533444,-0.022063984,0.0038291775,0.047296945,0.012986193,0.01622779,0.0148281595,-0.03176897,-0.0108075235,-0.0049944357,0.017653828,0.016439054,0.0024708097,0.021628251,-0.007255631,0.017601011,0.03945373,-0.0149998125,0.02218282,0.004842589,-0.0074338857,-0.0031310127,-0.023516431,-0.03158411,0.016478667,-0.026157243,0.02793979,-0.009533332,0.021192517,-0.013652998,0.03557174,-0.014233977,0.0030435359,0.016214585,-0.003977723,0.011375298,-0.023595655,0.0071499986,0.013785039,0.00056859985,0.01616177,0.0015250689,0.022856228,0.021483006,0.01580526,-0.01698042,0.0027679012,-0.034673862,0.016042933,0.0040140343,0.005255216,0.015527975,0.0059814393,-0.012867357,0.008945751,0.018036745,-0.00011161557,0.006169597,-0.031029541,-0.0021093485,-0.021509415,0.009936055,0.004241804,-0.0011099663,-0.013454937,-0.030607011,-0.013534161,-0.016676728,0.017917909,0.021060476,-0.010272759,-0.016703136,-0.02881126,-0.01004829,-0.022922248,0.034647454,0.0061795,-0.02823028,0.016531482,-0.016214585,0.0069123255,0.011626175,0.00533444,-0.0071632024,-0.022710983,-0.017521787,-0.014630099,0.02136417,0.01694081,-0.000015396141,0.0034231525,0.008661863,0.03034293,-0.0062455204,0.019726865,0.0133294985,-0.024519939,-0.007460294,0.00075634505,0.018142378,-0.020756783,-0.012187348,-0.020439886,0.0037928664,-0.0056018224,0.0080676805,0.0331686,0.023635268,0.015158261,0.022856228,0.019779682,-0.0014062324,-0.007929038,-0.0137586305,0.013613386,-0.018221604,0.0034165506,0.023859737,-0.0030303318,-0.011976083,0.004202192,0.003977723,-0.008688272,0.008054476,-0.0030649924,-0.0040404424,0.0030847986,-0.0055325013,-0.013309693,0.010616064,-0.0068397033,-0.006806693,-0.02793979,0.0024856643,0.020637946,0.00549619,0.018908214,-0.007684763,-0.032772478,0.018498888,-0.0026226565,-0.012708908,0.01323707,0.008688272,0.0351228,-0.0033653849,0.01190346,0.017534992,0.039585773,0.011784623,0.0062422194,-0.00034598765,-0.003177227,-0.027438037,0.056671824,-0.007697967,0.0040635495,0.009355077,0.026170447,-0.011012186,-0.027834158,-0.013534161,0.00051206996,-0.012127929,0.0074008754,-0.004426661,0.025523448,0.03021089,0.0038588867,0.016188178,0.021588638,0.008734486,0.006070567,0.008589241,-0.008754292,-0.037182633,0.022037577,-0.0034825709,-0.023503227,-0.017587809,0.04256989,-0.025061306,0.0159373,-0.0008871478,0.032349948,0.031003132,-0.0079818545,0.0055754143,0.0016075943,-0.026658997,0.04621421,0.018683745,-0.0060375566,0.0015168164,-0.030263705,0.0034099484,-0.03470027,0.037895653,0.016082546,0.022196025,-0.008463803,0.003944713,0.019330744,0.00061357615,0.02793979,-0.017231299,-0.0087080775,0.0015457002,0.012966387,0.011441318,0.0097578,-0.013316294,0.010583054,-0.013487947,0.011579961,-0.010186932,-0.0070047537,-0.008173313,0.025602672,-0.010391595,0.031267215,-0.00962576,0.011546951,0.012933377,-0.014616895,-0.03514921,0.017970726,0.020109784,-0.014220772,-0.026672201,-0.010252953,0.002201777,0.09100238,0.0011883654,0.02507451,0.02754367,0.02607802,-0.018776173,-0.030923909,-0.0036641266,-0.008820312,-0.019330744,-0.015263894,0.010583054,0.011593165,0.017389746,0.00351228,0.0022694478,0.013072019,-0.035809413,0.011296073,0.002325565,-0.020215416,0.02065115,0.010833931,-0.0051594866,0.0027464444,0.032957334,0.0099096475,-0.019396765,0.029128157,-0.01762742,-0.017112462,0.018129174,-0.006446882,0.010411401,-0.020585129,0.023529636,-0.015092241,-0.0045884107,0.039823446,0.0050142417,0.01567322,0.0016859934,0.009209832,-0.0035716982,0.013111631,0.0034264536,-0.020426681,0.02367488,-0.017614216,-0.012458031,0.005294828,-0.00075758295,-0.012121327,0.004981232,0.00014576044,0.020664355,-0.039163243,0.022103596,0.020307845,-0.010041688,-0.023648473,-0.035360474,-0.014590486,-0.005255216,-0.018366847,-0.04381107,-0.008344966,-0.03176897,-0.0122599695,0.006753877,0.00016989911,0.0065591168,-0.0034000454,0.007295243,0.011137624,0.015395934,0.016769156,-0.024071002,-0.009837025,0.0028108142,-0.015541179,-0.011758216,0.03860867,0.006734071,-0.00825914,-0.013547366,0.020849211,-0.023846533,-0.008061078,0.012986193,0.03390803,0.010550044,0.019964539,0.0023915854,-0.009124005,-0.022037577,0.018802581,0.010741503,-0.015910892,0.0075329165,0.011223451,-0.0155543825,-0.019581622,-0.008199722,0.01931754,0.002607802,0.0008429967,0.0013005999,-0.0038456826,-0.016597504,0.013969895,0.008166711,-0.010556646,-0.0124316225,0.0044431663,0.024916062,0.01362659,-0.0025681898,0.0044992836,-0.004862395,-0.017284114,-0.025087714,0.019951334,-0.01222696,0.012781531,-0.0007967825,-0.01629381,0.004763365,-0.037473124,0.021522619,-0.012735316,-0.0048722983,-0.008047875,-0.037499532,-0.024308674,-0.021034067,-0.0052057006,0.0044497685,-0.0051990985,-0.007249029,-0.01698042,0.002972564,-0.00029832922,-0.008080885,-0.023107106,-0.019528804,-0.017046442,-0.023357982,-0.015726035,0.00091603165,0.011243257,0.012913571,-0.0263421,0.013785039,-0.0084109865,0.013395519,-0.010338779,0.024110613,0.017944317,0.020136192,0.049568042,0.011764818,0.007064172,0.0147885475,-0.009718188,-0.017693441,-0.0064171734,-0.015831668,-0.02094164,0.032983743,0.0069255293,-0.00972479,0.024519939,-0.010259555,-0.009005169,-0.0031475178,-0.017667033,-0.026645793,-0.024308674,-0.03132003,-0.0012568615,-0.016637115,0.012972989,0.015065833,0.004614819,-0.002325565,-0.003911703,0.01665032,0.023107106,0.0031359643,0.017191686,-0.010833931,0.029180972,0.02029464,-0.00041716578,-0.011269665,0.0005512695,-0.009473913,-0.012788132,0.030607011,0.0054202667,0.026592977,-0.005720659,0.009163618,-0.0014095334,-0.0012832696,-0.0108075235,-0.012339194,0.005968235,-0.024189837,0.036469612,-0.038872752,-0.030844685,-0.0051132725,0.0030072248,-0.0055919196,-0.029022524,-0.0067406725,0.024269063,-0.040087525,0.022288453,-0.003535387,0.018696949,-0.0059385262,0.0078035994,0.028890483,0.0051528844,-0.004146075,0.003200334,-0.008609047,-0.0053245374,0.010998982,-0.00031256487,-0.00318713,0.0060441587,0.01538273,0.006757178,-0.0005512695,-0.0052222055,0.006872713,0.020149395,0.027411629,-0.019990947,-0.013025805,-0.034885127,0.0063907653,-0.0155147705,-0.029893992,-0.009751199,0.002627608,-0.0098634325,0.019792886,-0.01200249,-0.00074190315,-0.006123383,-0.011243257,0.006446882,-0.009711586,-0.002403139,0.0069123255,0.0099096475,0.036443207,-0.010345381,-0.0020565323,-0.0013113283,0.0010043338,0.0024873149,-0.0071367943,-0.0104642175,0.026302489,-0.006403969,-0.023265554,-0.006169597,-0.007863018,0.0044728755,-0.030976726,-0.012801336,-0.00435734,-0.014696118,0.01453767,-0.0019277928,0.0038357794,-0.024493532,0.012022297,-0.023516431,0.006806693,-0.0023074094,0.007711171,0.013837855,-0.017389746,-0.005832894,0.00020765448,-0.0016835177,0.04692723,0.02673822,-0.035862226,0.009011771,0.020017356,0.006598729,0.017046442,0.005661241,-0.0034396576,-0.0066449433,0.0033406273,0.003180528,-0.0030039237,0.01960803,-0.019542009,-0.021192517,-0.035835817,0.017614216,-0.014498058,0.005525899,-0.0049548238,0.0047600637,0.0034462598,-0.009440903,-0.014933792,-0.016029729,0.021245332,-0.016478667,0.017112462,0.020307845,-0.031399254,0.016412647,0.013679407,-0.024836836,0.008034671,-0.043705437,0.0049845325,-0.014524466,-0.01317105,-0.026183652,-0.0308975,-0.022856228,-0.013547366,0.0027778042,0.023503227,0.015158261,-0.0116195725,-0.015461954,0.025589468,-0.0023816824,0.017904706,-0.009546535,-0.0165843,0.0028834366,-0.027200364,-0.021879127,-0.015580791,0.020413477,0.009018373,0.0021473102,-0.01635983,-0.0049449205,-0.0002257069,-0.031953827,-0.0022413891,-0.041804053,-0.0006544262,0.0075791306,-0.0051594866,-0.027041916,0.0321915,0.0134615395,0.0016257499,-0.002299157,0.0008170012,-0.005644736,0.007249029,0.015290301,-0.009797413,-0.007830008,0.00072828645,0.0139302835,0.01573924,0.017191686,-0.00058304175,0.0033241222,-0.008470405,0.0038555856,-0.01323707,0.011883654,-0.0067934887,0.0032151886,-0.026130835,0.0030947016,0.009500321,0.009454107,-0.00040581854,0.021667862,0.037129816,0.003274607,-0.0056183278,-0.027358813,-0.022671372,0.002205078,-0.024335083,-0.002087892,0.0016670126,-0.037129816,0.023516431,0.010094504,-0.008417589,-0.0069387336,0.025114123,-0.0071433964,-0.012345796,0.01944958,-0.023569247,-0.021997964,-0.014801751,0.021997964,-0.009975667,-0.033802394,0.00070187834,0.0066449433,-0.048987065,0.005753669,-0.00023189631,-0.0064765913,0.016755952,-0.016069341,-0.003915004,0.002617705,-0.008701475,0.007295243,-0.040536463,0.009500321,0.009962464,-0.020822803,-0.045025844,0.018419664,0.009500321,-0.0010852087,0.02387294,0.2302788,0.004647829,-0.0026903274,0.03161052,0.0032828595,0.020862415,0.01242502,0.00084258406,-0.02445392,0.0074140797,0.041672014,-0.008734486,-0.0217867,0.0019327443,0.011474328,-0.012378806,-0.016874788,0.0000955747,0.009011771,-0.023120308,0.0029081942,-0.008199722,-0.009341872,0.0048722983,0.03261403,-0.0049416195,-0.0044200593,0.007664957,-0.0033554817,0.0060276533,-0.007235825,0.0017264308,0.0056744446,-0.015263894,-0.011606369,-0.019792886,-0.0045653037,-0.024704797,0.0047270535,0.036020678,0.0031887805,-0.009883239,-0.0026589676,-0.022975065,0.021258537,0.022446902,-0.004340835,-0.006496398,0.03343268,0.014524466,0.009388086,-0.020255027,0.049119104,0.0056579397,-0.0062686275,-0.024784021,-0.01651828,-0.018498888,0.019423172,-0.01863093,-0.00075139356,0.021443393,0.008675068,0.014590486,-0.02809824,-0.014128344,-0.013217264,-0.0064336783,-0.0028306204,-0.01047082,0.0063214437,-0.009632362,-0.02650055,0.002627608,-0.023899348,-0.009506923,0.0364168,0.020017356,0.025034897,-0.008252538,-0.0111046145,0.009942657,0.00011017138,-0.03359113,-0.017442564,-0.046240617,0.007664957,-0.00010852087,-0.0040767537,-0.024321878,-0.012266572,0.0027860566,-0.0017808976,-0.005740465,0.022618555,0.008510017,-0.0006156393,0.026619386,0.0010150621,0.01635983,-0.0060507604,0.009506923,-0.009837025,0.011375298,0.0040734527,-0.009744597,-0.0055787154,0.010365187,-0.0065591168,-0.023556042,0.0030583905,-0.0036905347,-0.006539311,-0.01651828,-0.0040965597,0.01600332,0.017508583,-0.010451013,0.004816181,-0.01778587,0.020888822,-0.00059995946,-0.026460936,-0.009929453,-0.036865737,-0.022077188,-0.017957522,0.0063181426,0.005284925,-0.049119104,-0.0002948219,-0.020334253,-0.0032118876,-0.008800506,-0.020347457,0.0043738447,-0.0053872564,0.011434716,-0.006153092,0.008919342,-0.0064171734,0.005974837,0.0047204513,-0.001245308,0.004165881,-0.0135869775,0.011309277,-0.0016414297,-0.009652168,-0.0021555629,-0.019568417,-0.014194365,-0.013705814,-0.003541989,0.06734071,-0.02065115,-0.02865281,-0.031029541,-0.014418834,0.0075923344,-0.013824651,-0.0047468594,0.019489193,-0.023212738,-0.027702117,-0.010880145,-0.1688007,0.019687254,0.0053014304,-0.0077837934,-0.009539934,-0.004245105,0.029022524,-0.0027827558,-0.005730562,0.028864074,0.025747918,0.013164448,-0.009117403,0.011388502,-0.012398613,0.0025714906,-0.00035981063,-0.00014648255,0.00965877,0.013303091,-0.0019657544,-0.02712114,0.015686423,-0.013719019,0.010477422,0.004007432,0.007849813,0.03176897,0.005476384,-0.027649302,-0.023199534,0.0055589094,0.022816615,0.014022712,0.02523296,0.015237485,0.024506735,-0.014814955,-0.000394265,0.0035617952,0.027649302,0.013719019,0.03961218,-0.013355907,-0.00230906,0.0053806547,0.030527787,-0.013184254,0.008972159,-0.011150829,-0.003720244,-0.018380051,-0.01362659,0.0007423158,0.04470895,0.007011356,-0.008529823,0.014299997,-0.007017958,0.0011537047,0.016821973,-0.013600182,0.005572113,-0.021350965,0.002744794,-0.02543102,0.015541179,-0.008675068,-0.004835987,0.026381712,-0.03021089,-0.009731392,-0.009506923,0.0018898312,0.017733052,-0.011784623,-0.007301845,0.023080697,0.005710756,-0.022288453,0.0059385262,0.026606182,-0.01600332,-0.0016769157,-0.011269665,0.0021572134,0.007209417,0.0018898312,-0.002432848,0.009090995,0.026460936,-0.015963709,-0.019687254,-0.03076546,0.0047369567,0.06739352,-0.0044893804,-0.0112762675,-0.012906969,-0.014880976,-0.0011281219,0.019172296,-0.022169616,0.00575697,0.04217377,0.00012182809,0.0053806547,-0.0056051235,0.021839516,0.0051495833,-0.015422342,0.0068925195,0.009011771,0.018855399,-0.022367679,0.034594636,-0.007202815,-0.017587809,0.002845475,-0.008701475,0.05714717,0.00018475369,-0.018498888,-0.0008871478,-0.008206324,-0.018327236,-0.08746369,-0.018789377,0.016201383,-0.0071764067,-0.006595428,0.020836007,-0.0028009112,-0.003116158,-0.005945128,0.006998152,-0.0073876716,-0.036231942,-0.011665788,-0.003183829,0.016637115,-0.0227638,-0.0054202667,0.008193119,-0.030844685,0.0024411005,0.0042087943,-0.01629381,-0.000015602454,-0.012504245,-0.017574605,0.0058692046,-0.013025805,0.011164033,0.008080885,-0.002858679,0.015501566,-0.01778587,0.0056579397,-0.0227638,-0.02500849,-0.0013360858,0.0038621875,0.007268835,0.017125666,-0.042807564,-0.0051396806,-0.010616064,0.011051798,-0.04309805,-0.0027051817,-0.0005648862,0.01889501,0.02338439,-0.010655677,-0.008556231,-0.048115596,0.019145887,-0.011916664,-0.024203042,0.019343948,-0.014326405,0.017733052,-0.0149998125,-0.0191855,0.00024798876,-0.031716153,-0.009249444,-0.023912553,0.031504888,0.0195156,0.01698042,0.011844042,0.0048954054,0.0036311166,-0.023490023,-0.019766478,0.027781343,-0.02403139,0.0071235904,-0.025378203,-0.008430792,-0.034885127,-0.018076358,0.032693252,-0.0010084601,-0.022512922,-0.01418116,0.027200364,-0.012781531,0.019542009,0.011540349,-0.026883466,0.0017908006,0.019489193,-0.012543857,0.004690742,0.018353643,0.036654472,-0.031214397,-0.013065417,0.042041726,0.0008380452,0.0007307622,0.02881126,-0.010596259,-0.025774326,-0.007539518,-0.052023996,0.0063445508,0.00090447813,-0.031557705,-0.012623081,-0.01502622,-0.012920173,-0.00699155,0.003528785,-0.029603502,-0.001957502,0.01489418,0.025048101,-0.002513723,-0.02022862,-0.018023541,0.022367679,0.02360886,-0.011408308,-0.019951334,0.00744709,-0.014418834,0.013164448,-0.0003822988,0.007658355,0.011434716,-0.016835177,0.0054202667,-0.008595843,-0.021007659,0.02065115,-0.03522843,0.005912118,0.014141548,-0.005030747,-0.010985778,-0.025866754,0.01678236,0.015079036,-0.0038687896,-0.018921418,-0.019357152,0.032217905,-0.014775343,-0.0064402805,-0.007909232,-0.031557705,-0.008226129,-0.009665372,0.008087487,0.011784623,0.019013846,-0.013956691,-0.006450183,0.018023541,-0.030422155,0.001245308,-0.00022137431,-0.008206324,-0.011698797,0.029867584,0.008186517,0.0037532542,-0.014814955,0.029893992,0.00048071033,0.0015927397,0.029814769,-0.0066647492,0.0018073057,-0.0008108118,-0.006608632,0.0068595093,-0.0019376958,0.02298827,-0.0017016733,0.0001527751,-0.0072424267,0.0018320633,0.015105445,0.017521787,-0.0033257727,-0.03176897,0.0038588867,0.006021051,0.018881805,-0.0016793914,-0.0028537274,-0.0047204513,-0.007730977,-0.038423814,-0.014616895,0.024995286,0.013197458,0.009216434,0.03261403,0.005994643,0.018855399,0.0003348467,0.008351568,-0.006133286,0.0022001264,-0.018710153,-0.010979176,-0.0011363744,0.021430189,-0.017376544,-0.019396765,-0.0014838063,0.03691855,0.04344136,-0.008892935,-0.0124316225,0.010503829,0.003271306,-0.015792055,-0.0115337465,-0.004855793,-0.020373864,0.0065029995,0.013250275,0.023080697,0.0046973443,-0.0034792698,-0.005020844,0.0051363795,0.019343948,-0.0040932586,-0.012906969,0.007440488,-0.008272343,0.0011297724,-0.020215416,-0.010662278,-0.0022364378,-0.0022826518,-0.0043738447,0.01018033,-0.018234806,0.069558986,-0.018842194,-0.013454937,0.014550874,0.024110613,0.028203873,0.0025087714,0.007301845,-0.024757612,-0.009031577,0.0063412497,-0.01440563,-0.0023800319,-0.004225299,-0.023622064,-0.008774098,0.0029048931,0.008939149,-0.011223451,-0.0011041895,0.005476384,0.0037499531,0.010365187,0.011976083,-0.02500849,-0.012240164,0.0435734,0.009533332,0.0047204513,-0.020545518,0.021152904,0.017878298,-0.009685178,0.0028009112,0.0036839328,-0.021113291,-0.01785189,-0.034594636,-0.017653828,-0.00039715337,0.012345796,0.02094164,-0.017574605,-0.020334253,0.011434716,0.005879108,-0.009057986,-0.00240644,-0.03554533]},{\"id\":\"25f66814-924c-4b6d-abaf-a73b65f3f62b\",\"text\":\"I would like to see more in store collabs\",\"vector\":[-0.010426345,-0.004643694,-0.015294577,-0.01594541,-0.020605374,0.007920639,-0.0013317672,0.010022829,0.017325176,-0.018626843,0.009306912,0.004825927,0.011662928,-0.029469721,-0.00058574975,0.017806793,0.027777554,-0.0032541652,-0.0035047359,-0.026918454,-0.0016726409,-0.015971443,-0.0056947893,-0.014201177,0.00834368,-0.010484921,0.021920057,-0.022349607,-0.004077469,-0.0068272385,0.053732775,0.018171258,-0.022427706,-0.027048621,0.0036316484,-0.018405559,-0.02046219,0.0048356894,-0.0044126483,-0.027673421,-0.002502453,0.003940794,0.0033387735,-0.013459227,-0.020605374,-0.005489777,-0.018301426,-0.0043410566,0.0071201134,0.010510954,0.0033973486,0.0047738603,-0.026150472,-0.026892422,0.02225849,0.00397659,-0.02206324,0.013257469,0.010439362,-0.0023299824,-0.017871875,0.00775793,-0.004311769,-0.0005780211,-0.026098406,-0.027152754,-0.019577058,-0.016609259,0.028142022,-0.0028473947,0.0031532862,0.018145226,0.01766361,0.014760894,0.0017670117,-0.011246395,0.023325857,-0.009808054,-0.026866388,0.004712031,0.0069834385,-0.02759532,-0.009215796,0.02822012,0.024237024,0.027334988,0.005157852,0.013029678,-0.0017751472,-0.0065603973,0.010224587,0.011441645,-0.009886154,0.010504445,-0.02643684,0.006866289,-0.011252903,0.022701057,0.012808395,-0.0080052465,0.02104794,-0.0038496775,-0.04495955,-0.016387977,-0.035223085,0.020748558,0.003211861,0.013563361,0.012958086,0.027569288,0.0008729298,0.004074215,0.006160135,-0.01185167,-0.0007037132,-0.0063749095,0.0062056934,0.0012422776,0.0011397714,-0.031474285,0.031682555,0.017871875,0.032828018,0.0017605034,0.0054246937,0.013979894,-0.017572492,-0.00728933,-0.0010087913,-0.017819809,0.056648508,0.005414931,0.0060169515,-0.0040839775,-0.016283844,0.038060717,-0.013979894,0.01477391,0.00378134,-0.0052164267,-0.008363205,0.03251562,-0.002834378,-0.0045167813,-0.0023901844,0.033635054,0.01925164,-0.014461511,-0.0063098264,0.00010850607,0.020384092,-0.029053187,-0.0027692947,0.009209287,0.0033176215,0.005968139,-0.004363836,0.0045721023,-0.018822093,-0.0010242485,0.007966196,-0.02915732,0.014943127,-0.006963914,0.013459227,0.026449855,0.041419014,0.0047380645,-0.012274711,0.00846083,0.0021086992,0.032229252,-0.054722045,0.019355776,-0.0015701348,0.006989947,0.005395406,0.02128224,-0.008786246,-0.035249118,0.029964354,-0.0056069265,0.02425004,0.004311769,-0.0122812195,-0.011760553,0.02421099,-0.008864346,-0.01711691,0.0030898298,-0.010510954,0.00846083,0.020397108,-0.0036902234,-0.65395707,-0.021113025,0.0047640977,-0.042252082,0.011415612,0.034754485,0.027855655,0.0051480895,-0.022857256,0.015047261,-0.016713392,0.024041774,-0.00052107323,-0.015528876,-0.00532056,-0.007979213,0.010582546,-0.024497356,-0.0038431692,0.013953861,-0.02186799,0.019876441,0.028298222,-0.031161886,0.011741028,0.00660921,-0.0058932933,0.010439362,0.004825927,0.0013675629,-0.022935357,0.04678188,0.007927147,-0.02229754,0.05118151,0.009957746,0.0024731655,0.02915732,0.008024772,0.022870274,-0.02643684,0.021529557,0.0018727721,-0.008408763,-0.019407842,0.0022714073,0.012138036,0.027959788,0.020631408,-0.030745354,0.016309876,-0.009671379,-0.002165647,-0.00036629697,0.015372677,-0.0058217016,0.0090270545,-0.0005706992,0.0017800283,0.022427706,-0.010615087,-0.013771627,-0.043059114,-0.018757008,-0.042512413,0.020188842,-0.026280638,-0.010712712,0.0014033588,0.0027644134,-0.010764779,-0.009059596,-0.042356215,0.011741028,-0.0032818257,0.018171258,-0.006221964,0.0056297057,-0.01450056,0.035691686,-0.0078946045,-0.017064843,0.002951528,-0.0075561716,0.04279878,0.0077514215,0.00057313987,-0.006853272,0.016778477,0.005577639,0.014982177,0.0051903934,0.011532762,-0.021217158,0.01672641,0.022792174,0.010152996,0.023482056,0.00006421892,-0.015424743,-0.023794455,-0.032255284,0.004494002,-0.010510954,0.011005587,0.013016661,-0.015385693,-0.010055371,0.027803589,-0.029027155,0.00022962203,-0.016700376,-0.016010493,-0.011675945,-0.0041295355,-0.030432953,0.0019964303,-0.032385454,-0.005707806,-0.017559476,0.009716937,0.0032997236,-0.0027530238,-0.005353102,0.004786877,0.009996796,-0.010751762,-0.031213952,0.015802227,0.018835109,0.0042466857,-0.034390017,0.017429309,0.0095281955,0.018405559,-0.013322553,0.009411046,-0.011233378,0.013706544,-0.043631848,-0.0027009572,-0.011832145,-0.008382729,0.00011176024,-0.010777796,-0.0011877703,-0.0014204432,0.003839915,0.0034136192,0.00008745569,0.00803128,0.001113738,0.0028490217,-0.00096404646,0.009358979,0.007803488,-0.0036479193,-0.0071982136,-0.03493672,-0.014799943,-0.0054995394,0.012945069,-0.0023657782,-0.008506388,0.0022681532,-0.012333286,-0.0021038179,-0.01766361,-0.008701638,-0.020722525,-0.00764078,-0.025135173,0.02124319,0.016661325,-0.00010011643,0.006352131,0.000753746,-0.0050537186,-0.0021103262,0.0020582594,0.017976008,0.023182673,-0.024731657,0.023612224,0.016322892,0.009189763,0.028011855,-0.00413279,-0.03215115,-0.0047738603,0.009170238,0.009931712,0.0082070045,-0.0032509111,0.006671039,-0.0049853814,-0.009749479,0.02128224,0.017195009,0.018249359,0.016583227,0.016192727,0.016205743,-0.013146828,0.016505126,-0.015541893,0.002974307,-0.030823452,0.032828018,0.022662006,0.0033355195,-0.019017342,0.0029580363,-0.015893344,0.0027855656,0.020787608,-0.015307593,0.018548742,-0.027881688,0.0055613685,-0.019564042,-0.014747877,0.01649211,-0.008799263,-0.01727311,-0.01099257,0.017611543,0.027230855,-0.007705863,-0.001241464,-0.025135173,-0.004864977,0.018965276,-0.0004783623,-0.000399042,-0.028402355,0.010497937,-0.01399291,0.012307253,0.014825976,0.014565644,0.029573854,0.0011104839,0.02178989,0.02108699,0.00641396,0.0063293516,0.013290011,-0.008630047,0.018522708,-0.0035698193,0.004611152,-0.01887416,-0.00822653,-0.00016819967,-0.03496275,-0.0004128722,0.003563311,0.007347905,0.020722525,-0.009476129,-0.03056312,0.021529557,0.002424353,-0.00003716867,0.0101399785,-0.009111662,-0.017572492,-0.029990386,-0.01535966,-0.0038854734,-0.005577639,0.034676384,-0.014878044,-0.0053791353,0.0020550054,0.009554229,-0.008011755,-0.020917775,0.030146588,-0.0016856577,-0.021308275,-0.003524261,0.01664831,-0.02159464,0.017806793,-0.0021249698,0.015646027,-0.010029337,0.014370394,0.017247075,0.014097044,-0.020514257,-0.0053465934,0.0017670117,-0.021841956,0.03574375,-0.034025554,0.024041774,0.002183545,0.01282792,0.02065744,-0.0035958525,-0.006182914,0.052561276,0.00041409253,-0.0041881106,-0.017559476,-0.0080052465,-0.0069443886,-0.00385944,-0.0066059553,0.001505865,0.00005852413,0.012658703,-0.01586731,-0.0008444559,-0.0069183554,0.017286126,0.034311917,0.009905679,-0.023299823,-0.026501922,0.01508631,0.11662928,0.027751522,-0.008838313,0.013420178,0.008525913,0.009892662,-0.008467338,-0.0042466857,-0.010803829,-0.009567246,0.013732578,-0.03967478,0.0020940553,-0.009716937,0.032489587,-0.010218079,0.010335228,0.01528156,0.009261354,-0.017351208,-0.00004266007,0.0033452818,0.0068402556,0.024497356,0.034520186,0.006710089,0.031604454,0.022349607,0.010777796,-0.020605374,-0.012033903,0.02085269,-0.0060104434,0.0065701595,-0.0036381567,-0.006088543,-0.014396427,-0.0016368452,0.020540291,0.00269933,0.01430531,0.014396427,0.011728012,-0.009391521,-0.003644665,0.00010225197,-0.010289671,0.020982858,-0.01500821,-0.006872797,0.019668175,-0.0012829547,0.0044061397,0.0021412408,-0.0071005886,0.0046990146,-0.027178789,-0.014943127,-0.031682555,-0.045063682,0.00012691245,-0.010777796,0.007536647,0.00539866,-0.015385693,-0.032567687,0.009157221,-0.007386955,-0.009345963,-0.005496285,0.0027123468,-0.0081028715,-0.009990287,-0.002438997,0.006378164,-0.0005890039,-0.0032037257,0.017637575,0.018900191,0.0029808155,-0.027074656,-0.00068296795,0.0065473807,-0.02663209,-0.02206324,0.008890379,-0.0035112442,-0.0043996316,-0.034129687,0.020969842,0.013179369,0.00014572559,0.044543013,-0.018926226,0.005395406,0.02225849,0.02954782,0.028714754,0.0002022667,0.0020729033,0.013940844,-0.0062414887,-0.013498277,-0.00814843,-0.0029596633,0.0072372635,0.0077904714,0.0022795429,-0.021724807,0.002521978,0.026345722,0.008122397,0.020305991,-0.0014456629,0.012164069,0.018236343,-0.009769004,0.014917093,-0.0003744324,-0.017546458,-0.0075301384,-0.027543254,0.00076879654,0.0024666572,-0.03267182,0.002185172,-0.009677888,-0.032775953,0.0045363065,0.010055371,-0.012613145,0.014370394,-0.020514257,-0.005336831,-0.017572492,0.01150022,-0.001869518,0.008974988,-0.0036837151,-0.026137454,-0.022050224,0.014799943,-0.009606296,-0.004630677,-0.023872556,-0.038815685,0.011942786,0.002617976,-0.04222605,0.02962592,0.02339094,-0.002619603,0.00016016595,0.0047608437,-0.013127303,-0.026736222,-0.016661325,-0.011272429,0.010185537,0.021620674,0.03613425,0.009638838,0.029209387,-0.031057753,0.004881248,-0.019472925,0.014253244,-0.003901744,-0.021321291,0.006423722,-0.010673662,-0.011806112,0.0021428678,0.014682794,-0.017403277,0.029730054,-0.018783042,-0.004568848,0.005558114,0.014461511,-0.009521687,-0.0067491387,-0.024497356,-0.0028441404,0.011409103,-0.0020208366,0.008493371,0.016570209,-0.002165647,-0.018965276,0.009827579,-0.005496285,0.00764078,-0.004080723,0.015932392,-0.015489827,-0.01575016,-0.025877122,0.0033517901,0.012932053,0.024978973,0.0139148105,0.020683475,-0.017455343,-0.018848125,0.036863185,-0.020956824,0.006290301,-0.0034559234,-0.011897228,-0.013042694,0.00027619727,-0.036706984,-0.025499638,-0.011545778,0.006186168,-0.037540052,0.018783042,0.014513577,-0.020240908,-0.0021933073,-0.014721843,0.019733258,0.006892322,0.013368111,-0.002167274,0.026593039,-0.006989947,0.007998738,0.0026830593,-0.01450056,0.009782021,0.031005686,-0.027230855,-0.0078099966,-0.00389849,0.00775793,-0.043866146,-0.031292055,0.012535045,-0.00017409785,0.03972685,-0.031708587,0.01224217,-0.0025057073,-0.01379766,-0.022011174,0.01438341,0.0011560422,-0.018262375,-0.01251552,0.0019541262,0.006641751,0.022089275,-0.0054051685,-0.0016889118,-0.021360341,0.0043768524,0.012209628,0.03079742,-0.0005837159,0.03571772,-0.012456944,0.012990627,0.0046144063,-0.013849727,-0.0013252588,-0.009313421,-0.0016710139,0.024952939,-0.037123516,-0.011994853,-0.009202779,-0.029417654,-0.005512556,-0.021972124,-0.00853893,-0.017572492,0.019381808,0.008766721,-0.0049170437,-0.004373598,-0.010296179,0.0020257179,-0.010367771,-0.0009469621,-0.028428387,-0.0061926763,0.019134492,-0.030068487,-0.027256887,-0.0045428146,0.0009876392,-0.0027009572,-0.011786587,0.016609259,0.018418575,0.0023462533,-0.027178789,0.024783723,0.0082135135,0.001732843,-0.013706544,0.0053465934,-0.01528156,-0.024471322,0.00842178,0.010842878,-0.017325176,0.019134492,0.026228571,-0.0013618681,-0.018392542,0.015724126,0.012196612,-0.0084152715,-0.0056199436,0.0031630485,-0.017260093,0.01582826,-0.007927147,0.017819809,0.012105495,0.0031337612,0.0077449135,-0.0119818365,0.025799023,-0.0049560936,-0.028428387,-0.00892943,0.002424353,0.036733016,0.023169657,-0.010224587,-0.01614066,-0.0074910885,-0.015489827,0.019564042,0.02218039,-0.02507009,-0.0006073086,0.061646905,0.0135112945,0.017819809,-0.0004921925,-0.014044977,-0.010823353,-0.026527954,-0.0028457674,-0.017195009,-0.0012512265,0.024380205,0.006544126,-0.03371315,-0.02089174,0.0032313862,-0.025564723,-0.01204692,-0.004904027,0.012027395,0.0042206524,-0.006716597,-0.039128084,0.04602691,0.011044637,0.019420858,-0.009879646,0.0054832683,0.021815924,-0.018028075,0.025590755,0.0041653314,-0.014396427,-0.019225609,0.013498277,0.02986022,0.026892422,0.013381127,-0.031942885,0.008018264,-0.009925204,-0.013615428,0.013953861,0.031005686,0.020097725,-0.03181272,-0.014474527,-0.00053042895,0.02319569,0.007959688,0.0014961024,-0.008161446,0.026098406,0.018223325,0.010699695,-0.011884212,-0.0128995115,-0.0052717477,0.01450056,-0.016387977,0.011096704,0.018600808,0.032619752,-0.0072372635,0.004435427,-0.0043247854,0.012066444,-0.02241469,-0.0028181071,-0.013654477,-0.008161446,-0.007666813,-0.023026474,0.008259071,0.0016116253,-0.011545778,-0.016960708,0.008187479,0.0024129634,0.0014253244,-0.02428909,-0.0010275027,-0.0018044346,-0.010497937,-0.020917775,-0.0030442716,-0.030771386,0.0021217158,-0.02663209,-0.009677888,-0.026111422,-0.031135853,0.0034363985,0.0036479193,-0.017976008,0.0031809465,0.24721242,-0.018704941,-0.020214874,0.022284525,-0.00005557504,0.0070615388,0.008974988,0.017585509,-0.000030304414,0.004041673,-0.0055971644,0.018926226,-0.009749479,-0.01071922,0.0070224884,-0.016479094,-0.027881688,-0.01500821,-0.041471083,0.008695129,0.01621876,-0.016544176,0.013016661,-0.010074896,0.013693527,-0.013576377,0.000021330035,-0.0022990678,-0.010100929,0.008324155,-0.014630727,0.01731216,0.008220022,-0.03384332,0.011636895,-0.015177427,0.005766381,-0.003449415,0.02425004,0.009306912,0.0054442184,0.017689642,-0.009853613,0.006697072,0.0018678908,0.02046219,0.012860461,0.0017784013,0.021698775,-0.0012878359,-0.027647387,-0.018757008,0.002362524,0.05248318,-0.0001510136,-0.01563301,0.008551946,0.0016710139,-0.031786688,0.00020196164,-0.015789209,0.022909323,0.0004323972,0.018444609,-0.02218039,0.010471904,-0.010699695,0.00052310707,0.02046219,-0.0019752784,0.016570209,-0.02046219,-0.0135112945,0.00051171746,-0.0051741228,-0.028350288,0.027126722,0.013667494,0.03462432,0.010302687,0.016817527,0.013329061,-0.009834087,0.0043833605,-0.004432173,-0.02460149,-0.0032134883,0.007536647,-0.016609259,-0.00709408,0.0066027013,-0.0030475256,-0.0022209678,-0.019069409,0.0025154697,0.016986743,-0.0067426306,0.020110741,0.01457866,-0.014461511,-0.010764779,0.015424743,0.0058347182,0.008551946,-0.021191124,-0.024367189,0.014318327,-0.01925164,0.008955463,-0.0084152715,0.013615428,-0.025057072,0.01512536,0.011116228,-0.00061747787,0.0028148529,0.006085289,-0.021763857,0.021724807,-0.024002723,-0.013966877,-0.017910926,-0.011916753,0.0030556612,0.000565818,0.0011088568,0.003722765,-0.0010860777,0.0073739383,-0.033218518,0.010035845,0.007705863,0.04170538,-0.016427027,-0.022544857,-0.0020143283,0.0073674303,-0.001002283,-0.014878044,-0.01052397,-0.018002043,0.018770026,-0.0010958401,-0.025642822,0.01200787,-0.022896307,0.0050699892,-0.013166352,0.016322892,-0.0017409784,0.02401574,-0.0009778767,-0.021516541,-0.024328139,0.025304388,-0.00586726,-0.0033713153,-0.009261354,0.012112003,0.00012040411,-0.017494392,-0.019590074,0.030458987,-0.003132134,-0.031005686,-0.0068207304,-0.16525953,0.016934676,-0.00810938,0.0071591637,0.020201858,-0.0026749237,-0.00689883,-0.024184955,-0.01867891,-0.0030816945,0.022206424,0.008200496,-0.017181993,-0.03660285,-0.012717278,0.0063749095,-0.017129926,0.0031353883,0.02350809,-0.0089164125,0.036394585,-0.024132889,-0.0015986087,-0.019577058,0.008577979,0.0068858135,0.0011324495,0.017455343,-0.026918454,-0.0087146545,-0.0045070187,-0.015737142,0.03032882,-0.0022990678,0.0060787806,-0.012248678,-0.00481291,-0.0037130027,-0.008200496,0.038529318,0.015997477,0.021711791,0.007823014,-0.009775513,0.00606251,-0.0031842007,0.037149552,-0.013276994,-0.00087130273,-0.022141341,0.014682794,-0.016427027,0.011090195,0.011051145,0.0022225948,0.017351208,0.013185877,0.00047998936,-0.014865027,0.001535966,-0.006283793,-0.0049137897,0.026553988,-0.015646027,-0.028272187,-0.010745253,0.0023739135,-0.018978292,-0.0082135135,0.009352471,-0.015685076,0.0044061397,0.03056312,-0.007224247,0.033140417,0.008636555,-0.03017262,0.010257129,-0.0024894364,-0.028298222,-0.0077123716,0.026840355,-0.03142222,0.011239887,0.004494002,0.021321291,-0.0022291031,-0.008382729,-0.008669096,0.0031484049,0.013244453,-0.00590631,-0.029730054,-0.019980574,-0.0019199575,0.035483416,-0.0017198264,0.0010624849,0.00050439563,-0.007920639,-0.004116519,0.00049707375,0.0021981886,0.025135173,0.0036739525,0.008350188,0.012801887,0.027439121,0.015971443,-0.016192727,-0.007666813,0.013290011,0.017195009,0.032489587,0.017260093,0.025799023,0.018757008,0.0011430256,0.029261453,-0.016570209,0.0627403,-0.013381127,-0.011806112,0.015580943,-0.0017605034,-0.012476469,-0.09455302,-0.03967478,0.015724126,0.005421439,-0.010999079,0.040611982,0.0021200886,0.034988783,-0.009593279,0.040768184,0.0064074514,-0.03699335,0.012808395,0.0005735466,0.025278356,0.010803829,-0.01079732,-0.0009770631,-0.016973726,-0.00189067,0.013628444,0.016518142,-0.008675604,-0.0046957606,0.0022112052,0.010907962,-0.03933635,0.029677987,0.015685076,-0.013166352,-0.0082135135,0.00014948822,0.0010567901,-0.017142942,-0.018275391,-0.0076928465,-0.0033550444,-0.0005930716,-0.009183254,-0.030667253,0.013231436,0.0055223187,-0.020449175,-0.009996796,-0.024575455,-0.016544176,-0.017195009,0.0055678766,0.038529318,-0.0122812195,0.019993592,0.00066913775,-0.016505126,-0.00027253633,0.04003925,0.001181262,-0.0058574975,-0.0037260193,-0.018535726,-0.0028962072,-0.0012422776,0.0063651474,-0.008122397,0.012411387,-0.018939242,-0.0039928607,-0.023833506,-0.005063481,0.019420858,-0.008682113,0.013133811,0.014005927,-0.006866289,0.003957065,-0.017299142,-0.011962311,-0.0036349026,-0.028454421,0.012886494,-0.027699454,-0.012164069,-0.01625781,0.0056589935,-0.028298222,0.04436078,0.002836005,-0.0005405982,0.016322892,0.028714754,-0.03988305,0.021386374,0.008877363,0.017533442,-0.01528156,-0.0024585219,0.0011714995,-0.015646027,-0.02042314,0.028584588,0.0032427756,-0.017155958,-0.019538008,-0.04105455,0.028402355,-0.0060787806,0.008024772,0.018613825,-0.012248678,0.0005381576,-0.0024975718,0.023768423,-0.0014838993,0.012209628,0.017090876,-0.025759973,-0.005496285,0.011474187,0.0028522757,-0.0040579443,0.013537328,0.035483416,-0.014682794,0.019147508,-0.0010030965,0.024744673,-0.0082070045,0.00873418,0.02311759,-0.0011300088,0.016088594,-0.006866289,-0.03243752,-0.0019736511,-0.03301025,0.0017849096,0.019290691,0.007777455,-0.040638015,-0.011487204,0.015659044,-0.0070159803,-0.02339094,-0.02026694,-0.01496916,0.026124438,-0.0059193266,-0.0034721943,-0.027621355,-0.023573173,0.015971443,0.0036902234,-0.016231777,0.018366508,0.040403716,0.0062512513,-0.035379283,-0.027126722,-0.02884492,-0.0119818365,0.012730295,0.012222645,-0.0044159023,-0.0028213612,-0.0032232506,0.036863185,-0.0047348104,0.031708587,-0.0010999079,-0.008161446,-0.0015400337,0.027387055,-0.0041295355,-0.013120795,-0.01590636,-0.010159504,0.01489106,0.004070961,0.001585592,0.0134071605,-0.010237603,-0.011923262,0.028272187,-0.0031207444,-0.010621595,-0.020162808,0.022596924,0.013485261,-0.009788529,-0.00037605947,0.012769344,0.0008680486,0.008050805,-0.018535726,-0.00756268,-0.018561758,-0.0075887134,0.014552627,0.027256887,-0.012014378,-0.011701978,-0.005141581,0.0024910634,0.009710429,0.002600078,-0.0022291031,-0.00007794743,-0.0019378554,0.026085388,-0.018887175,-0.013732578,-0.008220022,0.014786927,-0.013979894,0.008454321,0.00397659,-0.0021965615,-0.018639859,0.013901794,0.006199185,-0.013979894,-0.021126041,0.02128224,0.02124319,0.0013830202,0.01664831,-0.028298222,0.02065744,0.026007289,-0.00063008774,-0.016765459,0.007412988,0.005066735,-0.022714073,-0.03785245,-0.017168976,-0.010055371,-0.0031435236,0.023833506,-0.006553889,0.03949255,-0.015385693,0.043215316,0.00803128,-0.021959107,-0.0002328762,-0.028350288,0.01547681,0.004448444,0.031578418,-0.0037878484,-0.011506728,0.007146147,0.0012674973,0.019681191,-0.016270826,-0.024666572,0.0011983464,-0.01629686,0.006950897,0.0032557924,-0.00382039,0.0070355055,-0.009593279,0.0038073733,-0.011057653,-0.014604693,-0.013107778,-0.0008485236,0.0073544136,-0.018991308,-0.034442086,-0.00578916,0.002796955,-0.016518142,-0.000043321073,0.018809075,0.0012105495,-0.00065693463,0.0042792275,-0.018587792,0.010166013,-0.0033908403,-0.009502162,-0.004240177,-0.0077839633,0.029886253,-0.026371755,0.0010405193,0.0001980973,-0.02884492]},{\"id\":\"035fd500-678e-4a98-997d-e695ef2b2371\",\"text\":\"preferably fewer withdrawal days so i can get money sooner.\",\"vector\":[-0.046673007,0.005014707,0.016889507,-0.021359062,-0.033589393,0.0064097503,-0.025300398,-0.013537339,-0.03047425,0.006738195,0.020627681,0.03125981,-0.0043307296,0.0038194393,0.008234819,0.004036145,0.016496727,-0.010605039,0.019679593,0.0019283427,-0.0051162876,0.009135502,-0.019137828,-0.007970709,-0.0009709434,-0.0044695567,0.0020976441,0.0016718511,-0.025124324,-0.0070361653,0.019137828,-0.006843162,-0.011438002,-0.026966324,-0.011519266,-0.011708884,0.014546375,0.0072460994,0.013544111,-0.026695441,0.013239368,-0.0021315045,-0.0026698827,-0.005481979,-0.013991066,0.017702153,-0.004987619,-0.024880532,-0.031747397,0.03136816,0.003538399,-0.004699806,-0.018568976,-0.0019164917,-0.011431229,0.02019427,-0.0020129934,0.007726915,0.0038702297,-0.007449261,-0.00044060685,0.02322815,-0.020912107,0.025354575,-0.010665988,0.00060609897,-0.015237125,0.014072331,-0.0077404594,-0.004527119,0.014790169,0.018866947,0.0048758797,-0.0062506073,0.020058827,-0.019029476,0.013286772,0.004682876,0.0058645997,0.012406405,0.028713515,-0.028280104,-0.0153454775,0.00022580572,0.009237084,0.017011402,0.01966605,0.006372504,-0.017092668,-0.008661459,0.0013611831,0.011106171,0.017864682,0.033128895,-0.017539624,0.021657033,-0.0016616931,0.019530607,-0.0075102095,-0.026085958,0.009995554,0.021291342,-0.0050587254,-0.011749516,-0.009358981,-0.00018739548,-0.02200918,-0.016591536,0.017011402,-0.012399633,-0.009392841,0.03169322,0.008519245,-0.02939072,0.0016252933,-0.016943682,-0.015467375,-0.008234819,0.003535013,-0.034618746,0.012067802,0.0037144723,0.036894158,-0.011932362,0.005150148,-0.00489281,-0.026329752,0.01591433,-0.0010962265,0.0028815095,0.005529383,0.025869252,0.010713392,0.0050485674,-0.015927874,0.0040124427,-0.011207752,-0.010300296,-0.045020625,0.007855584,0.0147630805,0.0045135748,0.0087630395,-0.0044255382,-0.0027511476,0.04068651,0.0069752173,-0.021806018,0.0012342071,-0.018866947,0.0020959512,-0.00043764408,0.009216768,-0.015020419,0.0009540133,0.0071309744,-0.0011817237,0.015304845,-0.018568976,-0.014600552,0.011167119,-0.029282367,0.013049751,-0.010462825,0.018731505,0.03551266,0.019164916,0.0050824275,0.021494504,0.005874758,-0.0031049873,0.0077336873,-0.0076185623,0.022848915,0.0010632126,0.018636696,0.0056817546,0.0041952883,-0.025720267,-0.011641163,0.0022974198,0.011864641,0.018203285,0.010259664,-0.00039637685,0.0024988884,0.019544153,-0.011654708,-0.0025141255,0.0031320755,-0.025815075,-0.02566609,-0.013232596,-0.01927327,-0.64795023,-0.001461071,0.0124334935,0.0036399798,0.025679635,0.01651027,0.012453809,0.006731423,-0.0121152075,0.014140052,-0.022320695,-0.008241591,0.0007707446,-0.008918797,0.010368017,-0.013049751,-0.007225783,-0.010794656,-0.029444898,0.014641183,-0.018000124,0.007814952,-0.03548557,0.03513342,0.033833187,-0.006846548,0.00085370225,-0.012541846,-0.007794636,0.011031678,0.0028899747,0.016659256,0.02599115,-0.012656972,0.04250142,-0.00009300995,-0.0039887405,0.010042958,0.013659236,0.047268946,-0.033264335,0.01993693,-0.017052036,-0.01499333,0.002094258,0.001967282,0.008431209,0.004395064,-0.012758552,-0.0125215305,0.036677454,0.0025005816,-0.007212239,-0.008085834,0.0070158495,0.012365773,0.0045711375,-0.018826313,0.0007927537,0.006264151,0.0001923687,-0.0061693424,-0.018528344,-0.016117493,-0.037733894,-0.005966181,-0.014451566,-0.00019120474,0.01598205,-0.006558736,0.0101039065,0.018501256,-0.010733708,0.0092032235,0.0049639167,0.012000082,0.016632168,-0.014275493,-0.0042426926,0.030636778,0.003907476,-0.013842081,-0.020912107,-0.0012748394,0.041228272,-0.016618624,0.0051840083,-0.021331975,-0.0047133504,0.014966242,-0.0028442633,0.0023143499,0.026600633,-0.013896258,-0.009386069,0.021426784,0.0070361653,-0.006741581,0.018772138,-0.029634515,-0.0024819584,0.0027257523,-0.0072393273,0.0066569303,0.021887284,-0.0042426926,-0.0131039275,-0.011228068,0.030988926,-0.03716504,0.009805936,-0.01423486,-0.012006854,0.008593738,-0.0076253344,-0.028253015,0.013733728,-0.0063047837,-0.021995636,-0.017024947,0.0006556196,0.0105102295,0.019774402,-0.02642456,-0.013320633,0.005011321,0.00439845,-0.009731444,0.012873678,0.0039548804,0.00023723356,0.007334136,0.010747252,-0.016550904,0.0015567262,-0.0016735442,0.010340928,0.008668231,0.009778848,-0.044966448,0.0058375117,-0.007943621,0.00041436515,-0.014857889,0.01789177,-0.034374952,0.02322815,0.02741328,-0.0016168283,0.0054752068,0.0112687005,-0.012359001,-0.012887222,-0.0066806325,0.011905273,-0.011769832,0.0074357167,-0.021210078,-0.029011486,0.003057583,-0.003424967,0.014614096,0.004642244,-0.017350005,-0.016483182,-0.014289036,-0.0010928405,0.025178501,-0.016550904,-0.016550904,-0.026302664,-0.016401919,-0.0038939319,0.0041343397,-0.0054752068,-0.014749536,-0.0070158495,0.000033066677,-0.0131039275,0.0028578073,-0.01598205,-0.00007481005,-0.003670454,-0.0083567165,-0.0037686487,-0.005719001,-0.033995718,0.035702277,-0.019774402,0.015765345,0.004361204,0.0064503825,0.0021501277,0.010361245,-0.0043070274,0.0011859562,0.0089391135,0.009121958,0.0018792454,-0.0031117594,0.040551066,0.0009870271,-0.015304845,-0.013611832,0.008241591,-0.024636738,0.009318348,-0.04781071,0.0024006937,0.031720307,-0.03245169,-0.019137828,0.024243958,-0.0026343295,0.010726936,0.020356799,-0.03697542,0.006467313,0.0041851304,0.01874505,-0.008702091,-0.03090766,0.01676761,-0.009670495,-0.0077675474,0.03155778,-0.0027562266,0.011614075,0.013523795,-0.017607344,-0.013327405,-0.007185151,-0.020085916,0.009629862,0.023729281,0.013855625,0.014600552,-0.015738256,0.030663867,-0.016009139,0.0036230497,0.021128813,0.036785804,-0.0068600923,-0.0026461806,0.0060203574,0.026248487,0.023106253,-0.00006158338,0.006243835,0.0008160327,0.01874505,-0.016103948,0.0055666296,0.016090404,-0.049273476,0.009839796,0.008329628,0.0020299235,0.039494626,0.007571158,-0.0090271495,0.001035278,-0.02985122,0.038465273,0.0009937991,0.015440286,-0.007875901,0.018894035,-0.007754003,0.0033843347,0.002580153,0.0020197656,-0.026099501,0.011614075,0.0035282408,0.016740521,0.009182907,0.006873636,0.0125215305,-0.009941378,-0.022185253,-0.0016269863,0.007584702,-0.004791229,-0.026817339,-0.013618603,0.0035688733,0.020289078,-0.0041952883,0.004682876,-0.007185151,0.006118552,-0.003424967,-0.009081326,-0.024067884,0.048758797,-0.010577951,0.011126487,-0.0057088425,0.014668272,0.0060542175,-0.0036602959,-0.022266518,0.011099399,0.025395207,-0.0044695567,-0.053688854,-0.014735992,-0.009000062,0.007598246,0.0032218054,0.0029881694,0.01795949,-0.0110384505,-0.0057833353,-0.013923346,0.0029932484,0.02566609,0.0044831005,0.0039853547,0.00072418666,-0.03180157,0.0062032025,0.07833914,0.0042528505,0.008857848,0.018271005,0.0015186334,-0.005363468,0.006697563,-0.036894158,0.03562101,0.002436247,0.02026199,-0.03415825,-0.010002326,-0.0006767823,0.01275178,0.004408608,-0.0062743095,-0.029932484,0.015088139,-0.006873636,-0.008539562,0.000007664856,-0.010117451,0.028361367,0.004544049,0.042095095,0.02612659,-0.003778807,0.015169404,0.00094639475,-0.0025361348,-0.0044898726,-0.0020163795,0.024880532,0.011776605,0.018392902,0.003201489,0.017350005,0.004659174,-0.004042917,0.004946986,0.028659338,-0.0036467519,-0.011905273,0.0037584908,-0.00392102,-0.00807229,0.0031388476,-0.011573442,-0.024663826,0.029607426,-0.0024904234,-0.010300296,0.004872494,0.001979133,0.039982215,-0.0171333,-0.01598205,-0.0009252321,0.0037483326,-0.013754045,-0.02665481,0.013286772,0.0021518206,0.01736355,-0.041607507,-0.0052991332,0.010977502,0.009494422,-0.012270965,-0.03459166,-0.0016388374,-0.0054108724,0.0032488937,0.011390598,-0.013313861,-0.002566609,0.0027883938,0.017201021,0.017864682,-0.01697077,-0.020952739,-0.011234839,0.01568408,-0.007300276,0.0054616625,0.008288995,-0.012507986,-0.029309455,0.028523898,0.0037314026,0.011715656,0.019422255,-0.046429213,-0.004516961,-0.0049605304,0.023471944,0.0028578073,-0.0053228354,0.0019232638,0.020952739,0.033914454,-0.00006438743,0.0027562266,0.006402978,0.0003968001,0.02846972,0.0060474453,-0.005407486,-0.017620888,0.007896217,-0.0036061194,0.005217869,0.0020383887,0.008688547,0.033779014,-0.005160306,0.000024204808,0.027399736,-0.00073434477,-0.003419888,-0.0016532281,0.028767692,0.027372647,-0.012826273,-0.004418766,0.013787905,-0.035702277,-0.0030762062,-0.011539582,-0.017553167,0.016726976,-0.026844427,-0.04382874,-0.016252933,-0.023512576,-0.03031172,-0.007713371,-0.010307068,-0.007814952,0.0012028863,-0.023945987,-0.005671596,-0.0024345538,0.029065661,-0.021873739,-0.017485447,0.0037517187,-0.010144539,0.005011321,0.0036569098,0.001105538,-0.030284632,0.015873699,0.025178501,-0.029959572,-0.011343192,-0.026695441,0.017688608,0.029174015,0.032668397,-0.019584784,0.0024904234,-0.007970709,-0.0068770223,-0.000049600014,0.009047466,-0.0046930346,0.0006467313,0.028415544,0.011478634,-0.014207772,0.012812729,-0.014803713,0.009778848,0.030203367,-0.021521593,0.0033504744,-0.011363509,-0.014871433,0.016334198,0.0040056705,0.009474105,-0.027074678,-0.010625355,-0.013151332,0.006362346,0.010428965,0.02612659,0.0035146968,0.0043375012,-0.00054684345,0.029336544,-0.004411994,0.015873699,0.009311576,-0.022185253,-0.01683533,-0.019246181,0.015480919,0.021955004,0.03136816,0.0018403061,0.0044424683,-0.012677288,0.0033860276,-0.041607507,-0.014573463,-0.013171648,-0.005895074,-0.013645692,-0.0068126875,0.0023685263,0.01894821,0.02909275,0.00856665,-0.01294817,0.014099419,-0.01812202,-0.022280062,-0.021291342,-0.009020378,-0.0147630805,0.004872494,0.020600593,0.003663682,0.012833045,-0.012406405,-0.025936972,0.0062980116,0.013632148,0.0025242837,0.030365895,-0.026465192,-0.030745132,0.008478614,0.014370302,-0.03759845,-0.04223054,0.03182866,0.03442913,0.007801408,0.00026178226,0.008742724,-0.006592596,0.0030017134,0.007801408,0.010923325,-0.0026851199,-0.0072867316,-0.0077404594,0.017390639,-0.013909802,0.021210078,-0.008099378,0.004073391,-0.026573544,-0.0110926265,-0.0046727182,0.013293545,-0.010151311,0.02985122,-0.0063894344,0.021304887,-0.009772076,0.0061456403,-0.019381622,-0.0351876,-0.034916718,0.023214607,-0.011255156,-0.03014919,-0.0073950845,-0.003411423,-0.018081388,-0.009833025,-0.0026851199,0.0019215707,0.0027646916,0.0086750025,0.019232636,0.007889445,-0.017160388,-0.019056564,-0.014708905,-0.0076253344,-0.005465049,-0.008126467,0.024501296,-0.008275452,0.0070023052,-0.0068262317,-0.00075720047,0.0015558797,0.0043273433,0.010794656,0.012819501,0.015670536,0.0010056503,0.04065942,-0.0059357067,0.031178543,-0.020302622,-0.0023397452,-0.013659236,-0.03394154,0.006196431,-0.012860133,-0.012562162,0.017214565,0.0033894137,-0.010740479,-0.0022534013,0.016659256,0.0035688733,0.014478655,0.015589272,-0.017539624,-0.04856918,0.012047486,-0.020952739,-0.008912025,0.018975299,-0.0038566855,-0.017106213,-0.04009057,0.0328851,-0.010875921,-0.022916635,-0.014058787,-0.02217171,0.011857869,-0.016862419,-0.025462927,0.001948659,0.005001163,-0.012392862,0.033833187,-0.01545383,-0.017715696,0.004039531,0.03215372,0.013713412,0.0021298113,-0.0019909842,0.00006724439,-0.016388373,-0.014952698,-0.007571158,-0.0062776953,-0.030961838,0.021995636,0.019964019,0.003805895,-0.021792473,0.0033267722,-0.027128853,-0.008614055,-0.0066738604,0.032424603,0.03700251,-0.018555433,0.011119715,0.039386272,0.009243855,0.031313986,-0.035539746,-0.004659174,0.0045135748,-0.0016117492,0.0059153903,-0.006467313,-0.030365895,0.008783355,0.015792433,0.023390679,0.013313861,0.020736033,0.010984274,0.030718043,0.018514799,0.00056546665,0.01683533,-0.019219093,0.00091507396,-0.016754065,-0.0044966447,0.023390679,-0.015264213,-0.017675065,-0.012765325,0.0031947172,0.014735992,-0.020207813,-0.01499333,-0.012061031,-0.0139504345,-0.008878165,0.0033860276,0.015304845,0.008972974,-0.008871392,0.005976339,-0.017160388,0.0019994495,-0.011756288,-0.00014686894,-0.005360082,-0.0041851304,-0.031124366,0.015629904,0.007070026,0.02849681,0.037219215,0.010327385,-0.020749578,-0.006033901,0.00009904131,0.0025175116,0.00041775117,0.000005961922,0.01561636,-0.0086750025,0.009243855,0.0046727182,-0.01515586,-0.004263009,-0.048027415,-0.023444856,0.001102152,0.0064977873,-0.012745008,-0.003186252,0.0059797247,0.01446511,0.016361285,0.22775777,-0.0072460994,0.0037686487,0.04130954,0.00392102,0.02111527,0.0365691,-0.01347639,-0.0027816216,0.03851945,-0.010313841,0.0010335849,-0.028659338,-0.010347701,-0.0052381847,-0.02527331,-0.030582601,-0.014573463,-0.049246386,0.026560001,0.017092668,0.02065477,-0.008878165,-0.016997859,0.032560043,-0.000492667,0.011559899,-0.0054379604,0.03396863,0.019043019,-0.02642456,-0.010605039,-0.005637736,-0.024907619,-0.025720267,-0.022266518,-0.008803672,-0.028090486,0.010415421,0.022090444,-0.0050959717,0.00711743,-0.013462846,-0.036325306,-0.015264213,0.018325182,0.011160348,-0.0055734017,-0.014532831,0.00028273332,-0.028821867,0.010801428,0.034781277,0.021453872,-0.009684039,-0.034808364,0.016930139,-0.0005489597,-0.01591433,0.016496727,-0.00013015044,0.013347721,-0.0077336873,0.0033420094,-0.028361367,0.015128772,-0.0057901074,0.023499032,0.038194392,-0.008099378,0.0057901074,0.0008998368,-0.018907579,-0.002062091,-0.025490016,-0.010388333,0.022212341,0.03367066,0.006142254,-0.0021738298,-0.008966201,0.027657075,-0.0064131366,0.00044314636,-0.0071512903,-0.016334198,0.00683639,0.0048386334,-0.02849681,0.018460622,0.008823988,-0.010963958,-0.017742785,-0.021467416,-0.00780818,0.0016837022,0.004428924,0.033318512,0.0042020604,0.0048691076,-0.005908618,0.019327447,-0.0052009383,-0.009792392,0.0007165681,-0.015711168,0.0068126875,0.023675106,0.010496686,-0.0037415605,0.008194187,-0.014085875,0.021982092,-0.0013213973,-0.0075508417,0.0019131056,0.012399633,-0.024203327,-0.0006031362,0.019638961,0.03350813,-0.021860195,0.01782405,0.0044255382,0.020817298,-0.018921122,-0.038573626,-0.008099378,0.016388373,-0.033562306,0.008458297,-0.0031083734,0.025842164,-0.03499798,-0.055530854,-0.003687384,0.013835309,-0.013679552,-0.017526079,-0.009474105,-0.005505681,0.011912045,0.0044898726,-0.020559961,0.02316043,-0.01630711,0.022876004,0.014451566,-0.030799307,0.0065621217,-0.010327385,-0.014099419,-0.0047370526,-0.02352612,0.030203367,-0.0045982255,-0.03976551,-0.03824857,0.033697747,0.010029414,-0.02046515,-0.0107743405,0.010422193,-0.02658709,-0.03209954,0.0027494545,-0.17347297,0.01756671,-0.004770913,0.011410913,0.034402043,0.022429047,0.01690305,-0.0065384195,-0.021684121,-0.022280062,0.007185151,0.010070046,0.010368017,0.009711128,0.00021173255,0.01222356,-0.047485653,0.009331892,0.0011512494,0.021440327,0.0019283427,0.0004994391,-0.011702112,-0.012507986,0.014126508,0.004886038,-0.010469598,0.013408669,-0.008776584,0.0058104233,-0.03231625,0.0010784498,0.018609608,0.007706599,0.005028251,0.021968547,-0.013909802,-0.010022642,0.0074357167,0.03310181,0.010652443,0.0068025296,-0.013503479,0.005851056,-0.014045243,0.008241591,0.0037618768,0.013693096,-0.014072331,-0.026289118,0.010706619,-0.011729199,-0.0015084753,0.003297991,0.02744037,-0.021399695,0.01651027,-0.022090444,-0.0071716066,-0.01934099,-0.018663784,-0.011451545,0.020912107,-0.008377032,-0.002703743,-0.022808282,-0.0061795004,-0.0005040949,-0.006981989,0.010212259,-0.004025987,-0.036298215,0.015359022,-0.021101724,0.031503603,0.008092606,-0.007686283,0.016388373,0.026004693,0.0059187766,0.0018555431,0.046835534,-0.018271005,0.023079164,-0.014600552,-0.00092015305,0.0082145035,0.0074221725,0.017810505,-0.012298052,0.024460664,0.0023075778,-0.01271792,-0.0050519533,0.0021585927,0.006155798,0.021589313,-0.0056682103,0.0074695772,0.019151373,0.019774402,-0.008336401,-0.024162693,0.0129278535,0.008322856,-0.0009912596,0.023336504,0.009460561,0.019950476,-0.008404121,-0.0033487815,0.021372607,0.0020468538,0.026546458,0.007076798,0.012054259,0.004276553,-0.0153454775,0.017146844,-0.007571158,0.046700094,-0.025977604,-0.008580194,0.019652504,-0.00039383734,-0.005224641,-0.11712947,-0.045752008,0.020736033,0.011316105,-0.027765427,0.007564386,0.009968465,0.02750809,-0.019544153,0.042393066,0.0059458646,-0.019679593,-0.028388456,-0.011200979,0.046916798,-0.020573504,-0.006081306,-0.0019994495,0.012311596,0.025395207,-0.005112902,-0.0107743405,-0.007496665,-0.00023892657,-0.03442913,-0.022334239,-0.009880429,0.015074595,0.012182928,0.007557614,0.00035024225,-0.004899582,0.026871515,-0.003778807,0.00021839878,-0.007916532,-0.04003639,-0.010286752,0.015074595,-0.03762554,-0.0020265377,0.015995596,0.006484243,-0.009494422,0.010794656,-0.010489914,-0.021237165,0.023648018,0.03613569,-0.013564426,-0.003555329,-0.014803713,-0.03199119,0.0033843347,0.02237487,0.0047302805,0.012805956,0.023065621,0.00018961755,0.013347721,0.004665946,0.005891688,-0.0018809384,0.02046515,-0.00076439575,-0.0040767775,-0.0072799595,0.007367996,0.0020316166,0.018257461,-0.018663784,0.029363632,-0.025706721,0.0064199087,-0.033264335,-0.0043239575,-0.015142316,-0.028821867,-0.0043341154,-0.020519327,-0.011221296,-0.010070046,-0.02998666,-0.02626203,0.01966605,-0.0037043144,0.02435231,-0.0025310556,-0.018108476,-0.021968547,0.0073138196,-0.00045584398,0.0031168384,-0.019964019,0.012203244,-0.0031371547,-0.0037246305,-0.009880429,0.030988926,-0.028063398,-0.017688608,-0.02474509,-0.020207813,0.01522358,-0.02550356,-0.011905273,0.019760858,-0.002554758,0.012643428,-0.006125324,-0.013110699,0.004865722,-0.010158083,0.0067957575,-0.03762554,-0.0051399902,-0.0077675474,-0.01743127,0.03716504,-0.005045181,0.023024987,0.015900785,-0.020343255,-0.005021479,0.014085875,-0.01598205,0.0019012545,0.01423486,0.0010649057,-0.0039684246,-0.0018623152,0.002192453,-0.0065451916,-0.01947643,0.038356923,0.002807017,-0.003416502,-0.032397512,-0.008993289,-0.0012511372,0.0072935037,-0.0030220298,-0.019747313,-0.018162653,0.015860153,-0.007835268,-0.009839796,-0.0012909231,0.00047362063,0.017160388,-0.0006420755,-0.016591536,0.021210078,0.025381664,0.04610415,-0.008830761,-0.019950476,-0.0070226216,-0.008471841,-0.025950516,0.003045732,-0.011370281,0.018568976,-0.0056343502,-0.0034300461,-0.024731547,-0.0028815095,-0.005366854,-0.015088139,-0.003992127,0.011932362,-0.030257544,-0.023241693,0.013679552,0.011817236,0.035891894,0.028415544,0.024379399,0.007875901,-0.042284712,0.003299684,-0.000701331,0.017702153,-0.02500243,-0.0043916777,0.011140031,0.031584866,0.028361367,-0.0009057624,0.012210016,-0.006074534,0.02200918,-0.0049639167,0.0076321065,-0.004652402,-0.019110741,0.007936849,0.030853484,0.0083567165,-0.010408649,-0.0021687506,0.016564447,0.018568976,0.0027392963,-0.0010513616,0.004276553,-0.00072884245,0.018785682,-0.020289078,-0.011282245,-0.01538611,0.0003635747,0.020207813,0.025625458,-0.007693055,0.016957227,0.004046303,0.0045068027,0.0025208977,-0.020492239,-0.012047486,0.029174015,0.010943642,0.01858252,-0.023580296,-0.01722811,0.037300482,-0.0036806122,-0.004913126,-0.033291426,0.006321714,0.0035282408,-0.017187476,-0.011966222,-0.030420072,-0.025815075,0.02138615,-0.022943724,-0.008918797,0.043043185,-0.0047133504,0.062248733,0.023729281,-0.017485447,-0.0064977873,0.008221275,0.011085855,-0.011045222,0.008140011,0.013923346,-0.013489935,0.017878227,-0.009866885,0.0116750235,-0.028740603,-0.021535136,-0.0110384505,-0.01749899,0.027264295,-0.005393942,-0.022848915,0.010496686,0.018650241,0.023024987,-0.025652546,-0.023864724,-0.012528302,-0.025232678,-0.018528344,-0.011289016,-0.038600717,-0.006118552,0.0025208977,-0.012386089,-0.003066048,0.0113567365,-0.0038194393,-0.019557696,0.010916553,-0.005028251,0.050790414,-0.020979827,0.015101683,-0.01644255,-0.013754045,0.0016100561,-0.012426722,-0.005607262,0.027467456,-0.03459166]},{\"id\":\"ad2a8699-64a0-4747-9428-9b255b5f86a1\",\"text\":\"The product I bought that I would make a post on Biunty with, I no longer have faith in. That's why I haven't made a post. It has nothing to do with Bounty for Tictok. \\nThanks \",\"vector\":[-0.021488387,0.0005272804,-0.0004260614,0.0010845199,-0.011517995,0.00579666,-0.025597066,-0.008135183,0.0048105777,-0.019105354,0.018982094,-0.0036567238,-0.026035326,-0.022556644,0.0113947345,-0.00297708,0.0118466895,0.007566816,-0.032376386,-0.012832772,-0.01933818,0.006186985,-0.020118829,0.011120823,0.005303619,-0.018023403,0.040621135,-0.026103804,-0.0062999735,0.003718354,0.013914724,-0.008121488,-0.030349437,-0.013633965,-0.0009330124,-0.017790578,-0.003002759,-0.0020885782,0.0075736637,0.004971501,0.010086806,0.015626673,0.0005713631,-0.010634629,-0.009004854,0.0198997,0.010709955,0.008059857,-0.00064754486,0.002227246,0.009087027,-0.02039274,-0.042620692,-0.0118329935,0.016968843,0.029062051,0.038183317,-0.006080844,0.0041771564,-0.017968621,0.015503413,0.0012283237,-0.011415279,-0.015530804,0.0041463412,-0.005467966,-0.02719945,0.001925943,-0.015804715,0.017215362,0.006960786,0.0063068215,0.021460997,-0.0076147504,0.05552194,0.000844847,-0.003273247,0.03037683,-0.006080844,-0.0060431813,0.01215484,0.009799198,-0.0041977,0.006046605,0.032677688,0.015873194,-0.022707297,0.012695816,0.0059301923,-0.012483534,0.0085255075,0.021091215,-0.005485086,0.024665765,-0.015955368,0.035581157,0.0026072988,0.04451068,-0.009463656,-0.0041805804,-0.013127227,-0.012326036,-0.014435157,-0.016571669,-0.02707619,0.013695595,0.010319631,-0.016557975,0.03226682,-0.0024275442,-0.020557087,0.016256671,0.001317345,-0.03714245,0.0009655394,-0.0027973251,0.006053453,-0.0060192137,0.0011093431,-0.024049465,0.030979436,-0.028623793,0.021817083,-0.021926647,0.02810336,0.011928863,-0.014928198,-0.011730277,0.017092101,-0.0076147504,0.02195404,0.04530503,0.009093875,-0.002436104,0.0120658185,0.0036293326,-0.028212925,-0.009710177,0.0059952466,-0.012100058,0.0125040775,0.043387644,-0.010258,0.010216913,-0.004064168,-0.0072175786,-0.0021553442,0.008436486,-0.0032150408,-0.010312783,-0.0056254654,-0.026542062,0.014339288,-0.0053686732,0.0023710497,0.006320517,-0.016763408,-0.003343437,0.0014568688,-0.013935268,-0.011963102,0.0053481297,-0.0036669956,-0.006115083,0.016078629,0.025624458,0.023227729,0.0019499103,-0.010312783,-0.0073476867,0.009340395,0.01290125,0.0025234134,0.010572999,-0.012914945,0.01774949,0.009525286,0.012928641,-0.0028966183,-0.009100723,-0.033992466,0.028925097,0.03429377,-0.008908984,0.009443113,-0.025104025,0.012011036,-0.015297979,0.017927533,-0.01669493,-0.009634851,0.013483313,0.0071011656,-0.028034883,-0.63065475,-0.02658315,0.010251152,0.022337515,0.010093654,0.016900364,0.0007849288,0.018283619,-0.027569233,0.025597066,-0.0049543814,-0.011449517,-0.020803608,-0.007984532,-0.012134297,-0.013072445,0.040374614,-0.030678133,-0.0051529673,0.0075188815,-0.008628225,0.0032835188,0.0024446636,-0.0006608124,0.0021707518,0.0070121447,0.011559082,0.01933818,-0.02754184,0.04582546,0.00026192825,0.04210026,0.000472498,0.00446134,0.051248915,-0.017585143,-0.013490161,0.01485972,-0.008463877,0.0055604116,-0.0363755,-0.01992709,-0.0073134475,-0.029883787,-0.012141145,-0.0006727961,0.022145776,0.004992044,0.022488166,0.000033837747,0.0082995305,0.004861936,-0.014531026,0.017023625,0.0061458983,0.00017408385,0.04305895,-0.005848019,0.009162352,0.00926507,-0.023214033,-0.0015287708,-0.014202331,-0.016777104,-0.0388681,0.0098539805,-0.009943002,0.008573443,0.026761193,-0.021310346,-0.0029308572,-0.0015364746,-0.020461218,0.005563835,0.009025397,0.02129665,0.02098165,0.0027168635,0.002393305,0.020420132,-0.0061219307,-0.009196592,0.007950293,-0.0055569876,0.01075789,0.011737125,0.002636402,-0.009230831,-0.007464099,0.026035326,-0.018461661,0.0122849485,0.020447522,-0.012552013,0.009723872,0.011716581,-0.012935489,0.0043620467,0.010271696,-0.017544057,-0.005844595,0.0030661013,0.02785684,0.007916054,0.022981208,0.016516887,-0.0010682563,0.00046821815,0.02900727,-0.029089443,0.00037684286,-0.0082995305,0.0029462648,-0.009121266,0.004598296,-0.033773337,0.016270366,-0.019023182,-0.0004262754,-0.00035972334,0.00708747,0.012141145,0.020803608,0.01237397,-0.0037936796,0.033252902,0.0064369296,0.0065875812,0.003817647,0.0014568688,0.0044476446,-0.028760748,0.028979879,-0.0042593298,-0.012045275,0.012380818,0.012209622,-0.02151578,-0.0003182086,-0.027213147,-0.0015082273,-0.0054816618,-0.012928641,-0.0012385953,-0.019365571,-0.03892288,-0.009504743,0.0082995305,-0.00688546,0.017763186,0.010887998,-0.0138393985,-0.021241868,0.010935932,0.0040299287,-0.0067656236,-0.02105013,-0.0022392296,-0.014626895,0.006282854,-0.0024754787,0.05834323,-0.016736018,-0.009819741,-0.0124356,-0.0071764914,0.00070189923,0.026911844,0.009182896,-0.028075969,0.0008987734,-0.020118829,-0.019749047,-0.015900586,-0.016968843,0.0058582905,-0.014928198,-0.013380596,0.0016032405,0.010374413,0.003910092,-0.0019773014,-0.03193813,0.0036190609,0.012428752,-0.0015672896,-0.01495559,0.0354442,-0.022337515,0.031910736,-0.01209321,-0.011805602,-0.012750599,0.013428531,0.012052123,-0.015174719,0.02991118,0.03218465,-0.0015946808,-0.006793015,0.010059414,0.00864192,0.03621115,-0.0167908,-0.004122374,-0.017804272,-0.0015578739,-0.0035505828,0.024117943,0.010751042,-0.0031825139,-0.014325592,-0.012668425,-0.013750377,0.0018745845,0.0164758,0.0012394513,0.01806449,-0.00031649662,0.0059610074,-0.014489939,-0.011339952,-0.011168757,-0.01159332,-0.0105113685,-0.0063547557,0.016256671,0.0055980743,0.010545608,-0.007354534,-0.006135626,0.0186534,0.026692715,0.0044407966,0.009908763,-0.018694486,0.019392962,-0.011387887,0.030705523,-0.013640813,-0.012771142,0.016242975,-0.018242532,0.0061219307,0.032212038,0.012921793,0.019228615,-0.026446193,-0.005485086,0.018968398,-0.018365793,-0.00054653984,-0.04357938,-0.012593099,0.016831886,-0.045496766,-0.013134075,0.006115083,0.052426737,0.013955811,0.0007678093,0.011785059,0.014846025,0.00022426536,-0.0008842218,-0.0008320074,0.0040436243,-0.007457251,-0.026007934,-0.010771586,0.008998006,-0.025706632,0.028158143,-0.013428531,0.02719945,-0.011189301,0.025912065,0.007190187,-0.0018985518,0.009367786,-0.024569897,-0.01405168,0.003906668,0.00075154577,0.009299309,0.0072449697,-0.008189966,0.0005640873,-0.028733358,0.027582929,-0.011737125,0.009943002,0.02073513,0.020433826,-0.029527701,-0.012401361,0.031061608,-0.019954482,0.034595072,0.023597509,0.009511591,-0.012442448,0.0015501701,-0.005539868,0.010025175,0.0142708095,0.0032270246,-0.006002094,-0.013003967,0.0033194697,0.011024954,-0.0062965495,-0.004557209,-0.0027784938,0.024035769,0.015804715,0.0017333487,-0.0014132141,0.02719945,0.017571447,-0.009374634,0.016215583,-0.006649211,0.028267708,0.11942559,0.012517774,-0.010901693,0.022926426,-0.01855753,0.019981872,-0.022625122,-0.044017643,0.009230831,0.0037388974,0.0029342812,-0.011319409,-0.011230388,-0.0034923765,0.0019379266,-0.02489859,0.012661577,0.005772693,0.0015167871,-0.006317093,-0.010107349,-0.0066389395,-0.0058582905,-0.002266621,0.0089569185,0.018502748,0.026624236,0.027719883,0.008813115,0.0044168294,-0.0013909588,-0.0036978105,-0.013955811,0.033663772,-0.035608545,0.015133632,0.0040710154,0.0017333487,0.003377676,0.00216048,0.0016700065,0.01613341,0.016681233,0.00006050671,0.006786167,-0.028075969,-0.0034975125,0.012668425,-0.017092101,-0.01943405,0.018146662,-0.0077859457,-0.011757668,-0.011333104,0.030979436,0.00938833,-0.0066731786,-0.007559968,-0.008648768,-0.016996233,-0.019228615,-0.055193245,0.0015698576,-0.0071833394,-0.0036053653,-0.020118829,-0.015941672,-0.029363355,-0.026898148,-0.02105013,0.0065841572,0.015174719,-0.021036433,-0.0008893577,0.011737125,0.0015912569,0.023077076,-0.0063684513,-0.0006929115,0.027747275,-0.0051392717,-0.027678797,-0.0053173145,-0.011771363,-0.014133854,0.0076832287,0.0071148616,-0.016338844,-0.0022049907,-0.018297315,0.007991379,0.034896374,0.028514229,-0.0024446636,0.0030643893,-0.0064643207,0.014092767,0.019201223,-0.011531691,0.0076558376,0.014339288,0.014448852,0.0008679583,-0.020255784,0.004533242,0.020680347,0.01081952,0.0066115484,-0.013038206,0.003245856,0.023761857,-0.016174497,-0.014613199,0.027281625,0.0016083764,0.02776097,-0.0057658455,0.02739119,0.009566373,-0.013942115,-0.048948057,-0.008593986,0.016777104,-0.012305492,-0.01532537,-0.0013550079,0.0020680348,-0.052947167,-0.015818411,-0.0057007913,-0.0147227645,-0.0093951775,-0.0058308993,-0.025734022,-0.015092545,-0.008915832,0.0022871643,0.02626815,0.008676159,-0.044592857,-0.017708404,-0.016064933,-0.013976354,-0.027322711,-0.014298201,-0.035635937,-0.025199894,0.00662182,-0.0012069243,0.020516,0.00371493,-0.020077743,-0.027309015,-0.020064047,0.000169055,-0.055412374,-0.019749047,0.0056528565,0.00938833,0.027582929,0.019625787,-0.008984311,0.015599282,0.0009920746,-0.009819741,-0.013510704,-0.007018992,0.0031636823,-0.030705523,0.0061767134,0.0072860564,0.016393626,0.024364462,0.011134518,-0.020502305,0.013298422,0.0007250105,-0.017571447,-0.016612757,-0.01853014,0.005094761,-0.012024732,-0.007505186,0.026432497,-0.0094088735,0.011374191,0.023241425,0.026802279,0.036074195,0.014106463,0.031171173,0.0056939437,0.015845804,-0.0041463412,-0.00526938,-0.020228393,-0.037608102,-0.0015458902,-0.016448408,0.026802279,-0.004526394,0.0048208493,-0.02428229,-0.009662242,-0.002670641,0.020967955,0.012743751,-0.019680569,0.01884514,-0.03782723,-0.0230086,-0.03473203,-0.043935467,0.0054542706,0.0055809547,0.0067485045,-0.023433162,0.0025645,0.013873638,-0.035389416,0.006186985,-0.0073887734,0.040429395,0.00777225,0.032896817,0.05593281,-0.025076633,-0.03549898,0.0067485045,-0.0057042153,-0.017694708,-0.0033211817,0.04924936,-0.012750599,0.000776369,0.023214033,0.004564057,-0.03292421,-0.028295098,0.0051426957,0.01924231,0.011298866,-0.016804494,-0.026528366,-0.033691164,0.012387665,-0.02005035,0.0054508466,-0.010579847,-0.027185755,-0.016872972,0.0060739964,0.0052625323,0.025158808,0.008231052,-0.0070087207,-0.025925761,-0.018886225,-0.0082926825,-0.0057658455,0.004899599,-0.0055878027,-0.020803608,0.017900143,0.018023403,0.013654508,-0.01066202,-0.009901915,-0.0022460776,0.026555758,-0.01713319,0.0022152625,-0.022789469,-0.010340174,0.0045743287,-0.018160358,-0.013503856,-0.013503856,-0.0120658185,-0.01075789,0.0134011395,0.021351432,-0.0077585545,-0.0073613822,-0.011990493,-0.016256671,-0.010127892,-0.009313004,0.01439407,-0.0026261304,-0.009819741,-0.0054268795,-0.00040081012,-0.0061972565,0.0025148536,-0.012634186,0.0025182774,0.035827674,-0.014928198,-0.0024874625,0.0066457875,-0.002466919,-0.015106241,0.003413627,0.0043072645,-0.021310346,0.0021091215,-0.015188415,-0.046838935,-0.03062335,0.018489053,0.017790578,-0.0070052966,-0.0068169823,0.012175384,0.026555758,0.003516344,-0.01840688,-0.039059836,0.01299712,0.0023727617,0.009381482,0.019516222,-0.0035950935,0.0009818029,-0.033143338,0.013216249,-0.012914945,-0.013579182,-0.0031619705,0.0031653943,0.016612757,-0.014448852,-0.03985418,0.0024925983,0.00065353664,-0.013538095,-0.0053173145,-0.008648768,0.0024052889,0.000439115,0.016804494,0.0036430282,0.031636823,0.0019053996,-0.01231234,-0.012524622,-0.0069094277,0.0027887654,-0.017954925,-0.0072107306,0.027240537,0.001112767,-0.022734687,-0.020748826,0.009217136,-0.025323154,-0.02225534,-0.0046222634,-0.008073553,0.008094097,-0.017776882,-0.00864192,0.053823687,-0.0028521076,0.0008011923,0.016763408,-0.0047557955,0.0005289923,-0.0042011235,0.0153801525,-0.010216913,-0.033280294,-0.015448631,0.0036087893,0.03226682,0.0070463833,0.009785502,-0.021433605,0.010230609,-0.019351875,0.0012120601,-0.0069710575,0.014017441,0.05001631,0.0010023463,-0.03065074,-0.0077859457,-0.010545608,0.0043415036,-0.00540976,0.0012788262,-0.011696038,0.01622928,-0.010860606,0.0041326457,-0.012175384,-0.010326479,0.0045846,0.012168536,0.005769269,0.023734465,-0.0016640148,-0.047496323,-0.024049465,0.014654286,-0.0030695251,-0.022666208,0.03062335,-0.0048174253,0.013038206,0.011922015,0.00777225,-0.018612314,-0.013229945,-0.004896175,-0.024364462,-0.014544722,0.009532134,0.02024209,0.0041463412,-0.00351292,0.009806045,0.0015416103,0.016311454,-0.0068204063,-0.013469617,-0.035800286,-0.0017187971,0.000039776074,0.011785059,-0.050536744,0.014010593,0.0071354047,-0.01620189,0.0028572434,0.24608244,0.0047729146,0.0027202875,0.017735794,0.0239399,0.027254233,-0.0024925983,0.016078629,-0.011579625,0.007669533,0.026076412,0.01377092,0.000574359,-0.00870355,-0.00092616456,-0.022803165,-0.019392962,-0.01821514,-0.024213811,-0.009915611,-0.006960786,-0.0013284726,0.011559082,0.0014115022,0.020009264,-0.0151610235,-0.0025850434,-0.009799198,0.0018780084,-0.004937262,-0.024501419,-0.02658315,0.013045054,0.00072629453,-0.0075805117,0.013640813,-0.0068717645,0.0133669,0.018105576,0.010641477,-0.0006282854,-0.00034281786,0.01666754,-0.010059414,-0.017229058,0.021310346,-0.025104025,-0.01053876,0.000108227294,0.0051906304,-0.033554208,-0.010148436,0.009778654,-0.0027476787,-0.0044887313,-0.00062272156,0.009134961,-0.0077243154,-0.036512457,-0.019009486,-0.0021844474,0.013024511,0.016831886,0.02415903,-0.034951158,0.0248712,-0.0025884674,0.003042134,0.02213208,-0.0125040775,0.015517109,-0.0047420994,-0.0074914903,0.03040422,-0.015845804,-0.034129422,0.010168979,0.03845723,0.035635937,0.017681012,0.01268212,-0.0006655203,-0.0032955024,-0.036485065,0.00023881694,-0.036539845,0.030924654,0.013579182,-0.004064168,-0.011860385,-0.011134518,0.017996011,-0.0373068,-0.011189301,-0.0015270588,-0.013531247,0.007128557,0.0020115406,0.0007528297,-0.0026244184,-0.020022959,0.029390747,-0.0029805037,-0.005170087,-0.013099836,-0.008039314,-0.0033588447,0.03311595,0.013086141,-0.00973072,-0.0027750698,-0.032677688,-0.009456808,-0.012908098,-0.012408209,0.019502526,-0.0058891056,0.0022238223,0.020885782,-0.02810336,0.012127449,0.0028555314,-0.003146563,0.003961451,0.011634408,-0.0010605527,0.015777325,-0.00087052624,0.0118535375,-0.03566333,0.023131859,0.012668425,0.0018026826,-0.016859276,-0.0033622684,-0.0037286256,0.010079958,-0.0041771564,-0.008908984,0.011024954,-0.036485065,0.03914201,0.014448852,-0.019858612,0.009080179,-0.008477573,0.009662242,-0.02900727,-0.01159332,0.008087249,0.0031362912,-0.009285613,-0.011757668,-0.00494411,0.016256671,0.027747275,-0.01924231,-0.012641034,-0.019091658,-0.007991379,-0.04357938,-0.022049908,0.05363195,0.001994421,-0.026720105,-0.0069128512,-0.17585143,0.040210266,-0.0036293326,-0.015448631,0.029664658,-0.015681457,0.02567924,0.00195847,-0.0138257025,0.007827032,0.053084124,0.017653622,-0.01290125,-0.028377272,-0.011120823,-0.016393626,-0.025350546,0.014517331,0.016626451,0.011764516,0.017229058,-0.0009235967,0.0053652492,0.0016871261,-0.0067485045,0.022584036,-0.0025816197,0.011771363,-0.010107349,-0.02533685,0.00042520542,-0.03218465,0.037443757,0.016407322,0.05089283,-0.01507885,0.008984311,-0.018132968,0.001956758,0.0034615616,0.010168979,0.01914644,0.0030643893,0.010223761,-0.015284284,0.031445086,0.0102853915,-0.0025884674,-0.0000025361594,-0.0064814403,0.0054987813,-0.0011179029,0.007436708,0.0031944974,-0.0044476446,0.020228393,0.0035300395,0.01473646,-0.011654951,0.01613341,0.0022101265,-0.007642142,-0.016160801,-0.017119493,0.0019892852,-0.0085186595,-0.003752593,0.008231052,-0.013798311,0.0067622,-0.0056870957,0.02971944,0.018612314,0.028760748,0.023857726,0.0071011656,-0.03193813,-0.006388995,0.008155727,0.014914502,-0.016119715,0.011059193,-0.025021851,0.017859055,-0.005204326,0.0149418935,0.0044681877,-0.016557975,-0.013805159,-0.02350164,0.006786167,-0.013414835,-0.0059164967,0.0002563644,0.00081959576,0.035772894,0.006529375,0.021995125,0.007874967,-0.033718552,0.004420253,0.0061767134,-0.016160801,0.03569072,0.02969205,-0.009990936,-0.03500594,0.024610983,0.020283176,-0.014407765,-0.018132968,0.021022737,0.025884673,0.031061608,0.003951179,0.011230388,0.0028212925,-0.004529818,0.0054542706,-0.030568568,0.053111516,-0.012017884,0.005310467,0.019516222,-0.011004411,-0.0151610235,-0.093130045,-0.0338829,-0.009039093,-0.015914282,-0.028240316,0.00006318163,-0.0069813295,0.037882015,0.0068204063,0.026679019,0.016612757,-0.025898369,-0.007477795,0.0044887313,0.02726793,-0.015900586,0.015503413,-0.007333991,0.019064268,0.0019790134,-0.0025302612,-0.013339509,-0.008046162,-0.017790578,0.008368009,-0.028185533,-0.011250931,0.010422347,0.014106463,0.0073202956,-0.009114418,-0.012387665,0.0053173145,-0.0354442,0.0040675914,-0.0046428065,-0.03566333,0.00032141848,0.02788423,-0.018735573,-0.0021827354,-0.01542124,-0.019502526,-0.008011923,-0.015489718,0.0035043603,-0.011148214,0.019516222,0.009764959,-0.020077743,0.0025165656,-0.004166885,0.004457916,-0.044565465,0.027226843,-0.0020748826,-0.001622928,0.032157257,-0.014407765,0.0076832287,0.0032663993,-0.011983645,-0.022926426,0.01601015,0.0046222634,0.0041497652,0.0015099393,-0.010853759,0.001455157,-0.0074161645,0.006087692,0.009607459,-0.018023403,0.0064745923,-0.017982315,-0.015914282,-0.01759884,-0.014092767,0.029965961,-0.004430525,-0.017735794,-0.017489275,-0.0011238947,-0.011216692,0.01877666,-0.003444442,0.019214919,0.015612978,0.000575643,-0.012668425,-0.012867011,0.0016177921,0.0060637244,-0.017366014,-0.0077243154,0.0002869655,-0.0003316902,-0.001585265,-0.011997341,-0.0060671484,-0.015736239,-0.0068375254,-0.047523715,0.033992466,0.019666875,-0.015243197,-0.0018660248,0.010381261,0.008142031,-0.03341725,-0.011155061,-0.0039751465,-0.004214819,0.038429838,-0.016571669,-0.01977644,-0.023734465,-0.010264848,0.0067622,0.010394956,0.0382381,0.0026312661,0.033910293,-0.005711063,-0.001182101,-0.000540548,-0.010203218,0.015900586,-0.0027887654,0.021009043,0.0025953152,-0.01386679,0.004992044,-0.010340174,0.019064268,-0.0037286256,0.005642585,-0.013442226,-0.0091692,0.02599424,0.0004224235,-0.008039314,-0.013209401,-0.018968398,0.0030318622,-0.023200337,-0.035635937,-0.03193813,-0.016270366,0.0056870957,0.033828117,0.01175082,0.033088557,0.020406436,-0.015777325,-0.008477573,-0.0002298292,-0.032787252,0.049851965,0.00031264476,0.0029240095,-0.001182957,-0.0011709733,0.015571891,-0.0055227485,-0.010360718,0.025295764,0.014188636,-0.039963745,-0.005039979,0.021803387,-0.01507885,0.0063650277,-0.015037763,0.02120078,-0.0062349197,0.018365793,0.007505186,0.0014311896,0.0072860564,0.001283106,0.006412962,-0.015941672,-0.012894402,-0.015284284,0.020967955,0.010251152,0.024816418,0.013606573,-0.0046804696,0.012873859,0.0036806911,-0.02477533,-0.002973656,-0.0047249803,0.0024634951,0.00886105,0.019831222,-0.010038871,0.016023846,-0.027829448,0.005303619,0.036238544,-0.00297708,-0.004553785,0.005515901,0.001824938,0.044154596,-0.02477533,-0.02428229,-0.0063684513,0.010853759,-0.0043654707,-0.018447965,-0.009210288,0.0120658185,-0.02372077,0.0133669,0.004635959,-0.01887253,-0.030678133,0.024487723,0.015612978,-0.013750377,0.009648547,-0.028623793,0.024816418,-0.0164758,-0.0023162675,-0.036567237,0.01877666,0.017612536,0.008546051,0.0020509153,-0.00973072,-0.0069025797,0.013695595,0.011976797,-0.027089886,0.03799158,0.009963545,0.034622464,0.017461883,0.0051529673,-0.0074914903,0.017653622,-0.021707518,0.016982537,0.023529032,-0.02105013,0.0027528144,0.0022546372,-0.0006638084,0.007888663,0.0014055104,-0.022953816,0.012346579,-0.0022049907,0.013859942,-0.0167908,0.016516887,0.0100731095,-0.0013284726,0.033608988,-0.011826146,-0.014846025,-0.0060192137,-0.017544057,0.005276228,-0.020776218,-0.055686288,0.015462327,0.036101587,-0.014339288,-0.014750156,0.016804494,-0.02717206,-0.005639161,0.032294214,0.005235141,0.028459447,-0.00047763388,0.020187307,-0.028130751,0.0074504036,0.0054542706,-0.014407765,-0.021597954,0.022734687,-0.026090108]},{\"id\":\"8da6af30-8f01-4c51-ae82-8d47c65ab5d0\",\"text\":\"Allowing users to post to their instagram accounts without needing to make their profile public\",\"vector\":[-0.03260296,0.013171075,-0.016613219,-0.00820919,-0.021756953,-0.001011536,-0.033564158,-0.042890422,0.013794558,-0.026913676,0.0013508794,-0.021120481,-0.0054294965,-0.017236702,0.0009782511,-0.020211235,0.028939994,-0.011956582,0.008033836,0.0012989226,0.0057867,0.016145607,-0.023874197,0.018249862,-0.019418893,-0.0072414936,0.0025588775,-0.026394106,0.017743282,-0.027485201,0.02063988,-0.0051534753,-0.017860185,-0.029563477,-0.022276523,-0.008163729,-0.0018379755,-0.018184915,0.0033771987,0.018704485,-0.007001193,0.0016967176,-0.015859844,-0.022912994,-0.011735765,-0.00010203646,0.008865147,0.00720902,0.002776447,0.01065766,0.0065140966,-0.024926323,-0.033460245,-0.0036207468,-0.009423683,0.0013882235,-0.011709787,0.026290193,0.02466654,0.006504355,0.0014052718,0.018197905,-0.012196883,0.0025962214,-0.028108684,0.0028625007,-0.013963418,0.0034713706,0.008520932,-0.0036824455,0.030342832,0.0059523126,-0.018431712,-0.02551084,0.019289,-0.0077805463,0.01224884,0.0073259235,-0.02313381,0.01608066,0.020276181,-0.025056217,-0.017977089,0.026705848,0.013274989,0.009319769,0.0055886144,0.013820536,0.001535976,-0.01930199,0.016340446,0.026601935,-0.006104936,0.006348484,-0.0028625007,0.0065563116,-0.02065287,0.019276012,0.0026952643,-0.015067502,-0.0047118417,0.031355992,-0.016171586,-0.021003578,-0.02852434,-0.010462821,0.004624164,-0.020289171,0.054606706,0.00074891007,-0.0040428964,0.02751118,0.0022974694,-0.01947085,-0.0016447607,-0.006975214,0.0050105937,0.0010131596,-0.018249862,-0.01409331,0.025380947,0.0055691306,0.016782079,0.011735765,0.019340957,0.022211576,-0.026524,-0.019912483,0.003323618,-0.011748754,0.020380095,-0.0050398195,0.010781057,0.002940436,-0.0072025256,0.019912483,0.020159278,-0.0036921874,-0.023263704,-0.017496487,0.008975555,0.027822921,-0.018665517,0.011008369,0.009910779,0.013690644,-0.019029215,0.00022183162,0.01980857,0.00046882988,-0.015807888,-0.007598697,-0.012222862,-0.02180891,-0.006897279,0.024965292,0.038552023,0.03675951,-0.014327116,-0.000062206214,-0.00746231,0.020886675,0.0019175345,-0.0017470509,0.03101827,0.040188663,-0.016665177,0.010456326,-0.022419404,0.0127034625,0.01576892,0.0008171035,-0.04694306,0.007858481,0.0025036733,0.012768409,-0.011839679,0.009008028,-0.01913313,-0.021627061,-0.013138602,0.01224884,-0.00005890817,0.040344536,-0.0147687495,-0.010222521,0.0070206765,-0.012580065,-0.019548785,-0.011255164,-0.0127878925,0.029563477,0.028784124,0.0026481785,-0.6513317,-0.02313381,0.04551425,-0.00043838637,0.0020669105,0.031148164,-0.014288148,-0.0037149186,-0.004215004,0.0113331,-0.02852434,-0.005056056,-0.009780887,-0.006916763,0.0159118,-0.016405392,0.029095866,-0.028550318,-0.008254653,0.0029177049,-0.020613901,0.0052444,-0.007988374,0.012606043,-0.011787723,-0.0028008018,0.029459564,-0.011982561,-0.016898982,0.032654915,-0.029251736,0.011813701,0.00035882735,0.0107226055,0.044527065,0.0096445,-0.017002897,0.037850603,-0.010670649,0.034005795,-0.038500067,-0.025432903,0.024588604,0.00008610436,0.0019256527,0.003291145,0.016015716,0.003136898,0.028888037,-0.02148418,0.0054944423,0.0048287446,0.008371556,-0.0027699524,-0.0020815234,-0.0042637135,0.0016739864,0.02380925,0.011229185,-0.0021221146,-0.009748414,0.014015375,-0.028394448,-0.03257698,-0.0077156,0.0029177049,0.0076116864,0.008449491,-0.0167561,-0.018717473,0.020600911,-0.009553576,0.019821558,0.0018136207,-0.011027853,0.025212087,0.027822921,0.00649786,-0.009501618,0.01879541,-0.0064686346,0.007351902,-0.0077805463,-0.017119799,0.016574252,0.009741919,-0.020003408,-0.008326094,0.011904625,0.0034031773,0.016496317,0.043877605,-0.00482225,0.0010285843,0.004471541,0.013106129,0.0034616287,-0.0026936408,0.025199099,-0.008059815,0.005351561,0.004780035,0.0031953496,0.0239911,0.041669436,0.008027341,-0.0068648057,0.0032878977,0.0096445,-0.027796943,0.00515997,-0.010430348,-0.01165783,-0.008332589,0.0049553895,-0.026069377,0.03260296,-0.021536136,0.004344896,-0.008196201,0.015703974,-0.011813701,0.0035460587,0.02701759,-0.00507554,0.04330608,0.022224566,-0.012826861,0.012054002,0.011040842,0.02082173,0.013054172,0.041409653,-0.016392402,0.0053450665,0.01596376,-0.005156723,0.009443167,0.020899665,-0.015833866,-0.007819514,-0.003974703,0.00067787524,0.008618351,-0.011391551,-0.04112389,-0.014742771,0.009059985,-0.009884801,0.0033479729,-0.0067868703,-0.043409992,-0.0017438035,0.028394448,0.0033284891,-0.0072349985,0.0012153045,-0.033226438,-0.01647034,0.004978121,-0.010696627,0.032291215,-0.003042726,-0.029459564,-0.021224394,-0.020198246,-0.00095389626,0.0060107643,0.009462651,-0.010469316,-0.018210895,-0.011820195,-0.01861356,0.0034259083,-0.001086224,0.0041597993,-0.019899493,-0.013716622,-0.010027682,-0.010216026,0.009040501,-0.024471702,-0.017977089,-0.003835069,0.002888479,-0.005539905,-0.0007659584,0.03839615,-0.033771988,-0.005660055,-0.020003408,-0.00368894,0.020172268,0.0315898,0.0038707892,0.030394789,0.019055193,0.013547762,-0.011274648,0.010430348,-0.008767728,-0.0048839487,0.009527597,-0.048839487,0.029069887,-0.039201483,-0.0053450665,-0.013404881,0.042085093,-0.011618863,0.009845833,-0.016574252,0.003239188,-0.0062153446,-0.031148164,0.031693712,-0.010242005,0.005608098,-0.013067161,0.016496317,0.018366765,-0.022354458,0.03052468,-0.020094331,0.00038500878,0.016496317,0.007851987,-0.009131426,0.0075597293,-0.037331033,-0.0122748185,0.0029274467,-0.0042767026,0.018093992,-0.013112623,-0.0088261785,0.006325753,0.001385788,0.03907159,-0.013495806,0.012891807,0.006186119,0.010456326,0.010242005,0.024536647,0.02683574,0.01574294,-0.03294068,-0.0002837334,-0.0006202355,0.008793706,-0.0030784465,0.00058451516,0.0338759,0.020419063,-0.004565713,0.0035947682,0.014976577,0.009183383,0.028108684,-0.010768068,-0.008507943,0.0035265747,0.004133821,0.0019353946,0.0145998895,-0.0043059285,-0.012346259,-0.016405392,-0.038863763,0.008365061,-0.013352924,0.016028704,-0.006062721,-0.0048417337,-0.019003237,0.0019646203,0.01267099,0.026251225,0.00360451,-0.024445724,-0.017691325,-0.00008975758,0.022510327,-0.0020766524,-0.012144926,-0.017990077,-0.0037668755,0.013846515,0.00654657,0.0049553895,0.008261148,0.0072220094,-0.016963929,-0.008131255,0.0035103383,0.027043568,-0.013859504,-0.012463162,0.00069370586,0.040890083,0.011618863,0.0145998895,-0.011014864,0.022224566,0.0053742924,0.000004062304,-0.035590477,-0.025043227,-0.020574933,0.0033414783,0.012066991,-0.010768068,0.0033171235,0.017301649,0.01148897,-0.012612538,-0.018925302,-0.0028251566,-0.005634077,-0.017158767,-0.010125102,-0.025458882,0.024692519,0.07985776,0.027069546,-0.00720902,0.025692688,-0.0321873,0.020224225,-0.03148588,-0.0024890604,-0.0020019645,0.008813189,-0.005988033,0.02584856,-0.012391721,-0.00407537,0.010456326,-0.0071375794,0.013469827,-0.029719349,-0.017041864,-0.03166773,-0.00035355048,-0.0010229015,0.0065433225,0.03286274,0.05250245,-0.0017795239,-0.00063281885,0.003591521,-0.013469827,-0.013028193,0.015015545,0.018548615,-0.0009254823,-0.017509477,0.0040981006,0.018600572,0.0042637135,-0.0051015182,-0.0061926134,0.008520932,0.035954177,0.029719349,0.014495976,-0.01628849,-0.010833015,-0.021510158,-0.031459905,0.010839509,0.0049943575,-0.00049602607,0.019003237,-0.0023721573,-0.030290874,-0.003792854,0.012346259,0.0023250715,0.009228845,-0.021536136,-0.036837444,-0.029199779,-0.023757294,0.0003722225,-0.01630148,-0.011651335,-0.020522976,-0.02149717,-0.023510499,-0.021899834,-0.0030167478,0.0089171035,0.014911631,-0.008878136,-0.02397811,0.020237213,0.007494783,-0.008092288,0.006942741,-0.0031498873,-0.019327968,0.019029215,-0.013703633,-0.045644138,0.013625698,-0.037201144,0.003572037,0.015574082,-0.027615095,0.0026059635,-0.018301819,0.040136706,0.012151421,0.009534092,0.020587923,-0.010086134,0.016522296,-0.0074103535,0.0039389827,0.022042716,0.009975726,-0.007702611,0.020574933,-0.0073389127,-0.01947085,0.00096932094,0.0016601854,0.017730294,-0.016197564,0.03070653,-0.019405903,-0.022601252,-0.00091492856,0.0014085192,-0.01324901,-0.008358567,0.012469657,0.033823945,-0.0047118417,0.0051794536,-0.0007245552,-0.008092288,0.005913345,-0.011943593,0.012073485,-0.0076766326,-0.014015375,0.01116424,0.003698682,-0.049099274,0.0031222852,0.020003408,0.0026189527,0.01116424,-0.007449321,-0.019276012,-0.02131532,-0.022055706,0.016392402,0.010157575,0.0012023152,-0.0058841193,-0.0040104236,-0.015989738,-0.0031125431,-0.03740897,0.004439068,-0.033771988,0.0070336657,-0.0069037736,-0.0042961864,0.038214304,0.010729101,0.013119118,-0.021523148,-0.022263533,-0.0143401055,-0.03236915,-0.018886333,-0.005936076,0.029251736,0.018977258,0.009553576,0.00040916062,0.01947085,-0.00050130294,0.020834718,-0.004789777,0.017249692,0.010352413,-0.018042035,0.0070856228,0.002823533,0.036499724,0.0042085093,0.012086474,-0.008689792,0.00823517,-0.025458882,-0.015145437,-0.016457349,-0.009547081,-0.0062673013,-0.0101186065,-0.0048904433,0.012554087,-0.03320046,0.0068063545,-0.0024095015,0.011398045,0.0034064245,-0.008241664,0.0026238237,-0.011859163,-0.012735936,0.0035168328,0.004416337,-0.00804033,0.007436332,-0.016626209,-0.005257389,0.03192752,0.030160982,0.017041864,0.001975986,-0.0033414783,-0.0096899625,0.02601742,-0.004133821,-0.021795921,-0.0053580557,-0.0073389127,0.00595556,-0.013086645,-0.024432734,0.000042037398,-0.012041012,0.005565883,0.0007830068,0.016548274,-0.011904625,-0.0012477775,-0.025264043,0.006527086,0.018808398,0.012313786,0.013223032,0.019652698,0.040500406,-0.03642179,0.033070568,-0.013339935,-0.021938803,0.014547933,0.043072272,-0.013236021,-0.034265578,0.012807377,-0.0061828713,-0.04127976,-0.010216026,0.013534773,0.02465355,0.011203207,-0.014976577,-0.000716437,-0.027770964,-0.00053215236,-0.021211406,0.023107832,-0.0239911,0.0010967777,-0.023939144,0.03639581,0.02600443,0.02617329,0.006520591,0.008787211,-0.024575615,-0.00013141443,0.00044325733,0.006114678,-0.0053613028,0.01795111,0.0062023555,0.020003408,0.02701759,0.0052216686,0.0014945727,-0.00314664,-0.03574635,0.025627742,-0.015703974,-0.008819684,0.009508113,0.009988715,-0.009501618,-0.011027853,0.0041110897,-0.009046996,-0.006410183,-0.00011812077,0.026485031,0.0023364369,-0.020691836,0.00015252193,-0.0028430168,0.009248328,0.00922235,-0.012729441,-0.008923598,-0.037357014,0.010287466,-0.028446404,-0.0053255823,0.012950258,0.0019029216,0.0064686346,0.010001704,0.025316002,-0.05715259,0.004260466,0.01997743,-0.011112283,-0.0054002707,0.009228845,0.0068063545,-0.031615775,0.009274308,-0.00058735657,-0.0042409822,-0.021588093,-0.018990248,0.019756611,0.0038967677,-0.004546229,-0.005351561,0.016379414,0.0104888,-0.00029469305,-0.03826626,-0.020185256,0.0008970684,0.01962672,0.005562636,0.006455645,0.0019256527,-0.045696095,0.035486564,0.025030239,-0.010482305,-0.020587923,0.014508965,0.01845769,0.0032651667,-0.02082173,-0.012105959,-0.00712459,-0.031174142,-0.001807126,-0.01299572,-0.0018769432,0.0031580054,-0.0001830669,0.012157915,0.014379073,-0.00729345,-0.009995209,-0.012781398,-0.010384886,0.005033325,-0.009319769,-0.0065530646,0.03294068,0.018003067,-0.027615095,-0.008436502,-0.011709787,-0.038785826,-0.0075532347,-0.030160982,-0.014534944,-0.021068525,0.0019224054,-0.020445041,0.0291738,-0.0059523126,0.015223373,-0.0141712455,-0.010664155,-0.020406073,-0.002510168,0.024965292,0.0013784816,-0.029771306,0.017691325,0.004078617,-0.005712012,0.012125442,-0.010125102,-0.01224884,0.03372003,0.013729611,-0.0067024403,-0.0006563618,0.012658001,0.038162347,-0.024095014,-0.011664324,0.023445552,0.00998222,0.0006945177,-0.010027682,-0.014495976,0.0017438035,0.021938803,-0.021562114,0.0030800703,-0.033616114,0.012956752,0.035772327,0.011203207,0.018509647,0.013742601,-0.011131766,-0.018756442,-0.007910439,0.03587624,-0.026861718,-0.0141712455,0.016704144,-0.020432051,0.013262,-0.0030378553,0.008923598,-0.009709447,0.0155481035,0.019860527,-0.00031539463,0.036863424,0.0033934352,0.0044358205,-0.028758146,-0.005228163,-0.015054513,0.0061633876,-0.014145267,-0.008163729,-0.0065238387,0.011891636,0.0072739664,0.01912014,0.007449321,-0.038681913,0.007066139,0.022536308,0.016911972,0.014041353,0.2317278,-0.0018655775,0.013872493,0.018938292,-0.0014734654,-0.010690133,0.009949747,0.02414697,0.003422661,-0.002050674,-0.025316002,0.0009985467,0.0053353244,-0.008436502,0.0035200801,-0.03133001,-0.013885482,-0.008105277,-0.022276523,-0.0070921173,-0.007605192,0.0063939462,-0.015184405,0.0033836933,0.041721392,-0.002490684,0.0024127488,0.017548444,0.013073656,0.018548615,-0.009547081,-0.0077805463,0.022172607,-0.013885482,-0.02634215,-0.021250373,0.018704485,0.0029988876,0.02195179,0.022432392,0.0026238237,-0.0037571336,0.030888379,-0.008923598,0.029875219,-0.033252418,0.0034161664,-0.002677404,0.009865317,0.024718497,0.006085452,-0.018249862,0.0008207567,0.006579043,-0.009793877,-0.008261148,-0.008248159,0.01660023,0.005211927,0.029771306,-0.0075272564,0.027796943,-0.017678335,0.0061081834,-0.03242111,0.00051145075,0.008540416,0.01250213,0.0126190325,-0.0022325232,-0.001015595,0.0025117914,-0.014015375,0.012203378,-0.0063971938,-0.026913676,-0.0003833851,0.03452536,0.038578,0.022237554,-0.016873004,-0.010443337,-0.0067803757,-0.016950939,-0.018210895,-0.041721392,0.033148505,-0.00081020297,-0.013690644,-0.024393765,0.000034198198,0.018210895,-0.011664324,-0.023016907,-0.013365913,-0.0017730293,-0.016989907,0.004468294,0.008923598,0.009170393,-0.01224884,0.04211107,0.018834377,-0.0042117564,-0.0120994635,0.028420426,-0.019665688,0.0147687495,0.0008970684,0.011222691,-0.0008532298,-0.008780717,0.009326264,-0.0062802904,0.01878242,0.0074103535,-0.008072804,-0.016548274,-0.0039811977,0.014275159,0.013937439,-0.014937609,-0.0068258382,0.00031295916,-0.0034031773,0.005380787,-0.0028543824,0.011904625,0.01424918,-0.033901878,-0.0021854371,0.021743964,0.0056568077,0.0063290005,-0.020769771,0.0010797294,0.009780887,-0.01945786,0.018938292,0.007910439,-0.01475576,0.013242516,0.009826349,-0.01608066,0.039331377,-0.015509135,-0.0004761363,-0.005098271,0.00044001002,0.0058548935,-0.013846515,0.012658001,-0.009144415,-0.013690644,0.03242111,0.000113249815,0.0015700726,-0.02849836,0.034109708,-0.0046014334,-0.009008028,0.008936588,0.034992974,-0.015028534,-0.03283676,-0.011430519,-0.1640799,-0.0036174993,0.0051372387,0.00054554746,-0.01778225,0.0018006314,-0.010690133,-0.007845492,-0.018340787,-0.021185428,0.016885994,0.007397364,-0.031355992,-0.009254823,0.005215174,0.012339764,0.0047280784,0.0033073816,0.025562797,0.015820878,0.050554067,-0.016496317,0.02347153,-0.013560751,-0.014664836,-0.008533921,-0.008624846,0.019548785,-0.027095525,-0.009021018,-0.0068842894,0.019769602,0.041409653,0.012950258,0.0021334803,0.009488629,0.0108979605,0.0013135355,0.030654572,0.017912142,0.003057339,0.018431712,-0.015509135,0.0041792835,0.03488906,0.008904114,0.01593778,0.0108979605,0.0035752845,-0.022445383,0.010397875,-0.023939144,-0.004916422,0.013664666,0.000068751564,0.01233327,0.008449491,0.006747903,-0.0075272564,-0.018145949,-0.0059198397,-0.025069205,-0.001988975,-0.014495976,-0.03242111,-0.019704655,-0.017535456,-0.0030508444,-0.0036369832,0.01778225,-0.020899665,-0.01896427,0.022744134,-0.011560411,0.013898471,0.005731496,-0.008988544,0.016652187,-0.009332758,0.025419915,-0.0067673866,0.027589116,-0.023276692,0.023666369,-0.01509348,0.008533921,-0.016353436,0.014145267,-0.043358035,-0.017886164,0.013125612,-0.026601935,-0.0053905286,-0.002677404,0.012956752,0.011729271,0.02313381,0.019756611,0.012261829,-0.027225418,-0.015223373,0.00763117,-0.003562295,0.004978121,0.016184576,-0.014937609,-0.002037685,0.008644329,0.022731146,-0.012632022,-0.011878647,-0.002771576,0.028810102,0.010813531,0.016691156,0.03101827,-0.002045803,-0.007228504,0.0051015182,-0.009722436,0.03133001,-0.005182701,-0.012664495,-0.007364891,-0.02935565,-0.011937099,-0.081832126,-0.03605809,0.020016396,-0.0023478025,-0.013184064,0.027874878,0.0139114605,0.0062153446,-0.022003748,0.0027796943,-0.01979558,-0.008254653,-0.0038513055,-0.009443167,0.026627913,0.00088083185,-0.004536487,-0.0017892659,-0.009612027,0.018509647,-0.008085793,-0.018340787,0.016379414,-0.0134828165,-0.024445724,0.0025994687,-0.0114110345,0.035824284,0.021575104,0.011086304,-0.025874538,-0.011014864,0.00035050613,-0.01693795,0.0014190729,0.012469657,0.006475129,0.003422661,0.033460245,-0.0067673866,-0.020107321,-0.013326946,0.015872834,-0.007663643,-0.019405903,0.0015319168,-0.0010269607,-0.0014539815,0.013132107,-0.019276012,-0.018977258,-0.019068183,-0.014911631,-0.018236874,0.017067842,-0.017210724,0.008183212,0.023263704,-0.005257389,-0.005679539,0.014353095,-0.011008369,-0.005257389,0.019509817,0.001854212,0.012885312,-0.0027309847,0.0028413932,0.03455134,0.028342491,-0.0065011075,0.010449832,-0.008540416,0.019951452,-0.015690984,-0.0026725333,-0.014379073,0.0064686346,0.0011998797,-0.026030408,-0.009793877,-0.011209702,-0.00854691,-0.015197394,0.009943252,0.013599719,0.022432392,0.00040185417,-0.0022682436,-0.02582258,0.0040948535,0.0033025106,0.011878647,-0.00052646955,-0.009891296,-0.010716111,-0.0013322075,-0.00122667,0.009261318,0.018262852,-0.0136516765,-0.012177399,-0.045981858,0.017028876,0.030472724,-0.0010399498,-0.012476151,-0.01896427,-0.025718667,-0.013086645,-0.008871641,-0.017067842,0.0016674919,0.03372003,-0.013236021,0.018301819,0.005634077,-0.025251055,0.016496317,-0.024354799,0.006897279,-0.0058548935,-0.0113331,-0.03208339,0.0066082687,-0.018730463,0.013404881,0.021120481,-0.018665517,0.0239911,-0.015366254,-0.019730633,0.012898301,-0.03436949,-0.003919499,0.01810698,-0.015353265,-0.009157404,0.0042539714,0.02870619,-0.0031628765,-0.019665688,-0.03236915,-0.009832844,0.02080874,-0.0073454073,-0.022250544,-0.017691325,0.00036816337,0.00088976196,0.008904114,-0.0029940165,0.017301649,0.0101186065,-0.009826349,-0.019496828,0.018652529,-0.034811124,0.016898982,-0.017470509,0.018847367,-0.022679187,0.032784805,0.0052314107,0.0055366573,-0.015535114,-0.004831992,0.022874026,-0.020003408,0.017665347,0.037538864,-0.013599719,0.003539564,-0.0059653018,0.01492462,0.009540587,0.029719349,-0.0051372387,0.003919499,-0.006910268,-0.03184958,0.035772327,0.003656467,-0.0077091055,-0.020432051,0.028628254,0.012138432,0.01526234,0.01123568,0.0064913654,-0.025484862,0.0128788175,-0.031355992,0.023263704,-0.00587113,-0.0021237384,0.0013159709,0.018418722,-0.016782079,-0.0035947682,-0.0061341617,0.010884971,0.022055706,-0.005088529,0.005114508,0.0017048359,-0.013833526,0.027433245,-0.020042375,-0.03540863,-0.011722776,0.018600572,-0.010560241,-0.042396832,-0.017925132,0.0013679279,-0.04294238,0.0026416837,0.026991611,-0.026939655,-0.025056217,0.025562797,0.005169712,-0.022990929,0.03275883,-0.018678507,0.013950428,-0.017691325,0.012118948,-0.023016907,0.024952302,-0.015885822,0.0024776948,-0.015690984,-0.0031661238,-0.016717134,0.008793706,0.008949577,-0.0278489,0.019237043,-0.0061309147,0.055282146,0.017899154,-0.0057477322,0.005000852,-0.0074103535,0.018327797,0.021380266,0.01267099,-0.0026449312,0.01878242,0.006273796,-0.0006344425,0.009189878,-0.03133001,0.00011304685,-0.006910268,-0.016340446,-0.005819173,-0.01291129,-0.02532899,0.01574294,0.0024062542,0.017379584,-0.0064036883,-0.034421448,-0.021419233,-0.014275159,-0.001568449,-0.029147822,-0.023419574,0.0113266045,0.01082652,-0.0054847007,-0.017171757,0.008436502,0.024731485,0.0027699524,0.025731657,-0.009111942,0.02063988,0.0013736106,0.0011536056,-0.036863424,-0.02886206,-0.0020782761,0.022367448,-0.013716622,-0.00008798171,-0.039695073]},{\"id\":\"8f2976f9-0328-492d-8e54-9665c3fcbd25\",\"text\":\"Allow multiple submissions per bounty to maximize user income. To prevent abuse you could put a cap on the amount that users can make per bounty\",\"vector\":[-0.020916758,-0.005945846,-0.0066007804,-0.012858663,-0.024373166,0.0054006386,-0.030421883,0.010122339,-0.020587577,-0.03889831,0.032698724,0.013132981,0.017816963,-0.0044851014,0.003320964,-0.0010466952,0.020354407,-0.021341952,-0.016129907,0.0040530507,-0.014909191,0.031244837,-0.04471386,0.001080985,-0.019819485,-0.006247596,0.0312997,-0.0138256345,0.018118713,-0.011500788,0.02057386,0.0017470637,-0.012831232,0.019682327,-0.031491723,0.014566293,0.013180987,0.0026780309,0.004879434,0.020272112,0.019764623,0.0017847824,-0.007845499,-0.0037684455,-0.0015610417,-0.005136607,-0.0067276526,-0.0075437487,-0.014964054,0.01785811,0.0036278574,0.007392874,-0.037910767,0.034838405,-0.01578701,0.014113668,0.005585803,0.015553839,-0.0128037995,-0.015073782,-0.0075094593,0.01383935,-0.00093953963,0.019558884,-0.0008705315,-0.011343055,0.0030860791,0.018543907,-0.0065116268,-0.022699825,0.016102474,-0.0038713147,0.020971622,0.007495743,-0.0059869937,-0.002376281,-0.0026523136,0.0123306,0.015581271,-0.00546236,0.012495192,0.021657417,-0.0015113215,0.01813243,0.019586315,0.0033398233,0.011850543,0.013551316,0.0043753744,-0.014854328,0.0014264543,-0.0025220125,0.024510326,0.01611619,-0.0076671923,0.015883021,-0.011007016,0.031546585,0.004728559,-0.015128645,-0.0015456113,0.004179923,-0.04718272,-0.017378055,-0.020299543,-0.012508907,-0.0003452551,-0.009299385,0.019586315,0.01913369,-0.0026197382,0.026677439,0.020807032,-0.022466656,0.0068030898,-0.0011787107,0.0035901386,0.0037753035,-0.010026328,0.0070225443,0.015142362,-0.006899101,0.01028693,0.002341991,0.023879394,0.01571843,-0.009573704,0.009169084,0.0107121235,-0.002482579,0.046167742,0.02700662,0.0234542,0.016472805,-0.010293788,0.019078827,-0.013818776,0.005212045,-0.015306952,-0.013544458,0.029845813,0.03582595,0.0043205107,0.025113827,0.00048948644,0.021287087,0.02154769,-0.006052144,0.010478953,0.009066215,-0.021204792,-0.015444111,0.0123306,0.013798202,-0.0127557935,-0.0036209994,-0.004131917,-0.0018739358,-0.016198486,-0.0019922354,0.012762652,0.0034872694,-0.003180376,-0.00063307484,0.031711176,0.017816963,0.010142913,-0.013105549,0.00593213,-0.00013040827,-0.00088038977,0.010636686,-0.021424247,0.01883194,-0.013784487,0.011891692,-0.00070551195,0.012995822,-0.008778181,-0.024757212,-0.024674917,-0.019709758,0.01815986,0.05137979,-0.0012824374,-0.023070157,0.024812076,-0.0031512296,0.021602554,-0.0065767774,0.004471386,0.01005376,-0.0074683116,0.015060066,-0.64431846,0.003706724,-0.009463976,-0.013846208,0.010581822,-0.0010501242,0.008894766,-0.007653476,-0.02010752,0.014552577,-0.02442803,0.008723317,-0.0017984983,-0.0073723,-0.012611777,-0.023330757,-0.0049617295,-0.023179883,-0.0019493733,0.0047765644,-0.009745152,-0.0029249173,-0.01028693,0.027568974,-0.0018482185,-0.023262179,0.000052318686,-0.00381988,-0.0155264065,0.007872931,-0.0050988887,0.022096327,0.0111990385,0.0028631957,0.04443954,0.0058395476,-0.0010346938,0.016212203,0.010650402,0.038980607,-0.015457828,-0.011576226,0.022260917,-0.010609254,-0.0017136311,0.0027363235,0.028556518,0.00039647543,-0.015608702,-0.030312154,-0.02141053,0.004279363,0.0033638263,0.0062681697,0.004090769,-0.0067585134,0.008188397,-0.005503508,-0.00103898,-0.0014384558,-0.00055377977,-0.00021645417,-0.050858583,-0.05458931,-0.022809554,-0.013592464,-0.0036004256,-0.021616269,0.011802538,-0.013283856,0.0013175843,-0.028775973,-0.010938436,-0.013887356,0.0072625726,0.015581271,0.009155368,-0.03099795,-0.010718982,0.008702743,0.00633332,-0.014717168,-0.012728361,0.011295049,0.0040530507,0.008558726,-0.0016133336,-0.0109795835,0.003974184,0.02442803,0.0026317397,0.027335802,0.0117339585,-0.0013175843,-0.005616664,0.029406905,-0.00881247,0.011535078,0.031958062,-0.03179347,-0.02429087,0.009587419,-0.0119534135,-0.015375532,0.058594353,0.004008474,-0.006213306,0.004245073,0.043013085,-0.034125175,0.017871827,-0.012447186,-0.031080246,0.0017316333,0.0052291895,-0.04186095,0.0095942775,-0.00767405,0.0058704084,-0.011411634,0.013009538,0.02946177,0.019078827,-0.018681066,0.0067173657,0.0077426294,0.017076304,-0.026595144,-0.013153555,0.011137317,0.004694269,-0.008737033,0.020381838,0.0016201915,0.032726154,0.014250828,0.016884282,0.00072265684,0.025045246,-0.0028837696,0.0013321575,-0.0008186682,0.014127384,-0.0055789454,-0.007927794,-0.018502759,-0.018228441,-0.013455305,0.0015044636,0.0071597034,-0.0008152392,0.0022494087,-0.009409112,-0.0052977693,-0.008606732,0.009889169,-0.0019819485,-0.024537757,-0.02744553,-0.021945452,-0.004975445,0.0085244365,-0.0006515056,-0.0059149847,-0.016459089,0.0010526959,0.009971464,-0.011397919,0.008174681,-0.011706526,-0.016417941,-0.034893267,-0.015992748,0.02191802,-0.017405486,0.017679805,-0.034564085,-0.0063196043,-0.012714646,-0.010177203,0.009313101,0.022727259,-0.0017744955,0.00054735044,0.011068737,0.0070053996,-0.00190994,0.028638814,0.015663566,0.021451678,0.0057161045,0.010417231,0.0036484313,0.03280845,-0.012255163,-0.010012612,0.006806519,-0.005321772,-0.0012447186,0.023495348,0.023248462,0.01062297,0.014593725,-0.02221977,0.011082453,-0.021506542,-0.008462715,-0.025717326,0.0165551,-0.019010248,-0.0029917823,-0.012652924,0.0022974145,-0.019750906,0.004515962,0.026197383,0.0022202625,0.01732319,-0.0016681972,-0.0019322284,0.0127557935,-0.03387829,0.04293079,-0.008949629,-0.013715907,0.025209837,0.00084695726,0.0026660294,0.027102632,-0.006179016,0.00045733977,0.015622418,0.004618832,0.00007929509,0.03437206,0.0024860082,0.0102252085,0.0074545955,0.01729576,0.0008932485,0.020230964,-0.006357323,0.018982815,-0.002885484,0.029297177,0.015869305,0.023042724,-0.019764623,-0.029598927,0.010478953,0.008695886,0.005602948,-0.016445372,-0.0005100603,0.01327014,-0.008593015,0.0183656,0.0231936,0.0013673045,0.014401702,0.035579063,0.0017676376,-0.02031326,-0.0020076658,0.032588996,0.012145435,-0.021643702,-0.014730885,-0.0020968192,-0.020930475,-0.0075780386,-0.022302065,-0.010478953,0.0027671843,0.02071102,0.0018927952,-0.038075358,0.02479836,0.002302558,0.03626486,-0.047566768,-0.0043993774,0.0070156865,0.028172472,0.0015781865,-0.004169636,-0.0068442374,-0.0058155446,0.02040927,0.003984471,0.006069289,0.0032883887,-0.014621157,-0.01632193,-0.0039604683,-0.00610015,0.025689894,-0.030860791,-0.027212359,-0.00623388,0.018187294,-0.008675312,-0.0047697066,-0.032396972,0.021835724,0.010725839,-0.019037679,-0.03437206,0.008448998,-0.019682327,0.0058052577,-0.015156077,-0.015965316,0.013777629,0.013798202,0.008826186,0.0029746373,-0.01015663,0.038980607,-0.004594829,0.0051400363,-0.014291976,-0.032753587,0.030915655,0.070280306,0.0003161088,-0.0057263914,0.029928109,-0.009772584,-0.0017333478,-0.024812076,-0.024332019,0.021341952,-0.014278259,-0.012358032,-0.010760129,0.008497004,0.0038987466,0.028007882,-0.010177203,-0.006648786,-0.017583793,0.0039879,-0.020189816,0.01906511,0.0028546231,0.02003894,0.024990384,0.023824532,0.014017657,0.01869478,0.027198644,-0.015444111,-0.019778337,0.00945026,0.013462163,-0.010012612,0.006336749,0.00045133906,0.01829702,0.00013244423,-0.00029017715,0.025923064,-0.0014195964,0.0077426294,0.007235141,0.0017984983,0.013935362,0.022727259,-0.022727259,-0.013537601,0.008531294,-0.0252647,-0.0054109255,0.029708656,-0.008593015,-0.020217247,-0.009724578,0.002084818,-0.003957039,0.020656155,0.01759751,-0.022096327,-0.06534258,-0.041943245,-0.011603657,0.01263235,-0.014593725,-0.017007725,-0.0027877581,-0.025621314,-0.031189973,-0.026389405,-0.009532555,-0.021465395,0.001670769,-0.008675312,0.016061326,0.006371039,0.008236403,0.025881916,-0.0122688785,0.013901072,-0.0061618714,-0.024770929,-0.018749645,-0.01065726,-0.02020353,-0.013613038,0.0008606732,-0.0061207237,-0.025072679,-0.010835567,0.007584897,-0.010787561,-0.00065836357,0.031930633,-0.03025729,0.008833044,-0.010739556,0.018008986,0.014456566,0.0077426294,0.0036552893,0.011384203,-0.009854879,-0.010094908,-0.0024740067,0.009697147,0.0020385266,-0.004896579,0.014168532,-0.0058361185,0.0026163093,0.019298282,-0.014237111,0.02691061,0.007996374,0.01785811,0.016637396,-0.010163487,0.0034598375,0.014538862,0.0060967207,-0.020230964,-0.011747674,0.0057126754,0.018420463,-0.038294815,-0.028501656,-0.0070191156,-0.04795081,0.0108835725,-0.005469218,-0.022425508,0.021095065,-0.015238373,-0.027719848,-0.022178622,-0.025648747,-0.011980845,0.018063849,-0.036209993,0.000013354257,-0.0013878783,0.012303169,0.012145435,-0.026828315,0.041943245,-0.034564085,0.004738846,0.011452783,-0.015444111,0.020025223,0.013681618,0.0049171527,-0.02372852,-0.009093647,-0.011960271,0.004402806,-0.0092788115,0.00095497,0.025744759,0.030943086,0.0141411,-0.014319407,0.008339272,-0.015855588,0.0177621,0.00381988,-0.0048211413,0.0023299898,-0.012591203,-0.00264717,0.019408008,0.021575121,0.025552735,-0.00368615,0.01859877,0.023714803,-0.01665111,0.0055377977,-0.02570361,-0.01648652,-0.010808134,-0.010561248,-0.003706724,-0.010897288,-0.047594197,-0.014936623,0.018489042,0.01859877,0.02449661,0.029571496,0.016198486,-0.023934258,0.02117736,0.013530742,0.024688633,0.009998896,-0.016020179,0.0063298913,-0.020532712,0.023207314,0.015896736,0.010026328,0.002664315,-0.005506937,-0.01732319,0.01611619,-0.03267129,-0.0055446555,0.0018002128,-0.017062588,0.0070088287,-0.0029232027,-0.0015361815,-0.004996019,-0.001025264,0.019929213,0.011939697,0.01179568,-0.035414472,-0.0027894727,-0.007235141,-0.025415575,0.035798516,0.0049137236,-0.0056338087,0.027637552,0.035496768,-0.005602948,-0.006323033,0.005788113,0.010094908,0.032150086,0.03308277,-0.013064401,-0.025580166,0.0036655762,0.021602554,-0.030668769,-0.015471543,0.024441747,0.0075094593,0.019586315,-0.0139216455,-0.02419486,0.018077565,-0.009848021,-0.003207808,0.0147446,-0.007818067,-0.009436544,0.000102547834,0.020807032,0.015512691,-0.0016090474,0.0014513144,0.012227731,-0.023125019,-0.016335646,-0.010876714,0.0061070076,-0.024853224,0.038157653,-0.0021036773,0.014346839,-0.011000157,0.008551868,-0.0049925903,-0.023042724,0.0058498345,0.026019076,-0.002818619,-0.01618477,-0.001404166,-0.0072625726,-0.006323033,-0.013715907,-0.012776367,-0.031546585,-0.021945452,-0.0036724342,0.0222472,0.012591203,-0.02071102,0.023659939,0.0007475169,-0.013112407,-0.013016396,-0.00035939962,0.02579962,-0.021972883,0.003826738,0.0074683116,-0.007530033,0.030504178,0.0025580167,0.012008277,0.018379316,0.020779599,-0.04098313,0.0027723277,-0.0064190445,0.0081335325,-0.040928267,0.0050817435,-0.014552577,-0.0009866881,0.01964118,-0.031162541,0.007084266,-0.014223396,-0.002257981,-0.011164748,-0.0059732776,-0.007530033,0.0020025223,0.00035468477,0.020765884,-0.012652924,-0.027116349,0.013078118,0.0058155446,0.012591203,0.0343172,0.00089753466,0.0024345736,-0.026375689,0.014058805,0.010869856,-0.025648747,-0.026718587,-0.013132981,0.023330757,-0.009875453,-0.017611224,0.0018756503,-0.016033895,-0.009539413,0.0009215375,0.009251379,0.0036072836,0.011473357,-0.012323743,0.0014204537,0.0013595893,-0.012625492,-0.02577219,-0.017076304,-0.012296311,-0.009662856,-0.011157891,-0.03420747,0.029708656,0.020999053,-0.03991329,-0.013194703,-0.01541668,-0.035441905,-0.02758269,-0.009326817,0.02623853,-0.013455305,0.0057469653,0.022494087,0.034289766,0.01843418,0.03236954,-0.034289766,-0.00251344,-0.00914851,-0.019696042,0.011610515,-0.008387277,-0.02633454,-0.035167586,0.02962636,0.009649141,0.009827447,0.02479836,0.003840454,-0.016747123,0.0018053562,0.011747674,0.015979031,-0.0011041305,0.023330757,-0.018818224,0.008517578,0.026787167,-0.0252647,-0.008400993,-0.009381681,0.004461099,-0.0026351686,0.007145988,-0.021794576,-0.0010878429,-0.002288842,-0.019888066,0.012152294,0.02396169,-0.006899101,0.0010544104,0.024688633,-0.019915497,-0.012090572,0.020134952,-0.018722214,0.015485259,0.00049120095,-0.019078827,-0.0037855904,-0.007859215,0.00941597,-0.018050134,-0.009772584,-0.012611777,-0.004711414,-0.0068476666,0.009601135,0.015704714,-0.01966861,-0.01950402,0.012028851,-0.010170345,-0.008229544,-0.005572087,-0.019394293,-0.0231936,0.030312154,0.00088981946,-0.008764464,-0.016952861,0.0016999153,0.011377345,-0.004402806,0.03025729,0.23174396,-0.00069693953,0.0030655053,0.044576697,-0.013215276,-0.002892342,0.005345775,-0.0035901386,-0.021725997,0.024359452,0.0046256897,-0.0073448685,-0.0033655406,-0.0023985694,0.018461611,-0.0027826147,-0.04430238,-0.016459089,-0.015306952,-0.000021792755,0.010040044,0.025319565,-0.005434928,-0.017720953,0.014854328,-0.008977061,0.019462872,-0.009340533,0.012604918,0.020957906,-0.009628567,-0.0063778968,-0.00060178543,0.015060066,-0.025429292,-0.005517224,-0.007111698,-0.010869856,0.024167428,0.029708656,0.0019750907,0.01451143,0.018941667,-0.015965316,0.00633332,-0.0130712595,-0.0039227493,-0.006179016,0.005290911,0.025785906,-0.030065268,0.0035524198,0.01906511,0.012282595,-0.0031152254,0.007392874,0.005047454,0.004347943,-0.0034461217,0.024510326,-0.021904303,0.01678827,0.0014787462,0.01964118,-0.034344632,0.0037890193,-0.002959207,0.0087918965,0.018626202,-0.011349913,-0.0010501242,-0.0029163447,-0.018091282,0.03162888,0.0029129158,-0.012227731,-0.0027551828,0.03760902,0.029132586,0.016870566,-0.0119534135,-0.01481318,-0.0027466104,-0.024551474,-0.0024071417,-0.040105313,0.013777629,0.0082569765,-0.024825793,-0.01092472,-0.02114993,-0.0096422825,-0.01718603,-0.020999053,-0.02577219,0.005921843,0.0129752485,0.005424641,0.0020213819,-0.010520101,-0.026622577,0.06534258,-0.0035078432,-0.004450812,0.00052249036,-0.017103735,-0.004845144,0.016239634,0.017803248,0.0063881837,-0.0039090337,-0.02034069,0.008833044,-0.003230096,0.0018019273,0.0042862208,0.01541668,-0.011267617,0.013949078,0.018722214,-0.0111990385,-0.04674381,0.011987703,-0.013091833,0.0017093449,0.002309416,-0.023605077,-0.0053766356,-0.0062647406,-0.030668769,0.0102252085,-0.0074614533,-0.011994561,-0.026883177,-0.0008448142,-0.008099243,-0.008586158,-0.042052973,-0.014168532,0.009189658,-0.022055179,-0.001221573,0.027431814,0.0045228205,-0.0037821613,-0.03610027,0.0091073625,-0.012988964,-0.010862999,-0.0026831743,-0.028227337,0.002050528,-0.01390793,-0.012145435,-0.0033021045,-0.004166207,-0.013613038,-0.008716459,0.029132586,-0.0046531213,-0.053629197,0.031107677,0.007914078,-0.018420463,-0.055275105,0.012296311,-0.17688034,0.01906511,0.021026487,0.008990777,0.016280781,-0.0070499764,-0.0020625296,-0.0073037203,-0.030229859,0.00049420126,0.011020731,-0.0075643226,-0.02932461,-0.0023368476,0.0085793,-0.015937883,-0.0064430474,0.012817515,0.040571652,0.011706526,0.0488012,-0.03420747,-0.0032952467,-0.019778337,0.0062715984,-0.017570077,-0.01980577,0.013654185,0.0071528456,-0.024976667,-0.0331102,0.011013874,0.025758473,0.011308765,-0.0063778968,0.012076857,-0.025744759,-0.0005139179,0.022658678,0.0021602553,0.019284565,0.04413779,-0.01541668,0.018201008,-0.008750749,0.011836828,0.019284565,0.0075643226,0.0002007023,-0.021931736,0.010876714,-0.021945452,0.0044851014,-0.005620093,0.012035709,0.003713582,0.009765726,-0.0052840533,-0.01444285,0.006782516,0.010094908,-0.030723631,0.009539413,-0.00948455,-0.017035156,-0.0373347,-0.01069155,0.013523884,-0.002235693,-0.0023437056,0.000052345473,0.0038130223,0.008215829,-0.004574255,0.010602396,0.0065767774,-0.0032318106,0.0067447973,-0.018447895,0.022164905,-0.004978874,0.025868202,-0.012351174,0.00019566598,-0.0011564224,-0.004526249,0.009601135,0.010574965,-0.006491053,-0.02084818,0.0103966575,-0.023097588,-0.02073845,-0.0062510245,0.0057984,0.004721701,0.010307504,-0.0018893662,0.021876872,-0.02654028,-0.0011529934,-0.006707079,-0.020985339,0.026211098,0.033603974,-0.012591203,-0.00049891614,0.012378606,0.013832493,-0.0010209779,-0.005626951,0.015101214,0.001333872,0.016280781,-0.015128645,0.009971464,0.0148954755,0.0013930218,-0.0030586473,-0.013105549,0.05066656,-0.0118299695,-0.010204635,0.00051606103,0.009553129,-0.0012267164,-0.10089421,-0.0033964014,0.01718603,-0.016500236,-0.012495192,0.047703926,0.009162226,0.039200064,0.0039090337,0.033357088,0.0043548006,-0.030284723,-0.02700662,0.0082569765,0.016335646,-0.008195255,0.0008855332,0.0042416444,0.021657417,0.021890588,0.003394687,-0.028199906,0.015389248,-0.017789531,-0.02245294,-0.0043548006,-0.026060224,0.034536656,0.0029746373,-0.012186583,0.011013874,-0.023947975,0.0036758631,-0.026869463,-0.0015361815,-0.010794419,-0.007996374,-0.019435441,0.012179726,0.00051863276,-0.005191471,-0.0059527038,0.020916758,-0.0023248463,0.0027226075,0.0041627777,-0.016897997,0.0043753744,0.019970361,-0.03217752,-0.022370644,-0.0045125335,-0.011137317,-0.024839507,0.011480214,0.007550607,-0.00824326,0.014799464,-0.006792803,0.037115246,-0.00097297214,-0.01032122,-0.02700662,0.007516317,0.018310737,0.0010106909,-0.017570077,-0.0032232383,-0.018571338,0.009957748,-0.017926691,0.024236009,-0.009854879,0.006515056,-0.01069155,-0.02322103,-0.018708497,-0.024469178,0.01906511,0.00881247,0.004313653,-0.010986442,0.0005357776,-0.011576226,-0.02191802,-0.019627463,0.0029060578,0.024441747,0.0058052577,-0.04342456,0.021520259,0.00502688,-0.0018173577,0.0052326187,-0.024071418,0.006799661,0.0034958418,0.0042622183,0.012934101,0.005455502,0.00572982,0.009409112,-0.04325997,0.03703295,0.019915497,0.0055618,0.021698564,-0.007845499,0.011658521,-0.0030603618,-0.019723475,-0.018228441,0.0052429056,0.022288349,-0.021300804,-0.02674602,0.008174681,-0.028775973,0.008435283,0.006350465,-0.014662305,0.012207157,-0.0065904935,0.002268268,-0.005890982,-0.0100331865,-0.00968343,0.013057544,-0.011007016,0.023577644,-0.0010106909,-0.017734667,-0.0032335252,-0.011068737,-0.023317043,0.014758316,0.009162226,-0.022644963,0.011404777,0.007824925,0.033219926,0.00008149177,0.003548991,-0.0116379475,-0.0020985338,-0.030367019,-0.028501656,-0.014826896,-0.0075643226,-0.005438357,-0.0005070599,0.0067482265,0.03464638,0.011507646,0.01032122,-0.026595144,-0.011541936,-0.038212515,-0.001084414,-0.002084818,-0.00083881343,-0.038047925,0.027047768,-0.009093647,0.00881247,-0.016884282,0.011816254,0.020724736,-0.011445925,-0.005153752,0.016129907,-0.049185243,0.0011007015,-0.008250118,-0.01611619,-0.009662856,0.01913369,0.007386016,0.014977771,-0.0018722214,-0.025552735,0.00693682,0.012988964,-0.026197383,-0.023344474,0.0030552184,0.014566293,0.024825793,-0.0020488137,0.018324452,-0.003963897,0.010876714,-0.019078827,0.008743891,-0.005314914,-0.014840611,-0.0042382153,0.004430238,-0.015567554,-0.024578905,0.007728914,0.015320668,0.016829418,0.011740817,0.007728914,0.0007770919,-0.024345735,0.0057915417,-0.017720953,-0.037636448,-0.017707236,0.034234904,0.01729576,0.02804903,0.000060650025,0.0039501814,-0.022260917,0.021081349,0.005585803,-0.02654028,-0.004996019,0.050886016,0.022178622,0.0019699472,0.011301908,-0.054836195,0.04432981,-0.0146760205,-0.0151149295,-0.035743654,0.031683747,-0.000721371,0.0077769193,-0.0056646694,-0.014401702,-0.015745861,-0.001333872,-0.038816016,-0.007091124,0.018886805,-0.008023806,0.0710484,0.029544065,-0.027911872,0.016061326,0.008291266,0.0047731358,0.010540674,0.022439225,0.00018195008,-0.005157181,0.014415419,0.020903042,0.012296311,-0.02472978,-0.0031512296,0.0023865679,0.008373561,0.022164905,-0.027596405,-0.0006305031,0.036127698,0.0021739714,0.025607599,-0.0071048397,-0.018941667,-0.004587971,0.0057092463,-0.0010861284,-0.013427873,-0.016102474,-0.01145964,-0.0045536812,0.019174838,-0.02117736,-0.010814993,0.02674602,0.009388538,0.027322087,-0.012913527,0.027596405,0.00914851,0.0171586,-0.03236954,-0.030449314,-0.012378606,0.0034924129,-0.0067002205,-0.0048279995,-0.0146760205]},{\"id\":\"20bd587a-c0ca-4ee4-8bf1-e6c7641f5584\",\"text\":\"I’m hoping to exchange mine as it’s not a good match, please advise how I can return it and try another colour. Thank you 😊 \",\"vector\":[-0.01910634,-0.0016312457,-0.0051385453,-0.017839478,-0.027793389,0.03211106,-0.0047378032,-0.015771132,0.0005498082,-0.0076528774,-0.0013444244,-0.00025672527,-0.0049769557,-0.019494154,0.008441434,0.0036292996,0.012474707,0.0013630072,0.0017273915,-0.031464703,-0.0048735384,0.0012038415,-0.010832959,0.011892986,-0.021071268,0.010923449,0.019248538,-0.00038175515,0.010858812,-0.015771132,-0.0035129553,0.011382363,-0.0067156586,-0.018809015,0.0013646231,-0.0146981785,-0.00045002668,0.01973977,0.039815646,-0.031025179,0.01791704,0.00051668234,0.011427607,-0.00395571,-0.018938286,0.04392648,-0.018395346,0.023049124,-0.012784959,-0.005067446,0.0029231536,0.009604879,-0.0236567,-0.029732464,0.014103529,0.009165355,0.020386128,0.013896694,0.000783305,-0.0062535126,0.011085038,0.008861567,-0.008628878,0.0069612744,-0.010089647,-0.0021604514,0.005849539,-0.011563343,0.0016643716,0.016999213,-0.0071939635,0.012416535,0.013114601,-0.0106131965,0.018188512,-0.014426708,-0.020515399,0.023217175,-0.0084996065,-0.013625224,0.01983026,-0.01973977,-0.00904901,-0.01105272,0.0149825765,0.030585656,0.012080429,0.008615951,-0.016934577,-0.006479738,0.0020667294,0.0152799,-0.008396189,-0.016714815,-0.02178226,-0.0062729036,0.017748987,0.03487747,-0.0010309408,-0.029887589,0.015848696,0.009650123,-0.024083296,0.0029894053,-0.041108362,-0.0062438175,-0.012927158,-0.030947616,-0.004159313,-0.045503598,-0.009818177,0.046330933,0.0077110496,-0.024910633,0.0054487973,-0.0077175135,-0.00024218223,-0.028982688,-0.03583408,0.005946493,-0.0030087961,0.0047571943,0.0033869154,-0.039944917,0.027457284,-0.0040655914,-0.0329384,-0.0018453518,-0.018382419,0.02578968,0.019158049,0.041728865,0.027896807,0.031076888,-0.022842288,0.00073119235,-0.033274505,0.00859656,-0.006696268,0.0005752585,0.031955935,0.026009442,0.0015520669,0.002919922,-0.013573516,0.016507981,0.0055328235,-0.023902316,-0.036635567,-0.010251236,0.020890288,-0.04020346,0.029913444,-0.016805306,0.0062696715,0.01674067,-0.011595661,0.0018001067,-0.024923561,-0.026099931,-0.020037094,-0.007471897,0.011175528,0.020592963,0.0215625,-0.00447926,0.014064748,0.022183003,-0.010302945,-0.011337117,-0.015977968,0.03342963,0.0062922942,-0.006066069,0.036635567,0.023398155,0.021291029,-0.014349146,0.018020459,-0.019080484,-0.020735161,0.014788669,0.02273887,0.0081441095,-0.020075876,-0.024884779,0.009818177,-0.0038910746,0.029344648,-0.0089068115,0.0028504382,0.02006295,-0.0061307047,-0.02515625,-0.6242266,-0.030352967,-0.009288163,0.015512589,0.0062244264,0.028749999,0.012700933,0.027612409,-0.026888488,0.0056588636,-0.033041816,0.02401866,-0.01623651,-0.017296538,0.008822786,-0.031102743,0.021459082,-0.010477462,0.0017257755,-0.0019051399,-0.013793278,-0.00014118881,-0.016275292,-0.006696268,0.0032431008,-0.002640372,0.00895852,0.006909566,-0.01596504,0.022532037,-0.021303955,0.005374466,-0.018912433,-0.030171987,0.061688397,-0.026888488,-0.007174573,-0.00236567,-0.014090602,-0.013114601,-0.038497075,0.0029991006,-0.017516298,-0.032007642,0.000048199112,-0.018847797,0.005788135,-0.01833071,0.01710263,0.0049252473,0.013457172,0.013140456,0.005102996,0.00097276864,0.025712118,-0.005018969,0.053208183,0.0081441095,0.011808959,0.009940985,-0.02042491,-0.0073749437,-0.0055845324,-0.028129496,0.000875007,-0.0028261999,-0.00090005336,0.0125134885,-0.0020812724,-0.02197617,-0.0072715264,0.010723078,-0.029241232,0.024393547,0.02310083,0.011608588,0.008228136,-0.005154704,0.031025179,0.026526527,0.005723499,-0.009546706,0.009204136,0.0022978024,0.05049348,-0.01305643,0.006182413,-0.021316884,-0.010820031,0.017050922,0.010180137,0.028827563,-0.011841277,-0.0042304127,-0.010736004,0.010238309,-0.031206159,-0.00038922863,0.017438736,-0.0036389949,-0.002658147,-0.016184801,-0.012448853,0.0011222389,0.0245616,0.0021103586,-0.023126686,0.025285522,0.018485837,-0.02196324,0.01323741,-0.0053518433,-0.0078080036,0.004068823,0.017025067,-0.03224033,0.032550585,0.0034967961,0.016094312,-0.011459925,0.02078687,0.016585544,0.013715714,0.006098387,0.0057913666,0.020114658,-0.009908667,-0.000521126,-0.0043823067,-0.011951158,-0.00184212,-0.01964928,0.018679744,-0.0022541732,0.0055974596,0.002376981,0.0049478696,0.0004993115,0.0058753933,-0.03143885,0.005125618,-0.015357464,-0.0020360274,-0.023773044,-0.004411393,-0.019002922,-0.016714815,-0.0019148353,-0.01089113,0.007129328,-0.0071939635,-0.009656587,-0.050286643,0.020463692,-0.0015900404,-0.0067932215,-0.020024167,-0.020864433,-0.0244194,0.0023155771,0.0033125842,0.041728865,-0.04265962,-0.020825652,-0.0035840545,-0.020670526,-0.016327001,0.02237691,-0.0029570875,-0.017981676,-0.005468188,-0.008428507,-0.014685252,-0.010193064,-0.009566097,-0.019597571,-0.005445565,-0.028517311,0.003364293,-0.0080019105,0.0070259105,-0.002501405,-0.021821043,0.010483925,0.016753597,0.018989995,0.0025159481,0.025401866,-0.006479738,0.030533947,-0.016611397,-0.02519503,-0.008305699,-0.0073749437,-0.010199527,-0.010632588,-0.011970548,0.008467289,0.028724145,0.008273381,0.039195143,-0.011246627,0.032007642,0.018640961,0.014336218,0.004715181,0.006832003,0.0011076959,0.017813623,0.04958858,-0.01623651,-0.028569018,0.017994603,-0.021821043,0.0043241344,0.0038878429,0.007594705,0.038729765,-0.009527315,0.008047156,-0.026526527,0.00745897,0.0061630225,-0.007943738,-0.012675079,-0.0010834574,0.019532936,0.012953012,0.00031227167,-0.019481227,-0.020218074,0.010736004,0.012364826,-0.0173741,0.015732352,-0.0007433116,0.019791478,-0.01809802,0.012093356,0.013049966,0.0155513715,0.032369602,-0.021394446,-0.008098865,0.050234936,-0.0076851957,-0.000782901,0.033869155,0.0034806372,0.015796987,-0.00036640413,-0.0067609036,-0.03224033,0.001750014,0.009953911,-0.023074977,-0.0020327957,0.017774843,0.016663106,0.029629046,-0.0016918418,0.0018194974,0.014724033,0.01139529,0.0074912882,0.0073749437,0.017839478,-0.03870391,-0.013230946,-0.0020715771,-0.0046763993,-0.01289484,0.018809015,-0.015525517,0.029008543,-0.005322757,0.021446155,-0.014788669,0.0020974313,0.0035808228,-0.014517198,-0.009385116,0.018033385,0.0043855384,0.02120054,-0.017037995,-0.02419964,0.030456385,-0.022389838,0.032964252,0.020722235,0.013780351,0.002317193,-0.00093398715,-0.015473808,-0.018434128,0.02425135,-0.01964928,0.036506295,0.022002023,0.024884779,-0.0056588636,-0.02006295,-0.038755618,0.026681654,0.02551821,-0.009443289,-0.0125134885,0.010025011,-0.0053033666,-0.020580035,-0.00036418228,-0.008913276,-0.0011424376,-0.0068255393,0.028594874,-0.018110948,-0.011776641,0.014620616,0.00540032,-0.012267873,-0.0014252191,-0.028129496,-0.0042950483,0.08066547,0.05007981,-0.0014389543,0.0017661729,0.0044921874,0.008725831,0.0015383319,-0.03911758,0.022118367,-0.0051967176,-0.015486735,-0.0070259105,-0.012978867,0.028181205,0.0015746894,0.005972347,0.011104429,0.00023672858,0.014491344,0.0017435504,0.006644559,-0.010167209,-0.035653103,0.023255957,0.004359684,0.04498651,0.020618817,-0.019209757,0.016895795,-0.008738759,-0.0039007699,-0.0026985442,0.0071939635,0.0027260145,-0.012254946,0.027612409,-0.013573516,-0.009960375,0.013024111,0.01043868,0.01114321,0.0152669735,0.02629384,-0.017206047,0.016805306,-0.0045503597,-0.024923561,0.029499775,0.006182413,-0.020399055,0.029344648,-0.011169065,-0.0101866005,-0.0057590487,0.010025011,0.0068837116,-0.0347482,-0.02279058,0.0030168756,0.005497274,-0.025104541,0.013457172,0.0021927692,0.008771077,-0.011951158,0.0013702788,-0.011227237,-0.024173785,-0.0033287432,-0.010716614,0.004883234,-0.02597066,0.012235555,0.022027878,-0.002919922,0.010205992,0.0244194,-0.029189523,0.0055166646,0.04752023,0.0037908892,-0.006767367,0.037333634,0.00982464,0.010425753,-0.0122097,0.011078575,-0.0059626517,-0.023527427,0.034179404,0.026526527,-0.00069483474,-0.010205992,-0.0073490893,0.007045301,-0.0024238422,0.009785859,0.04754609,-0.019158049,-0.0026532991,-0.0041528493,0.0142715825,0.003302889,-0.034903325,0.012843131,0.0062405854,-0.0065314467,-0.0048024394,-0.010296482,-0.0026436038,0.0123001905,0.000037670547,-0.014025967,-0.011796032,0.006127473,-0.0021539878,-0.018434128,0.014724033,0.008409116,-0.0127978865,0.0038813793,-0.04216839,0.014103529,0.0022929546,-0.015460881,0.013857913,0.0021863056,-0.039815646,0.01851169,0.0060725324,-0.00543587,0.0045956047,-0.011699078,-0.011194919,-0.023566209,-0.0019164511,0.012138601,0.026319694,0.009352799,-0.034593076,-0.008189355,-0.0025078687,0.012507025,-0.015835768,-0.025324302,-0.027845098,-0.022570819,0.007646414,-0.017671425,0.032912545,0.0017742524,0.027483137,-0.038781475,-0.02114883,0.01071015,-0.0155513715,-0.0062696715,-0.0076334868,0.016908722,0.02132981,0.0021507558,-0.016973358,0.020683452,-0.014762814,-0.009953911,-0.027353866,0.00092348387,0.005969115,-0.015603079,0.009514389,0.011427607,-0.0024400011,0.040358588,0.0001750216,-0.008376799,0.016973358,0.0017952591,-0.011266018,-0.022713017,0.0026759217,-0.023074977,0.008253991,0.018821942,0.013088748,0.001459961,0.01674067,0.014930868,0.015202338,0.0035291142,-0.013082284,0.015202338,0.0028181204,0.03947954,-0.021717625,0.009999157,0.019610498,-0.028232913,-0.020567108,-0.0043370617,0.015577225,0.018123876,-0.0098311035,0.004404929,0.013754496,0.024923561,0.01683116,-0.016262366,-0.00534538,0.018408272,-0.022855215,-0.0035226506,-0.036247753,0.0040041874,-0.0065023606,-0.002992637,0.008318626,-0.020140512,0.018912433,-0.011369435,-0.022958633,-0.018485837,-0.0059658834,-0.0013557357,0.008092401,0.014659397,0.010380507,-0.04421088,0.0025434184,0.0135605885,-0.014465489,-0.014995503,0.016753597,0.029448066,-0.010147819,-0.013276191,0.009191209,-0.0071164006,-0.0065023606,-0.007885566,-0.000721497,0.004792744,0.00530983,-0.0033966107,0.009572561,-0.055017985,0.044236735,-0.019002922,-0.0041173,0.019274393,-0.010555024,-0.023436937,-0.006605778,-0.014000112,0.021549573,0.031826664,-0.00035206307,-0.01071015,0.010302945,-0.013780351,0.005325989,0.030301258,0.04384892,-0.002441617,-0.011149674,0.016404564,0.0053938567,-0.022635454,-0.00937219,0.008667659,0.019869043,-0.035136014,0.014853304,-0.013922549,-0.001119815,0.0030217231,-0.0062405854,-0.0072327447,0.00055303995,0.004572982,0.0032350214,0.021730553,0.0154091725,-0.026681654,0.0005481923,-0.006460347,0.0099733025,-0.017994603,0.008105328,0.022532037,-0.019067558,-0.0026193655,-0.051682778,-0.022661308,0.01796875,0.008583633,0.013133992,0.026888488,-0.0059206383,0.006515288,-0.005371234,0.015150629,0.036558002,-0.015926259,0.0215625,0.0010010469,-0.020140512,0.009650123,-0.006615473,-0.0142715825,-0.021523718,0.019571718,0.0023721335,-0.009869885,-0.017671425,0.019494154,0.02542772,0.0010067024,0.013664006,-0.029706609,0.011046257,-0.018498763,0.018718524,-0.0035355778,-0.0052710488,-0.020024167,-0.007252136,-0.01052917,-0.001704769,-0.027741682,0.0012248482,-0.0007275566,-0.008544851,0.002225087,-0.036221895,-0.009507924,0.0055522146,-0.019494154,0.019933678,-0.0006815036,0.006812612,0.01833071,0.0037682666,0.012759105,0.018434128,-0.023643771,-0.0018550472,-0.029913444,-0.026940197,-0.030223696,-0.0106842965,-0.0073490893,-0.006696268,0.018524617,-0.03275742,-0.040539566,-0.0044275518,-0.026267985,-0.019248538,-0.012461781,-0.0022832593,0.014814523,0.008861567,-0.026371403,0.028000224,0.020515399,-0.00048598036,-0.012681542,-0.019028777,0.016637253,0.0010543714,-0.020683452,-0.002501405,-0.019132193,-0.008344481,0.028853416,0.03648044,0.010626124,0.00368424,-0.0011448615,-0.0025902793,-0.0068837116,0.0096178055,0.027379721,-0.00973415,0.020437837,-0.016572617,-0.0043079755,-0.019571718,0.006324612,-0.005603923,0.00069725857,0.012138601,0.021808116,0.0034450877,-0.028698292,-0.027948515,0.006773831,0.004062359,0.0049187834,-0.014879159,-0.011207846,-0.0040817503,0.0012264642,-0.027689973,0.005248426,0.013586443,-0.0055813002,0.005940029,0.026164567,0.0013751264,-0.00841558,0.0065185195,-0.022363983,-0.026229203,-0.03748876,0.0041948627,-0.030714927,-0.042737186,0.009242918,0.017477518,-0.02983588,0.0044437107,0.019520009,-0.020851506,0.014620616,-0.03521358,0.0092817,-0.044366006,-0.0014947027,-0.008525461,-0.009055474,-0.044598695,0.0037811936,-0.010852349,0.009663051,0.002084504,0.23103417,0.019132193,-0.0063924794,0.013211556,0.0029102264,0.011699078,0.015176483,-0.005445565,-0.012494098,0.0049769557,-0.0065055923,0.028672436,-0.008758149,0.0054261745,0.011531025,-0.017658498,-0.040177606,-0.03319694,-0.0034967961,0.024367692,-0.009443289,-0.0075623873,0.006735049,-0.017684352,0.0077498313,-0.012138601,0.011957621,-0.011181992,-0.015952112,0.018757306,-0.027095323,-0.017580936,0.0152669735,-0.0006697884,-0.0046053003,-0.0036422268,0.025078686,0.011227237,0.029241232,0.027664118,-0.007833858,0.00745897,-0.008493143,-0.012752641,-0.023734262,0.01760679,-0.00097115274,-0.0082346,-0.017929967,0.0077498313,-0.03653215,-0.023191322,0.027250448,0.032188624,-0.0031590743,-0.020528328,0.034567222,-0.008027765,-0.019158049,-0.011880058,-0.011317727,0.009217064,0.014620616,0.021523718,0.0028730608,0.021510791,-0.025660409,-0.032007642,0.018809015,0.02815535,0.01041929,0.008577169,0.02019222,0.005510201,-0.027250448,-0.020580035,0.014387927,-0.013819132,0.015047212,0.010729541,0.0015981199,0.0008895501,-0.012254946,-0.017231902,-0.005216108,-0.026552383,-0.0038555248,0.009811713,0.0057945987,-0.005161168,0.006166254,-0.019015849,-0.007310308,-0.0020780407,0.022635454,-0.0015763054,0.008913276,0.035911646,-0.021097122,0.006059605,-0.019532936,-0.004724876,0.0018324247,-0.0018033385,0.0030588887,-0.019248538,0.0113047995,-0.000491636,0.007290917,-0.008163501,0.014323291,-0.008544851,0.004899393,-0.0023398155,0.017942896,0.017723134,0.019610498,-0.005762281,-0.013431317,-0.0026985442,0.027457284,-0.024600381,0.0030314187,0.0009824641,-0.014038893,-0.024677945,0.011065647,-0.0125845885,0.0010543714,-0.037075087,0.034593076,0.0017370868,0.028388038,-0.04139276,-0.027819244,-0.024303056,0.0019827029,-0.022260565,0.017464591,0.0061953403,0.012222628,-0.010522706,0.0077498313,0.01173786,-0.002808425,-0.004366148,-0.006036983,-0.02114883,-0.004753962,0.003622836,-0.0033416704,-0.010561488,-0.00003145945,-0.020631744,0.009430362,0.0057945987,-0.031025179,-0.02306205,0.01791704,0.0061404,-0.02215715,0.018705597,0.008803395,0.023669627,-0.007769222,-0.010703687,-0.16122751,0.026810925,0.01970099,-0.004556823,0.003761803,0.0135088805,0.0126556875,0.035497975,0.0029683986,-0.009701832,0.0149825765,0.037669737,-0.012830204,-0.005232267,-0.02083858,-0.008079474,-0.022648381,0.0004484108,0.03247302,0.001750014,0.005620082,-0.009695369,0.009708296,0.008848639,0.00205865,-0.008008375,-0.027483137,0.022635454,-0.0076851957,-0.01659847,0.0045083463,-0.0111108925,0.030352967,0.025117468,-0.0026985442,-0.0043209027,0.0019067558,0.02288107,0.021730553,0.017490445,0.0039007699,-0.020735161,0.0012272721,-0.0011690998,-0.03425697,0.024574528,0.008266917,0.0063795527,-0.0037391805,-0.022803506,0.017361173,-0.0034450877,-0.018227292,0.011802495,0.016908722,0.029861735,0.011860668,0.008092401,-0.0015730736,-0.009818177,0.00097438454,-0.013172774,0.013599371,-0.0008935898,0.017050922,0.033015963,-0.0034353922,0.009721223,-0.034489658,0.0215625,0.018279001,-0.014400854,0.0063795527,0.028775854,0.04048786,-0.010031475,-0.03479991,-0.011059184,-0.019623427,-0.015525517,-0.023669627,0.026164567,0.005232267,0.030404676,-0.017283611,0.014568907,0.009637197,-0.027353866,-0.01175725,-0.0069354204,0.020554181,-0.015706496,0.003283498,-0.02815535,0.028077787,0.026164567,0.0061630225,0.014711106,0.018175583,0.002228319,0.009074865,-0.013121066,-0.018291928,0.014633543,0.04325427,-0.0077045863,-0.017425809,0.0030184914,0.025272595,-0.008221673,-0.031774953,-0.025091615,0.015215265,0.045426033,-0.008118255,0.0035937498,0.016546762,-0.03311938,0.0070065195,-0.009469143,0.020114658,-0.039246853,0.0044889557,-0.0007089738,-0.015318682,0.001488239,-0.0976259,-0.020295639,0.018046312,-0.018214365,-0.031464703,-0.0440299,0.018589253,0.051967174,0.0021200539,0.040513713,-0.017904114,-0.012196774,0.0027551006,0.0018905968,0.02196324,-0.023811825,-0.010483925,-0.0008152189,-0.001977855,0.009753541,-0.023372302,-0.022622526,-0.007213354,0.015512589,-0.009087792,-0.022066658,-0.018175583,0.00097438454,0.014620616,0.011776641,0.027379721,-0.024665017,0.0063989433,-0.028310476,-0.03547212,0.0017855637,-0.013948403,-0.015370391,0.044055756,-0.013495953,-0.013638152,0.014866232,-0.01219031,-0.03407599,-0.010180137,-0.011892986,-0.026914343,0.05163107,0.0029974848,-0.018977068,-0.026578236,-0.0007077619,-0.041108362,-0.022532037,0.039608814,-0.026345547,-0.009333408,0.0048412206,-0.006544374,0.006373089,-0.011097965,0.024277203,-0.030171987,0.0031655377,0.004579446,-0.018977068,-0.0017694047,0.005280744,0.017516298,-0.0076334868,0.0061468636,0.018498763,-0.028232913,0.027689973,-0.012662151,0.019235611,-0.027845098,0.00013906794,-0.0053421482,0.004501883,-0.032550585,-0.018059239,-0.0149825765,-0.03738534,0.012377754,0.021510791,0.005946493,-0.0077950764,0.008047156,-0.0077562947,-0.018589253,0.01655969,0.0125845885,-0.02251911,-0.025078686,-0.00034600345,-0.029396357,0.0122808,0.027741682,-0.010076719,-0.008473752,-0.0011416296,-0.048011463,0.034929182,-0.003651922,-0.020075876,0.009714759,-0.027353866,0.022713017,-0.025117468,-0.029318795,-0.020321492,-0.001596504,0.027793389,-0.0058560027,-0.017322391,-0.011169065,0.0005344572,0.011175528,-0.010949302,-0.0051191547,-0.019028777,-0.0046117636,-0.0359375,0.017891187,-0.0015973119,-0.016029676,0.013857913,0.002103895,0.025531137,-0.003994492,0.0012773648,0.029163668,-0.011194919,0.0025821999,0.032085206,-0.0068837116,-0.036273606,-0.0015270206,0.031955935,-0.0113047995,-0.029396357,-0.015241119,-0.029758317,0.018291928,0.002808425,-0.0152669735,0.010134892,0.012177383,0.006583155,0.015499663,0.033403777,0.022079585,0.01166676,0.00464085,-0.008480215,-0.003958942,-0.03947954,-0.0052904394,-0.018162657,0.0008952057,0.011117356,0.04121178,-0.010380507,0.004511578,-0.000082208644,0.01271386,0.016029676,-0.005952956,0.0005405168,0.0020683452,-0.030895907,0.011434072,0.024600381,0.008816321,-0.005322757,0.020334419,0.0125845885,-0.0041076043,-0.007258599,-0.005571605,0.011892986,-0.0024125308,-0.010199527,-0.01139529,-0.0023301202,0.012455316,0.03420526,-0.012843131,0.015111848,0.00561685,0.025867242,-0.016533835,0.013767423,-0.010277091,0.0056427047,0.005261353,0.015719425,-0.003299657,-0.001305643,-0.0019212989,0.03224033,0.008977911,0.015435027,-0.0018227292,-0.018085094,0.00084672886,0.02197617,-0.015861623,-0.00028520543,0.0014058284,0.0073490893,-0.010729541,-0.018705597,-0.0039815647,0.02105834,0.010723078,-0.010231846,0.0026306766,-0.017516298,-0.008544851,0.023708407,0.0047830483,-0.00095660967,0.014232801,-0.002026332,0.0039233924,0.02629384,0.009107183,-0.015887477,0.019002922,0.022674235,0.028569018,-0.015370391,-0.018731453,-0.022092514,0.011925303,-0.016171874,0.00038135116,0.04560701,-0.00841558,0.06510117,0.019713916,0.0021459083,0.0035743592,0.004485724,0.0035355778,0.02524674,-0.00745897,-0.010238309,-0.018472908,-0.006922493,0.0026613786,-0.0049090884,-0.0173741,-0.0050997636,0.012177383,0.006651023,0.027483137,-0.029111959,0.024147931,0.030585656,-0.010697223,0.008441434,0.010664905,0.012500562,0.0026371402,0.015422099,0.007956666,-0.039195143,-0.0048315255,0.014853304,0.002902147,-0.040281024,-0.0040009553,0.009061938,-0.04439186,-0.011362972,0.006431261,0.008784004,0.018408272,0.024716726,0.016895795,-0.0023996036,-0.009540242,-0.016339928,-0.016805306,-0.01157627,0.0000086728105,-0.038755618]},{\"id\":\"4830eddd-c7a0-4eb4-99df-7f2a76873404\",\"text\":\"There is no easy way to add a new bounty for the same brand. Or switch social media for the bounty. I started a bounty with instagram but I wanted tiktok instead and now its just sitting there and I can't get credit for my tiktok\",\"vector\":[-0.024726296,-0.007018732,-0.0062887305,-0.012657828,-0.02263675,-0.0015596253,-0.03996927,-0.01025351,-0.011633147,-0.013823152,0.019422064,-0.021618767,-0.012436818,-0.014881319,0.009851675,-0.0049593234,0.02885181,-0.008699745,-0.011238008,-0.012651131,-0.03404889,0.0019371834,-0.025235288,0.029843006,-0.00841846,0.0062887305,0.027351623,0.002481336,-0.00499281,0.0068780896,-0.0073335036,0.01656903,-0.037504677,-0.018765733,-0.037745778,-0.019140778,-0.004955975,-0.032655858,0.0130060855,-0.013809757,0.003837532,0.031664662,-0.014198198,-0.0003285845,-0.03340595,-0.0023875744,-0.012195717,-0.005183682,-0.020279314,0.007728642,-0.030539522,-0.012403332,-0.04077294,0.009135067,0.0023825516,-0.0074942377,0.021993812,0.007045521,-0.005635747,-0.005210471,0.0030941358,-0.0035328064,0.00016251329,-0.011291586,-0.0077688256,-0.0039480366,-0.010286996,0.007172769,-0.013682509,0.020466836,0.024110148,-0.011016998,0.031316403,-0.008056808,0.0142785655,0.0036935408,-0.006261941,0.0036332654,0.027418597,0.009048003,0.013635628,-0.014908108,-0.015792146,0.031852186,0.03228081,0.010615163,0.0022502805,0.030244842,0.011927826,0.012436818,0.010936631,0.02082849,0.024980793,0.012403332,-0.020560598,0.026012171,-0.0072330446,0.021819685,0.0030556265,-0.0013176865,-0.014131226,0.0010883053,-0.033593472,-0.021712529,-0.02577107,0.009704335,0.02674887,0.011351861,0.021377664,-0.0018333759,-0.017828114,0.037826143,0.009938739,-0.023922624,-0.009757913,0.005672582,0.0009125021,-0.029039335,-0.027137311,-0.010106171,0.03394173,-0.01784151,-0.0060442802,-0.011726908,0.02260996,-0.0023825516,-0.0031493881,-0.01926133,0.007246439,-0.015618018,0.05148856,0.009724426,-0.010019106,0.015430495,-0.020882066,0.02376189,-0.011981404,-0.005116709,-0.006801071,-0.0091886455,0.018136188,0.037183207,-0.021967024,0.02195363,-0.0005550357,0.007500935,0.011813973,0.0004378336,0.015751963,0.008030019,0.00396478,-0.0109165395,0.0051133605,-0.010909842,-0.009175251,0.014385722,-0.00039702214,0.0059773074,0.0037538162,-0.0066503827,-0.019247934,0.017078022,-0.009590481,0.01793527,0.038629815,0.012470304,0.013548564,-0.04358579,-0.023882441,0.01727894,0.03362026,0.007125888,0.0024763132,0.016944077,-0.0056692334,-0.0071057966,0.013414619,0.019047016,0.00976461,-0.01923454,-0.014265171,0.0069249705,0.0041958354,0.04329111,-0.018015638,-0.03169145,0.00040748663,-0.006255244,0.0029133095,-0.02260996,-0.009449839,0.012631039,-0.007654972,0.00143154,-0.60736144,0.0035160633,0.0129525075,0.00057429034,0.009824885,0.015899302,-0.0042594597,0.012771681,-0.02660153,0.025047764,-0.021618767,0.0020208992,0.009329288,0.0019890873,0.0023423678,-0.016220773,0.033995308,-0.01852463,0.0049492777,0.012061771,-0.004882305,-0.013695904,0.005046388,0.011974707,0.008472038,-0.023266293,0.0022603264,0.015631413,-0.016033249,0.05207792,0.005736206,0.019247934,0.025543362,-0.005729509,0.04862213,-0.0134614995,-0.0039312937,0.024445012,0.0076683667,0.007601394,-0.05572123,-0.025757674,-0.004326432,-0.023802074,-0.012215808,-0.00090078195,0.01952922,-0.00086059835,0.0041221655,-0.011961312,0.008960938,0.0023306475,-0.005582169,0.0079161655,0.00024779874,-0.010193235,0.0037471189,-0.00009365704,0.0006852138,-0.000848041,-0.037692197,0.0032950535,-0.028155295,-0.04077294,-0.02011858,-0.0033787694,-0.00834479,0.009516811,0.006174877,-0.0041857897,-0.019569404,0.004326432,-0.010896447,-0.004855516,0.0005433155,0.0171316,0.03198613,-0.002508125,0.00052447943,0.014975081,-0.020426653,-0.0036935408,-0.0049593234,-0.018029032,0.02207418,0.0060677207,-0.028985756,0.0097980965,0.008438552,0.012410029,0.0011469064,0.029360803,0.0007220487,-0.012684617,0.005063131,0.026775658,0.00034407192,-0.0049057454,0.024712902,-0.01301948,-0.012209111,-0.0013428013,-0.00096440595,-0.005491756,0.042916063,-0.001881931,0.0059505184,-0.0052941865,0.042755328,-0.0305931,-0.009503417,-0.020265918,0.0071593747,0.0128520485,-0.0020242478,-0.031611085,0.023092164,-0.028557131,0.017064627,0.00066512194,0.01911399,0.0006287056,0.010286996,0.010722319,0.011090668,0.06198987,-0.009436444,-0.0041790926,0.005364508,0.019462248,-0.0069785486,-0.019100595,0.018029032,0.0036935408,-0.0043599186,0.042058814,0.008632773,-0.0068513006,0.006446116,-0.031584293,0.012322965,-0.0031845488,0.010387455,0.011566174,-0.0046880846,-0.01798885,-0.0013921936,0.0057763895,-0.021002619,0.0006153111,0.008867177,-0.014747374,-0.016743159,-0.0007584651,0.0095436005,0.0013821478,-0.021444637,-0.023842258,-0.03423641,-0.007346898,0.0036031278,0.025730886,-0.0045708823,-0.023306476,-0.031798605,-0.026775658,0.0012548998,-0.019515825,-0.0019807157,-0.006991943,-0.013140031,-0.009992317,-0.010903145,0.013119939,0.0031443653,0.010936631,-0.03169145,0.010876356,0.0018032382,-0.0040886793,0.015966276,-0.005317627,-0.0066604284,0.013220398,0.0014826066,0.0009627316,-0.012034982,0.03512045,-0.030994935,0.032146864,-0.0074607516,-0.0058668028,0.012477002,0.019127384,-0.00056466303,-0.0031125532,0.023507394,0.0076348805,-0.006991943,0.0074339625,0.019274725,0.021417849,0.03849587,-0.032414753,0.0023088816,-0.008438552,-0.0074942377,-0.00976461,0.0049057454,0.017720958,-0.005836665,-0.008096991,0.0059404727,-0.006774282,0.023574367,0.046211116,0.0013896822,-0.0076683667,0.024230698,0.020547204,-0.013649023,-0.025717491,0.004882305,-0.0043900562,0.017185178,0.0031159017,0.019314907,-0.006700612,0.025838042,-0.014251776,-0.0080166245,0.0037303758,0.00699864,0.0018099354,0.0066872174,-0.0069249705,0.0060677207,0.008880571,0.03112888,-0.0022017253,0.011485807,0.015055448,0.011338467,0.010139657,0.031236036,0.01825674,0.024404828,-0.024378039,0.0005127592,0.0154974675,-0.0034390448,-0.012356451,-0.038897704,-0.0032113378,0.013421316,-0.02745878,-0.018069217,0.0126980115,0.028074928,0.01644848,-0.0075946967,0.0015654853,-0.012925718,-0.0055486825,0.017225362,0.0068312087,-0.0026973228,-0.005264049,-0.0031192505,-0.0050497367,-0.025797859,-0.011217916,0.020868672,-0.004155652,0.023654735,-0.012503791,-0.023748497,0.009248921,0.007346898,-0.00050689914,-0.018203162,-0.023494,0.030084107,-0.0011192801,-0.01698426,-0.010086079,-0.01047452,0.0076214857,-0.02106959,0.040612206,0.005227214,-0.014693796,0.0046512494,0.0029015893,0.0036232194,0.004755057,0.034477513,-0.035897333,0.011840762,0.0132070035,0.021913446,0.002571749,-0.028342819,-0.013628931,0.034450725,0.0069785486,0.0050129015,-0.023038587,-0.0003262823,-0.01597967,-0.01869876,-0.0021782848,0.011097365,0.004574231,0.023279687,0.013494986,-0.004510607,-0.009456536,0.013796363,0.024873637,0.0015914373,0.0066035017,-0.038335137,0.012450213,0.10110189,0.0073803845,-0.028798232,0.019475643,-0.018363897,0.019087201,-0.011994799,-0.03453109,-0.014251776,-0.01331416,-0.010380758,-0.016917286,-0.0018116097,0.010588373,0.01686371,-0.022167942,0.001727894,-0.018953256,-0.0068780896,-0.011773789,-0.008739929,-0.031664662,-0.0044838176,0.019100595,0.013441408,0.02479327,0.036701005,0.023895836,0.007199558,-0.022449227,-0.011351861,0.0049861125,-0.00007759407,0.027097128,0.004326432,0.015175999,0.010615163,0.019756926,0.016877104,0.008994425,0.006683869,0.020721333,0.013742784,0.016917286,0.01727894,-0.004192487,-0.020399865,-0.0106620435,-0.0013210352,-0.022328677,0.022315282,-0.007936257,-0.011921129,-0.022958219,0.019931056,-0.0053511136,-0.02361455,0.01189434,-0.025583547,-0.035736598,-0.021672344,-0.026842631,-0.011465715,-0.010929934,0.0016558984,-0.019489037,-0.0058668028,-0.035334762,-0.014506273,0.0010481217,-0.0008158104,0.009168553,-0.021257114,0.019864082,0.011117457,0.002295487,0.01316682,0.006134693,0.017319122,0.022958219,-0.020587388,-0.03136998,-0.015162604,-0.016676186,0.0024160377,-0.0049660206,-0.010554887,-0.008920755,-0.009161856,-0.0050229477,0.030807411,0.029521538,0.012919021,-0.015885908,0.014412511,0.0025583545,0.02068115,0.017587014,0.018953256,0.00026328617,0.007393779,-0.01769417,-0.012128744,-0.005572123,0.0020962434,0.008257726,0.008264423,0.0137159955,-0.0065499237,0.0031142274,0.014506273,0.010072684,0.014131226,0.021605372,0.0021481472,0.018846098,-0.019743532,-0.0017747747,0.010635254,0.004436937,-0.009088187,-0.028182084,0.012590855,0.024485195,-0.018618392,-0.0030087456,0.017787931,-0.047336258,-0.02305198,-0.0075879996,-0.021632161,0.0034323474,-0.022918036,-0.009014516,-0.036995683,0.00878681,0.011318375,0.018055823,0.0161538,-0.0021933538,-0.022315282,0.014010675,-0.00301042,-0.03734394,0.0027023458,-0.03852266,-0.035736598,-0.002295487,-0.0032799847,0.049023967,-0.009396261,-0.008518919,-0.03763862,-0.010628557,-0.0014817695,-0.0005110849,-0.028691076,0.007983138,0.030539522,0.0217795,0.005953867,-0.014251776,0.016796736,-0.0054147374,0.0034624853,0.0030305118,-0.017493252,-0.008324699,-0.027485568,0.014318749,0.003472531,0.00508992,0.0084251575,0.0015395334,-0.0040217065,0.01054819,-0.029923372,-0.0016893847,-0.013796363,-0.030485943,-0.018872889,0.00047927292,-0.0040585417,0.0047416626,-0.026253272,0.017037839,-0.014492878,0.029843006,0.03570981,0.024244094,0.011412137,-0.023869047,0.020841883,0.011974707,-0.00007319899,-0.015912699,-0.052774437,0.0074138707,0.0070321267,0.017493252,0.0039949175,-0.0018467704,-0.028449975,-0.015751963,-0.018270135,0.038683392,-0.0048387726,-0.024445012,-0.019957844,-0.03568302,-0.0061715282,-0.042916063,-0.026722081,0.017319122,0.00070363126,0.022958219,-0.0132070035,-0.00043029917,-0.008860479,-0.014506273,0.0104075475,-0.03145035,0.05006874,0.014332144,0.031262826,0.0523726,0.01612701,-0.011083971,0.035816964,0.0056123068,-0.0031359936,0.008505524,0.03225402,-0.01739949,-0.018417474,0.006389189,-0.0039312937,-0.029575115,-0.008552405,0.0327898,-0.013548564,0.0016927334,-0.018189767,-0.0049258373,-0.011365256,0.023520788,-0.018658577,0.020332891,0.009208737,-0.01867197,-0.008304606,0.004661295,0.019730138,0.016662791,0.029789427,0.0007061427,-0.017372701,0.0060677207,-0.016595818,-0.0025248684,-0.00007921607,0.009282407,-0.004728268,0.029655483,0.010869659,-0.0061212988,-0.017185178,-0.01899344,0.010615163,0.026829237,-0.024887031,-0.012584158,-0.00778222,0.013334251,-0.010990209,0.0048253783,-0.0010397502,-0.019998029,-0.0041790926,-0.0022402345,0.023507394,0.01111076,0.0017429627,-0.0010690506,0.00025010094,0.01316682,-0.002268698,-0.0074071735,-0.00031288777,-0.025436206,-0.008579195,-0.020520415,0.019596193,-0.0037571648,0.0040217065,0.038844127,0.020841883,0.033647053,-0.044925243,-0.022971613,0.004065239,0.010293694,-0.01309315,0.0058165733,-0.011438926,-0.041201565,0.004393405,-0.013675812,-0.025087949,-0.028691076,0.013294068,-0.0039949175,0.012423424,0.023293082,0.018618392,0.0006986083,0.017801326,-0.023587761,-0.028235663,0.00890736,0.006255244,0.023681523,0.009577086,0.019060412,-0.0063121705,-0.04363937,0.042273127,0.004490515,-0.022154547,-0.013468197,-0.011150943,0.023520788,-0.039487064,-0.0122425975,0.0012800145,-0.020748122,-0.02334666,0.024605745,-0.014600034,-0.01881931,-0.0057328576,0.03688853,0.028155295,0.019194357,-0.0074339625,-0.019609587,-0.00086310983,-0.011030393,-0.020734727,-0.012939113,-0.037531465,0.017185178,0.0122425975,-0.030351998,-0.027123917,-0.013086453,-0.03340595,-0.011365256,-0.0061246473,0.0032247324,0.000879853,-0.009731124,-0.013809757,0.041844502,0.010367364,0.013454802,-0.008632773,0.0058868947,0.0014290286,0.0062585925,-0.0026671852,-0.008806901,-0.021029407,-0.005438178,0.023400238,0.018752338,0.009510114,0.024270883,-0.020573992,0.009757913,-0.0020476882,-0.0044436343,-0.004098725,0.00083129783,0.040880095,-0.017680775,-0.024712902,-0.00011155129,0.012838654,-0.0048387726,-0.022810878,-0.0014256799,-0.0018216557,0.05797151,-0.039192386,-0.008117083,-0.03423641,-0.00030326046,0.023400238,0.025663914,0.00357299,-0.00682786,0.015323339,-0.035575863,-0.025087949,0.026922999,-0.0063322624,-0.024270883,0.026373824,-0.034959715,0.0047784974,0.008880571,0.02207418,-0.012657828,0.0006228455,-0.0040618903,-0.028262451,-0.0018517934,-0.0017144994,0.017091416,-0.0070053376,-0.03688853,-0.005880197,-0.024659324,0.009858372,-0.033272006,-0.022315282,-0.029950162,0.023681523,0.0012992691,0.019288119,-0.04872929,0.0016257607,0.024150332,0.006965154,0.025221894,0.24838811,0.003954734,-0.020332891,0.047095157,-0.005063131,-0.004045147,0.015202788,0.03262907,0.011566174,0.0022971614,0.019060412,-0.009048003,-0.01358205,-0.011813973,0.0012197391,-0.012965902,-0.017667381,-0.00084343663,-0.012624341,-0.015068843,-0.009958831,0.016528847,-0.01111076,-0.0107692,0.024136938,-0.024538772,-0.008572497,0.00349932,-0.00018281436,-0.00088403875,-0.01573857,0.010722319,0.029816216,-0.0085658,-0.017560225,0.0034591365,-0.014104437,-0.018162979,0.023306476,0.04672011,0.016957471,-0.008364882,0.021725923,-0.023333266,0.017345913,-0.007554513,0.004299643,0.013863335,0.008927452,0.011499201,-0.0015236274,-0.033298794,0.028476764,0.0144794835,-0.014037464,-0.004256111,-0.0021648903,-0.0077889175,-0.008264423,0.0121890195,-0.0058601056,0.01757362,0.028503552,0.021297298,-0.0132070035,-0.001680176,0.0077420366,0.0039045045,0.021350875,0.008773415,-0.011164338,-0.0097980965,-0.008659561,0.025007581,-0.009637362,-0.030432364,0.019837294,0.016555635,0.044684142,0.048273876,0.007835798,-0.011459018,0.0001999761,-0.017078022,-0.025422812,-0.016555635,0.01610022,0.0006366586,-0.019006833,-0.0024712903,-0.016756553,-0.0040484956,-0.033647053,-0.032682646,-0.019368486,-0.016220773,0.013233792,0.003800697,-0.012376543,-0.028717866,-0.023386844,0.0198239,0.0041857897,-0.014693796,-0.011813973,-0.0042058816,0.007956349,-0.0066436855,0.024485195,-0.015966276,0.000286308,-0.025262078,-0.009597179,-0.0015705082,0.0059337756,0.031503927,0.0021749362,-0.027150705,0.019569404,-0.00026014683,0.0030556265,-0.034156043,0.013267279,-0.015966276,-0.004955975,-0.0024478498,0.0062217577,-0.008384974,0.011057182,-0.048461396,-0.010655346,0.026226483,-0.006780979,-0.0104075475,-0.025864832,-0.0028563829,0.011653238,-0.03455788,0.008458643,0.019984635,-0.023507394,0.013079755,0.016167194,-0.0061246473,0.016167194,-0.053444162,0.009791399,-0.03482577,-0.0108160805,-0.00729332,0.0019288119,0.008847085,-0.006429373,0.0070321267,0.03276301,0.005762995,-0.008371579,-0.036968894,0.0020761515,0.022556383,-0.02420391,-0.014492878,0.028958967,-0.02917328,-0.028449975,-0.018377291,-0.16866387,0.020962434,-0.0067039607,0.008445249,0.0022435833,0.0016726415,0.010012409,-0.010300391,-0.013796363,0.0065130885,0.036325958,0.0026621623,-0.02532905,-0.022569777,-0.0097980965,-0.029655483,0.0075612105,0.011954615,0.015832331,-0.001377962,0.03420962,-0.0035662928,-0.0149884755,-0.004935883,0.001918766,0.0021866565,-0.01573857,-0.016662791,-0.0012992691,-0.032414753,-0.013126636,-0.017064627,0.0060978583,0.009356077,0.021833079,0.008177359,-0.0012833631,0.0077219447,0.015229577,0.007989835,0.028128507,0.021310693,0.006837906,0.014064253,0.00043322923,0.021123169,0.019515825,0.0020543856,-0.00032502657,-0.0070589157,0.0023674825,-0.0038140914,-0.01796206,0.010936631,0.008693048,0.0025248684,0.008605983,0.011016998,-0.033513106,0.0012900603,-0.0018350502,-0.012972599,0.0046880846,-0.025382629,-0.044925243,-0.015510862,-0.004654598,0.0001630365,-0.00912837,0.015135815,0.0023406935,0.009630665,0.013957097,0.041094407,-0.0072799255,-0.005146847,-0.03929954,0.01822995,-0.0057496005,0.012637736,0.013916913,0.019716743,-0.020815095,0.007447357,0.00089492183,0.0091886455,0.02109638,0.0021749362,0.001722871,-0.033030905,-0.011371953,0.016957471,-0.025195105,-0.017627196,-0.018216556,0.024592351,0.017881693,0.0071057966,0.031048514,0.0048488188,0.0075612105,0.014184804,-0.03546871,0.04270175,0.018859494,-0.008766718,-0.012637736,-0.0008965961,0.015818937,-0.016997654,-0.039219175,0.014492878,0.022877852,0.021591976,-0.0047048274,0.017011048,-0.018484447,-0.013079755,0.005073177,-0.01103709,0.024887031,-0.013849941,0.019020228,0.0064427676,0.0128520485,-0.018337106,-0.10699548,-0.014037464,0.01668958,-0.03086099,-0.0033419344,0.021967024,0.0010238441,0.0016567355,0.010869659,0.02535584,0.0009418027,-0.025409417,-0.0045574876,-0.0007011198,0.020373074,-0.012396635,0.0013721018,0.0014323773,0.006027537,0.037692197,-0.010213327,-0.0022285143,0.0092891045,-0.011954615,-0.01238324,-0.014506273,-0.02633364,0.016368112,0.010990209,-0.0049325344,-0.011244705,-0.005836665,0.0032615673,-0.010822778,-0.014466089,0.0063690976,-0.03340595,-0.009731124,0.02263675,-0.034745403,0.014827741,-0.025757674,-0.0061983173,-0.008900663,-0.021042801,0.015175999,0.002883172,0.007547816,0.015309944,-0.020172158,0.0011653238,-0.013407921,-0.0090346085,-0.03546871,0.0012264363,0.0004717385,0.0069316677,0.037424307,-0.00008784926,0.0154974675,0.0033888153,-0.003924596,-0.01781472,-0.0064126295,0.020453442,-0.0056692334,-0.008800204,-0.031611085,-0.023025192,0.018953256,-0.023627946,0.009483325,-0.015430495,0.01681013,-0.017372701,-0.008009927,-0.012436818,-0.015604624,0.039112017,-0.016019855,-0.024592351,-0.012965902,0.020547204,-0.011485807,0.021109775,-0.0041590007,-0.017600408,0.019864082,-0.0072397417,-0.03220044,-0.01260425,0.0105615845,0.008498827,-0.020935645,-0.024404828,0.009610573,0.0050396905,0.014774163,0.010514704,-0.010320483,0.0053310217,0.007581302,-0.035575863,0.02944117,0.010126262,-0.008137175,0.009644059,-0.007849192,-0.0054884073,-0.032682646,-0.0041958354,-0.0140240695,0.003800697,0.044201937,-0.016301138,-0.0010355643,0.020989224,-0.01970335,-0.007119191,-0.018685365,0.010722319,-0.0006965154,-0.01698426,-0.0154171,0.0037873024,-0.007346898,0.006610199,0.02689621,0.018430868,0.028262451,-0.0031560853,-0.027431991,0.019984635,-0.006392538,0.010514704,0.018350502,0.022100968,-0.019730138,0.0139704915,0.0036265682,-0.008177359,-0.00071744435,-0.0050932686,-0.0033971868,0.013943702,-0.04154982,0.0019237889,-0.020815095,-0.008646167,-0.0011837413,-0.002740855,0.007326806,0.030218052,0.02082849,-0.009416352,-0.014104437,0.020011423,-0.053551316,0.029628694,-0.008096991,0.0021665648,-0.030727044,0.012818562,-0.0008731557,-0.01088975,-0.027030155,0.028932178,-0.008867177,-0.027565936,0.023413632,0.025583547,-0.048863232,-0.007842495,0.0027023458,-0.022288492,-0.016073432,0.0065599694,0.017185178,0.017493252,0.003132645,-0.019931056,0.010943328,-0.029467959,0.013903519,-0.015577835,0.01926133,0.0056692334,0.03929954,0.0075612105,0.016461873,0.024873637,-0.007045521,-0.032950535,0.0057696924,-0.0006006608,0.014010675,0.009603876,0.0063757948,-0.016461873,0.014171409,-0.0030472549,0.013414619,0.0057228114,-0.003218035,0.009556995,0.014050859,0.0053779026,0.027298046,-0.013916913,-0.015269761,0.0015169302,0.019180963,-0.01752004,-0.0066671255,-0.008713139,0.0002865173,-0.029548327,0.0008572497,-0.0018317015,-0.020292709,-0.016622609,0.036379535,0.02263675,-0.01040085,0.019716743,-0.03198613,0.039728165,0.01245691,0.00006671102,-0.032093287,0.012463607,0.0035930818,0.024726296,0.012289478,0.015618018,-0.012008193,0.009858372,-0.0018969999,-0.018926466,0.03514724,0.021699134,0.057650045,0.013501683,-0.030994935,-0.0038207888,0.00068563235,0.029682271,0.03112888,0.01167333,-0.03771899,-0.0033419344,-0.004326432,0.01867197,0.0015328361,0.01204168,-0.022743907,-0.00841846,-0.00063624,0.01727894,0.0034792284,-0.012691314,0.022395648,0.00579983,0.036620636,0.0024478498,-0.012436818,0.007889376,0.01881931,0.018203162,-0.021605372,-0.030753834,0.01935509,0.012624341,0.012075166,-0.00062368263,0.018618392,0.0020979177,-0.013695904,0.02278409,0.0145330615,0.012081863,0.020399865,-0.012838654,-0.013943702,-0.023828862,0.00088487595,-0.014265171,0.010186537,0.018832704,-0.038120825]},{\"id\":\"011327f5-b914-4b1b-8f30-f6d10ea94a2d\",\"text\":\"Never received my package. No update from USPS. \",\"vector\":[-0.029736472,-0.004018614,-0.007326193,0.004961369,-0.028035069,0.00704051,-0.007662665,-0.014258779,-0.0014776182,-0.0044312677,0.0060882317,-0.0058342908,0.00033111506,-0.027933493,-0.007319845,-0.016607732,0.0068056146,-0.0012197096,0.019426474,-0.02300704,-0.0031028397,-0.0031837833,-0.007015116,-0.0030012634,0.009224401,-0.017966315,0.009167264,-0.017064825,0.01523645,-0.013712806,0.005761283,-0.0073642847,-0.030041201,-0.02927938,-0.008132456,-0.008653034,0.01777586,-0.012627209,-0.006646902,-0.015312633,0.003644051,0.024479898,0.0067040385,-0.0024314835,-0.034078863,0.023184799,-0.02154688,-0.01983278,-0.023489527,0.03095539,0.018651955,-0.012582769,-0.012195509,-0.02331177,0.019883567,-0.010417923,0.008088016,-0.0013474736,0.005570827,-0.010005269,0.011122609,-0.0015157094,-0.030041201,-0.013535047,-0.010195725,-0.0046725115,-0.011554308,0.007840424,-0.02048033,0.010595682,0.021965884,0.021623064,-0.0042630318,-0.0018807494,0.028035069,0.019413777,-0.0005308951,0.012754179,-0.010443317,-0.013928656,0.03120933,0.0026965344,-0.003191719,0.01961693,0.00020454141,0.02244837,0.019629627,-0.008354654,0.00046701307,-0.007916606,0.01970581,0.023070525,-0.014385749,0.030142779,-0.0024521162,0.021089787,0.006919888,0.053073637,0.01429687,-0.023210194,0.011579703,0.01167493,-0.02558454,-0.011363853,-0.03245364,0.020835847,-0.030549083,-0.021153273,0.03468832,-0.026714576,-0.021953186,0.009579918,0.020683482,-0.0059390417,-0.010582984,0.010532197,-0.005139128,-0.015261845,-0.010024315,-0.014792054,0.009948133,0.007326193,0.01961693,-0.008164198,0.016848976,0.0063199527,-0.028390586,-0.0066088103,0.018080588,0.030168172,-0.010297301,0.016366487,0.013535047,-0.016074456,-0.002996502,0.018893199,-0.04525226,0.005116908,-0.007865817,-0.034155045,0.007370633,0.023172103,-0.013560441,-0.0019966098,-0.015553877,0.0136366235,0.029609503,-0.018766228,-0.0009641817,-0.033799525,0.023527618,-0.007288102,0.007916606,-0.0027870007,0.0079419995,0.024479898,-0.007834075,0.011414641,0.010436969,-0.041925635,-0.0072690565,0.014779357,0.025114749,-0.025406782,0.0046598143,0.01999784,-0.0022156339,-0.021254849,-0.03202194,0.006361218,-0.014563507,-0.002861596,-0.0036250055,-0.0021108834,-0.009535478,0.025698813,-0.013573138,-0.0089895055,-0.0053549777,-0.009376765,-0.014538113,0.0062659904,0.013611229,0.025127446,-0.024187865,-0.014131808,0.014715872,0.0008999029,0.040935263,0.008214986,0.011573354,0.0038154612,0.0008332434,-0.037456274,-0.6777173,-0.010697258,0.0031028397,-0.012697042,-0.0150206005,0.024403716,-0.011230534,0.04278903,-0.024162471,0.024721142,-0.016303003,0.01618873,-0.0035964372,0.003447247,-0.0007376188,-0.012830361,0.005177219,0.013852473,0.01696325,0.009967178,-0.033494797,0.0111670485,0.00450745,0.0064120064,0.015223754,-0.0015791947,0.028187433,-0.0070722527,-0.053429153,0.042052604,-0.0052724467,0.027654158,-0.009662449,0.01841071,0.045176078,-0.002766368,0.00362818,0.0097830715,0.0018045672,0.017750464,-0.0058438135,0.0041709784,-0.0015474521,-0.021369122,-0.017864738,-0.000008667219,0.011878083,0.00026505077,-0.008792702,-0.008164198,0.034180436,-0.0070912982,-0.028390586,-0.011465429,0.024314836,-0.0024298965,0.03362177,0.02897465,0.006602462,-0.008614943,-0.018613864,0.0035678688,-0.0023457785,-0.00014809909,-0.019083655,0.02022639,-0.025648026,-0.005523213,0.037151545,-0.00897046,0.02077236,0.00047891657,-0.0058279424,0.040986054,0.02515284,0.0061485427,0.007103995,-0.00040134558,-0.0016188729,0.00097608514,-0.0019362989,-0.0026949472,-0.011567006,-0.023375254,0.020721573,0.011389247,-0.011795552,0.0018331355,-0.009033945,-0.007224617,-0.002580674,0.012100281,0.008202289,-0.026028937,-0.025940057,0.00042297022,0.017141007,-0.00628821,0.007440467,-0.023629196,-0.012201858,-0.008335608,-0.009395812,0.014144505,0.049823195,0.013573138,0.0016315699,0.013776291,0.031615634,-0.008151501,0.029634897,0.0011474952,0.0043868283,0.00021287384,-0.00970054,-0.030168172,0.008176895,-0.01086232,-0.017725071,0.01743304,-0.01639188,-0.016861672,0.028060464,-0.00905934,-0.010963896,0.005469251,-0.0043106456,-0.0011855863,0.017636191,-0.008824444,0.018042497,-0.009598964,0.016772794,-0.01120514,0.004405874,-0.012684345,0.02004863,-0.016836278,0.007434118,-0.021191364,-0.011021033,0.018575773,-0.012995423,-0.0031901319,0.028517557,-0.034231227,0.019515354,0.0040154397,-0.018080588,0.024886202,0.0067675235,-0.0304729,-0.007434118,0.003180609,-0.0047486937,-0.013966747,-0.0027012958,-0.019261412,-0.005631138,-0.016239516,0.008741913,0.018982079,-0.008875232,0.0010911521,-0.020353358,-0.024251351,0.0051962645,0.017293371,-0.0052787955,-0.0090149,-0.0021664328,-0.019693112,-0.005069294,-0.013877867,0.021458002,0.00519309,-0.0061421944,0.010195725,0.008589549,0.01554118,0.011617794,0.000345796,-0.0034631183,0.009033945,0.017852042,0.010532197,0.0127986185,0.047588516,-0.036211964,0.013535047,-0.025216326,-0.018664652,0.00051978516,0.0028457246,-0.017014036,0.005078817,0.013966747,0.01064647,0.011655885,0.02691773,0.014360355,-0.013395379,0.005301015,0.020645391,-0.011903477,-0.036770634,0.020213692,-0.025940057,0.036923,0.031031571,0.008138804,-0.0055422587,-0.010786138,-0.024632262,-0.034231227,0.013560441,-0.027958887,0.009414857,0.0015299936,0.009979875,-0.03108236,0.01352235,0.017483827,-0.01283671,0.015871303,0.006786569,0.00828482,0.023806954,0.023591105,0.0006419942,-0.012652603,0.043246128,0.009694192,0.017623495,0.01210663,-0.012722436,0.0134715615,-0.025305206,0.013788988,0.019070957,0.012151069,0.010881365,0.032479033,-0.0033202765,0.009338674,-0.021432607,0.031361695,-0.012512935,-0.005532736,-0.0056946236,0.005761283,-0.0050724684,-0.02773034,-0.005529562,-0.0148936305,-0.02107709,-0.0032091774,0.011363853,0.0339265,0.021775428,0.00888793,0.004675686,0.034231227,-0.0044407905,0.0043709567,0.0055422587,0.0016410927,-0.0041709784,0.005081991,0.0097830715,0.0017394947,-0.0033647162,0.01429687,-0.03425662,0.036719847,0.0068817968,0.010398878,0.0006396135,0.019629627,-0.0029282554,-0.021153273,-0.016887067,0.0050121574,0.008545109,0.016848976,0.018766228,-0.0064532715,0.037532456,-0.015706241,0.041824058,0.011947917,0.015045995,-0.020543814,0.0029076226,0.005339106,-0.00037773701,0.043500066,0.0051867417,0.009065689,-0.0014990446,0.007110344,-0.0018426583,-0.02262613,0.001011002,-0.010481409,0.014055626,-0.016264912,-0.012804967,0.02691773,0.0039011661,-0.0015736397,0.013077954,-0.009535478,0.013839776,-0.019451868,0.0029663465,-0.025876572,-0.0111607,0.03679603,0.041265387,-0.009294235,-0.01653155,-0.018829715,0.018867806,0.08486703,0.0117511125,0.0036599224,0.008964112,-0.014284172,-0.00002344737,-0.0012736721,-0.017890133,0.006862751,0.008906975,-0.012093932,0.005253401,-0.015858606,0.009840208,0.025254417,0.013877867,0.01352235,-0.012773224,-0.014690477,-0.03237746,-0.025571844,-0.009738632,-0.009173613,0.015033298,0.013712806,0.012989074,0.0051708706,0.013420774,0.028060464,-0.0026393977,-0.008938718,-0.0005142302,-0.004853444,0.034789898,-0.01995975,0.040884476,-0.018791623,0.0008419726,0.0006919888,0.045836322,0.017737769,0.0071928743,-0.0008808573,-0.0023235588,-0.0018934464,0.010824229,-0.0057327147,0.010176679,0.00918631,-0.001998197,0.024200562,-0.011706673,-0.0062437705,0.008151501,0.02562263,0.030625265,0.0016966423,-0.009840208,-0.007878515,0.0005856511,0.0033551934,-0.0021172317,-0.014741266,-0.030345932,-0.020759664,-0.047715485,-0.009433903,-0.0072690565,-0.0101195425,-0.008995854,0.015503089,0.02902544,-0.009179962,0.024530686,0.021496093,-0.001290337,0.009192659,-0.009611661,0.012430404,-0.0004955814,-0.009770374,-0.03344401,0.012697042,-0.011903477,0.00828482,0.03009199,0.018080588,-0.00923075,-0.0075103003,0.0048661414,0.005443857,-0.0034155045,0.011198792,-0.0021458,0.015744332,-0.0004916136,0.0011911413,0.03270758,-0.012163767,0.01855038,0.023806954,0.005859685,-0.021369122,0.023083223,0.0076372707,0.009929087,0.0012205032,0.016772794,-0.019921659,0.0049867635,0.005786677,-0.011776507,0.008322911,0.005885079,-0.009135522,0.02798428,0.0013688998,0.0028679443,0.0146015985,0.000414241,-0.02434023,-0.025571844,0.021610366,0.010919456,-0.012970028,0.013687411,-0.008614943,-0.0078975605,-0.03199655,0.01038618,0.000006553112,-0.0055009937,-0.0069008423,-0.0023172102,-0.029507926,-0.005577176,0.023578407,0.011440035,0.012055841,-0.009789419,-0.026993912,-0.011338458,-0.02026448,-0.0244672,-0.0016680739,-0.015045995,-0.018296437,-0.016341094,-0.02536869,0.012684345,0.008614943,-0.0034758153,-0.012284389,-0.008741913,-0.013230318,-0.016087152,0.01815677,0.003447247,0.023756167,0.023159405,0.0125065865,-0.00435826,0.0030520514,0.0019997843,-0.004297949,0.005783503,-0.020835847,-0.0042249407,-0.021927793,0.014461931,0.015617362,-0.00034242336,0.016848976,0.018309135,-0.0075610885,-0.003945606,-0.0013538222,0.0005991417,0.0046248976,-0.03687221,0.022486461,-0.009751328,-0.006485014,0.02498778,-0.006345347,-0.024048198,-0.0070849494,0.012754179,-0.00025969418,-0.010246513,0.0248989,-0.016595034,0.029050833,0.00054359215,-0.0036948393,-0.0071801776,0.0009983049,-0.021000909,0.014652386,-0.004837573,0.020404147,0.028695315,-0.027908098,-0.001206219,-0.008780004,0.018093286,-0.0009832272,-0.0035996116,0.0060755345,-0.00269336,-0.0046407687,-0.03153945,0.004729648,-0.01613794,-0.015655452,-0.0023965668,-0.0030393545,0.004021788,-0.020543814,-0.029431744,-0.004082099,-0.038446642,0.0045233215,0.0077451956,0.031920366,0.027908098,-0.014334961,-0.022943554,0.00096814946,0.014106414,-0.0037329304,0.015261845,0.009262492,-0.008691126,-0.021521486,0.009065689,-0.007465861,-0.0031742605,-0.023895834,0.019134443,0.019858174,0.016455367,-0.013966747,0.0041360613,-0.03679603,0.0062945588,-0.01554118,0.0063294754,-0.018512288,0.0024584648,-0.013255712,0.0023203844,-0.016848976,0.032859944,0.019236019,-0.01429687,0.007396027,-0.0061707627,0.020543814,-0.008551458,-0.025013173,0.008513367,-0.008081667,0.003093317,-0.023553014,0.0022108725,-0.015503089,-0.022435674,-0.013001772,0.013255712,-0.030041201,-0.02897465,-0.0024505293,0.010221119,-0.0010998813,0.01648076,-0.027120883,-0.015579271,-0.022702312,-0.016023668,-0.0010594095,0.022257915,0.0015022188,-0.016214123,-0.0223214,-0.009033945,-0.041011445,-0.008576852,0.024746535,0.0057930257,-0.0032599657,-0.011008335,0.00008431629,0.005748586,0.008773657,0.016252214,-0.0047106026,0.004250335,-0.0123796165,0.011262276,0.022727706,-0.014715872,-0.02940635,0.0012038383,-0.009351372,-0.050813563,0.02039145,0.0067548263,-0.03557711,-0.014931722,0.014411143,-0.013484259,-0.012303434,-0.008570503,0.01021477,0.03382492,0.0059993523,-0.029177804,0.001607763,0.030142779,-0.01163049,0.023679983,0.005250227,-0.007618225,0.011814598,-0.0111670485,0.021483395,0.0052343556,-0.0093640685,0.0018267869,0.0041868496,0.014144505,-0.013319197,-0.024098987,-0.005932693,-0.008983158,-0.014411143,0.015769726,-0.020035932,-0.004643943,0.0061199744,0.01855038,0.0032790112,0.0041106674,-0.009890996,-0.009091082,-0.018169468,-0.029355561,0.001145908,-0.018474197,0.014665084,0.0038916434,-0.0053422805,-0.026308272,-0.017890133,-0.02828901,-0.014614295,0.018385317,-0.0016283956,0.0048026564,0.0051423023,0.027019305,-0.015909394,0.018601166,0.0059739584,0.020696178,-0.011516217,-0.0015141222,-0.0035805658,0.014728569,-0.0037868929,0.005980307,-0.023489527,0.00905934,0.0041487585,0.04941689,-0.015007904,0.023273678,-0.008545109,0.004259858,-0.0066215075,-0.023375254,-0.0087355655,-0.0062691644,0.014144505,-0.0244672,-0.015769726,-0.022905463,0.009548176,-0.019769294,-0.016125243,0.023679983,-0.025648026,0.0022854677,-0.009471994,0.0037488018,-0.01244945,-0.036516692,0.009383114,0.019159837,-0.028111251,0.030980783,0.009421205,-0.016417276,-0.027857311,0.0010975006,-0.019413777,0.00871652,0.013966747,-0.015871303,-0.011617794,0.00910378,-0.0039868713,0.020467632,-0.009205355,0.002728277,0.015376118,-0.05010253,0.01665852,-0.021902397,-0.010868669,0.014449234,0.0048058303,-0.01824565,0.025013173,-0.0197439,-0.0070468583,-0.012366919,-0.0023664113,0.01871544,-0.004059879,-0.047893245,0.018778926,-0.01734416,-0.014119111,0.0028822287,0.21310715,0.0148936305,0.010176679,0.017852042,-0.013255712,0.016379185,0.029558714,0.008310214,-0.0035297778,0.0051581734,0.008322911,-0.0062310733,-0.007662665,-0.004777262,0.004739171,-0.004412222,-0.011763809,-0.02176273,-0.013941352,-0.0223214,0.010449666,0.010849623,-0.009313281,-0.0005126431,0.013623926,-0.0043931766,-0.01532533,0.010652819,0.00070389226,-0.0056089186,-0.023553014,-0.016696611,0.010938502,-0.022930859,-0.0023679985,-0.002314036,0.006538977,-0.0028076335,0.004837573,0.0351962,-0.0133065,-0.030193567,0.010678212,-0.0126716485,-0.015744332,0.013611229,-0.012316131,-0.018893199,0.0069833733,-0.0072817537,-0.021927793,-0.032986917,0.009471994,0.006945282,-0.02464496,-0.0002777478,0.008437185,-0.02051842,-0.030295143,-0.016379185,-0.012373268,0.016988643,-0.00089117367,-0.0059866556,0.001839484,0.011617794,0.007999137,-0.007675362,0.00034897026,-0.021267546,0.013052559,0.009935436,0.01451272,0.008221335,-0.011611445,-0.03768482,0.0007566644,0.023248285,0.020327965,0.024759233,0.001998197,0.0019156663,-0.010030664,-0.027400218,0.00013262457,-0.02138182,0.044439647,0.02129294,-0.00083641766,-0.010779789,0.0042090695,-0.008665731,-0.009262492,-0.0027076444,0.023502225,0.0023902182,0.006348521,0.04383019,-0.012068539,0.02983805,-0.021013604,0.0072817537,0.0026584433,0.0049804146,-0.0089450665,0.006919888,0.0057930257,0.018690046,0.01227804,-0.011789204,0.0059263445,-0.009789419,-0.0038599009,-0.013408077,0.012125676,0.0012720849,-0.010017966,-0.028339798,0.009256144,0.008602246,0.017509222,-0.015579271,-0.013331895,0.01399214,0.017852042,-0.010449666,0.0073833303,-0.022042066,0.00360596,-0.037354697,0.013116045,-0.0069389334,0.00613902,-0.03240285,-0.010951199,-0.000518198,0.0076563163,0.025774995,-0.0073896786,0.011782855,-0.014792054,0.0147666605,0.022181733,-0.014347658,0.0051423023,-0.026003543,0.033977285,-0.0013379508,-0.024543382,0.003498035,-0.0133445915,0.007586483,-0.0046344204,-0.0023949796,0.036770634,0.00035333488,-0.039335437,-0.044566616,-0.01768698,0.01639188,-0.0076436196,-0.042560484,0.040021077,-0.0206073,-0.01794092,0.017636191,-0.16038904,0.03153945,0.00093243906,0.0014760311,-0.005932693,-0.0010308411,0.0064024837,-0.0037678473,-0.014322263,0.02279119,0.005348629,0.017394949,-0.010735349,-0.020670785,-0.0058184196,0.009814814,-0.020162903,0.0050597712,0.022841979,-0.0012443102,0.035958022,-0.010684561,0.008538761,-0.018969381,0.012931937,0.0047328225,-0.021927793,0.020543814,-0.0125065865,-0.023540316,-0.021877004,-0.011420989,0.015033298,0.019921659,0.014563507,-0.0043423884,0.0062120277,-0.001138766,0.015680848,0.012125676,0.016506154,0.0031329952,-0.017979011,0.0059993523,-0.03095539,0.006532628,0.009649752,0.028060464,-0.0059898295,-0.013852473,-0.022562644,-0.0007181764,-0.010227468,-0.0023965668,0.013141438,0.0059136474,0.022664221,0.014626993,-0.007015116,0.012182812,0.0030123733,0.012849406,-0.031971153,-0.0007102408,-0.0053105378,0.004190024,-0.022981646,-0.029558714,-0.020785058,0.011173397,-0.019045563,0.0048566186,0.0010776614,0.022219824,0.015553877,-0.0077134534,-0.012601814,0.02158497,0.0064627943,0.002191827,-0.011992357,0.013725502,0.0064659687,-0.0067929174,0.0118019,0.017839344,-0.000052077714,0.0088625355,0.00470108,-0.013154136,0.012068539,-0.01781395,0.005605744,-0.016937854,0.013065256,0.016506154,0.0031821963,-0.004859793,0.001193522,-0.012360571,0.0077832867,0.015249148,-0.018220255,0.0136366235,0.009510085,0.0038027642,-0.0313363,0.022308704,0.022346795,-0.03313928,-0.016810885,0.006015224,0.011109912,0.024949688,0.0155665735,0.009618009,0.008710171,-0.0062564677,0.026155908,-0.014830145,0.028390586,-0.012125676,-0.026714576,0.034789898,0.007542043,0.0015450714,-0.08512097,-0.015185663,-0.016417276,0.0018331355,-0.017801253,-0.005335932,-0.00233943,0.025648026,0.011294019,0.007503952,0.022841979,-0.018690046,0.0066722957,-0.013052559,0.02387044,-0.023540316,0.00525975,-0.0018093286,-0.012989074,0.0046407687,-0.012684345,-0.013395379,-0.0026949472,-0.014690477,-0.019388383,-0.027019305,-0.015744332,-0.0053105378,0.012722436,-0.0025029045,0.012995423,0.0039932197,-0.0024140251,-0.024873506,0.0042344634,0.010183028,-0.04116381,-0.011211488,0.041189205,-0.020416845,0.017737769,-0.01940108,0.004339214,-0.03837046,0.00699607,-0.007846772,0.028111251,0.018918592,0.024505291,-0.020975513,-0.005723192,0.011567006,-0.018994775,-0.016760096,0.017737769,-0.0027314513,-0.003967826,0.014271475,-0.007008767,0.0024283093,0.0049105813,0.00871652,-0.020658087,0.005107385,-0.015299936,0.008011834,-0.0030536386,-0.022841979,0.019756598,0.0068056146,-0.0068881456,-0.0026124164,-0.021280242,-0.006646902,-0.01849959,-0.0010252862,-0.03077763,-0.0070722527,0.0024521162,-0.011433686,-0.01880432,-0.018220255,-0.0026409847,-0.009535478,0.017915526,0.016125243,-0.0040947963,0.003339322,0.010138588,0.015363421,0.0048947097,0.010995639,0.012697042,-0.015833212,0.011243231,0.0127986185,-0.018169468,0.017725071,0.017864738,-0.018309135,-0.035704084,-0.020099418,-0.06820851,0.034739107,0.02279119,-0.017826647,-0.008437185,-0.0050629457,-0.012582769,-0.018601166,0.0011784442,-0.0037710215,-0.011725718,0.018182164,0.0065199314,-0.0115416115,-0.010195725,-0.012163767,0.01725528,0.020074023,0.024441807,0.0045328443,0.016455367,-0.016620427,-0.008335608,0.017306069,0.011598748,0.021013604,-0.027654158,0.03108236,-0.0023664113,-0.000055698354,0.0206073,-0.027324036,-0.0015530069,0.021013604,0.01999784,-0.018740835,-0.017318765,0.01811868,-0.024479898,-0.024454504,-0.0039075147,-0.006046966,-0.009687843,0.0077198017,-0.015845908,0.007973743,0.018271044,0.0022457894,0.010544893,0.0070912982,0.014461931,0.021965884,-0.013395379,-0.0046852087,0.0041328873,-0.026841547,0.011109912,-0.003301231,-0.011560657,-0.036465906,0.04245891,0.0034186787,0.009643404,-0.00918631,0.028390586,-0.0018077414,-0.022461068,0.00143794,0.0009149806,-0.016848976,-0.015426907,-0.013128742,0.010068755,-0.03613578,0.02387044,0.00094513607,0.0081895925,-0.0030552258,0.0144746285,-0.0036218313,0.000633265,0.009884647,-0.008640337,0.025444873,0.030422114,0.012347873,0.008564155,0.0007618225,-0.0024981431,0.011643188,-0.053479943,-0.0040090913,-0.012747831,0.013408077,-0.0006503266,0.025381388,0.024848111,0.0062056794,0.011440035,0.012030448,0.007795984,0.007878515,-0.006831009,0.008748262,-0.0171664,0.033215463,-0.03928465,-0.018512288,-0.022892768,0.024264047,0.017572707,-0.025355993,0.012468495,0.011065472,-0.0064374004,-0.022689614,0.022283308,-0.016607732,-0.022359492,0.01364932,0.002947301,-0.0049962862,-0.012950983,-0.02322289,0.022778494,-0.0053041894,-0.0042344634,0.0148936305,0.018296437,0.0052470528,0.0041963723,-0.0018204384,-0.018829715,-0.014360355,-0.006723084,0.0049391496,-0.01871544,0.011211488,0.0048883613,0.051270656,0.00089355436,0.010640121,-0.012055841,0.030168172,0.006500886,0.032174304,0.0010356025,0.010170331,-0.0032567913,-0.0043169945,0.0017236235,-0.00038964048,-0.016798187,-0.0035361263,-0.009732283,0.0050280285,0.009884647,-0.035120018,-0.0015538005,0.0039487802,-0.0270447,0.040706716,0.0008816509,-0.012151069,-0.006538977,0.009954481,0.00027040733,-0.0021505614,-0.044744376,0.024314836,-0.010360787,0.002387044,-0.010836925,0.015414209,-0.0019680415,-0.007110344,-0.023210194,0.021165969,-0.020188296,-0.01948996,0.03250443,-0.021915095,-0.01734416,-0.0069833733,-0.008849839,-0.02262613,0.0009697366,-0.03326625]},{\"id\":\"412407fc-f57c-4b8c-98df-ad67822f9828\",\"text\":\"Include stuff with pets stuff for pets and stuff for plus size women I am a fellow fluffy girl\",\"vector\":[-0.015631026,-0.0006011933,-0.0094029335,-0.016401093,-0.014577249,-0.0037051071,0.011598302,-0.010936314,0.005920741,-0.02856006,0.0016853678,-0.0030177878,-0.007862798,-0.0032305697,-0.007720943,-0.003492325,0.026911844,0.016130894,-0.011165984,-0.033450667,-0.010612075,0.0064982916,-0.0025212967,-0.002936728,-0.024371972,-0.016522683,0.03191053,-0.0218321,-0.00040677653,-0.0014312116,0.018414078,-0.009673133,-0.015644535,-0.022804815,-0.0010318233,-0.022966936,0.0014160129,0.0032440796,0.015374336,-0.02122415,0.005062858,0.0071737897,-0.0044515324,0.0040800087,0.004069876,-0.0019133483,-0.034423385,-0.0062280926,-0.004792659,-0.0040394785,0.0028843768,-0.0015367582,-0.0044008703,0.005616767,-0.0035970274,0.02460164,-0.009997372,0.0061808075,0.005562727,-0.025506807,0.014685329,0.010767439,-0.0037287495,-0.0028995755,-0.011841482,-0.015563476,-0.005231733,0.01253049,0.0035125902,-0.0038942466,0.026195817,-0.008511276,-0.011024129,-0.012334595,0.010774194,-0.0038266967,0.015671557,0.0112470435,0.01444215,-0.0125507545,0.03196457,-0.022250907,0.0077006784,0.013273538,0.015712086,0.023615414,-0.009929822,0.04263744,-0.0044008703,0.00052266667,0.024547601,0.012307575,-0.01247645,0.032964308,-0.009585318,0.002723946,-0.013611287,0.020048784,0.0051675607,-0.03288325,0.0069914055,0.015374336,-0.03890869,-0.0078898175,0.009983862,-0.0052283555,0.004407625,-0.0068900804,-0.001611063,0.016144404,-0.008004652,0.024520582,0.02530416,-0.040475845,-0.012773669,-0.016765863,-0.011746912,0.0026952375,-0.01402334,-0.01781964,0.019022027,0.008241077,0.034045104,0.011287574,0.014766389,0.017184671,-0.0050594807,-0.0065151793,-0.007443989,0.0095650535,0.034666564,-0.005045971,0.03207265,0.0036443123,-0.02181859,0.0069576306,-0.02138627,-0.0030616953,0.022507597,-0.00882876,0.010085187,0.05028408,-0.02434495,-0.013982811,0.00711975,0.016333545,0.012996583,-0.021967199,-0.006133523,-0.008524786,-0.008160017,0.0015148044,0.0045596124,0.0022696736,0.004998686,0.01276016,-0.024155812,0.022210378,0.0016591923,-0.006754981,-0.013151948,0.016157914,0.02110256,-0.0040124585,0.016414603,0.02100799,0.032775167,0.0041272934,-0.008997635,0.0040057036,0.007099485,0.02526363,-0.025493298,0.01731977,-0.021697,-0.0021886139,-0.029857015,0.0041712006,-0.024182832,-0.015374336,-0.001928547,-0.004242128,0.015995795,0.011706382,-0.013928771,-0.015050097,0.0009364092,-0.024034223,-0.006417232,-0.013901751,0.008403196,0.035936497,0.0010090253,0.0013594399,-0.6424257,-0.005721469,0.03563928,-0.036963254,0.011503733,0.0069981604,-0.026033698,-0.013732877,-0.016617253,0.010260816,-0.013753141,0.046663407,0.015604006,0.00095498544,0.00265133,-0.005106766,0.010240551,-0.02503396,-0.022453558,0.00052815507,0.00895035,0.009835253,0.007450744,-0.0019015272,0.014536719,-0.0064814044,0.007153525,-0.016157914,0.012240025,0.032964308,-0.014590759,0.050959576,0.0000717189,-0.0076398836,0.04639321,-0.007774983,-0.005468157,0.025088,0.040719025,0.025088,-0.043826316,-0.010017637,-0.004407625,0.016657783,-0.014779898,-0.00047327086,0.004492062,0.016347054,0.020494612,0.0077006784,0.005626899,0.0016431492,0.0066198814,-0.004046234,0.007464254,-0.0065590865,0.031126952,0.008173527,0.0069711404,-0.0007776672,0.02145382,-0.004772394,-0.025466278,-0.009335384,-0.029208537,0.02856006,-0.036747098,-0.018603217,0.0137396315,-0.009423198,0.0067076962,0.02504747,-0.040259685,0.038287234,0.0016651028,0.03953015,0.011591547,0.026114756,-0.023358725,-0.013077643,0.008220812,-0.00519458,-0.020264942,-0.0082140565,0.018873418,-0.0053465674,0.012199496,-0.007964123,0.016441625,-0.019332755,0.0036308023,0.009315119,-0.027411712,-0.003387623,-0.016630763,-0.012618304,0.0022916272,-0.0014126354,0.003951664,-0.041961942,0.010071676,-0.011429428,-0.011003864,0.010612075,0.004036101,-0.0046710693,-0.023399254,0.03226179,0.0052013355,-0.0129290335,0.015968775,0.011307838,0.0051405407,-0.009517768,-0.015482416,-0.027560322,0.022818325,-0.0069103455,0.009213794,-0.003412954,0.02133223,0.025560848,-0.0064138547,-0.0031461325,-0.008180282,0.028803239,-0.01438811,-0.00088321377,0.0041137836,-0.019292226,0.008997635,-0.010314856,0.0061470326,-0.0013982811,-0.004880474,0.0034028217,0.022602167,0.00893684,0.02484482,-0.01418546,-0.02146733,0.0020856003,0.0010926182,0.0016490597,0.018062819,-0.029857015,-0.0026276875,-0.0012707808,-0.0056471643,-0.010206777,-0.020508122,-0.016482154,-0.01442864,-0.0006007711,0.010517505,0.015225727,-0.007815513,-0.004177956,-0.014752879,-0.000938098,-0.0010799526,0.0065658414,-0.022277927,0.0029113968,-0.022791306,-0.011220023,0.006819153,0.011186249,0.016441625,-0.018157389,0.0058430587,-0.018184409,-0.020832362,0.016171424,-0.004738619,-0.0012547377,-0.0115172425,-0.031126952,-0.009139489,0.004904116,0.010348631,0.023574883,-0.006160543,0.019184146,0.020413553,-0.006045708,0.02160243,0.022831837,-0.03204563,0.0025010316,0.0031579537,0.005072991,-0.0019049046,0.007774983,0.0017191427,-0.027830523,0.0049074935,0.0007194055,0.022088788,-0.007430479,0.009652868,-0.015360827,0.013212743,-0.033828944,0.026803765,-0.03934101,0.016792882,-0.0054107397,0.027992642,0.0003514701,-0.0035497425,-0.0030667614,-0.010044657,-0.015468907,0.008524786,0.027317144,0.0031241786,0.011632077,-0.020764811,0.0134694325,-0.018305998,0.0072278297,0.00625849,0.011037639,0.014050361,0.030829733,-0.002452058,0.033747885,-0.012861484,-0.00015895315,-0.022696735,0.0037422595,0.019494874,0.014604269,-0.009781213,-0.031045893,0.023210114,-0.006292265,0.030775694,-0.007626374,0.013016849,0.025466278,0.0083221365,-0.0035261002,0.010125716,0.0007438923,0.011638832,0.03155927,-0.013151948,-0.009355648,0.001044489,-0.009355648,-0.009909557,0.010585056,0.01764401,-0.013834201,0.0056505417,-0.010321611,0.0358014,0.029235559,0.005116898,-0.006809021,0.0036443123,0.005974781,0.036098618,0.016792882,-0.01429354,-0.018589707,-0.008491011,0.013732877,-0.011598302,-0.007477764,-0.004316433,-0.01442864,-0.0013552181,0.005137163,-0.0067853783,0.008545051,0.033910006,0.034180205,-0.0044582873,-0.045312412,-0.0042319954,0.012814199,-0.0057045813,0.02119713,-0.0067988886,0.020967461,0.0069711404,0.026398465,0.020413553,0.016198445,0.0086463755,0.0060153105,0.00015283145,0.0037084846,0.022115808,-0.03128907,0.03245093,0.014469169,0.016657783,0.027884562,-0.027857542,-0.001325665,0.018535668,-0.012199496,-0.020494612,-0.012098171,-0.008078957,0.004461665,-0.0046372944,-0.025506807,-0.02108905,0.002962059,-0.0048095463,-0.0010748863,-0.0089706145,0.0021531503,0.022548126,0.01775209,-0.0047960365,-0.0060423305,-0.036314778,0.008740946,0.107593335,0.020818852,0.00018998384,0.00713326,0.011537507,0.013557247,-0.0075250487,0.01802229,0.007849288,-0.00045553903,-0.0067853783,-0.0011432805,0.024277402,-0.022021238,0.0045663672,-0.0011204825,-0.01741434,-0.019792095,-0.001289357,-0.0051810704,0.011875257,0.004914249,-0.013597777,0.0065185567,0.021642959,0.02493939,0.011348368,0.026155286,-0.02108905,-0.017009042,-0.006106503,0.011125454,-0.015171687,0.007795248,-0.013550492,-0.0018474873,-0.014793408,0.013753141,0.0105783,-0.006575974,0.009207039,0.027627872,0.005968026,0.0010022703,0.021764548,-0.0137396315,-0.014914998,0.029262578,0.01775209,-0.007335909,0.045447513,0.018157389,0.004130671,-0.0033673581,0.007599354,-0.018170899,-0.0031072912,-0.027519792,-0.016995532,-0.044042476,-0.0034686828,-0.005687694,-0.011800952,-0.009909557,-0.022548126,-0.012023866,-0.033558745,0.030910794,-0.029505758,0.004853454,-0.009848762,-0.04009757,0.010503995,0.0017529175,-0.011172739,0.0089706145,0.012145456,0.011868502,0.02171051,0.026506545,-0.0018913947,-0.0049345135,-0.002526363,-0.025682438,-0.0031326225,-0.0057045813,0.00889631,-0.0036105374,-0.02131872,0.016914472,0.040367767,-0.0042927903,0.017833149,-0.009085449,0.027168533,0.018657258,-0.015658045,0.026736215,-0.0022662962,-0.008518031,0.034990802,-0.0040327236,-0.019130107,-0.022642696,-0.0024199719,0.012483205,0.017468382,-0.002816827,-0.027209064,0.000179007,0.019238185,0.0028607345,-0.0008333958,0.011226779,-0.0060355756,0.00890982,0.0031039137,0.02850602,0.012956054,-0.018967986,-0.015698576,-0.041664723,0.031126952,0.034720603,-0.018414078,0.011051149,0.0069914055,-0.015117647,-0.015995795,-0.002034938,-0.008024917,0.016873943,-0.023777533,-0.012118435,-0.040664986,0.00530266,-0.031045893,0.013624797,-0.013280293,-0.015387847,-0.0360716,0.014942018,0.010679625,-0.03223477,-0.00021615939,-0.035206962,-0.007221075,-0.005292528,-0.0027610986,0.065172054,-0.020224413,0.004492062,-0.0037557695,-0.0073088896,-0.0004012881,-0.00024149058,-0.02168349,-0.0044886847,0.051391896,0.025790518,0.03153225,0.0015325363,0.004184711,0.008389686,0.0062787547,-0.00052266667,0.014590759,-0.0077276984,-0.019076066,0.029911056,0.02103501,0.019454345,-0.0008599935,0.0015536456,-0.0073561743,0.016536193,-0.016887452,-0.024290912,-0.020913422,-0.017508911,0.003573385,0.0052013355,0.009605583,0.029640857,-0.016428113,0.0050493483,0.013023604,0.008477502,0.021899648,0.0018846397,0.04533943,-0.022331968,0.009652868,0.0027931847,-0.016414603,-0.0028185158,0.000030555733,-0.0028556683,-0.019886663,-0.0073021343,0.019535406,0.015725596,-0.011132209,0.013178968,-0.0012403834,-0.009281344,0.007741208,-0.014901488,0.027992642,-0.03953015,-0.032099668,-0.037044317,-0.027492773,-0.040746044,0.004694712,-0.00002918363,-0.047284868,0.022548126,0.016360564,0.009207039,-0.01409089,-0.0058295485,0.015333807,0.009308364,0.016617253,0.015023078,0.005184448,-0.034693584,-0.0023574883,-0.0010495551,0.005431005,0.0040057036,0.048095465,-0.029640857,0.0030211653,0.020332493,-0.0069576306,-0.020508122,-0.048149504,0.019211166,-0.0011339925,0.01270612,-0.017171161,0.006099748,-0.0016026192,0.0057619987,-0.010801215,-0.009862272,0.0072008097,0.0069981604,-0.01765752,0.015820166,-0.008491011,0.017036062,0.00013594399,0.026236346,-0.01811686,-0.010470221,0.007768228,-0.024020713,0.0069103455,0.019846134,0.009544788,0.0021379516,0.02160243,3.001481e-7,-0.0109228045,-0.029019399,-0.013334333,0.029397678,-0.023939652,0.012591285,-0.024277402,-0.011909031,0.026965884,-0.010308101,-0.008463991,-0.00036687992,-0.009632603,-0.015279767,0.018076329,-0.0042860354,-0.004985176,-0.009571808,-0.024142303,-0.0006632547,-0.003890869,-0.01786017,0.020832362,-0.0103824055,-0.017117122,-0.0013265094,0.0016144405,-0.007153525,-0.005667429,0.0013569068,0.013665327,0.024290912,-0.02541224,0.0010301346,-0.020197393,-0.009051675,-0.040124588,0.009193529,-0.005951138,-0.033882983,-0.013422147,0.012787179,-0.03931399,-0.019130107,-0.0009642735,0.0065996163,-0.0029975227,0.0054512694,0.021913158,0.0073021343,0.012314331,-0.018765338,-0.022818325,0.029127479,0.012199496,-0.00068309746,0.016509173,0.011220023,0.04239426,-0.019224675,0.010051412,0.00263782,-0.008457236,-0.02552032,-0.013996321,-0.005643787,-0.003917889,-0.02171051,-0.012719629,-0.029965095,-0.027722443,0.015955266,-0.007045445,0.006211205,-0.018400569,0.030478474,-0.010213532,0.013287048,-0.004627162,0.002485833,-0.037557695,-0.012044131,-0.025749987,-0.0015570231,-0.022358987,0.021170111,-0.0016093742,-0.026884824,0.008335646,0.008153262,-0.006714451,-0.030640595,-0.015522947,-0.0075250487,-0.01248996,-0.011902276,-0.00024275713,0.03291027,0.0007818891,-0.002021428,-0.019548915,-0.036557958,-0.008903065,-0.014982548,0.00885578,-0.019589445,-0.023304684,-0.016198445,0.01730626,-0.0045224596,-0.017495401,0.025128528,-0.011483468,0.023493825,-0.033504706,0.010990354,0.015063608,0.0029282842,0.028019661,-0.01263857,-0.02194018,0.006272,0.027209064,0.011037639,-0.010375651,0.0010301346,-0.005029083,0.00453597,-0.012064396,-0.008849025,-0.033342585,-0.010308101,-0.0008329736,-0.043745257,0.0049547786,0.031397153,0.002399707,0.0012800689,-0.00356663,0.020346003,0.0045393473,-0.00706571,0.024398992,-0.008558561,-0.000009340873,-0.0027070586,0.020454083,-0.0021396403,-0.0112470435,-0.010402671,-0.010747175,-0.0035767625,0.008565316,-0.011415918,-0.038098093,-0.013928771,0.0027425224,0.009308364,-0.009267834,-0.023737004,-0.029667877,0.0018964609,-0.0035835174,-0.0021666603,-0.021926668,-0.0246827,-0.003738882,-0.005005441,0.016360564,0.0249529,0.2310744,-0.01777911,0.028127741,0.025466278,0.009956842,0.0015376025,0.023493825,-0.01792772,-0.011854991,0.009990617,-0.009375914,0.0070522004,-0.0063395496,-0.004887229,0.014982548,-0.0089706145,-0.019251697,-0.001869441,-0.018995008,-0.016320035,-0.0052013355,0.008153262,-0.0108147245,-0.012469695,0.013692346,0.010132471,-0.01426652,-0.005110143,-0.007484519,0.015306787,0.00032909424,-0.01402334,0.0018593086,-0.019494874,0.006390212,-0.0032305697,0.015860695,-0.005522197,0.030289335,0.018738318,0.010051412,-0.015874205,-0.014820429,0.009450219,-0.033234507,0.017508911,-0.016428113,0.005951138,-0.00023368013,0.030883772,0.012483205,-0.0107066445,0.0125507545,0.02500694,-0.0039145113,0.020359512,0.028127741,-0.00865313,-0.027182044,0.0019589446,0.033882983,0.02818178,-0.008903065,0.01247645,-0.017373811,0.0045562345,-0.016576724,-0.0043198103,0.0044110026,0.0005028239,-0.009267834,-0.003009344,-0.0025466278,0.015063608,-0.0351259,-0.022291437,-0.0041070282,0.018616728,0.02171051,0.036963254,-0.008038428,-0.019157127,0.009098959,-0.01414493,-0.004228618,-0.033612784,0.008281606,0.000038418955,0.0013645062,-0.010260816,0.00012750027,0.01780613,-0.0010588432,-0.017603481,0.026047207,0.0020366267,-0.018981496,0.010206777,-0.016495664,0.018954476,-0.022953425,0.0021497726,0.018981496,0.006636769,-0.0063226623,0.018886928,-0.010733665,-0.0029738804,-0.0032660333,-0.019792095,-0.014509699,-0.04228618,-0.0010191577,0.02144031,0.00446842,0.020346003,0.023642434,0.00017309638,0.0072953794,0.01075393,-0.015023078,-0.004785904,0.03874657,0.00025204523,-0.006852928,-0.01230082,0.0013839267,0.004931136,-0.019305736,-0.033045366,0.02480429,0.0011044394,0.0006290576,-0.03796299,-0.0017850037,0.019589445,0.01259804,-0.018211428,-0.009011145,0.02842496,0.008632866,-0.0015148044,0.0022122562,-0.0016912784,0.027560322,-0.02470972,0.00703869,-0.0064341193,0.00537021,-0.025358198,-0.044744994,0.015279767,0.00220719,0.0028066947,0.022291437,-0.017103612,-0.011233534,-0.03582842,0.009821743,-0.0054174946,-0.033072386,-0.009443464,0.026547076,-0.012145456,-0.007883063,-0.017400831,-0.17346792,0.008355912,0.010321611,-0.02434495,0.002830337,0.004316433,0.0050493483,-0.008220812,-0.013678837,-0.0045123273,0.044582874,-0.0017309639,-0.033369604,-0.014482679,-0.0021565277,-0.008423462,-0.0061909403,0.020264942,0.01741434,0.01757646,0.036530938,-0.015860695,0.0043231877,0.015252748,0.0007451588,0.02470972,0.015009568,-0.015225727,-0.00710624,-0.014779898,-0.016563212,-0.01060532,0.05228355,0.012077906,0.013780161,-0.01243592,-0.025128528,-0.008734191,-0.00033521594,0.010895784,0.023196604,0.023588393,0.0030785827,0.0043670954,0.005238488,0.0070049153,0.012469695,-0.017022552,0.011145718,-0.011442938,0.015374336,-0.01791421,0.021805078,0.0033589143,-0.0060558403,0.0045055724,0.0014624534,0.01051075,0.015860695,-0.015333807,0.011341613,-0.019238185,0.0012859795,-0.00019906084,0.00629902,-0.034963783,-0.023156075,0.0077547184,-0.026763234,-0.01056479,0.010997109,0.0029249068,0.015779635,-0.0007139171,0.013955791,0.016914472,-0.051229775,0.012071151,0.00054842,-0.026844295,-0.0046372944,0.025925618,-0.030289335,-0.006396967,-0.005045971,-0.010517505,-0.012834464,-0.0065725967,-0.017238712,0.011328103,0.014833938,-0.008024917,-0.0061571654,-0.03917889,-0.009011145,0.02492588,0.015631026,0.0006079483,0.0137936715,-0.0043063005,0.008119487,-0.013550492,-0.001862686,0.011469957,0.02831688,-0.0068427958,0.018535668,0.0036240474,0.038125113,-0.0140638705,-0.0063226623,0.012996583,0.011429428,0.029911056,0.0018289111,0.03628776,0.011220023,-0.033991065,0.029911056,-0.00698465,0.03196457,0.00014132686,0.0026040452,0.026722705,-0.009342139,0.016819904,-0.09111118,-0.026844295,-0.003215371,0.028965358,-0.020386532,0.00036582444,-0.0176305,0.0137396315,-0.01802229,0.01765752,0.02445303,-0.016238974,-0.034315303,0.003948286,0.0066975635,-0.0010276015,-0.036584977,-0.004282658,-0.01415844,0.016252484,0.005714714,-0.0060423305,0.0014996058,-0.013928771,-0.002658085,0.0029637478,-0.0362067,0.0104364455,0.015887715,-0.008436971,0.0011213268,-0.0065658414,0.0013239763,-0.0069711404,-0.034099143,-0.023642434,-0.0088625355,-0.0043839826,0.024169322,-0.0063057747,-0.012544,-0.0010487108,-0.036368817,-0.00021637049,-0.016252484,0.0036578223,-0.012023866,0.019454345,0.03555822,-0.02483131,-0.018278979,-0.037341535,-0.048500765,0.0048906063,0.03223477,-0.008984124,0.01257102,0.022548126,0.023115546,0.0095110135,-0.03291027,0.005282395,-0.00016528594,0.034666564,-0.00621796,0.014671818,0.0076398836,0.004620407,0.011442938,0.0020450705,-0.019575935,0.009362403,-0.014685329,0.014847448,-0.036936235,-0.004336698,-0.019697525,-0.034288283,0.015185197,-0.019967724,-0.013726122,-0.01765752,0.004627162,-0.016927982,0.027803501,0.007450744,0.016252484,0.0021092428,-0.026736215,-0.013043868,-0.0017242089,-0.00007499084,0.045690693,-0.039692268,-0.01813037,0.019602954,-0.018346528,-0.013773406,0.029640857,0.009085449,-0.013124928,-0.016076855,-0.05360753,0.03126205,0.024547601,0.0018930834,-0.0069914055,-0.023223625,0.007538559,-0.005792396,-0.00062947976,0.009328629,-0.019832624,0.02423687,-0.0034315304,-0.0034467292,0.0003333161,-0.02485833,0.01764401,-0.0070589553,0.0030802714,0.006342927,-0.0030279201,0.012219761,0.017333282,0.008058692,0.013050623,0.030262316,-0.014563739,0.016455134,-0.028208802,0.013564002,-0.016711824,-0.039016772,-0.016684802,0.016265994,-0.009936577,-0.02469621,0.00027547657,0.026911844,-0.0020687128,-0.020724282,0.003220437,-0.039259948,0.016252484,-0.010301346,-0.026736215,-0.003075205,-0.015968775,-0.013314067,0.037152395,-0.00045553903,0.032964308,0.02144031,-0.011996847,-0.029262578,-0.032964308,-0.012956054,-0.011821217,0.0027256347,0.0031697748,-0.0035024576,0.02526363,0.011165984,0.006251735,-0.02552032,0.012962809,0.022575147,0.0049277586,-0.008997635,0.026263366,-0.02146733,-0.019846134,0.009065185,-0.0028083834,-0.004860209,0.013536982,0.02507449,-0.031045893,0.0034585502,-0.02125117,0.053985808,-0.0059376284,0.010416181,-0.024412502,0.019832624,0.016211955,0.011442938,-0.019967724,-0.0035429876,-0.0030414301,0.01442864,-0.04223214,0.006383457,0.0021362628,-0.01055128,0.038503394,-0.0007818891,0.01823845,0.012260291,-0.009375914,0.013996321,-0.0015072052,-0.019062556,-0.0061672977,0.0036510671,-0.010801215,-0.015779635,-0.021548389,-0.012847974,0.009416443,0.022656206,0.02127819,-0.016022814,0.024115283,0.009571808,-0.004660937,0.032315828,-0.0043333205,-0.0028083834,-0.026938865,0.0054715346,-0.004248883,0.0035125902,0.013064133,-0.0069914055,0.0027661647,0.026898334,-0.0070522004,-0.018508648,0.003088715,0.007099485,-0.010112206,-0.03885465,-0.016455134,0.0025753365,-0.010801215,0.003765902,-0.008153262,0.007957367,0.0059038536,0.061173107,-0.001783315,-0.011868502,-0.0076804133,0.0020602692,0.008409952,0.03626074,-0.011449693,-0.026128266,0.003857094,-0.016617253,-0.003115735,0.006670544,0.0057349787,-0.016455134,-0.0031562648,-0.008734191,-0.0029941453,0.0033639804,-0.012989828,0.008632866,-0.004242128,0.0022983823,0.007687168,-0.020318983,-0.016927982,0.013064133,0.0038942466,-0.027019924,-0.010368896,-0.011868502,0.009855517,-0.016090365,-0.013347843,0.008220812,0.008626111,-0.015793145,0.019373285,-0.0067583583,-0.013226253,0.011449693,-0.009490748,-0.018495139,0.03628776,0.005572859,-0.0043130554,0.007930348,0.007626374,-0.04612301]},{\"id\":\"c4e9f0fb-08a7-4fb8-8686-97bab4d60e6c\",\"text\":\"No improvements needed. I just didn’t/don’t have time to make a post :( \",\"vector\":[-0.019375717,0.012558579,-0.00033842336,-0.0017867764,-0.000052047286,0.01791066,-0.0009602067,-0.02016764,-0.019309724,-0.023401326,0.0026199454,0.01800305,-0.0033920703,-0.009687859,-0.012683967,-0.0006120905,0.013713467,0.0039596152,0.004134498,-0.006295788,-0.001307498,-0.00607471,0.007490272,0.001193659,-0.0013718416,-0.009753852,0.03959615,-0.017369512,0.0017950255,-0.0003718326,0.042737447,-0.01379266,-0.02089357,-0.046591472,-0.017831467,-0.031122576,0.0026941882,-0.0010303248,0.025394332,-0.0057480414,0.008453779,0.017409109,-0.0012225312,-0.017448705,-0.019943262,0.018253826,0.024351634,-0.019032551,-0.02625225,0.0035108589,0.0070349164,-0.0027783301,-0.030383447,-0.0031049983,-0.0073252884,0.007727849,0.034448653,0.022319032,-0.021870274,0.005071607,-0.003415168,0.017659884,-0.022160647,-0.0046459483,-0.004002511,-0.008301993,-0.008466978,0.0018181233,0.0032402852,0.0045238603,0.02819246,0.016617185,0.00014992918,-0.0013520436,0.04207751,-0.0056061554,0.022701794,0.016537992,0.0030423044,0.008559369,0.021421518,-0.005104604,-0.023493716,0.02171189,0.029353948,0.026014673,0.009430484,0.007067913,-0.021975864,-0.018029448,-0.014017038,0.04231509,0.021315929,0.010915339,-0.0068039387,0.030277858,-0.010017826,0.024417628,0.0010591971,-0.02964432,-0.012776358,0.009839644,-0.017923858,-0.012076827,-0.009714256,-0.010222407,0.01636641,-0.000704894,0.01821423,-0.008090814,-0.02499837,-0.0025143556,-0.0022256337,0.0069623236,-0.012716964,-0.0026496425,-0.0077542467,-0.013456092,0.0074770735,-0.011997635,0.023586107,-0.011548878,0.019006154,0.001008877,0.021038756,-0.0067115477,-0.005873429,0.0031198468,-0.010037624,-0.00010167137,-0.021038756,0.03529337,0.0060483124,-0.005328982,0.021962665,-0.0065498636,-0.012367198,-0.008044618,-0.021975864,-0.0216063,0.004249987,0.030093076,-0.006328785,-0.0057480414,0.0026265448,-0.0077212495,0.013660672,0.0007374783,-0.000034440403,-0.015508493,-0.0046789455,-0.0028492732,0.019230532,-0.008308592,-0.016181627,0.019982858,-0.018425409,0.024958774,0.00977365,-0.023440922,0.005124402,0.0026265448,0.0049330206,-0.010057422,0.011898643,0.01676237,0.039332177,-0.0035042595,-0.010895541,0.013456092,0.00045783052,0.018623391,-0.007338487,0.004682245,0.0037220384,0.019283326,0.018227428,0.01698675,-0.004537059,0.00710091,-0.026067467,0.00067437196,0.03004028,0.035953306,-0.014452595,-0.015442499,0.038434666,-0.010631567,0.00081997033,0.007991823,-0.00226358,0.023599306,0.027902089,-0.008341589,-0.6419856,-0.030198665,0.011575275,0.012598176,-0.0008587416,0.02501157,-0.02089357,0.0003206876,-0.037721936,0.011159516,-0.011020929,0.031439345,-0.0055170637,0.0077872435,0.008473577,-0.010539176,0.044611666,-0.01676237,-0.03273282,-0.0027090367,-0.028878793,-0.006728046,-0.0060978075,0.0067346455,0.011964638,-0.020537205,0.024668403,0.027017774,-0.018583793,0.029855499,-0.01830662,0.023612505,-0.00339537,0.024259243,0.06736626,-0.016841564,-0.025117159,0.03930578,-0.0013215216,0.0360061,-0.03149214,-0.01719793,0.0032699823,-0.014162224,-0.007430878,0.005444471,0.016828366,0.011053925,0.017554294,-0.022649,0.012261609,0.0017438806,-0.025024768,0.02295257,-0.0007564515,-0.016551191,0.023599306,0.020761583,0.0028393741,0.028562024,0.005701846,0.014940948,-0.034158282,-0.01070416,-0.040071305,-0.007833439,-0.0063122865,0.0020540503,0.0055104643,-0.017633487,0.0028674214,0.011199112,-0.017118737,0.018253826,0.031254563,0.008453779,0.012235211,0.00833499,0.0041278987,0.0074770735,0.016960353,-0.019534102,-0.00812381,-0.0037649341,0.06150602,0.01214942,0.00018890665,-0.0067775412,-0.014901352,0.0120900255,0.008988326,0.009377689,-0.02243782,-0.017224327,-0.0048703267,0.0031148973,0.028562024,0.016801966,0.025711102,-0.016709575,-0.0016580889,-0.015165326,0.026107064,0.022358628,0.00894873,0.021738287,-0.0012885248,0.005444471,0.02377089,-0.035240576,0.025790295,-0.008968528,-0.008110612,0.0062825894,-0.0029367146,-0.037906718,0.010341195,-0.012591576,0.01059857,-0.0059889182,0.010954935,0.006625756,0.02696498,-0.02769091,0.011001131,0.021117948,0.007483673,0.0054972656,-0.013291108,-0.008816743,0.02654262,0.0014799061,0.03378872,0.0023823685,0.015376505,0.009417285,0.026898986,-0.010281801,-0.0010583722,-0.0390946,0.0001493105,-0.0026694406,-0.0049528186,0.013700268,-0.019890467,-0.026371038,0.013112926,-0.00442487,0.0025061064,0.011918441,-0.015508493,-0.012571778,-0.026357839,0.027347742,0.0052761873,-0.024166852,-0.0016407656,-0.039279383,-0.016194826,0.0027304846,0.002933415,0.008664958,-0.013033734,-0.017686281,-0.017580692,-0.007793843,-0.013159121,0.027215755,0.0013140973,-0.015508493,0.0073120897,-0.027954884,-0.0007139681,-0.03331356,-0.01595725,-0.0063914787,-0.009186307,-0.010657964,-0.0044809645,0.01297434,-0.0000068120335,-0.011515881,-0.006424476,-0.012208814,0.017409109,-0.01450539,0.014676974,0.009951833,-0.022517012,0.00679074,0.0046789455,-0.03331356,-0.009958432,-0.01595725,0.00138999,0.020761583,0.016630383,0.017475102,0.003735237,0.0069425255,-0.0014856806,0.008268996,0.013396698,-0.020933166,-0.00894873,-0.029829102,0.008565968,-0.017277122,0.017079141,0.0037418364,0.0073054903,0.0024945575,-0.006718147,-0.010149813,-0.009225903,0.007061314,-0.0003778133,0.02531514,-0.0155480895,0.0032006889,0.0023081256,-0.0064409743,0.009133512,-0.017277122,0.0030950992,0.017356314,0.016735973,0.03561014,0.013660672,-0.016208025,-0.04160236,0.034105487,0.0082755955,-0.019006154,0.0152841145,0.011555477,0.027664512,-0.006935926,0.017237525,-0.008222801,0.0078070415,0.0062693907,0.0055764583,0.01297434,0.016722774,-0.017963454,0.05121102,-0.024562813,-0.011878845,-0.003953016,0.022688596,0.006134104,-0.036745228,0.003149544,-0.0079192305,-0.021619499,-0.024338435,0.0091401115,0.03748436,0.024404429,0.014742968,0.021738287,0.004652548,-0.0014939299,-0.016643582,0.0031924397,0.006388179,-0.021698691,0.023374928,-0.022411423,-0.006546564,-0.026898986,0.028456435,-0.033366356,0.02540753,-0.004167495,0.011350897,-0.0056160544,0.022794185,-0.010420388,-0.008592365,-0.03128096,0.012908346,-0.0015244519,0.001121891,-0.00771465,-0.0026083966,0.025579114,-0.025051165,0.03561014,-0.0108691435,0.0076618553,0.011852448,0.0077674454,0.006153902,-0.0043918733,0.040150497,-0.017963454,-0.0042367885,0.035240576,0.011595073,0.0098726405,0.0009255601,0.0019435112,0.00689633,0.007483673,0.0025951979,-0.033551138,-0.014320608,0.015917653,0.017356314,0.0027222354,0.018610192,0.0068633333,0.00648387,0.00019787764,-0.014690173,-0.019639691,0.007391282,0.012703765,-0.0047416394,0.0017785272,-0.013805859,0.0126905665,0.08088174,0.016419204,0.013363701,0.022002261,0.004157596,0.002553952,-0.034052692,-0.010961534,0.011093522,-0.0082755955,-0.00072799175,0.010690961,0.009753852,0.02181748,0.023968872,-0.01729032,-0.0018296723,-0.027453333,-0.008044618,-0.0077014514,0.00055393367,-0.021896672,-0.001554149,-0.0052959854,0.03714119,0.020814378,0.016471999,-0.011416891,0.012565179,-0.009905637,-0.015587686,0.031069782,-0.011680865,-0.006031814,-0.023704896,0.023638902,0.009120313,0.014874955,0.020919967,0.0002683052,0.01780507,0.0030703517,0.02233223,0.004599753,0.016551191,-0.01059857,-0.00874415,0.037193988,-0.0008364687,-0.007028317,0.026991377,0.01069756,-0.028614819,0.00555996,0.0018230728,0.019098544,-0.032864805,-0.0062330943,-0.0071669035,0.015323711,-0.010882342,-0.02274139,-0.015297313,0.011449887,-0.017158333,-0.027532525,-0.0008220326,-0.012070227,-0.02582989,0.009509676,0.012189016,0.014294211,0.0097604515,0.006114306,0.01595725,0.01523132,0.033075985,-0.007252695,-0.0082755955,0.0065399646,-0.023097755,-0.023190146,0.010453384,-0.007991823,-0.0064376746,0.0035570543,-0.013165721,-0.007793843,-0.018808173,0.0037946312,0.02932755,0.014676974,0.007120708,0.0063221855,0.032891203,0.0028278253,0.014030237,0.02233223,-0.010882342,0.0064013777,0.034739025,-0.008902535,-0.015257717,-0.024668403,0.0017768773,-0.0021744887,0.014544986,0.027532525,-0.016749172,-0.019996056,0.033920705,-0.010572173,-0.010202609,-0.013159121,-0.000782024,0.031676922,0.0152841145,0.008961929,0.015878057,-0.009463481,-0.009001525,-0.023916077,0.031175371,-0.008638561,-0.021738287,0.020471212,-0.016221223,-0.039279383,-0.02510396,0.021461114,-0.0031363452,-0.005127702,-0.009437083,-0.054695483,-0.022965768,-0.027110165,0.014676974,0.0061605014,0.010750355,-0.008869538,0.0029565126,-0.02223984,-0.0053355815,-0.035425358,0.014426198,-0.033894308,-0.010229006,-0.018702583,0.004537059,-0.0008059467,0.016683178,-0.002035902,-0.01162807,-0.0062297946,-0.00679074,-0.019019352,-0.012855551,0.0019484607,-0.0037022403,0.020048851,0.019177737,0.010935137,-0.004596453,0.030198665,0.013621076,-0.0072790924,0.01698675,-0.0143998,-0.018860968,0.0113179,0.015416102,0.011667666,0.022068255,0.011852448,-0.019520903,0.014017038,-0.022794185,-0.01100773,-0.03930578,-0.028324448,0.007655256,-0.000062539235,0.02398207,0.016194826,0.00056754483,0.0071075093,-0.00017715154,0.016234422,0.029169165,-0.0106249675,0.012413394,0.0064277756,0.036085293,-0.004094902,-0.0009486578,-0.020405218,-0.0069953203,-0.024114057,0.016089236,0.022213442,0.0079192305,0.019666089,-0.002408766,0.011430089,-0.0029070175,0.00013002798,0.00064714963,-0.008235999,0.019903665,-0.03260083,0.010387391,-0.03331356,-0.013350503,0.019666089,0.0030654022,0.008684756,-0.031861704,0.0065795607,0.0015318762,-0.04292223,0.022926172,-0.00216129,0.009443683,-0.014967346,0.01915134,0.03260083,-0.0006442624,-0.034818217,0.0113179,-0.0003648208,-0.0008694655,0.006770942,0.015772467,-0.012730163,0.014729769,0.0030126073,0.01604964,-0.015112531,-0.02593548,0.0057876376,0.015204922,0.017554294,-0.016735973,-0.015389704,-0.049125627,0.009331494,-0.008480176,-0.033999898,-0.00068344607,-0.0037682338,-0.017382711,0.027374139,0.011779855,0.018966557,0.011271705,-0.018135037,-0.00329308,-0.033815116,-0.005328982,0.00016983037,0.006134104,0.008473577,-0.030172268,0.023031762,-0.01358148,0.015204922,-0.008295394,-0.03130736,-0.017065942,0.022794185,-0.017435506,-0.023388127,-0.011997635,-0.0003268745,0.0073648845,-0.013515486,-0.01574607,-0.005114503,-0.03479182,-0.0041212994,0.009747253,-0.01255198,-0.036903612,0.007028317,-0.021368723,-0.0023757692,-0.017950255,-0.004177394,0.007292291,-0.02901078,-0.020603199,-0.011482884,-0.014254615,0.018451806,-0.00978025,-0.026159858,0.020550404,0.017224327,0.009417285,0.028825998,-0.022068255,-0.011416891,0.013343903,-0.009602067,-0.01688116,-0.016287217,0.021065153,-0.01945491,-0.032046486,-0.022187045,0.010710759,0.004596453,-0.031148974,0.0055764583,0.02419325,0.025724301,-0.009971631,-0.028957985,-0.0287996,0.021051954,0.0016011694,0.009206105,0.026674608,0.01420182,-0.0016745873,-0.013832256,0.01830662,0.0053454805,-0.030937793,0.013753064,-0.012327602,0.046591472,-0.0055929567,-0.009991429,-0.01874218,-0.018095441,-0.00545107,0.027374139,-0.0067445445,0.011047326,-0.0041377977,0.005883328,-0.0090279225,0.017105538,-0.011812852,0.0069095287,-0.02458921,-0.011621471,-0.01069756,-0.023295736,-0.0061407033,-0.00017849203,0.024364833,-0.005444471,0.0004101914,-0.008005022,-0.037642743,-0.0010674463,-0.018926961,-0.0025044566,0.00648717,-0.027822897,-0.010064022,0.048201717,-0.0057678395,-0.0004928896,-0.009833044,-0.014241416,-0.029301153,0.019032551,0.012083426,-0.013528685,-0.0057381424,0.0077542467,-0.0029581625,0.031571332,-0.015693275,0.0001831322,0.01872898,0.006144003,-0.0054180734,-0.0038738237,0.0013000737,0.0033277266,0.014835359,-0.020497609,-0.02705737,0.01760709,-0.01635321,0.0041081007,-0.0019220632,0.0007119058,0.00668845,-0.016854763,-0.020497609,-0.011608272,-0.0014238117,-0.048016936,0.0060483124,-0.003373922,-0.0062792897,0.009324894,0.009813246,-0.0125783775,-0.009357891,0.021553505,-0.019798076,-0.009582269,0.013264711,-0.018557396,-0.010314798,0.025711102,0.021725088,0.001141689,-0.041127205,-0.0064904694,-0.027242152,-0.020721987,0.0006174525,-0.0097604515,-0.017673083,0.010169611,-0.0008694655,0.009536074,0.02953873,-0.016313614,-0.02336173,-0.046380293,0.003314528,0.01872898,0.00874415,-0.055804178,0.010044224,-0.010143214,0.0064607724,0.011106721,0.24517937,-0.0054279724,-0.021949466,0.017659884,-0.012763159,-0.0019732083,0.017026346,-0.002098596,-0.0195473,0.029301153,0.0128225535,0.00076635054,-0.013429695,-0.0011664367,0.013845455,-0.0043258797,-0.025631908,-0.017884262,-0.029248359,-0.009060919,0.011786454,-0.0094040865,-0.014703372,0.021843877,0.027083768,-0.013858654,-0.013647473,0.0044380687,0.0055434615,0.0019105143,-0.010974733,-0.010954935,0.010235606,-0.020655993,-0.010275202,-0.014030237,0.0070217177,-0.00021056079,-0.009687859,0.039886523,-0.0053454805,0.0236653,0.011238708,-0.017527897,0.01759389,0.022319032,-0.0032402852,-0.0056226538,0.0025721001,0.005470868,-0.013541884,-0.019388916,0.044743653,-0.0066620526,-0.008532971,-0.0018494703,0.0003435791,-0.00023365855,0.0038408267,0.0052332915,0.0027222354,0.016194826,-0.016168429,0.005540162,-0.02212105,-0.013977442,-0.0060450127,-0.012789557,-0.0037814325,-0.0028228757,0.019019352,0.02119714,0.00080099714,0.0052530896,-0.031412948,-0.025645107,0.031861704,0.022609403,0.027426934,0.0036527452,-0.013132724,-0.0039662146,0.0029284654,-0.042975023,0.0043489775,-0.029142767,0.029829102,0.015600884,-0.0024813588,-0.029776307,-0.0062198956,0.020919967,-0.016947154,0.003560354,0.009351292,-0.029089972,-0.00087029045,0.031122576,-0.0061901985,0.0072658937,-0.0023510216,0.014254615,0.018016249,0.0046888446,-0.01245299,-0.011535679,-0.011568676,0.0019979558,0.016696377,0.0013932897,-0.0002918154,-0.017052744,0.0039992114,0.0049660173,-0.018821372,0.015891256,0.0053652786,-0.03508219,-0.0058998265,-0.0236653,0.01172706,0.0028855696,-0.011918441,-0.0036230478,-0.008170006,-0.0432126,-0.013700268,-0.015983647,0.008315192,-0.045218807,0.021051954,0.0031214966,-0.014808961,0.006955724,-0.008968528,0.014888153,-0.005104604,0.024747595,0.018926961,-0.003212238,-0.016815165,0.028720409,-0.0072394963,0.0031858403,0.010855945,-0.02234543,0.009338093,-0.0013190468,0.00401241,0.012914945,-0.016419204,0.019006154,0.028218858,-0.015666878,0.04231509,-0.006153902,-0.01830662,-0.013515486,-0.0073318877,-0.00022994641,-0.014254615,-0.01863659,0.024325237,0.0017719278,-0.033260766,-0.009113714,-0.16788769,0.025526319,-0.00658616,-0.010360993,0.005104604,-0.0081634065,0.032864805,-0.0113179,-0.011608272,0.0073978812,0.0057579405,0.02355971,-0.017739076,0.005259689,-0.030304255,0.006163801,-0.029169165,0.0020721985,-0.0017554294,0.01121891,0.016577588,-0.018544197,0.01317232,-0.021183942,0.0015879706,0.008862939,0.0062924884,0.024919178,0.005982319,-0.028482832,-0.018689385,0.0046228506,0.028614819,0.01512573,0.02212105,-0.006124205,0.004909923,-0.029697115,0.011542278,-0.00021107636,0.014478993,0.019296525,0.019771678,-0.025024768,-0.024074461,-0.0022256337,0.020761583,-0.019771678,-0.00812381,-0.020101646,-0.017514698,-0.007450676,0.006678551,0.007523269,0.033947103,0.019718884,-0.01739591,0.012749961,-0.0056259534,0.021566704,0.008301993,-0.0036560448,-0.0008909134,-0.000966806,-0.0053355815,-0.014281012,-0.013502288,-0.014676974,-0.018821372,0.01624762,-0.025565915,-0.023784088,0.0046591475,-0.002715636,0.020761583,-0.0032501842,-0.022160647,0.003415168,0.013429695,0.014742968,-0.0077476474,0.03323437,-0.018715782,0.010961534,-0.015772467,0.02355971,-0.012189016,-0.009074118,-0.013363701,-0.026727403,0.0216063,-0.02016764,-0.013753064,-0.010882342,0.008282195,0.04392533,0.011482884,-0.005200295,-0.014888153,-0.01841221,0.008763948,0.020009255,-0.028878793,0.0067973393,0.019877268,-0.0002705737,-0.017118737,0.017659884,0.032072883,-0.0004405072,-0.008796945,0.023810485,0.010433586,0.009588868,-0.01636641,0.026885787,0.008915734,0.005071607,0.0020392018,-0.021025557,0.034659833,-0.0104929805,-0.012980939,0.0052530896,-0.010479782,-0.027136562,-0.09476679,-0.016973551,0.017079141,0.0047020433,-0.013013936,0.008018221,0.009998028,0.0015590985,-0.009397487,0.0056952466,-0.00937109,-0.022807384,0.01347589,0.0022916272,0.03262723,-0.027030973,-0.0030208565,-0.00875075,-0.019098544,0.023440922,0.007675054,-0.010288401,-0.027215755,-0.016643582,-0.02048441,0.013165721,-0.011509282,0.014703372,0.0067115477,-0.0068567335,0.0057282434,-0.0059196246,0.012202214,-0.045007627,-0.0329176,0.009390888,-0.011766656,-0.0063518826,0.026832992,-0.014017038,-0.0095162755,-0.0068699326,0.016010044,-0.03426387,-0.012268208,0.0016028192,-0.010974733,0.019732082,-0.0020557002,-0.018293422,-0.024246044,0.016194826,-0.028113268,-0.031016987,0.008664958,-0.040097702,0.002819576,0.005028711,-0.02911637,0.004342378,-0.028852396,-0.0062495926,-0.006114306,0.031333756,0.012156019,-0.0048835254,-0.0050584082,0.0049858154,0.002973011,-0.0038606247,-0.012116423,0.03429027,-0.004909923,0.0123474,-0.018385813,-0.0041938922,-0.014848557,-0.0059856186,0.03025146,0.006308987,-0.030277858,-0.015732871,0.019600095,-0.018280223,0.010255404,0.02375769,-0.015878057,0.017079141,0.01841221,0.0037088396,-0.0031165471,0.018623391,0.026067467,-0.016023243,-0.008361387,0.0339735,0.017633487,-0.0130865285,0.023427723,0.0017867764,-0.0216063,-0.017541096,-0.037906718,0.019296525,-0.0064904694,-0.02275459,-0.013106327,-0.0072592944,-0.01985087,-0.010558974,-0.020933166,-0.035372563,-0.010776753,0.013060131,-0.0058206343,0.00063890044,-0.01883457,0.0070745125,0.042130306,-0.009126913,0.020471212,-0.022662198,-0.023731293,-0.013093128,0.0039893123,0.013020535,0.0034613637,0.01275656,-0.006295788,-0.0016960351,-0.007140506,-0.02334853,0.023322133,-0.033735923,0.022714993,0.014241416,-0.0068039387,0.00020963275,0.007338487,0.022411423,-0.0064706714,0.012050429,-0.02305816,0.0038870224,0.020471212,-0.02840364,-0.015336909,-0.015072935,-0.023295736,-0.010459984,0.0010872444,-0.01780507,0.021553505,0.018385813,-0.0005840433,0.0043390784,0.020312825,-0.0277965,-0.0020309526,0.027400536,0.01172706,-0.03241605,0.023850081,0.023124153,-0.025381133,-0.016841564,0.020840775,0.0061802994,-0.0071273074,0.0069095287,0.009239102,-0.013673871,-0.01709234,-0.006388179,0.02027323,-0.0015582736,0.038619447,0.013053532,0.012083426,-0.0000010295387,0.011179314,-0.0015178525,0.012116423,-0.0025885985,0.006266091,0.039569754,0.009846243,-0.00041802812,0.011152917,0.016722774,0.0006545739,0.007582663,-0.035451755,-0.0024681601,0.026938582,0.011608272,0.03249524,0.028350845,-0.0075892624,0.015455698,-0.015482095,0.002821226,0.009786849,-0.004164195,0.007338487,-0.0073978812,-0.018148236,0.01995646,-0.019600095,-0.006929327,-0.0035372563,0.0174883,0.015838461,-0.0010872444,-0.016735973,0.008757349,-0.020972762,0.0045733554,-0.0015162027,-0.026806595,-0.01884777,0.0013297708,0.025117159,0.0032798813,0.0068039387,-0.013317506,0.010037624,-0.0096482625,0.0114696855,-0.032785613,-0.019256929,-0.014835359,-0.0027106865,-0.009998028,-0.0019055648,-0.005117803,0.016867962,-0.0030588028,-0.032284062,0.03592691,0.009892439,0.05781038,0.016577588,-0.009476679,0.01121891,0.020669192,0.01665678,0.0043918733,0.016551191,0.003458064,-0.0050848057,-0.017818268,-0.012901747,0.00058734295,-0.048650473,-0.035055794,-0.0113179,-0.012525583,0.00067560934,-0.016392807,0.0021183942,0.009311696,0.006698349,0.025447126,-0.0008364687,-0.023889678,-0.014267813,0.01585166,0.021012358,0.009707657,-0.022081453,0.01604964,0.010855945,-0.004744939,0.0004087478,0.037325975,-0.00047886596,0.012162618,0.0002909905,-0.003098399,-0.0059097256,-0.009536074,-0.0043060817,-0.035346165,-0.0013223465,-0.011661067,0.005774439,-0.008354788,0.0088959355,-0.045746755]},{\"id\":\"4d435baf-24fc-4dbd-ac49-fa25118db1dc\",\"text\":\"Explain more on how to connect with the company's \",\"vector\":[-0.00040023559,0.0043246676,0.005673366,-0.029623805,-0.030629383,0.01705407,-0.007120584,-0.016782293,-0.004569268,-0.0062169223,-0.0075961957,0.019201117,-0.011910671,-0.028373625,-0.010232442,-0.0041072452,0.017950939,-0.014336291,0.038646836,-0.019771852,-0.01606208,-0.006964312,-0.021008441,-0.0057481052,-0.0015805591,0.004042698,-0.0008420872,0.0045047207,0.01596696,0.006560042,0.009913104,0.00194661,0.0034345947,-0.004779896,0.003468567,0.0027993135,0.00370977,-0.013120084,0.004749321,0.00028324366,0.018508082,0.00017570025,-0.0019296239,-0.0049905237,-0.018059649,0.013140467,-0.021117153,-0.012882278,-0.0025479188,0.011632099,-0.008513446,0.01731226,-0.03340152,-0.018195538,0.010252826,0.014281935,-0.015436991,0.01781505,0.015994137,-0.010735231,0.0014327797,0.004796882,-0.02804749,-0.0055374773,-0.015124447,0.009152125,-0.027259335,0.00010977284,0.008846374,-0.003862645,0.031444717,0.03193392,-0.013493778,0.026498357,0.011734016,0.005669969,-0.0127328,-0.009457875,-0.014757547,0.011428266,0.0013461505,-0.019771852,-0.009043413,0.013582107,0.004752718,-0.00228973,0.010945859,-0.0011525087,-0.00092319597,-0.0035467031,0.0015771618,0.007738879,-0.0153554585,-0.00062424014,-0.00032082546,0.0127328,0.015070091,0.0126105,-0.0041242316,-0.016469749,0.010755615,0.030276071,-0.026987556,-0.0026498358,-0.026620656,0.0030303248,0.0014412728,-0.016469749,0.03386354,-0.027463168,-0.0050448794,0.022054786,-0.01056537,-0.030846804,-0.0009070591,-0.013486984,-0.007188529,-0.02051924,0.008139752,-0.0024578925,0.02781648,0.021810185,0.010660493,-0.0041072452,0.0014191908,-0.010184881,-0.0059349523,0.008948292,0.0051196185,-0.012236806,0.044897728,0.012141683,0.011564155,0.008262052,-0.022679877,0.008547419,-0.0018497892,0.01161851,-0.019771852,-0.0053574243,0.024772566,0.010069376,0.012019383,0.00377092,-0.0029436958,0.013928624,0.0051060296,0.010578959,-0.0019703906,0.0013410547,0.016659992,-0.020600773,-0.018861394,-0.010877915,0.009593764,-0.0014217388,-0.008506652,0.011142898,-0.021959664,-0.0025207412,0.00454209,0.018820629,0.006407167,0.000314031,-0.009308397,0.026892435,0.0017122015,-0.009716064,-0.009872337,-0.0045488845,-0.012019383,0.013113289,-0.031444717,0.0087852245,0.0021827172,0.0143906465,-0.0026956983,-0.007942713,-0.008968675,-0.018018883,0.020723075,-0.0047153486,0.014553713,0.03201545,-0.02744958,-0.019445717,0.00017548792,-0.004433379,0.021212274,0.0130997,-0.0087852245,0.013779146,-0.007854384,0.006172758,-0.6761837,-0.0076505514,0.002564905,-0.018942928,-0.0009885925,0.010599343,0.009688887,-0.005659777,-0.016238736,0.025791734,-0.0031101597,-0.0044911318,-0.0027823274,-0.023699043,-0.008234874,-0.01656487,0.018562438,-0.017122015,0.0128415115,0.006865792,-0.004120834,0.00028982578,-0.013154056,0.002157238,0.027245747,-0.0033819377,0.0036010589,-0.016836649,-0.0085881855,0.015409813,-0.0061897445,0.0134258345,0.036309544,-0.0038898229,0.049599487,0.011285583,-0.012325133,0.021157918,-0.01025962,0.04658275,-0.014431412,-0.018100416,0.018263483,-0.015070091,-0.00735839,0.0023695645,0.0070662284,-0.018331427,0.018752683,-0.0014591082,-0.0029793666,-0.0036282365,-0.017380204,0.0026889038,0.017787872,-0.008282435,0.016632814,-0.013480189,0.0010964544,0.007834001,0.013622873,0.0052555073,-0.03003147,-0.019092405,-0.023264198,0.01941854,-0.011469033,0.0015686688,0.03421685,0.0027636427,-0.001749571,0.02532971,-0.01877986,0.00078263576,-0.012535761,0.023033187,0.017828638,0.008465885,0.004083465,0.027789302,-0.008329996,-0.026498357,-0.0097500365,-0.041935347,0.013548134,0.02015234,-0.014485768,-0.017950939,0.02621299,-0.009321986,0.0030676944,0.011183665,-0.0048478404,-0.023794165,0.042315837,0.014798313,-0.0122707775,-0.023712631,-0.008547419,0.0026260552,-0.005761694,-0.032803606,0.0055918326,0.0004641459,0.027001146,0.022231441,-0.014743958,0.001644257,0.029759694,-0.0023695645,0.0046983627,-0.004423187,-0.0005367616,-0.0063120443,-0.007888357,-0.029379204,0.018752683,0.022856532,0.017094838,-0.0047459234,-0.0019313225,0.012372694,0.016863827,-0.0030558042,-0.0020638143,0.013276356,0.004647404,-0.0009274425,-0.014676013,-0.0021623338,-0.005320055,-0.009471464,0.0151652135,0.010252826,0.013758762,0.021157918,0.017733516,-0.015912604,-0.0065396586,-0.024935633,-0.0020791017,-0.010354742,0.012386283,-0.0075961957,0.0049701403,-0.023196254,-0.012304749,0.0023644688,-0.03424403,0.0021113756,0.0010004828,-0.01854885,-0.0061761555,0.029841226,0.002714383,0.01007617,-0.0024799744,-0.02250322,-0.008859963,-0.029868403,-0.023264198,0.008873552,-0.011129309,0.0022200868,-0.009043413,-0.023046777,0.0084115295,0.008547419,0.0025343301,-0.010354742,-0.008329996,-0.0015576278,-0.01766557,-0.00015510457,0.0039883424,0.011822344,-0.003950973,-0.011659277,0.00002517397,-0.019962095,0.018657561,0.012277572,-0.0091793025,-0.007901946,0.016170792,-0.001810721,0.027490346,0.022177087,-0.014567302,0.014879847,-0.021348163,0.022897298,-0.010898299,0.01070126,0.0036384282,0.015640825,0.0038422619,-0.0041853813,-0.002135156,-0.0014828888,0.023277787,-0.009675298,0.036880277,-0.011210843,0.0058432273,-0.0017682557,0.010320771,-0.036581323,0.02880847,0.025397656,0.023930054,-0.03413532,-0.008615363,-0.025547134,-0.00023483319,0.009586969,-0.0036825922,0.019622372,-0.029080248,0.013982979,-0.0021096768,-0.0042771064,0.018154772,-0.004328065,0.0026141647,0.00035267445,-0.008085396,0.026131457,-0.0087852245,-0.020125162,-0.007317623,0.015423402,-0.004083465,0.013575312,0.015722359,0.0011779879,-0.009478258,-0.008859963,0.02793878,0.005870405,0.017203549,0.044462882,0.018643972,-0.013140467,0.021986842,0.023454443,0.027368046,-0.00030171606,-0.00883958,0.005635997,-0.007106995,0.029542271,0.006940531,0.013201618,0.009981047,-0.009077386,-0.0068827784,0.017910171,0.015233158,0.009913104,0.0011057968,-0.021850953,0.026742958,-0.0014395742,-0.0048750183,-0.0034345947,0.026403235,-0.021049207,-0.02103562,-0.013738379,0.014118868,-0.0015542306,0.0033836362,-0.039163213,0.016007725,0.0048648263,0.0046270206,-0.0048818127,-0.009328781,0.022802176,-0.025316123,-0.018657561,0.014662424,0.0037369477,-0.003144132,-0.020437706,-0.0073380065,0.03736948,-0.019445717,0.01755686,0.020940496,-0.010775998,0.0045183096,-0.0035059364,-0.005673366,0.0049701403,0.026049923,-0.0044571594,0.039271925,-0.0012476309,0.005805858,-0.004538693,-0.03682592,-0.02471821,0.04144615,0.012297955,0.00039981093,-0.018114004,-0.0016867223,-0.029977115,-0.004528501,-0.0062542916,-0.032939497,-0.020315407,-0.00084081327,0.006498892,-0.0109118875,-0.014648835,0.01966314,0.0005371862,0.0033445682,-0.026077101,-0.017230727,-0.00004947209,0.090447724,0.023304965,0.0047153486,0.016102847,-0.011020599,-0.02992276,-0.01941854,-0.045169506,0.0027500538,0.0047425264,-0.008431913,-0.0015533812,0.011849522,-0.008710486,0.0029131207,0.014730369,0.011421471,0.0036384282,0.015192391,-0.008805607,0.0011873302,-0.009702475,0.01051781,0.018127594,0.0258325,0.020424118,0.0026549315,0.029324848,0.0028298886,-0.01978544,0.0248541,-0.0036112503,0.0057820776,0.004647404,-0.019377774,0.035765987,-0.0147711355,0.017747104,-0.006821628,0.025139466,0.015029324,0.020560008,-0.0034447864,-0.029542271,0.01137391,-0.0255879,0.0020570199,0.006865792,0.005788872,-0.009933487,0.02547919,-0.009987842,-0.01267165,0.004800279,0.0015516826,0.0032086791,-0.028726937,-0.01074882,0.014689602,-0.028210558,-0.038510945,-0.0091725085,0.027789302,-0.027028324,-0.0071953232,-0.013955801,-0.023685453,0.0026464385,0.0011083448,0.003927192,-0.0016569966,-0.012929839,-0.029705338,0.011604921,0.05378487,0.024935633,0.011231227,-0.008098985,-0.018086826,0.008058218,-0.0050278935,-0.008744458,-0.0013665338,-0.0034057184,-0.016102847,-0.00035437307,-0.01842655,0.016578458,-0.011625305,0.019459305,-0.0097500365,-0.00032804455,0.016891005,-0.03340152,0.013276356,0.024201833,0.006665356,-0.014608068,0.006546453,-0.012114505,-0.0258325,-0.046283796,0.0021861144,-0.013439423,0.008187313,0.016809471,-0.0012196038,-0.00028706554,-0.008635746,0.018453727,0.028482337,-0.030330427,0.005911172,-0.013548134,-0.011407882,0.01916035,0.016673582,0.006678945,0.009104564,-0.004474146,0.013751968,-0.052507512,0.004059684,0.007738879,-0.033347163,-0.0068997643,0.009226863,-0.031009872,0.010803176,-0.011591332,-0.012032972,0.021674298,-0.0138131175,-0.018467316,-0.021551996,-0.0057345163,-0.0011142899,0.0028774498,-0.017040482,-0.011040982,-0.013446217,-0.0118834935,0.028890003,-0.025791734,0.0013469998,-0.04329424,-0.019078817,-0.0067129172,0.010653698,0.027653413,-0.019214706,-0.0065838224,-0.028210558,0.00049811817,-0.020981263,-0.025207411,-0.00021200809,-0.0076369625,0.019241884,0.010239237,0.020193107,-0.0027619442,0.014186813,-0.008751252,-0.009777214,-0.012454228,-0.010572165,-0.018576028,0.006845409,0.011958233,0.00036562636,0.005911172,0.03745101,0.010388715,-0.0071953232,0.020193107,-0.01831784,-0.00695412,-0.015763124,-0.04302246,0.005775283,0.014648835,-0.018630384,0.027177801,-0.04264197,-0.0011210843,0.012834717,0.006091225,0.009586969,-0.023427265,0.02076384,-0.029270492,0.026892435,0.0043654344,-0.001206015,0.008425118,0.0036927839,-0.035521388,0.0076777292,0.0407667,0.01803247,0.012053356,0.02323702,-0.006291661,-0.017135603,-0.012202833,-0.011727221,-0.012556144,-0.0017291877,-0.0034957447,-0.009050208,-0.029814048,-0.0046881707,0.024881277,0.019500073,0.019595195,-0.013493778,0.018970106,-0.013595696,-0.020940496,0.0010837149,-0.0375869,0.032450296,0.01545058,0.0078204125,0.0044028037,0.011034188,0.006196539,0.0028010122,-0.016211558,-0.01767916,0.00401552,0.026253756,-0.017461738,-0.023264198,-0.0030031472,-0.0036927839,0.003235857,-0.019676728,0.013249178,0.012012589,0.013323917,-0.0042329426,-0.0024477008,-0.024337722,0.03090116,0.009131742,0.014499357,0.0082144905,-0.018902162,-0.002187813,0.0032732266,-0.002530933,0.03462452,0.03389072,-0.0060708416,-0.007643757,0.03016736,-0.012032972,-0.010952654,0.0035025391,0.015600058,0.004086862,-0.00482406,0.00042168057,0.0015983945,-0.0017954336,-0.009994636,0.022842942,0.024446433,-0.014526535,-0.015899014,0.00051170704,-0.009729653,0.016469749,-0.010110143,-0.007392362,-0.01729867,-0.024555145,-0.020981263,0.015844658,0.0042974898,-0.006875984,-0.003393828,0.008221285,0.0002770862,0.0062203193,0.0018718711,0.009145331,-0.009967458,-0.046283796,-0.03424403,-0.00017198453,-0.0023865507,-0.005323452,0.010504221,0.008927908,0.021089975,0.0034362932,0.020410528,-0.008309613,0.012046561,-0.018970106,0.0067163142,-0.0043518455,-0.041853815,0.013310328,-0.0042737094,-0.020858962,-0.0023559758,0.02793878,0.01534187,-0.013446217,-0.00043102296,-0.009349164,0.033238452,-0.0051094266,0.00460324,-0.0010633315,0.003726756,-0.0029267096,0.0005541724,0.013147262,0.0036927839,-0.010551781,-0.019269062,0.0015236555,-0.010585754,-0.010103348,-0.047071952,-0.008805607,0.012447434,-0.0063426197,-0.0061116084,-0.010313976,-0.022068376,-0.021592764,0.016768703,0.010477043,-0.011625305,0.020369763,0.019173939,0.035765987,0.015613647,-0.014798313,-0.012658061,-0.01471678,-0.020791018,-0.010925476,-0.015178802,-0.00500751,0.045821775,-0.00078900554,-0.033836365,-0.043864973,-0.008961881,-0.03932628,0.009539409,0.004433379,-0.0072972397,-0.001144865,0.01928265,-0.0037301532,0.019595195,-0.0035704838,0.0025054535,-0.014662424,0.0093695475,-0.013650051,-0.027965957,0.017502503,-0.0054865186,-0.031716496,-0.0020060616,0.03378201,-0.009220069,-0.0147711355,0.03304821,-0.021429697,-0.017026892,0.011278788,0.016469749,0.0010064279,0.005323452,0.012868689,-0.017488915,0.0012128094,0.02732728,-0.005741311,-0.027463168,0.0010956051,-0.010803176,-0.013643256,0.007304034,-0.0022285797,-0.011890288,0.00741954,0.012569733,-0.0002547919,0.008078601,-0.013500573,0.036010586,0.010544987,-0.00964812,-0.011278788,0.02149764,-0.0076777292,-0.0013801227,0.011448649,-0.03068374,-0.0070390506,-0.019921329,0.0011958233,-0.013874268,0.005258905,0.0046134316,-0.005703941,-0.0101373205,0.00014788545,0.011727221,-0.008921114,-0.005897583,-0.0059213634,-0.01317444,-0.0018226113,-0.012318338,0.0028095052,-0.0052555073,-0.010667287,0.006030075,0.0045726653,-0.02706909,-0.009002646,0.017040482,-0.021103563,0.005309863,0.23046777,0.0004433379,-0.014023745,0.02732728,-0.010843943,0.012189244,0.02164712,0.0078204125,0.0057481052,0.0022540588,-0.022938065,0.014309113,-0.00088157994,-0.015056502,0.00541178,-0.0255879,-0.0388099,-0.027775714,-0.024201833,-0.00883958,0.0116796605,-0.003604456,0.0000801002,-0.007929124,0.018942928,0.01964955,0.0041989703,0.016415393,0.023807755,0.009926693,-0.02758547,0.020057218,0.013188029,-0.008520241,-0.018290661,-0.009607353,0.027531113,0.0071409675,0.017488915,0.0004993921,0.024378488,-0.013942213,-0.008758047,-0.012827923,-0.011040982,0.01378594,-0.01366364,-0.019500073,0.0066993283,0.013704407,-0.033591762,0.010490632,0.028292092,0.013296739,-0.0051230155,-0.0030795846,-0.0027891218,0.016659992,-0.0054083825,0.01267165,-0.01743456,0.031200117,0.010449865,0.0122436,-0.020111574,-0.007698112,0.015124447,-0.00082807365,0.028781293,-0.0053472323,0.0010353044,0.015328281,-0.009858748,0.016918182,-0.004192176,-0.024147477,0.048892867,0.016999716,0.045930486,0.03090116,-0.014730369,0.025316123,-0.00036838662,0.007086612,0.0006369797,-0.010293593,0.027028324,-0.009688887,-0.0007134173,0.010952654,0.010286798,0.0037947006,-0.020872552,-0.032912318,0.0061489777,0.012223217,0.00078306044,0.014703191,-0.014526535,-0.00039598907,-0.024419256,0.073108286,0.007698112,0.008384352,-0.028862825,-0.0008514296,0.017747104,0.038782723,0.0059553357,-0.019173939,-0.0040189177,-0.008554213,0.0037539338,-0.01267165,-0.008710486,-0.005323452,0.00983157,-0.008384352,0.007657346,-0.0065974114,0.00023037434,-0.027626235,0.00019364184,0.011774783,0.0000090835965,-0.008520241,0.017910171,-0.00964812,0.005727722,-0.028020313,0.019703906,0.012970606,0.0047934847,-0.023563154,-0.0031933917,0.0034396905,0.004813868,-0.007861179,-0.025248177,-0.022231441,0.0029487915,-0.012501789,-0.016388215,-0.0061251973,-0.005282685,-0.018589616,0.005585038,-0.008180519,0.0013019865,0.00020680609,-0.027748536,-0.013486984,0.0019805823,-0.007569018,0.017081248,0.018331427,-0.03337434,-0.013711201,0.025859678,-0.014431412,-0.023766987,-0.0007571566,0.020138752,0.0023695645,-0.010178086,-0.0063833864,-0.176547,0.022095554,0.010361537,-0.0066585615,0.013901446,-0.0070050783,0.015980547,-0.0013334109,-0.0077796457,0.027463168,-0.0012119601,0.0055374773,-0.014703191,-0.004919182,0.0037029756,0.007643757,0.005585038,0.0097568305,0.026973968,0.008724075,0.027408814,-0.00417519,0.013799529,-0.009614147,0.015070091,0.008160135,-0.013018167,-0.01508368,-0.0107148485,-0.01841296,0.01143506,-0.014580891,0.030928338,0.011367115,-0.0031254473,-0.01928265,0.0069914893,-0.0056801606,-0.004841046,0.007344801,0.0036486199,0.02016593,-0.005038085,0.016456159,0.011754399,-0.00347706,0.0020417324,-0.0011737413,0.012026178,-0.007990274,0.03595623,-0.03829352,0.009532614,0.014417824,0.002029842,0.0056190104,0.0041242316,0.0013368081,0.004249929,-0.024337722,-0.0062033334,-0.0036486199,-0.012114505,-0.008751252,-0.010415892,-0.02757188,-0.011523388,0.00016391612,-0.023169076,0.026131457,-0.00031721592,-0.01131276,-0.012494994,-0.0024935633,0.013167645,-0.0056665717,-0.00096566125,-0.008513446,0.004528501,0.0053812047,-0.014689602,0.01384709,-0.014227579,0.021307396,-0.025411244,-0.0032392542,-0.016850237,0.0018209127,0.0008781827,-0.01254935,0.036309544,-0.0063596056,-0.027137036,-0.03375483,0.019934917,0.00630525,0.022109142,-0.0059553357,0.021185096,0.0118834935,0.0011720427,-0.007147762,-0.0066211917,0.018752683,0.031961095,0.017991705,0.0061795525,0.022068376,0.018657561,-0.0050143045,-0.03598341,0.012053356,0.010388715,0.025261767,-0.0031950902,0.023549566,0.0012569734,0.012223217,0.0067197117,0.010280004,0.040494926,-0.005201152,-0.0017971322,0.0070798174,-0.0059927055,-0.021443285,-0.10523245,-0.0032834182,-0.0021623338,0.012189244,-0.0023627703,-0.007670935,0.0042465315,0.024256188,0.013106495,0.026267346,-0.015287514,-0.04068517,-0.0035636893,-0.01568159,-0.0011159885,0.0035806755,-0.0003131817,0.008194108,-0.0028536692,-0.002806108,-0.02151123,-0.020967674,-0.013147262,-0.0064751115,-0.01841296,0.004956552,-0.027748536,-0.009559792,0.023930054,0.00012378639,0.0151652135,-0.0072225006,0.00200776,-0.0151652135,-0.0024867689,-0.0020621158,-0.015926192,-0.013072522,0.026267346,-0.031689316,-0.004446968,-0.0056529827,-0.0019924727,-0.03533114,-0.027272925,-0.008628952,-0.025044344,0.014893436,-0.0015253541,-0.014309113,-0.027028324,0.013690818,-0.033591762,-0.023712631,0.03609212,-0.0068284227,-0.015600058,0.0026787121,-0.038755547,0.007344801,0.019391362,-0.018698327,-0.0007206364,0.013323917,0.008241668,0.0021623338,-0.0037879061,-0.008302818,0.041745104,0.0040053288,0.0060844305,0.0071681454,-0.02175583,0.015382635,-0.028156202,-0.0044299816,-0.00084888167,-0.0075486344,-0.0025479188,0.0033921294,-0.020940496,-0.015858248,0.0053132605,-0.018861394,0.020736663,0.0028315873,0.0036316337,0.0013911637,0.0014523137,-0.023073955,0.0028910388,0.01831784,0.0026906023,0.00087223755,-0.00031657892,-0.013588901,-0.021742241,-0.0062407027,-0.008914319,0.009192891,-0.030330427,-0.010708054,-0.04734373,0.015396224,-0.0015584771,0.015613647,0.026552713,-0.0017920363,0.013493778,-0.0036757977,-0.009987842,0.0236311,-0.021089975,0.009994636,-0.015192391,-0.010891504,-0.009851953,0.00012452954,0.019717496,-0.0063731945,-0.006376592,-0.0039577675,0.010762409,-0.02065513,0.027354458,0.02508511,0.005907775,0.006410564,-0.021484053,0.015219569,-0.009926693,-0.03533114,0.017081248,-0.017285082,-0.002916518,0.042315837,-0.0041276286,-0.034162495,-0.0020808005,0.048294954,-0.012032972,0.008363969,-0.003213775,-0.0066483696,0.009491847,-0.008819196,-0.0014743957,-0.017189959,-0.013113289,0.0036282365,0.005034688,0.003410814,0.015980547,-0.008194108,-0.018209128,-0.023182664,-0.015532114,-0.021307396,-0.0005286932,-0.0036486199,0.023101132,-0.00476291,0.052507512,-0.00389322,0.010449865,-0.01583107,0.012386283,-0.0064139613,-0.015654413,0.0039441786,0.0035365114,-0.038239166,-0.025941212,0.00926763,-0.0001549984,0.010103348,0.001275658,0.00015606004,-0.001924528,0.0021997034,-0.011482622,0.023359321,0.012875483,-0.006746889,-0.030955516,0.02088614,0.03003147,0.012997784,-0.0045862542,-0.01520598,0.012297955,0.012345516,-0.012291161,0.013554929,-0.015396224,-0.006468317,-0.0024544953,-0.0077049066,0.0057243244,0.002512248,-0.005262302,0.00018705972,0.019907739,0.011163282,0.006998284,-0.027884426,-0.03671721,0.00033844856,-0.01317444,-0.044055216,0.014689602,0.03717923,0.00036626335,0.0014242866,0.022530397,0.0056325994,-0.019962095,0.009335575,0.024989989,-0.037668433,-0.024405666,0.028754115,0.0101441145,0.017760694,0.019608784,-0.024256188,0.011122515,0.006563439,0.005765091,-0.033564586,0.010008225,0.00735839,-0.011856316,0.012053356,-0.013656845,-0.02113074,-0.014540124,0.000051038,-0.021416107,0.006376592,-0.004813868,0.08783866,0.030330427,-0.0012017684,-0.0023695645,-0.007371979,0.023372909,0.02288371,-0.002902929,-0.011598127,-0.017570449,0.019839795,-0.0039305896,-0.004433379,-0.009464669,-0.008635746,0.036173653,0.0048308545,0.027965957,-0.012997784,0.0035501004,0.016673582,0.002661726,-0.0044911318,0.0056665717,-0.016034903,0.02039694,0.0010522906,0.004300887,-0.01210771,-0.014934202,0.0040936563,-0.0036690033,-0.03190674,0.010592548,0.0025632065,0.0070934063,-0.023834933,-0.028862825,-0.0031560222,0.026321702,0.003516128,0.026117867,-0.022462454,0.003950973,-0.023726221,0.02967816,-0.0045047207,-0.025750967,-0.0018820628]},{\"id\":\"2f059f37-8fe9-4b75-aba5-3eb5fec532b9\",\"text\":\"I posted a video for Beauty Bello so just trying to find out whether ya'll saw it. I'm not the genius at all this promoting quite yet. \\nThanks, Chris\",\"vector\":[-0.03526077,0.015050009,0.013556797,-0.028685397,-0.001371234,-0.0033400804,-0.0008751338,-0.025279824,0.016936172,0.0022005236,0.0028063224,-0.0037101088,-0.024454627,-0.01790545,0.02475589,0.0013605915,0.018481778,0.010249462,-0.0006647415,0.0109502245,-0.027244577,-0.0019156343,0.020525122,0.017656581,0.0013114727,-0.03533936,0.035313163,-0.032274347,0.0013090168,-0.01337342,0.012246962,0.0016315638,-0.014434386,-0.01622886,-0.02403548,-0.029314118,0.011081208,-0.011441412,0.018442484,-0.0009946562,0.010229815,0.017185042,-0.0015013989,-0.030335788,-0.017774466,0.020119073,-0.0017027861,-0.019175991,0.01226006,0.0077018323,-0.008749701,-0.00076625374,-0.039426047,-0.03222195,-0.0016512113,0.00070935773,0.036649194,0.0033024226,-0.00014786814,-0.0022725645,-0.009646938,0.0167135,0.0041980227,-0.001735532,-0.0038541907,-0.01011193,-0.016569419,0.013740174,-0.01622886,0.0058877105,0.018769942,0.00073555444,0.0066998084,-0.016451534,0.036020473,-0.0025165214,-0.00058123947,-0.007570849,0.0020482552,0.019804712,0.010386995,0.0020990113,-0.0060219686,0.030073822,0.026694447,0.011867109,-0.018416286,0.01281019,-0.009240889,-0.0014088918,-0.029811854,0.0037657768,0.018403187,0.025829954,-0.0066899844,0.017158844,-0.0031796256,0.0148797305,-0.018101925,0.011906404,0.0030126215,0.009522503,-0.018927122,-0.016176468,-0.0064673126,-0.008880684,-0.006631042,-0.0103215035,0.025332218,0.016215762,-0.043591324,0.032300543,-0.00083297346,-0.01726363,-0.021926645,0.008749701,-0.029707067,-0.015416763,-0.017525598,0.0029291194,0.038063817,0.017813763,0.009378422,0.0023331444,0.028056676,-0.0054980344,-0.01495832,-0.015587042,0.009568348,-0.0010716091,0.019385565,-0.007505357,-0.0016724961,0.0018878003,-0.012319002,0.019830909,-0.021913547,0.016412238,-0.016765894,-0.027768511,0.003900035,0.039845195,0.006693259,0.033557985,-0.014460583,0.0010560548,0.011055011,-0.0013679594,-0.016294353,0.00907716,0.012070133,-0.0023953614,0.009764823,0.022227908,0.0230793,0.049066436,0.009764823,0.011788519,-0.019621335,-0.016346747,-0.022293398,-0.0022218083,0.02356394,-0.0075642997,-0.006542628,0.03877113,0.03319123,-0.024389137,-0.0031845374,0.0045222067,-0.011172896,0.016608713,-0.007872111,0.035444148,-0.0055537024,0.0123386495,-0.008998569,-0.01567873,0.01862586,-0.0024543041,-0.0029127465,0.015429862,0.02427125,-0.0065917466,-0.0022742017,0.004721957,0.01528578,-0.023708021,-0.0052491655,-0.03400333,0.00011450827,0.015063107,0.01942486,0.0125940675,-0.61447,0.0048529403,0.03237913,0.022909021,-0.012607166,0.041993324,-0.0020891875,-0.035234574,-0.037932836,0.043565128,0.0035856746,-0.028606806,-0.0019205462,0.016831385,0.002809597,-0.010812691,0.042098112,-0.052969746,-0.003259853,-0.00015278002,-0.03350559,-0.013000117,-0.0030944862,0.020381039,0.014670157,0.008933078,0.015259583,0.007027267,-0.0023986362,0.008520479,-0.0038312685,0.05124076,0.0071647996,-0.009653487,0.04974755,-0.027716117,0.020472728,0.0089265285,-0.0074922587,0.02920933,-0.047573224,-0.008186472,0.027165987,-0.008330554,0.0038803874,0.028973559,0.019477254,-0.006018694,-0.00035693016,-0.0075970455,0.03279828,0.015901402,0.018167417,0.0035070844,0.00037391708,-0.02315789,0.037618473,-0.02259466,0.009339127,0.0046630143,0.0076101436,-0.003811621,-0.03549654,-0.006732554,-0.02991664,0.01042629,-0.025214331,-0.00062585576,0.023406759,0.034658246,0.010203618,-0.0007089484,-0.043538928,0.022804234,0.006637591,0.028947363,0.020276252,0.015180993,-0.014120026,0.015220287,-0.010478684,-0.0059335544,0.014696353,-0.011552748,0.011087757,-0.0011305517,-0.019058105,-0.017800663,-0.024480823,-0.010360798,0.011886757,0.025083348,0.0033204327,0.010812691,0.0046040714,0.014355796,0.014015239,0.002153042,-0.00044779998,-0.017630385,-0.0016405688,-0.010694806,0.009843414,-0.0067980457,0.01329483,-0.005714157,-0.0040801372,-0.01273815,0.02729697,-0.016726598,-0.0011706654,-0.018246008,-0.011611691,0.0049479036,-0.023328168,-0.033243623,0.031174084,-0.003677363,0.007891758,-0.041914735,0.011172896,-0.017879253,-0.008251963,-0.004073588,0.023668727,0.02420576,0.0010175784,-0.011827814,-0.0026360438,0.02507025,0.01368778,-0.020341745,0.01153965,0.0037690515,-0.026956413,0.008363299,0.016176468,-0.003238568,-0.033427,-0.04471778,0.0018828884,-0.0029225703,0.008887233,0.010373897,-0.008029291,-0.012391043,-0.016988566,0.0006737466,-0.03987139,0.009587996,-0.0050264937,-0.023184087,-0.013543698,0.03308644,0.0032533037,-0.0036577154,-0.011041912,-0.020813284,-0.012266609,-0.023734218,0.029025953,0.030257199,-0.001366322,-0.00656555,0.009967848,0.0020777264,-0.024402235,0.035994276,-0.00015196137,-0.020813284,0.009745176,-0.010072635,-0.026196709,0.0074398653,-0.0025640028,0.008251963,0.008887233,-0.000059454247,-0.010072635,-0.0060907346,0.010694806,-0.0036577154,-0.019110499,-0.009136102,0.030545361,-0.0031485169,0.011755773,0.040788274,-0.030938312,0.003015896,0.02362943,0.0014711089,-0.013622289,0.008821742,-0.015835911,0.028921166,0.03476303,0.0029962487,-0.0033728261,0.009378422,0.038299587,-0.004263514,0.02324958,-0.019005712,0.01950345,-0.023839004,0.0064935093,-0.0047547026,0.045032144,0.010963323,0.016372943,-0.007623242,0.02173017,-0.006103833,0.0049871984,-0.0021088351,0.0038410923,0.019084303,-0.014106927,0.013262084,-0.017145745,-0.008330554,-0.030283395,-0.027637528,-0.0015325075,0.025607282,0.019149793,0.0026114844,0.007354726,-0.00052188756,-0.011657535,0.045739453,0.023616333,0.016674206,0.010459036,-0.03353179,-0.010341151,0.0000027917147,-0.007099308,0.000041853335,-0.015901402,0.033924736,-0.003811621,0.0037690515,0.03120028,0.00827816,0.006850439,0.0053277556,0.005720706,0.008219217,-0.022424383,0.009797569,-0.019726122,-0.0015144972,0.018180516,-0.030414378,-0.039688013,0.008009643,0.028056676,0.017853057,0.019686827,0.029864248,0.014971419,0.00079122244,-0.008409143,0.008343652,0.0043584774,-0.0015308702,0.006732554,-0.03416051,0.008559775,-0.022555366,0.02634079,-0.010897831,0.0093063805,0.005674862,0.032588705,0.0047252313,-0.00045926103,0.00827816,-0.0010192157,-0.029156936,0.0038705638,-0.013150748,-0.0020760891,0.004830018,0.032143362,0.023144793,-0.03405572,0.016621811,-0.02028935,0.02682543,-0.02292212,-0.007433316,0.007983447,-0.00835675,0.027663724,-0.022699447,0.020826383,-0.005858239,-0.015822813,0.004194748,-0.0074136686,-0.004027744,0.009758274,0.002837431,0.0040244693,-0.0021071977,-0.03725172,-0.0056879604,0.037670866,0.011120503,-0.03795903,-0.0017944745,0.019765416,0.007099308,-0.0041881986,-0.011657535,0.00812098,0.013962845,-0.048385322,-0.01719814,-0.009797569,-0.0027981359,0.13203141,0.004918432,0.016294353,0.04288401,-0.010295306,0.03795903,-0.014984517,0.0139890425,-0.011565847,-0.00764289,0.0014842072,-0.017185042,-0.008723504,0.0020629908,0.008310906,-0.009221242,-0.0013679594,-0.012783994,0.0124696335,0.01018397,0.0048431167,0.0044632643,-0.0031845374,0.023262678,0.009463561,0.021101449,0.02396999,-0.008946176,-0.003900035,0.008874135,-0.006349427,0.003177988,-0.007688734,0.006568825,-0.002992974,0.0058287675,0.024480823,0.011506904,0.006303583,-0.01257442,0.03447487,0.008468086,0.013032863,-0.022149317,0.005445641,-0.016372943,-0.0074136686,0.010937125,0.020708498,-0.0069945212,0.0294451,0.00086367276,-0.0030682895,0.0071582505,-0.0057239807,-0.0009103356,-0.026537266,-0.0038345433,-0.011362823,0.008153725,-0.003922957,-0.03334841,-0.007551201,0.008265061,-0.0151285995,-0.018350795,-0.026602758,-0.020747794,-0.022712545,-0.013412715,-0.00038476416,-0.018075729,-0.029785657,-0.025345316,0.009751725,-0.0064804107,0.030833526,-0.005105084,0.021586088,0.009849963,-0.004057215,-0.043905683,0.0035758507,-0.018691352,0.0019238208,0.0018599663,-0.0027670274,-0.01129733,-0.035915688,0.020302448,0.024808284,0.0068569886,0.03908549,-0.0114545105,0.009384971,0.005039592,-0.0037133833,0.037906636,0.009260536,-0.0058222185,0.018075729,-0.018246008,-0.012240412,-0.036492016,0.009384971,0.023040006,0.009260536,0.021638481,-0.024965463,-0.018494876,0.024493923,-0.0040211948,0.0029602281,0.013334124,0.015835911,0.018180516,0.003192724,0.030545361,-0.0019631158,-0.0021939743,-0.012842936,-0.03080733,0.021979038,-0.0015881754,-0.014290305,0.027585134,-0.013425813,-0.027637528,0.011657535,0.0017453557,-0.0011289144,-0.0006463219,-0.01679209,-0.021311022,-0.03678018,-0.005969575,-0.0022791137,0.02315789,-0.008435341,-0.02118004,-0.03135746,-0.013039412,-0.035182178,-0.027532741,-0.014827337,-0.030754937,-0.011389019,0.03279828,-0.008140627,0.022817332,0.006496784,-0.009601094,-0.00029000576,-0.041600373,0.009339127,-0.036046673,0.0044141454,0.0004044117,0.026681347,0.027008807,0.014198616,-0.00026626498,0.015338173,0.021743268,0.0019811261,0.0012566234,-0.0007871292,-0.019713024,-0.009064062,-0.0013466745,0.0035201828,0.018259106,0.004532031,0.013465108,-0.00006718023,0.013700878,-0.0075970455,-0.02968087,-0.037225522,-0.019686827,-0.0214944,-0.0053212065,0.011192543,0.009155749,-0.0017224336,-0.0028161462,0.016687304,0.004610621,0.006532804,0.004983924,0.035601325,-0.027585134,0.03376756,-0.022830432,0.01313765,0.007826267,-0.025751365,-0.0053899726,0.0064443904,0.006752202,0.018835433,0.024926169,0.013491305,-0.00039029002,-0.042202897,0.01790545,0.015704926,-0.04131221,-0.02936651,-0.016006188,-0.0112056425,-0.02348535,-0.008363299,0.0013311203,-0.0027375561,-0.01639914,-0.027401756,0.023642529,0.007020718,-0.031436052,0.0013982493,-0.005802571,0.023773514,0.013543698,0.037775654,0.02499166,0.0004793179,-0.0151285995,0.03764467,0.01624196,-0.0025083348,0.02093117,0.042962603,-0.030414378,-0.013019764,0.0021939743,-0.0014694716,-0.032929264,-0.047861386,0.0028259698,0.017695876,-0.012050486,-0.014264108,-0.0110746585,-0.015377468,0.010236364,-0.004466539,-0.00037985228,-0.007394021,-0.0045746,-0.028711593,0.021337219,0.0019287327,0.015259583,0.02610502,-0.015613238,-0.016870681,-0.021992138,-0.018638957,0.0058844355,0.015482255,-0.015495353,-0.030492969,0.021913547,0.036492016,0.0027637528,-0.00867766,-0.02060371,0.00613003,0.027847102,-0.028528215,0.011035363,-0.0015046735,-0.011349724,0.005691235,-0.023053104,-0.020813284,-0.020132171,0.024795184,-0.015495353,0.03358418,-0.011716478,-0.018350795,0.008900331,-0.0006684254,0.007466062,-0.0021825132,0.0122142155,0.02005358,-0.0151285995,-0.0050428663,-0.040604897,0.014421288,0.010603118,0.0077673243,0.011009167,0.024245054,0.01320969,-0.0084156925,0.006025243,-0.018193614,-0.013124551,-0.029549887,0.0023380562,0.008140627,-0.031409852,0.031174084,-0.004561502,-0.00005223992,-0.015220287,-0.012869133,0.001494031,0.0065851975,-0.019149793,0.022882825,0.009463561,-0.0031337813,-0.004856215,-0.026642052,0.0018599663,0.007688734,0.0022168965,0.010170872,0.022463677,0.01973922,0.0058156694,0.0076035946,-0.016648008,-0.0023527918,0.001719159,0.00851393,0.015744222,0.009515954,-0.04846391,-0.00593028,-0.00533103,-0.027427955,0.03837818,-0.00002142553,-0.014277206,-0.017145745,0.01798404,0.004728506,0.040080965,-0.019084303,-0.01138247,-0.03295546,-0.0041751005,-0.013596091,-0.025332218,-0.011120503,0.04518932,0.0022791137,-0.03232674,-0.0100660855,-0.021690875,-0.021193137,-0.024493923,0.0008280616,0.01193915,-0.007387472,0.0023413307,-0.024258152,0.010550724,-0.015076206,0.0037461293,0.0031190456,-0.001215691,-0.0002603298,-0.021062154,-0.011631339,-0.0038640145,-0.009777921,-0.0058385916,0.007793521,0.011179445,-0.009339127,0.01870445,-0.013124551,0.0014031612,-0.015822813,-0.010544175,0.03539175,0.00620862,0.051293157,-0.027349364,0.007937603,-0.008055488,-0.00025705522,-0.016215762,0.012580969,-0.0029995232,0.015063107,0.008265061,0.0016151908,0.0036347932,-0.02259466,-0.008631815,0.009443914,-0.015940698,-0.0013221152,0.02356394,0.007112406,-0.029025953,0.0047710757,0.013884256,-0.006336329,-0.013792567,0.018180516,-0.00063649815,-0.009483209,-0.004482912,-0.00056936906,-0.0029323942,-0.016674206,-0.013779469,-0.004482912,-0.00037964762,0.019464154,-0.013622289,-0.010642413,-0.01925458,0.0016446621,-0.013065608,-0.005658489,-0.0070862095,0.0005525868,-0.009037864,-0.0016160095,0.016097877,0.0036249696,-0.028161462,0.032038573,-0.019804712,-0.0060907346,-0.004957727,0.22319596,0.0028226953,-0.014473681,0.028633002,0.021520596,-0.008769348,0.015875205,0.011670634,0.0044861864,-0.0037854244,0.04021195,-0.021153843,-0.012646461,-0.0011215466,0.014774944,-0.016071681,0.009561799,-0.019516548,-0.002742468,-0.027899494,-0.006732554,-0.00819957,0.0012222402,-0.004227494,0.025030956,0.011172896,0.005501309,-0.02713979,0.0071647996,0.005861514,-0.027008807,-0.026956413,0.025122644,-0.009758274,-0.03237913,0.01702786,0.006293759,0.002732644,0.02690402,0.016582517,0.0018517799,0.0023396935,-0.03175041,-0.008828291,0.0055111325,-0.0074857096,-0.007538103,-0.01735532,-0.012554772,0.01066206,-0.018088827,-0.025502495,0.026956413,0.038063817,-0.009031315,-0.0043813996,0.004171826,0.011316978,-0.022254104,-0.004990473,0.0009987495,0.04369611,-0.002898011,0.010524528,-0.01552155,0.0071189557,0.008906881,-0.014133125,0.015482255,-0.02698261,0.020747794,-0.02427125,-0.019621335,0.008147176,-0.013517502,-0.021153843,0.023092398,0.015194091,0.04351273,0.012050486,-0.0020990113,-0.018246008,-0.035994276,-0.03381995,-0.029707067,-0.01059002,0.013923551,0.0021071977,0.0059630256,-0.013150748,-0.00094553747,0.0019123597,-0.023511546,-0.013766371,0.009902356,-0.027820904,0.0029061974,0.0053146575,-0.0103215035,0.013923551,-0.0040965104,0.012921526,0.045660865,0.0049610017,-0.016595615,0.006247915,0.0058451407,0.0143688945,0.009718979,-0.013831862,0.014303403,-0.040159553,0.015495353,-0.0043944977,-0.015403665,0.03693736,0.0058058454,0.000517385,0.021952841,-0.032772083,-0.0493284,-0.00023536105,0.007282685,0.011041912,0.019005712,-0.0017371692,-0.008716955,-0.0074922587,-0.003092849,-0.011650986,0.0032680393,0.014290305,-0.0018632408,-0.0015865382,-0.011513453,-0.017420812,0.015351271,0.00016536673,-0.007832816,0.0063003083,-0.03549654,-0.001691325,0.017368417,0.00097091554,0.0073285294,-0.059099775,0.0010331327,-0.0044206944,0.002658966,0.009777921,-0.00017089258,-0.0033531787,-0.013078706,-0.0008215124,0.028973559,0.002470677,0.0020335196,-0.030388182,-0.011631339,-0.019713024,-0.011185994,0.0068045952,0.021913547,-0.0071451524,-0.0108257895,-0.011447961,-0.16420098,0.013235887,0.026851626,-0.043800898,-0.00073227985,-0.024480823,0.016778992,0.010079184,-0.026144315,-0.0073088817,0.020328647,0.0048201946,0.00087267783,-0.03709454,-0.025541792,-0.0107472,-0.010151224,0.025856152,0.025096446,0.008337103,0.027585134,-0.017879253,0.0075904964,-0.0027801257,0.00023372375,0.021481302,-0.011369372,0.028711593,0.003932781,-0.027270773,0.009398069,-0.015063107,0.015403665,-0.00013476978,0.02579066,-0.013923551,0.014381993,-0.021926645,-0.02475589,0.01305251,0.024022382,0.022018334,-0.020616809,0.023616333,-0.014591566,0.02180876,0.04146939,0.006306858,0.031095494,-0.0043421043,-0.0013917001,-0.04091926,0.043250766,0.008716955,-0.0013957934,0.015691828,0.0024051853,0.0254763,-0.006319956,-0.0122142155,-0.017813763,-0.02403548,-0.019411761,-0.015534649,0.0007159069,-0.007832816,-0.018560369,0.0031861747,-0.0037657768,0.008265061,-0.0020351568,0.0008092327,0.0026245827,-0.015626337,0.0079048565,0.0015308702,-0.030335788,-0.0044501657,0.0037952482,0.0108257895,-0.0024002735,0.023812808,-0.020669203,0.025463201,0.015547747,0.02395689,0.015023813,0.0125940675,-0.035286967,-0.011919502,-0.008179923,-0.0077869715,-0.005969575,-0.019398663,0.025921643,0.04385329,-0.008153725,0.016006188,0.0032795004,-0.025122644,0.0048038214,0.011120503,-0.019961892,0.031776607,0.0076821847,0.010177421,-0.029104544,0.024061676,0.038875915,-0.010249462,-0.00087758974,0.010197069,0.037277915,0.019215286,0.0011289144,0.018835433,0.015888304,-0.01630745,-0.003115771,-0.026812332,0.029549887,-0.018350795,-0.024926169,-0.014015239,-0.016608713,-0.022162415,-0.08382947,-0.03308644,0.010328053,0.0029504043,-0.005697784,0.032824475,0.008500832,0.0054980344,-0.02920933,0.03636103,0.0032041848,-0.024808284,0.007197546,0.011094306,0.0025623655,-0.033793755,-0.0069028325,0.007891758,-0.0064443904,0.007937603,-0.009496307,-0.021389613,-0.0019090851,-0.024729693,0.013727075,-0.014224812,-0.023786612,0.0063625257,0.016215762,0.01584901,-0.027113594,-0.02085258,0.010655511,-0.03151464,-0.022817332,-0.0065557263,-0.024939267,-0.0018370441,0.012672658,-0.03709454,0.012823289,-0.012646461,-0.015233386,-0.024886873,-0.020472728,0.007944152,-0.0076363403,0.028004281,0.013975944,-0.01926768,-0.0015104039,0.02745415,-0.0148797305,-0.0077018323,-0.0037690515,-0.026799234,0.005635567,0.024402235,-0.012423789,0.0051280055,-0.021271728,-0.0016815013,-0.031252675,0.017957844,0.011094306,-0.0071517015,0.009574897,-0.0033073344,0.0025509044,0.009358774,-0.010517978,0.050114304,-0.0034841623,0.00811443,-0.027873298,-0.0023740768,-0.012960821,-0.02792569,0.034448672,-0.02571207,-0.018599663,-0.0014752022,0.023616333,-0.02014527,0.012639912,-0.027035004,-0.000040318373,0.01337342,0.0010282209,-0.041809946,-0.007865562,0.011022265,0.022293398,-0.00844189,-0.02792569,0.0031239574,0.011683732,-0.02245058,-0.011873658,0.021952841,-0.017722074,-0.03311264,-0.050795417,0.013661584,0.0025967488,-0.0067391032,-0.0003325754,-0.014224812,-0.015338173,0.0013630475,-0.00096272904,-0.013674682,-0.025227431,0.029811854,0.0073285294,-0.015050009,-0.0074922587,-0.023105497,0.022489874,-0.0052884608,-0.00038210355,-0.0003043321,0.0065295296,-0.017185042,0.01894022,-0.00764289,0.008101332,0.010380446,-0.0018763392,0.013275182,-0.0090509625,-0.029995231,0.007616693,-0.020800186,0.0014588293,0.034998804,0.016189566,-0.033243623,-0.010845438,0.006509882,-0.007433316,-0.0067391032,-0.013275182,-0.026602758,0.018259106,0.0033728261,-0.0038803874,0.0026998983,-0.016857581,0.0032467546,0.014630862,0.024258152,0.020760892,0.008959275,-0.02060371,-0.031567033,0.004155453,0.010295306,-0.005154202,-0.0015104039,-0.008324004,-0.040893063,0.01584901,0.019935695,-0.0015341447,-0.020341745,0.036151458,0.02085258,0.0012738149,0.0049871984,0.025947839,-0.032536313,0.0068176934,0.014041436,0.013582993,-0.0071647996,0.01066206,0.0039982726,-0.016752794,-0.004918432,0.00019197275,0.03620385,0.00835675,0.012502379,-0.0043355552,0.018678254,0.0027670274,0.029523691,-0.011768871,0.01528578,0.014159321,0.0065917466,-0.012587518,0.015796615,-0.0024674025,0.012371396,0.0063723493,0.018966418,-0.012862584,0.0014178968,-0.00453858,0.02737556,0.014447485,0.025227431,-0.019293876,-0.006631042,-0.02524053,0.020957367,-0.013818764,-0.030912116,0.00074742484,-0.010622765,-0.0017289828,-0.014866632,0.002559091,0.019385565,-0.016137173,-0.009751725,0.009967848,-0.0024461176,-0.010459036,0.031907592,0.007583947,-0.002509972,0.022725645,0.005579899,0.020525122,0.0040146457,0.00772148,-0.0013818764,0.017486302,-0.009155749,-0.016765894,-0.019870203,-0.026550364,-0.0038312685,-0.0028783632,-0.0072237425,-0.021153843,-0.00668671,-0.012286256,0.08173373,0.0022316321,0.0065720994,-0.003677363,-0.01544296,0.010229815,0.039688013,0.01368778,-0.008749701,0.010223266,-0.016621811,-0.0035627524,0.0068242424,-0.021428907,-0.02452012,0.009843414,0.0039688013,0.006483685,-0.0054161693,-0.015704926,0.004689211,-0.0120963305,0.014002141,-0.0029422177,0.0033138837,-0.011303879,0.013203141,0.022385087,-0.010059536,-0.042386275,0.017093353,0.011035363,-0.009817217,-0.00986961,0.014106927,-0.020839483,0.0017519048,0.015338173,0.0027621156,0.0050526904,0.001619284,0.014080731,-0.043591324,-0.006359251,-0.0013982493,-0.014670157,-0.028082872,-0.010897831,-0.046446763]},{\"id\":\"4c5b8c45-06cc-4d73-865e-0816593f1c7c\",\"text\":\"Add more products/companies, and explain each bonus more. \",\"vector\":[0.0051525068,-0.0020249216,0.006487842,-0.039007984,-0.016900761,0.018856555,-0.018411445,-0.028217392,-0.012341737,-0.026517874,-0.0064136568,0.016239837,-0.022188151,-0.00841666,0.009327116,-0.0004956927,0.021082114,0.010433151,0.004875998,-0.015430544,-0.012888011,-0.019841198,-0.016725414,-0.014445902,0.01124919,0.006589004,0.024737427,-0.007175742,-0.0022036408,0.012746384,0.014513344,0.0005129745,0.007175742,0.015255196,-0.0069059776,0.020475144,0.0013210042,0.0057122684,0.020178404,-0.0013817013,0.007681551,0.015133802,0.008956189,-0.0098261805,-0.0065080747,-0.014081719,-0.019463526,-0.025384862,-0.015592403,0.019800732,0.0006916937,0.03223689,-0.024076503,-0.0020198636,0.002552649,0.025344398,0.01193709,0.009549672,-0.005058089,-0.015889144,0.008996654,0.01851935,-0.025223004,-0.0109524485,-0.018047262,-0.002105851,-0.029701099,0.0032152585,-0.011970811,0.004710767,0.030537369,0.02318628,-0.024238363,0.0065721436,0.015821703,-0.003296188,0.0015098396,-0.0025762534,0.012227087,0.006993651,0.011970811,-0.0021699201,-0.004623093,0.0053312257,0.020178404,0.0036822888,0.0046939068,0.02203978,-0.018101215,-0.0037362417,0.012024764,0.0055605257,0.016320767,0.017197503,0.006551911,0.011599884,-0.0004069654,0.03121178,-0.008052478,-0.00795806,0.009205722,0.007168998,-0.029647145,-0.009549672,-0.02333465,0.0019102716,-0.009610369,-0.0100352485,0.019841198,-0.010068969,-0.0016708554,0.03299223,0.008079454,-0.03045644,0.020825839,-0.017629126,0.023590928,-0.008834795,0.011080587,-0.019922126,0.031616427,0.01331289,0.017399827,-0.0044612344,0.01262499,-0.01033199,0.008140151,-0.01722448,-0.0025459048,-0.004774836,0.02533091,0.011883137,0.011728022,-0.0044173975,-0.029134592,0.025802998,-0.009839669,0.0107636135,-0.020070497,-0.0070408597,0.015902631,0.02279512,-0.008140151,0.011808951,-0.0046332097,0.032668512,0.009219211,0.028379252,0.0060427305,0.004204958,0.020286309,-0.017049132,0.0028055534,0.006191101,0.0052064597,-0.00015142655,-0.015659843,0.009556416,-0.03037551,-0.013110567,0.027327169,-0.0010605126,0.006309123,-0.004946811,0.007506204,0.031157829,0.014149161,-0.0034765932,0.00784341,0.0018006797,0.009401302,0.012456387,-0.03679591,0.009381069,-0.025061145,0.012024764,0.012564293,-0.006315867,-0.0005631339,-0.018546326,0.05195669,-0.028891804,0.02012445,0.026720198,-0.021689085,-0.021635132,0.00088685163,-0.009239443,0.010379199,0.006656445,0.0022862563,0.015646355,-0.008538054,0.018384468,-0.67462766,0.00029168313,-0.0003201349,-0.022511868,0.0006642957,0.009124792,0.0079715485,0.004043099,-0.01630728,0.025897415,-0.013865908,-0.018654233,0.01468869,-0.001986143,-0.0029910167,-0.01874865,0.028837852,-0.019611897,-0.0052030873,0.01591612,-0.008760611,-0.004889486,0.0013918175,-0.0060022655,0.031751312,-0.006197845,0.008396428,-0.00032982955,-0.00022972154,0.011121051,0.0014061488,0.025196027,0.020232355,-0.008807819,0.04974462,0.008733634,-0.016617509,0.01729192,0.0075399247,0.018559815,-0.026342528,-0.026032299,-0.0069801626,-0.024440685,-0.025007192,0.012692431,0.023914644,0.013987302,0.0030045048,0.004245423,0.0059584286,-0.0041105403,-0.017008668,0.009711531,0.0053177373,-0.008349219,0.014729155,0.0016700124,-0.005405411,-0.0064406334,-0.00077557366,0.0028713085,-0.041435864,-0.024400221,-0.031805262,0.0017121631,-0.022781633,0.00006290998,0.027151821,0.0028814247,-0.023105351,0.009279908,-0.021635132,-0.008524566,-0.007600622,0.001530072,0.023766274,0.007668063,-0.020070497,0.037146606,0.0116403485,-0.04170563,-0.006831792,-0.032884322,0.0038812403,0.00043583868,-0.02364488,-0.018478885,0.018047262,0.009266419,-0.00419147,0.013339867,-0.010797334,0.003928449,0.02081235,0.010338734,0.003702521,-0.0043094917,-0.0125980135,-0.01783145,-0.010143154,-0.0051828553,-0.0012603072,-0.001133855,0.009435022,0.018317027,-0.0061742407,-0.009448511,0.021473274,-0.021230485,0.018532839,-0.0021075371,-0.006932954,0.0025223005,-0.022296056,-0.030078769,0.01829005,-0.013623119,-0.013690561,-0.0058066864,0.014904502,0.030995969,0.019868173,-0.022012804,0.01630728,0.01537659,-0.0033433968,0.0046534417,-0.020259332,-0.00030748965,0.018910509,-0.0060022655,0.027340656,-0.007222951,0.0036586844,0.0036249638,0.028837852,-0.016469138,0.00031128322,-0.032668512,-0.004967043,-0.0024868937,0.015794726,-0.011087331,-0.0045758844,-0.02341558,-0.0036822888,0.011040122,-0.013933349,-0.0007490187,0.0104938485,-0.0025796255,-0.023402091,0.006427145,0.018856555,0.013892884,-0.0044173975,-0.019922126,-0.01285429,-0.024669986,-0.00772876,0.019031903,-0.016779367,-0.0054863407,-0.005290761,-0.014216602,0.0052975053,0.01706262,0.011923602,-0.0076478305,-0.0071285334,-0.028972734,-0.010959193,0.0041611213,0.0031124107,0.0003009563,-0.016941225,-0.004387049,0.0076410864,-0.011606628,0.011390816,0.018762138,-0.011215469,-0.014702179,0.030051792,-0.0021800364,0.030780157,0.0054829684,-0.030618299,0.021001186,-0.0036114755,0.02953924,-0.00038631156,-0.0015882399,-0.010149899,0.009192234,-0.011289654,0.0013690561,0.0011692615,-0.020731421,0.010898496,0.013569167,0.022323033,-0.0002821992,0.023078375,-0.030672252,0.0036047315,-0.011161516,0.013043125,0.022242103,0.012517084,-0.035420112,-0.0037935667,-0.014405438,0.013225216,0.016037514,0.005776338,-0.008403172,-0.0026082878,0.018317027,-0.019638874,-0.031400617,0.020097474,-0.012962196,-0.006015754,0.0070206276,-0.015700309,0.028945757,0.0052064597,-0.031130852,0.007904107,0.00524018,0.020003056,-0.0059449407,0.022633262,-0.021823969,0.00363508,-0.017049132,0.02655834,0.02189141,0.013117311,0.029862957,0.014715667,-0.015444032,0.022134198,0.008504334,0.021365369,0.017399827,-0.016118445,0.015754262,-0.0000021832766,0.016657973,-0.0045860005,0.013960325,0.015551938,-0.017898891,0.01812819,0.022822097,0.004602861,0.013879396,0.009394557,-0.013427541,0.022053268,-0.0023166048,-0.0040734475,0.0077962014,-0.0059348242,-0.02050212,0.016657973,-0.025128586,0.0019979451,0.010358966,-0.01025106,-0.0024717194,0.016104955,0.0057257568,-0.00077135855,0.007681551,-0.00044216128,0.031967122,-0.007566901,-0.023536975,0.016388208,0.007742248,-0.00001762428,0.008463869,-0.008565031,0.011647093,-0.018991439,0.029026687,0.016779367,-0.008342475,-0.0039149607,0.0065283068,-0.0042825155,-0.0089292135,0.025722068,-0.017467268,0.015282173,-0.013724281,0.00023688716,0.005230064,-0.012618246,-0.028675992,0.029593192,0.0019524223,-0.028972734,-0.02487231,-0.018249584,-0.029323427,-0.007283648,-0.016280303,-0.009198978,-0.0010444954,0.045104664,0.00032477148,-0.005327854,-0.0005218262,0.009819437,0.040734477,0.016469138,-0.0036148475,-0.01568682,0.029809004,0.061560314,0.012800337,-0.01676588,0.011815696,-0.014135673,-0.005739245,-0.008315498,-0.0009863273,0.0009197292,-0.00956316,-0.0070678364,-0.020569561,0.019220738,-0.016509602,0.0058269184,-0.010298269,0.0016969888,-0.006312495,-0.010986169,-0.0012982428,0.0054964568,0.009360837,0.018087726,0.014405438,0.004198214,0.014985432,0.0130566135,0.021648621,0.011741511,-0.014810084,-0.0100757135,-0.0032574092,-0.008423404,0.0132859135,-0.016873784,0.014324508,-0.0020164915,0.016779367,-0.012705919,0.0071959747,0.019841198,0.00014921362,-0.020488633,-0.014621249,0.013670328,-0.011606628,-0.01251034,0.02510161,-0.001192866,-0.006700282,0.0048591373,0.0022542216,-0.0005323639,0.0033838616,0.036364287,-0.018654233,-0.022592798,-0.009172001,-0.009448511,-0.03444896,-0.038765196,-0.01545752,0.0079917805,-0.026342528,-0.007445507,-0.029053664,-0.027610421,-0.014553808,-0.031805262,-0.0023418951,-0.017925868,-0.007034116,-0.01048036,-0.0053649466,0.044484206,0.013022893,0.0135152135,-0.019733291,0.0128273135,-0.0004238257,0.010959193,-0.012186622,-0.029107615,-0.016873784,-0.020137938,-0.0037868225,-0.027300192,0.0032557233,-0.023402091,-0.007668063,-0.017197503,-0.015174267,0.007775969,-0.033315945,0.014971944,0.012732896,0.0039014725,-0.013987302,0.0098261805,-0.016523091,-0.019638874,-0.034179192,-0.005907848,-0.01691425,0.0030837483,-0.0013951896,0.012355225,-0.015106826,-0.011127796,0.030861087,0.017345874,-0.0032574092,0.0059752893,-0.0028021813,-0.020987697,0.016819833,0.018829579,0.003807055,-0.009981296,0.0075938776,0.016792856,-0.02318628,0.016334256,0.008726889,-0.029107615,0.0017028899,-0.0077355043,-0.015551938,0.0051525068,-0.0062787742,-0.003874496,0.0074117864,-0.028163439,-0.0038104272,-0.01729192,-0.00048178298,-0.009306883,-0.002787007,-0.025978345,-0.034502912,-0.015214732,0.017386338,0.012665455,-0.004602861,0.015390079,-0.036768936,-0.024036039,-0.005803314,0.01783145,0.012024764,-0.00079411996,-0.02141932,-0.029701099,0.0047512315,-0.01966585,-0.017858427,-0.01113454,0.0010824311,0.016010538,0.0319941,0.026153693,-0.0067474907,0.01499892,0.010345478,-0.0020856187,0.005874127,-0.0102847805,-0.026720198,-0.022997444,0.024481151,-0.0022120709,0.009839669,0.007378066,-0.014499855,0.014985432,0.033315945,-0.022026291,-0.013164519,-0.020744909,-0.004491583,-0.0026335784,-0.007775969,-0.01958492,0.019814221,-0.022646751,-0.00045860006,0.015713796,0.02983598,0.008490846,-0.0040633315,0.03296525,-0.025061145,0.046183724,0.014634738,-0.003871124,0.013454516,0.0015477752,-0.032695487,-0.005520061,0.02333465,0.00884154,0.008558286,0.015079849,-0.023631392,-0.02288954,-0.014553808,-0.0091382805,-0.020704444,-0.0064507495,-0.0086999135,-0.0038812403,-0.013704049,0.012220343,0.016334256,0.022363497,0.018317027,-0.022633262,0.0054795966,-0.0026959614,-0.015430544,-0.009832925,-0.02937738,0.039682396,0.012995916,-0.003068574,0.044942807,0.026423456,0.0056111068,0.008059222,-0.007519692,-0.0027027056,0.012274296,0.027408099,-0.030968992,-0.015025896,0.0012813825,0.00084427936,-0.024009062,-0.006039358,0.007722016,-0.0036620565,0.045563266,-0.021689085,-0.0048490213,-0.0100757135,0.009151769,-0.0010562976,-0.0039958903,0.037847992,-0.01468869,-0.013933349,0.009812692,0.009819437,0.02899971,0.0070206276,-0.0066429568,-0.012699176,-0.0045826286,-0.013333122,0.006919466,-0.0058707553,0.0128273135,0.010702916,0.007681551,0.0020030031,-0.0004539635,0.018182144,-0.003130957,0.00784341,0.02464301,-0.018775627,-0.020083986,-0.0037227536,0.015956584,0.019881662,0.0014381834,-0.024009062,-0.010015016,-0.018613767,0.003530546,0.0030500276,-0.0030618298,-0.030618299,0.0091180485,-0.0007511262,0.004279143,0.0056043626,-0.009185489,0.0015233278,-0.02426534,-0.040653545,0.0007730446,0.00636982,0.0023553835,0.014391949,-0.0031495034,0.0027010196,0.019274691,-0.0068553966,0.010352222,-0.02233652,-0.0034631048,-0.012449643,-0.009037119,-0.0041779815,-0.007985037,0.009880134,-0.007715272,-0.034368027,-0.009799205,-0.009772228,-0.00443763,0.0014702178,0.015619379,0.013319634,-0.009873389,0.0007844253,-0.0054121553,-0.01820912,0.002215443,0.008099686,0.005098554,0.0040532155,-0.012294528,0.0003332016,0.0010428093,0.0048220446,-0.010918728,-0.016792856,-0.026841592,-0.021608157,0.0037733344,0.014864038,-0.0011852789,-0.020933744,-0.016819833,-0.018330514,0.009381069,0.033612687,-0.020690955,0.0024868937,0.02908064,0.025722068,0.014648226,0.004312864,-0.03223689,-0.02433278,0.009050608,-0.008902237,-0.0050378568,-0.011889881,0.06258542,0.004906346,-0.035824757,-0.015066361,-0.0069666747,-0.021756526,-0.022390474,0.019099344,0.0064473776,0.017777497,0.003016307,-0.005968545,0.048072077,-0.0012097263,-0.004956927,-0.023024421,0.017197503,-0.031238757,-0.004376933,0.019571433,-0.013838932,-0.032398745,-0.005280645,0.023118839,0.01951748,-0.007944572,0.031130852,-0.0072162068,-0.025519745,-0.005799942,0.038738217,-0.009219211,0.017656103,0.016523091,-0.048854396,-0.020879792,0.014837061,0.0073308568,-0.0030668878,-0.014135673,-0.009212466,0.0070071393,0.0046905344,0.011984299,-0.0028696225,-0.024831844,0.00007750468,-0.015538449,-0.007607366,-0.013562422,0.026423456,0.017817961,-0.028595064,-0.01400079,0.026356015,-0.004656814,0.00007186701,0.0032135725,-0.028244369,-0.00074016704,-0.008726889,0.0015840249,-0.0062720305,0.0013471377,-0.006481098,-0.015862167,-0.01139756,0.00738481,0.0100554805,-0.009394557,-0.015066361,0.008322243,-0.012645222,-0.013555679,-0.02410348,-0.003817171,-0.0016590531,-0.0069026053,0.022457914,-0.0020569563,-0.034179192,-0.0018310283,0.013414052,-0.025991833,0.023847204,0.2233652,0.006207961,-0.021608157,0.036391266,0.0023418951,0.011559419,0.03229084,0.010621987,0.016590532,0.0043499568,0.023024421,0.025897415,-0.014594273,-0.008902237,0.011633605,-0.029647145,-0.03366664,-0.010358966,-0.00738481,0.014621249,0.012935219,0.008767354,-0.0028746806,-0.025735557,0.029620169,0.007452251,-0.026126716,0.0036789167,0.028729945,0.0077692247,-0.005415527,-0.002448115,0.008855028,-0.010844543,-0.028756922,-0.0011810638,0.0054290155,0.0071555097,0.0137445135,0.011795464,0.02150025,0.00075323373,-0.02051561,-0.004842277,-0.007202719,0.031184806,-0.02380674,-0.00087167736,-0.010898496,0.0091180485,-0.02564114,0.0021412577,0.033181064,0.014257067,-0.0019237598,0.0074657393,-0.008598751,0.014216602,-0.001472747,0.013825444,-0.006595748,0.04192144,-0.020448167,0.02326721,-0.018829579,-0.016860297,-0.0073106247,-0.0015621065,0.023833714,0.0050412286,-0.017008668,0.0041746097,0.0048557655,0.004319608,0.0014339682,-0.015106826,0.035824757,0.017993309,0.042002372,0.031778287,-0.0044039097,0.014877526,-0.005786454,-0.013063358,-0.0084503805,-0.021284439,0.028298322,-0.0012965568,-0.0028679364,0.011694302,-0.013400564,-0.0033450827,-0.0061641242,-0.0020873048,-0.011761743,0.019193761,-0.008686425,0.010817566,-0.006356332,-0.019328644,-0.023024421,0.063178904,-0.0040060063,-0.009630602,-0.018843068,-0.016104955,0.0018681209,0.0338285,0.00487937,-0.008821307,-0.0034833374,-0.020933744,0.01476962,-0.012766616,-0.008578519,-0.012436155,0.035150345,-0.007047604,-0.0040532155,-0.010918728,-0.00092310127,-0.016792856,0.009064095,-0.0035103138,0.00910456,-0.004828789,-0.007391554,-0.015497984,0.01423009,-0.028783899,0.021243975,-0.0069026053,-0.0059314524,-0.020299798,-0.0022441056,0.00031760582,-0.0010503965,-0.014850549,-0.0056077344,-0.0038947286,-0.005415527,0.025951369,-0.0011658896,-0.0010917042,0.013892884,-0.008565031,-0.013265681,0.021567691,-0.008511078,-0.013130799,-0.023118839,0.012436155,-0.0051457626,-0.01445939,0.007715272,-0.0035001975,-0.02487231,-0.017049132,0.043728866,-0.022120709,-0.036148477,-0.006946442,0.014783108,-0.0066969097,-0.018532839,-0.010271293,-0.17405221,0.007897363,0.01812819,0.014756132,0.013407308,-0.022930004,0.011721279,0.0066092364,-0.0096171135,0.01722448,0.018627256,0.0132859135,-0.027677864,-0.018317027,0.0054222713,-0.010588266,-0.013494981,0.016024025,0.025802998,0.014891014,0.026423456,-0.006973419,-0.023483021,0.012469876,-0.0077557364,0.010642219,0.0086796805,-0.0063967966,-0.0118696485,-0.02097421,0.0004889486,-0.024548592,0.027758792,0.023199769,-0.008693169,-0.015551938,-0.000206644,0.0061776126,-0.0048389053,-0.008328986,-0.0033872337,0.0002212914,0.0037193815,0.042110275,0.028109487,-0.015754262,0.0032793276,-0.025735557,0.012071973,-0.019382598,0.024346268,-0.050095312,0.0004607076,0.0028224136,0.0068823732,0.007054348,0.0107636135,-0.0012704233,-0.011572908,-0.0020535842,0.002950552,-0.011235702,-0.004059959,-0.011417793,-0.013791722,-0.027138334,-0.014715667,0.020083986,-0.01660402,0.004623093,0.0044544903,-0.0077017834,0.014311019,-0.009192234,-0.0032793276,0.00581343,-0.017629126,-0.00524018,-0.008490846,0.018964462,-0.015983561,0.040437736,-0.009482231,0.007998525,-0.03849543,0.0015191127,-0.00838294,0.02364488,0.0021496878,-0.023833714,0.0049602995,-0.010001528,-0.046723254,0.010237572,0.01002176,0.045023736,-0.0053716907,-0.0054930844,0.009273163,0.0065991203,0.0021480017,0.011761743,-0.03083411,0.016091468,0.045401406,-0.016185885,-0.004130773,0.017993309,0.039115887,-0.003302932,-0.016644485,0.027421586,-0.008065966,0.025533233,-0.013110567,0.013596144,-0.0070813247,-0.0009037119,-0.0066092364,0.0130768465,0.030995969,0.0047343713,-0.001362312,0.02518254,-0.00636982,-0.029161569,-0.119128115,-0.016671462,-0.0052098315,0.017130062,0.010291525,0.025964856,0.0052064597,0.026180668,0.010426408,0.008989911,-0.0050378568,-0.026868569,-0.0023654995,0.020110961,0.01101989,0.015160779,-0.01729192,0.018155167,-0.019611897,0.007931083,-0.0044544903,-0.0116808135,0.017251456,-0.029026687,-0.0109929135,0.017885402,-0.030807134,0.0016430359,0.015282173,-0.009212466,0.008005269,-0.029404357,0.011788719,-0.019706314,0.00784341,0.0050209966,-0.025142074,-0.0027768908,0.0111817485,-0.015268684,0.0041880975,-0.015322638,0.008497589,-0.035177324,-0.011316631,-0.00084006425,-0.015781237,0.025519745,0.0056920364,-0.024629522,-0.02035375,0.016523091,-0.025600674,-0.021486763,0.0035946153,-0.005284017,0.007337601,-0.004956927,-0.018276561,0.017723544,0.0026791012,-0.008119918,-0.023779763,0.0065013305,0.017993309,0.0008919097,-0.007998525,0.00861224,0.011572908,-0.0074792276,-0.00051128847,0.017197503,-0.0052570403,0.012773361,-0.019611897,-0.020232355,-0.012631734,-0.018789114,0.023509998,-0.0040667034,-0.01966585,-0.023995575,0.009981296,-0.02241745,0.013717538,0.0047478597,0.0047444873,0.008484101,0.016185885,-0.03045644,0.00558413,0.013204984,0.037847992,-0.00838294,-0.014810084,0.015160779,-0.020690955,-0.013811955,0.037821017,0.022930004,-0.037308466,-0.017008668,-0.050553914,0.027893675,0.011876393,-0.012112437,0.018020285,0.0024177665,0.004771464,-0.009145025,-0.012341737,0.005574014,-0.005874127,0.020394215,-0.012989173,-0.010682684,0.01350847,-0.0068621407,0.016347744,0.011316631,0.007229695,-0.009745251,-0.00030243158,0.0016902448,0.03299223,0.002958982,0.012267551,0.0029336917,-0.0060191257,0.012496852,-0.0078096893,-0.019450039,0.030968992,-0.012901499,-0.005864011,0.019679338,-0.012227087,-0.020421192,-0.027947627,0.025924392,0.004255539,-0.011599884,0.0015191127,-0.025196027,-0.00049611425,-0.032668512,-0.029404357,-0.007452251,-0.01958492,-0.0015798098,0.004602861,-0.0082210805,0.010406175,0.0030786903,-0.010783846,-0.03827962,-0.00795806,-0.013009405,-0.010203851,-0.0055402936,0.028810875,-0.022646751,0.018397955,0.0064608655,0.020839326,-0.026517874,0.017642614,-0.0004716668,0.008457125,0.023955109,0.003918333,-0.030564345,-0.019018415,0.0051390184,-0.0008927527,0.0017922495,0.011100819,0.013218473,0.009151769,-0.01591612,-0.012577781,0.011984299,0.0079513155,0.0007157196,0.0017450406,0.026396481,0.016671462,-0.002503754,-0.012004531,-0.009704786,-0.0035035696,0.0040801917,-0.013946838,0.003238863,-0.006120288,-0.01691425,0.013960325,-0.009461998,-0.00047967545,-0.013724281,0.0028578204,0.000040938907,-0.0061843568,0.004029611,-0.010804079,-0.008268289,-0.012719408,0.01205174,0.0035912432,-0.020488633,0.017817961,0.033585712,0.010554546,0.0006331041,0.010568034,0.003972286,-0.035096392,0.0093473485,0.02089328,-0.040815406,-0.017426802,0.021324903,0.007222951,0.0002535367,0.010595011,-0.044376303,0.034529887,0.01812819,-0.002163176,-0.03574383,0.021837456,0.016104955,-0.023914644,0.0048827417,0.011808951,-0.012834058,-0.01660402,-0.024238363,0.014095208,0.012260808,0.017426802,0.0832494,0.01522822,-0.026855081,0.014364973,0.0048490213,0.024400221,0.017871914,0.023496509,-0.01079059,-0.01760215,0.0046837903,0.019112833,-0.0071217893,0.016104955,-0.018276561,0.01445939,0.0093675805,0.026693221,-0.016523091,-0.004059959,0.024980215,-0.013481493,0.0047073946,0.019787244,-0.028864827,0.006592376,0.009765483,0.017534709,-0.006693538,-0.029026687,-0.0047883242,0.014621249,-0.023766274,0.012173134,-0.018843068,0.0061135436,-0.017575173,0.0059415684,-0.0031579335,0.010783846,-0.008983166,0.009569905,-0.0103050135,-0.0036688005,-0.019800732,0.017939355,-0.003807055,-0.016266814,-0.022741169]},{\"id\":\"302ef1a8-ebd5-44a6-bc71-93a39480f4b0\",\"text\":\"The Bounty dashboard is very difficult to use. It’s very complicated to sign up for a post. Thank you! 💛\",\"vector\":[-0.02215314,0.008317521,0.0042058663,-0.039488036,-0.015800599,0.006170847,-0.017927084,-0.0064602103,-0.024252707,-0.027321307,0.020565003,-0.00030092974,-0.023714356,-0.01370103,0.011648567,0.003354599,0.025127526,-0.01962289,-0.037011623,0.0014787825,-0.03219338,0.023149088,-0.017927084,0.029690051,-0.0024999669,-0.012543576,0.025087152,-0.014777731,0.003320952,-0.0010169784,0.0141720865,-0.0014804649,-0.01709264,-0.012859857,-0.029959226,0.0013383066,0.010201749,-0.013835617,0.00047694522,0.015275707,0.021399448,0.016029397,-0.014266298,0.0071735256,-0.023808567,0.018209718,-0.003714621,-0.035800334,-0.0052724737,0.009851821,0.0027035307,-0.027805822,-0.024629552,-0.013566442,-0.002947471,0.022543443,0.03911119,0.013795241,0.0018017931,-0.016836924,0.0062314114,-0.0098585505,0.0046836524,0.0008487438,0.005787272,-0.0046062646,0.00011229663,0.014427803,-0.0041183843,0.022866454,0.02224735,-0.0028313892,0.010356525,-0.010975628,0.003199823,-0.007826276,-0.0018253459,0.0007818705,-0.0024057555,-0.0029491533,0.0078733815,0.016769629,-0.009138506,0.023310592,0.029528545,0.02059192,-0.0050672274,0.015396835,-0.03265098,-0.026823333,-0.007469618,0.015410294,0.0037617267,0.019205667,-0.0141990045,0.006399646,0.019676724,0.03615026,0.018976869,-0.043364163,-0.027025213,0.011439956,-0.032058794,-0.022220433,-0.03749614,-0.009872009,0.00202891,-0.0035968567,0.018250095,0.0064837635,0.012617598,0.037846066,-0.013822159,0.014306675,-0.004757676,-0.016742712,0.009118318,-0.006389552,-0.025800467,-0.01764445,0.017011888,-0.024562258,0.016029397,0.0022980853,0.0050470396,-0.016769629,-0.007819546,-0.008701096,0.007758982,-0.007079314,0.021237941,0.021964716,0.006123741,-0.021937799,-0.02355285,0.021399448,-0.034158364,0.00016413393,-0.0033714224,-0.0016133703,0.017940544,0.061425835,0.0073484895,-0.010834311,0.021937799,-0.008364627,0.008822225,0.0044885003,-0.01765791,-0.002530249,-0.005874754,-0.0054676263,-0.0016739347,-0.012469552,0.0037078916,0.00323347,-0.0047845934,0.012415717,0.008088722,-0.012126354,-0.015531423,0.013061739,-0.017819414,-0.005259015,0.04099542,0.02674258,-0.004811511,-0.011749508,0.0022375209,-0.00016413393,0.016836924,-0.0005947095,0.011487062,0.0060026124,-0.039380368,0.02399699,0.014225922,0.00788684,-0.01577368,-0.025275573,-0.01337129,0.0078733815,0.0051917215,0.024616094,-0.025881218,-0.019340254,0.027805822,-0.007584018,0.016608125,-0.011756238,0.020847637,0.017146476,-0.0058444715,-0.0012642834,-0.6210416,-0.01873461,0.031089762,0.0043673716,-0.0034656338,0.024925645,-0.008196392,0.019111456,-0.005797366,0.0065308693,-0.006365999,-0.015356459,-0.016527371,-0.000019307554,-0.0120725185,-0.022180056,0.02542362,-0.02258382,-0.00029630327,0.012960797,-0.008909707,0.0016663641,0.0066654566,0.020847637,-0.0045457003,-0.014939236,0.02398353,0.01566601,-0.003135894,0.02279916,-0.01457585,-0.002626143,0.006265058,-0.010901605,0.044333193,-0.018088588,-0.025800467,0.022099303,0.006544328,0.024050826,-0.015975563,-0.024279624,0.018492352,-0.013566442,-0.012772375,-0.010275773,0.010437277,-0.008142557,0.020874554,-0.0024108025,-0.0028566243,0.016715795,0.0013357832,0.036123343,-0.0014190592,-0.015262247,0.016298573,-0.013034821,0.010013326,0.010901605,-0.017577156,0.014939236,-0.027105967,-0.050578065,-0.017119559,-0.0074898065,-0.0076378533,0.004155396,-0.00093201996,-0.0062751523,0.00602953,-0.012186918,0.0035497511,0.0291517,0.022045469,-0.0026547427,0.055719316,-0.007146608,0.004996569,0.014104793,0.009145236,-0.00635254,-0.00072425016,0.00029272828,0.020686133,0.016419701,-0.0047072056,-0.022893371,-0.004727394,0.004623088,0.009219259,0.0018421694,0.01764445,-0.00931347,0.01030942,0.028128833,0.008048345,0.02290683,0.01018829,-0.02565242,-0.02520828,-0.0028313892,0.009225988,-0.0029962591,0.018976869,0.010941981,0.0049057226,0.00279606,0.041910615,-0.026540698,-0.0103699835,-0.012509928,-0.0093471175,0.0063323523,0.002679978,-0.042233627,0.033781517,-0.011635108,-0.014414345,-0.0010598783,0.018815363,0.018667316,0.025127526,-0.008075263,-0.0027203544,0.029097864,0.02092839,-0.010847771,-0.019811312,0.009024107,-0.019434467,-0.0032889873,0.023822026,0.010322878,-0.0013929829,0.000089216934,0.025006399,-0.017590614,-0.01730798,-0.023525933,0.033593096,0.011056381,0.020470792,-0.021170648,-0.004724029,-0.015692929,0.011433227,0.007146608,-0.01721377,-0.007186984,-0.017846331,-0.013425125,-0.021601329,0.017604074,-0.009104859,-0.0046836524,0.008095452,0.0055584726,-0.029474711,0.007819546,-0.000046606256,-0.0026160488,-0.023027958,-0.009071212,-0.016675418,-0.014414345,-0.00022837853,0.0077724406,0.010161373,-0.031251267,0.014845026,-0.017294522,-0.007806088,-0.008176204,-0.0038054679,0.021641705,-0.0022223797,-0.024293084,-0.018505812,0.0006254123,0.011083298,-0.0061203763,-0.009333658,0.004481771,0.013081926,0.021964716,-0.020026652,0.039514955,-0.024037367,-0.0021517212,0.0138087,-0.0012895186,0.011103487,0.00011818484,-0.0017765579,-0.000053992808,-0.004522147,0.024858352,0.00080037635,0.005161439,0.023243299,0.006083365,0.04182986,0.010322878,0.02114373,-0.010457465,-0.0050907806,-0.018990327,0.017159935,-0.008391544,-0.011655296,0.0004870393,0.029205535,0.0013433537,0.0009278141,0.018115507,0.0053835087,-0.005938683,0.0033478695,0.008256957,-0.0076715,-0.01051803,-0.013303996,-0.021951256,-0.0048586167,-0.0075907474,0.03461596,0.00405109,0.019030703,-0.02499294,-0.0026177312,0.025006399,-0.016863842,-0.0015872939,0.008815495,-0.008209851,0.008573238,0.001194466,0.029824639,-0.0022728501,0.011540897,0.012011954,0.009683587,-0.00048914226,0.030712917,0.005349862,0.012684893,-0.009797986,-0.021130271,0.014414345,0.004942734,-0.0006018595,-0.013929829,0.016998429,0.0032149642,-0.037872985,0.0017328169,0.01862694,0.039191943,0.023149088,0.02563896,0.021722458,-0.005817554,-0.006510681,-0.007530183,-0.012516658,-0.030013062,0.0016301938,0.0014888766,-0.018438518,-0.0047004763,-0.02235502,0.021816669,-0.03324317,-0.007220631,-0.018021295,-0.002558849,-0.012133083,0.0014375651,0.0058680247,-0.029178618,-0.026204228,0.029905392,0.034992807,-0.008021428,-0.020443875,-0.009562457,0.01764445,0.008748202,0.013162679,0.012577223,0.0033394578,0.01041709,-0.014104793,-0.0043135365,0.0136943,0.04325649,-0.027590482,0.0011490426,0.001660476,0.03816908,0.02059192,-0.0018808633,-0.024050826,0.01183699,0.02016124,-0.034050692,-0.005316215,-0.015948644,-0.021197565,-0.016944595,-0.0317627,0.008835684,-0.00564259,0.023647062,-0.0004205866,-0.02061884,-0.028451843,0.019461384,0.021022601,-0.013943288,0.0049057226,-0.0015948644,0.014804649,0.10309419,0.0055719316,-0.0015124294,0.015692929,-0.014212463,-0.009771069,-0.03345851,-0.041910615,-0.002626143,0.009212529,-0.016756171,-0.01600248,-0.01205233,0.017240686,0.00400062,-0.0016815054,-0.0003991367,-0.0020995685,0.000810891,-0.03047066,-0.015181495,0.00509751,0.003228423,0.0024646376,0.005753625,0.02861335,0.017563697,0.007079314,0.0018875927,0.004374101,0.009555728,0.0010943664,-0.0010573547,0.028532596,-0.016406244,0.047697887,0.009084671,-0.014158628,-0.0149661545,-0.004337089,0.012321506,0.022718407,0.00942787,-0.003485822,0.01765791,-0.019528678,-0.014050958,0.018182801,-0.0131492205,-0.015141118,0.014939236,-0.0074427007,0.010201749,-0.009993138,0.00034824573,0.02103606,0.0131492205,-0.020955307,0.010618971,-0.025921594,-0.0418837,-0.027994245,0.00041953515,-0.0075436416,-0.016137067,-0.030766752,-0.021789752,-0.04845158,-0.013902911,0.0057502603,-0.021426365,-0.024198871,-0.014629685,0.0013669066,0.035450406,0.017025346,0.013781782,0.008371356,0.023727816,0.017482944,0.0016495407,-0.03014765,0.027751988,0.004636547,-0.008028157,-0.011749508,0.00569979,0.009764339,-0.0033125402,0.014104793,-0.0013164361,0.033512343,0.018788446,0.0032553405,0.014885401,-0.009178882,0.009811445,-0.0055820257,-0.0077858996,0.0032082347,0.012435906,0.011359204,-0.013438583,0.013835617,0.019044163,0.019097997,0.005928589,-0.004088102,-0.016379325,-0.02039004,0.00046979525,0.0034992807,-0.01916529,-0.0031964583,-0.015814057,0.02039004,-0.0073013837,0.011439956,0.030551413,-0.0014131711,-0.031224351,-0.0066250805,0.026338816,-0.0006594798,-0.0016495407,-0.02091493,-0.0022358384,-0.046971112,-0.0057906364,0.006937997,-0.004003985,-0.02037658,-0.012341694,-0.0256255,-0.018142425,0.0015746764,0.004145302,0.01755024,-0.017469486,-0.0291517,-0.019124914,0.011991765,-0.0023922967,-0.040080223,-0.021009143,-0.025275573,-0.021601329,-0.0014215828,0.0056627784,0.052785303,-0.0016015938,-0.0033831988,-0.036365602,-0.01916529,-0.014818108,-0.00515471,-0.038411334,0.0046500056,0.04010714,0.020013195,0.006880797,-0.015854433,0.02850568,-0.004185678,0.009259635,-0.018155884,0.008916437,-0.031870373,-0.02398353,0.012395529,0.007422513,-0.0079002995,0.010060432,-0.013600089,0.0030450472,-0.021009143,-0.021426365,-0.00083864975,-0.020093946,-0.023364428,-0.008129098,-0.005894942,-0.0027153073,-0.018384682,-0.02718672,-0.013781782,-0.011998495,0.035127394,0.018034754,0.013734677,0.03362001,0.016608125,0.03431987,0.010316148,0.0073013837,-0.006944726,-0.027146343,0.0014409297,-0.013889452,0.012402258,0.0032418817,0.024131577,-0.028963277,-0.01139958,-0.012449364,0.011890825,-0.01939409,-0.013754865,0.0074494304,-0.01753678,-0.013223243,-0.035450406,-0.029609298,-0.015962103,-0.00012018262,-0.0025386608,-0.023916237,0.0073148427,-0.011749508,-0.009878739,-0.015194953,-0.005053769,0.003680974,0.0079002995,0.017119559,0.03450829,-0.0036338684,-0.009037565,0.024387294,-0.011500521,-0.007287925,0.008479026,0.054965623,-0.016365867,-0.0033293637,0.015706386,0.011870637,-0.01260414,-0.018653858,0.00014710017,0.0069312677,0.020215075,-0.020861097,-0.0070120203,-0.03615026,0.027550107,-0.018761529,0.0074561597,0.0036002216,0.0014266298,-0.0020625568,0.0065140454,-0.023081794,0.005104239,-0.00022522414,-0.008620343,-0.016944595,-0.003393293,-0.00018421694,-0.039918717,-0.0056695077,0.009279823,-0.0067125624,0.020686133,0.011911013,0.021318695,-0.0008138351,-0.014602767,-0.010215208,0.025881218,0.006793315,-0.029420875,-0.0054306146,0.005501273,0.020672673,0.012900233,-0.0152487885,-0.020241993,0.010551677,-0.0015460764,-0.0001917875,-0.0031930937,-0.018936493,-0.0040679136,0.0045019593,0.017361816,-0.01370103,0.0006906032,0.039622623,-0.015141118,-0.00094716105,-0.016177444,-0.019097997,0.026392652,0.01983823,-0.0020709685,0.019905524,0.02345864,-0.021870505,-0.008169474,0.01609669,0.029663133,-0.031089762,0.031897288,0.015491046,-0.026002347,0.016958052,-0.023970073,-0.010262313,-0.019474844,0.019421007,-0.005252286,0.016312031,0.00026791368,0.02080726,0.012799292,0.0097172335,-0.010820853,-0.038922768,0.006201129,-0.010383443,0.009145236,-0.016473537,0.006991832,0.016069774,-0.03911119,0.018869199,0.007967593,-0.006840421,-0.0029727062,0.018209718,-0.0094615165,-0.029420875,-0.010982358,-0.032489475,-0.03254331,-0.02246269,0.024481505,0.016998429,-0.020780344,0.011217887,0.016244737,0.009232718,0.021560952,-0.018815363,-0.0122744,-0.015840974,-0.012509928,0.0037112564,-0.0069649145,-0.016473537,0.03197804,0.024723765,-0.040914666,-0.031897288,0.00057998893,-0.024293084,-0.005151345,-0.017832873,0.011695673,0.0050571337,0.018815363,0.017294522,0.04032248,-0.0014005535,0.023377886,-0.020134322,-0.010484383,-0.012422446,-0.016904218,0.011466874,-0.012570493,-0.03300091,-0.020107405,0.0061069177,0.0012474599,-0.00887606,0.03014765,-0.006049718,0.0076109357,-0.0039400556,-0.017913625,-0.003593492,0.018357765,0.030524494,-0.01764445,0.006217953,-0.0031661761,0.00046600998,0.011850448,-0.019999735,0.026056182,-0.0065342337,-0.008956812,-0.011911013,-0.007853193,-0.015168036,-0.009158694,0.0020171334,0.00942114,-0.012469552,0.02563896,0.009703775,-0.02718672,-0.0004437189,0.0020709685,0.0021130273,-0.0033916105,-0.0024158496,-0.0245488,-0.014158628,-0.0087818485,0.013243431,-0.012180189,-0.020255452,-0.023189465,-0.016931135,-0.029313205,0.0069178087,-0.010464195,-0.0109352525,-0.0053835087,0.0068976204,-0.025194822,0.022879912,-0.025289033,-0.005356591,-0.0120725185,0.0047004763,-0.0051883566,0.012180189,-0.05765738,0.030443743,-0.0022206975,0.0012710128,0.02258382,0.21835512,-0.010538219,-0.007570559,0.036365602,0.021305235,0.022718407,0.018600022,0.016567748,0.0074830772,0.017711744,0.028747937,-0.010565136,-0.005171533,-0.004525512,-0.0026379193,-0.016460078,-0.023324052,-0.0011162369,-0.010753559,-0.017065722,-0.0026917544,0.016486995,0.009818174,0.00040460433,0.036204096,-0.011258263,-0.0034790926,-0.0130079035,-0.010915064,0.0022778972,-0.024602635,0.0017462757,0.020470792,0.011204428,-0.007254278,-0.011493791,0.0006090094,-0.00712642,0.016365867,0.036877036,-0.012516658,0.004898993,0.02224735,-0.018559646,-0.008176204,-0.011359204,0.01950176,-0.006551057,0.0016739347,0.0051748976,-0.017725203,0.0011061428,0.028882524,0.010322878,-0.026500322,-0.00690435,0.0010068844,0.005820919,-0.011493791,0.0011911013,-0.002811201,0.024185413,0.001121284,-0.0070052906,-0.04209904,0.02082072,-0.02893636,0.0015477588,0.014293216,0.014616226,0.0013862535,-0.019474844,-0.0132636195,0.003331046,-0.024037367,-0.017496403,0.023647062,0.01732144,0.03615026,0.0074561597,-0.0118168015,0.0049259104,-0.025383243,-0.06147967,0.0039198673,-0.03440062,0.013997123,0.010484383,-0.0092058,-0.003078694,-0.016352408,0.004034267,-0.031305104,-0.022072386,-0.009979679,0.012180189,0.019340254,0.03178962,-0.025262116,-0.011601461,-0.035235066,0.035181228,-0.008929895,0.014508556,-0.022395397,-0.021816669,0.006083365,0.0107939355,0.0260831,0.007186984,-0.026998296,-0.019030703,0.011742778,-0.0027876482,0.0070120203,0.03014765,0.006705833,0.0072946544,-0.0012659658,-0.0056493194,0.01260414,-0.022180056,-0.00023552851,-0.02212622,-0.001466165,-0.0010539901,-0.01216673,0.006608257,0.009623022,-0.03781915,0.016069774,0.004912452,0.026486862,-0.019663265,-0.028155752,-0.01129191,-0.007880111,-0.02201855,-0.013108844,0.014050958,-0.0068202326,-0.005063863,0.015854433,-0.02387586,-0.001951522,-0.024925645,0.01501999,-0.029528545,-0.031466607,0.014885401,-0.015531423,0.0009623022,-0.015854433,-0.0030669176,0.048155487,-0.006749574,-0.042987317,-0.014508556,0.020255452,0.007859923,-0.032839403,0.0016041173,0.023122171,-0.0103969015,-0.026311899,-0.0012104483,-0.17044188,0.033350836,-0.0113053685,-0.03254331,0.01940755,-0.006937997,-0.004633182,0.007725335,-0.019636348,0.018586565,0.044010185,0.015760222,-0.031116681,-0.0044043832,0.012180189,-0.0017008523,-0.005555108,0.016715795,0.041587606,0.0055517433,0.01916529,0.008559779,-0.0012802656,-0.009797986,0.007146608,-0.007617665,-0.01195139,0.01194466,0.00077472057,-0.012563763,-0.0015595352,-0.012348423,0.03695779,0.012139812,0.015168036,0.008458838,0.011150593,-0.020901473,0.016756171,0.0011608191,0.00887606,-0.0032839403,0.017832873,0.021251401,-0.0041049253,0.023539392,0.029474711,0.028398009,-0.010746829,0.0015040177,0.00520518,-0.024145037,0.011016005,0.014885401,0.02114373,0.015410294,-0.004801417,0.011803343,-0.03913811,-0.013862535,0.009818174,-0.008707825,-0.01051803,-0.011002546,-0.0056055784,0.012483011,-0.024723765,-0.00057746546,0.0008028999,0.013452043,0.018290471,-0.013795241,0.012402258,0.026567616,0.0037179857,0.006985103,-0.028855607,0.0057704486,0.0011751191,0.007974322,0.0021971446,0.006803409,-0.005302756,0.008754931,0.0026968014,-0.0020019924,-0.0025420256,-0.012314776,-0.0058074603,-0.02882869,0.004976381,-0.005161439,0.0003739015,-0.0063188933,0.004091467,0.026944462,0.013055009,0.00679668,0.014858484,-0.018707693,-0.0064299284,0.01117078,-0.04896301,0.023149088,0.037307717,-0.0040376317,-0.025719713,-0.007833005,0.026379192,-0.004956193,-0.025060233,-0.0012112894,0.028478762,0.02783274,-0.0054171556,0.024494965,-0.015154577,0.00040460433,0.016271655,-0.013162679,0.047644053,-0.0149661545,-0.014373968,0.02422579,0.033539258,0.01600248,-0.1032557,-0.023848943,0.0042462423,-0.026433028,0.0005173215,0.017577156,-0.0067260214,0.029178618,-0.015491046,0.035908002,-0.0013711124,-0.026325358,-0.029986143,-0.005252286,0.018330848,-0.010558407,0.0047374875,-0.021816669,0.040806998,0.021682082,-0.015921727,-0.02378165,-0.00931347,0.008586696,-0.00005483398,-0.017065722,-0.010585324,0.03240872,0.006005977,0.0052253683,0.022893371,-0.0030265413,0.00591513,-0.021520576,-0.011742778,0.008916437,-0.013438583,0.004626453,0.01018829,-0.031520445,-0.00060522417,-0.023149088,-0.0038290205,-0.009030836,-0.025679337,0.035019726,0.0028616714,0.014939236,0.038949687,-0.022812618,-0.011608191,-0.015962103,-0.019918982,-0.04207212,0.007254278,0.012550305,0.013357831,0.017711744,-0.0291517,-0.0010624018,-0.0064366576,-0.012570493,-0.026756039,0.020336205,0.010316148,0.028882524,-0.0053330385,-0.0032401993,-0.01019502,0.0059454124,0.0037314445,0.017792497,-0.018586565,0.024360377,-0.010437277,-0.019151833,-0.021951256,-0.016742712,0.011150593,0.014858484,-0.014952696,-0.0041150195,0.009777797,-0.0024478142,-0.0045053237,-0.0049864748,0.0006872385,0.0008336027,0.004952828,-0.030282237,0.01193793,0.013822159,-0.002116392,-0.018936493,-0.005208545,0.015598716,-0.0039636083,0.003346187,0.0033764695,0.003184682,0.0055080024,0.031224351,-0.049528282,0.023822026,0.012240753,-0.019367173,0.033539258,-0.010390172,-0.011884095,-0.013600089,-0.02399699,-0.00025929164,0.009596105,0.042718142,0.01709264,-0.023956614,-0.009024107,-0.0035026453,0.017294522,-0.015571799,0.012664705,0.010807394,-0.011931201,-0.020322746,0.009495163,-0.022220433,0.007859923,0.029178618,0.0026429663,0.011264992,0.0018808633,-0.018425059,0.004962922,0.0036204096,0.0073686778,0.024831435,0.00011702823,-0.034023777,-0.0039703376,0.0072139017,0.011601461,-0.003879491,0.0035228336,-0.03757689,-0.012186918,-0.026015807,-0.035181228,-0.019636348,-0.013902911,0.006093459,0.013970206,0.008297333,0.015343,0.016944595,-0.00559212,-0.002530249,0.02718672,-0.057549708,0.023539392,-0.010343066,-0.010336337,-0.039272696,0.022435773,-0.010457465,0.01775212,-0.022879912,0.021359071,-0.0048047816,-0.060187627,0.015289165,0.019097997,-0.055046376,-0.01425284,0.009939303,0.0010985723,-0.0136943,0.02872102,0.003825656,0.0011515662,0.018021295,-0.04349875,0.022395397,-0.0028852243,-0.0085530495,-0.031493526,0.012678163,0.013344373,0.030847505,-0.013465501,0.0029155065,0.010592054,-0.0036035862,-0.021184107,0.00048619814,0.019044163,0.023350969,0.0012440953,0.021843586,-0.01623128,0.0010110902,-0.0011582955,0.026136935,0.0322203,0.012960797,0.0034790926,0.023741273,-0.00096650806,0.01927296,0.0028431655,-0.018263554,0.04056474,0.015814057,0.0050705923,-0.014064416,0.01566601,0.01927296,-0.036877036,0.009259635,-0.004427936,-0.009562457,-0.030632164,0.029528545,0.0088087665,-0.011904283,0.019151833,-0.01041036,0.02893636,-0.009414411,0.0039636083,-0.046836525,0.01787325,0.0016663641,-0.0005160598,-0.0025891312,-0.0018573105,0.0033058107,0.025289033,0.025073692,-0.03593492,0.018330848,-0.020255452,0.075099945,0.021722458,-0.016137067,0.020578463,0.028101915,0.023687439,0.022651114,-0.02048425,0.006477034,0.002072651,0.04032248,0.011823531,0.020995684,-0.021762835,-0.03695779,0.0058579305,-0.0017900167,0.01908454,-0.021089895,-0.02235502,0.011036193,0.026661826,0.017456027,0.01205906,-0.049797457,0.021547494,0.002072651,0.024952563,-0.010181561,-0.00476777,0.021830129,0.008828955,-0.005073957,-0.0033327283,0.012361882,-0.0073552188,-0.0056594135,0.018223178,-0.014320133,0.017684827,0.020753426,0.024360377,-0.033081662,-0.023700897,0.0007751411,-0.017698284,-0.012940609,0.0018472164,-0.0060228]},{\"id\":\"bc436743-1eb3-46f6-9c3b-e69a4bc94205\",\"text\":\"I need a code to be verified. Please and thank you! \",\"vector\":[-0.01828039,-0.0029346878,-0.017763264,-0.036819343,-0.0031609302,0.01647045,-0.01828039,-0.0020394141,-0.007834453,-0.0036845198,0.019728342,-0.024266118,-0.0013105902,-0.016664373,-0.003516454,-0.005753022,0.0056948457,0.0053263935,0.01716857,-0.015992109,-0.018823372,0.015862828,-0.0059566405,-0.008105944,0.0021897038,-0.013729684,0.015552552,-0.014401948,0.012902283,-0.03322532,0.027485225,-0.0031706262,-0.01597918,-0.0436454,-0.0037620887,0.004528081,0.008939809,-0.005071063,0.0074595367,0.000031562842,0.013290128,0.00816412,0.005374874,-0.030872397,0.013193167,0.00611501,-0.020452317,-0.017892545,-0.02960544,0.014608798,0.016431665,-0.032966755,-0.027200807,-0.040206514,-0.0012548376,0.020943586,0.0014148233,0.019560276,0.0030203366,-0.018008899,-0.010051629,-0.019224145,-0.024615178,-0.010794997,-0.0034550454,-0.00535225,0.0037588566,0.023231868,0.007931414,0.0028894392,-0.0053393217,-0.023917058,-0.0017097465,0.0116676465,0.042818,-0.00042945665,0.0021024388,0.011241018,-0.0016184415,-0.008002519,0.020516958,-0.0069876597,0.0070587643,0.0019957817,0.02849362,0.031518806,0.004156397,0.015785258,-0.016444594,-0.030355273,0.017556414,0.026399262,-0.0038719778,0.0062766117,-0.004883605,0.015824042,-0.0022866647,0.050626595,-0.0026034042,0.009295332,-0.003943083,0.0075564976,0.00060600654,-0.0029395358,-0.020659167,-0.0120425625,-0.003962475,-0.0015336006,-0.012921676,0.005093687,-0.023141371,0.04954063,0.0012855419,-0.037233043,0.020956514,0.026735393,0.0061117783,-0.018590664,-0.024175622,0.008907489,0.0023577695,0.0027456137,0.019275857,-0.0030607372,0.021602921,-0.015875755,-0.015901612,-0.017142713,0.00023836258,0.0014576478,0.029967427,0.002202632,0.019715413,-0.0038655137,-0.024369543,0.04315413,-0.028571188,0.019405138,-0.0017760032,-0.014052888,0.0001195853,0.022895735,0.017853761,-0.005345786,-0.00077972846,0.0036392712,-0.016483378,-0.010064557,-0.016030893,-0.027873069,0.008571357,0.006373573,0.009592679,0.016586803,-0.0058919997,0.024925454,0.0024434184,0.021357287,0.010769141,-0.031570517,-0.031544663,0.00021957638,0.0046864506,-0.023917058,0.01000638,0.02606313,-0.0038105692,-0.012430406,-0.013328912,0.005271449,-0.005174488,-0.00166773,-0.0048771407,-0.008286938,-0.013354768,0.015862828,0.015332774,-0.00069852354,-0.009159587,-0.006929483,-0.01653509,0.0069941236,0.013729684,0.029476158,-0.018513096,-0.0012532215,0.030743117,-0.0078021325,0.0014132073,-0.020167898,0.028907321,-0.004893301,0.019069007,0.0061408663,-0.66067964,-0.026528543,0.0071815816,0.0011279802,-0.0006245907,0.033458024,-0.01765984,-0.003994795,-0.040284082,0.043205842,-0.007899093,0.020555742,-0.033794157,-0.009424614,0.0015174404,-0.019353425,0.016276527,-0.022624245,0.014893217,0.01570769,-0.024020484,0.005245593,-0.008034839,0.010426545,0.0019780053,-0.001206357,0.024834957,-0.011732287,0.028312625,0.015306918,0.0058693755,0.015539624,-0.0024611945,-0.014130457,0.0393274,-0.02001276,0.018189892,0.011493117,-0.020284252,0.03126024,-0.026463902,0.0090432335,0.025403794,0.0008092208,-0.014996642,0.005442747,0.014828577,-0.016367026,-0.026218267,0.0072785425,-0.00072437985,9.689792e-7,0.0067161685,0.008913953,-0.0028005582,0.0033063719,0.022973305,-0.022986233,-0.008364506,-0.002863583,-0.013367697,0.024304902,0.0010092029,-0.037672598,-0.0077439556,0.00687777,-0.014983714,0.0025500755,0.0063121645,0.0135228345,0.008713567,-0.0027940942,-0.018849228,0.02488667,0.0030171047,0.028855609,0.00945047,-0.030562123,-0.006270148,0.017026361,-0.0041046846,-0.014699295,0.0011287882,-0.004040044,0.015371558,0.006489926,-0.0184226,-0.014983714,0.020620383,0.024873741,0.038319007,0.012598473,0.015306918,-0.00027149095,-0.00025573478,0.02341286,-0.006923019,-0.007220366,0.029786434,-0.018306246,-0.033380456,-0.014389019,-0.017091,0.0004233966,0.013419409,-0.028622901,-0.0030865935,-0.0035390782,0.031984217,-0.01862945,0.002671277,-0.0101485895,-0.01751763,0.00048480523,-0.0048965327,-0.02349043,0.003522918,-0.0046896827,-0.026114842,-0.0062507554,-0.0052391286,0.014841504,0.008286938,-0.014970786,0.00072841987,0.018913869,0.0005441939,0.0035810948,-0.012915212,-0.015358631,-0.003985099,-0.0007748804,0.011299194,-0.016108463,-0.006347717,-0.013833109,0.01778912,-0.0154749835,0.013613331,0.0123980865,0.0047510914,0.00021614233,-0.014466588,-0.009476326,0.033199463,-0.01994812,-0.012326981,0.025830423,0.0012265573,0.024098054,-0.0136909,0.0038234973,-0.0124174785,0.009670248,0.0041240766,-0.00938583,0.009476326,-0.022068335,0.008713567,-0.022120047,0.011105272,0.025843352,-0.033380456,-0.022326898,-0.0007579122,-0.0052035763,0.013548691,0.040827066,-0.013044493,-0.03573338,-0.011719359,-0.019831767,-0.00554294,0.0121007385,0.023438718,0.012882891,-0.010226158,-0.023193084,-0.007200974,0.005171256,0.008823455,0.013193167,-0.02919174,0.018810444,0.04439523,0.020297179,-0.00609885,0.03508697,-0.030536266,0.025054734,0.027640363,0.021383144,0.008539036,0.023619711,0.011906817,0.019017294,0.010691572,0.0046799867,-0.0031011375,0.013807253,0.041473474,-0.01466051,0.019508563,-0.018332101,-0.010594611,-0.018164037,0.0101098055,-0.02015497,0.022831095,0.0031641622,0.002317369,-0.0034744376,0.022197615,-0.010193838,-0.005610813,0.01820282,-0.028571188,0.008183513,-0.00017766093,0.009902955,-0.0120813465,0.002490283,0.026321692,-0.017220283,-0.017078072,0.027562793,0.005442747,0.0066321357,-0.009159587,-0.02668368,-0.010885494,-0.0072268303,0.007976662,-0.005361946,0.011564221,0.0069941236,-0.005255289,-0.02431783,0.024938382,0.008888097,-0.0035552385,0.011900352,0.031777367,-0.029941572,0.011363835,0.028597046,0.035190396,0.0052843774,-0.006832522,0.02668368,0.007937877,0.0053231614,-0.005087223,0.0066838483,0.016341168,-0.04232673,-0.0058823037,0.0030106406,0.029036602,0.036172934,0.012236484,0.021848556,0.017129784,-0.013509906,-0.008202905,0.0003234055,-0.011111736,-0.025817495,0.014893217,-0.011518973,-0.018810444,-0.0036586635,0.033664875,0.014453661,0.013833109,-0.0014051272,0.0012079731,-0.005853215,-0.010678643,0.0008855776,-0.02091773,-0.018810444,0.007517713,0.019004365,-0.015746474,-0.0018164037,-0.02342579,-0.00535225,-0.0045830254,0.016910007,0.0028102545,0.00087184145,-0.0014495677,-0.012766538,0.012333445,-0.0017970115,0.037439894,-0.027097382,0.016651444,0.023748992,0.034854267,0.0064091254,-0.024356615,-0.03182908,0.0068971626,0.027097382,0.021732204,-0.013432337,0.02919174,-0.026450975,-0.015746474,0.0010423312,0.010213231,-0.0023771618,0.028519476,-0.008170584,-0.018526025,-0.008138264,0.007886166,0.0078409165,0.000371886,0.0017630751,-0.0120231705,0.0019020526,0.0724493,-0.00093486614,0.016664373,-0.0075371056,-0.007472465,-0.003141538,-0.021835629,-0.0062410594,0.019185359,-0.024279047,-0.002776318,-0.011583613,-0.012915212,0.032992613,0.02202955,0.002225256,0.029941572,0.023529215,-0.0017792352,-0.014828577,-0.0077439556,0.031389523,-0.003943083,0.0060439054,0.017672768,-0.0016127854,0.026166555,0.013102669,0.00041935654,0.006160259,-0.018538952,0.005885536,-0.004159629,0.01500957,0.0010374832,0.035267964,-0.00023533254,0.025882136,0.010400688,0.047368705,0.0011433323,0.014220954,0.0033774765,-0.010827317,0.011299194,-0.004524849,-0.009133731,0.029476158,-0.00071387575,-0.024136838,0.0075112493,-0.013988247,-0.011635326,-0.024020484,-0.005921088,0.01556548,-0.028829752,-0.024822028,-0.015423271,-0.022223473,-0.0321135,-0.014854433,0.0074272165,-0.014389019,-0.02488667,-0.018668234,0.0051615597,-0.013354768,-0.035552386,-0.012314053,0.012217092,-0.023865346,-0.0004900573,0.009120802,0.013050958,-0.013962391,0.012346374,-0.005096919,0.013729684,-0.0028215665,-0.01828039,-0.04142176,0.019133646,-0.014453661,-0.006438214,0.020465245,0.010581682,0.0064252857,0.00011655526,0.025520148,0.017905474,0.016379952,0.018409671,-0.029269308,-0.0031738584,0.007304399,-0.01453123,0.017543485,-0.020982372,0.010271407,-0.0037750169,-0.0044828323,0.012462727,-0.011887425,-0.004030348,0.0027068292,0.03343217,0.039042983,-0.039223976,-0.0011425244,-0.008946273,-0.0035487744,0.0154749835,0.01729785,0.018267462,0.026088987,0.027873069,0.010717428,-0.0055687963,-0.036948625,0.011228089,-0.012074882,0.022197615,0.009663785,-0.007466001,0.014466588,0.0067290966,-0.019430995,0.015953325,0.0093987575,0.0010633395,0.025804566,-0.019650772,-0.01820282,-0.0008871936,-0.015358631,0.0015820811,0.016522164,-0.011790464,-0.0052973055,-0.026308764,-0.008745886,-0.009405222,-0.0067808093,-0.0016071294,-0.027717931,-0.02161585,0.00039693428,-0.015371558,0.027924782,0.00048763328,0.025274513,-0.014492445,-0.009288869,0.0023545374,-0.019237071,-0.025959704,0.0073819677,0.028907321,0.01619896,0.017879618,-0.004935317,0.019211216,-0.00574979,0.009411686,-0.005174488,0.012559688,-0.008991521,-0.0070846207,0.005087223,0.021228006,-0.0042565903,0.024511753,0.015759403,0.011008311,0.012094275,-0.007931414,-0.0077245636,-0.011279802,-0.01240455,0.018306246,-0.012701897,0.018862156,0.027847214,0.0011457563,-0.023710208,-0.0013372544,-0.0162636,0.021577066,0.011331514,0.011538365,-0.011428475,0.020374749,-0.014582941,0.021202149,-0.014983714,-0.019495634,-0.019521492,0.018319175,-0.0006621632,0.03495769,0.040697783,-0.0124174785,-0.0027084453,-0.0052262004,0.0325272,-0.009146659,-0.03989624,-0.0049611735,-0.022908663,-0.031596374,-0.014182169,-0.015617193,0.0055364757,-0.021732204,0.024653962,-0.014557085,0.008396827,0.0014269435,-0.030174278,-0.011900352,-0.005895232,0.000117767275,0.009534503,0.02286988,0.016729012,0.0076146745,-0.0017760032,0.010846709,-0.013949463,-0.016638516,0.028571188,0.04434352,-0.0049385494,-0.02841605,0.024990095,-0.0037233043,-0.025171088,-0.014686367,0.008487324,-0.0050549028,-0.0032045627,-0.011460796,0.010930742,-0.02717495,0.03467327,-0.014906146,0.0056140446,-0.010491186,-0.0052973055,-0.008390362,0.025675286,-0.0136909,0.018526025,0.011783999,0.011680574,-0.004450512,-0.01778912,-0.015281062,-0.014582941,0.008558429,0.017078072,0.0040368116,-0.007776276,-0.010943671,0.0065125506,-0.0065222466,0.008073623,0.0018697323,0.017776193,-0.021939054,-0.015733546,-0.036509067,0.0018745803,-0.008694174,0.022766454,-0.011997314,-0.02078845,-0.0017646911,0.008959201,0.016367026,0.011493117,0.0047575557,-0.0072785425,-0.007912021,0.0056916135,-0.021085797,-0.0032821314,0.026812961,-0.007931414,-0.009864171,0.01403996,0.004957942,-0.00003482013,0.027149094,0.023710208,0.025455507,0.009986988,-0.02599849,-0.00478018,0.01240455,0.0052973055,-0.027562793,-0.010691572,0.011357371,-0.0411632,0.009870634,-0.0011554525,-0.015746474,-0.008855776,0.004692915,-0.019973977,-0.005090455,-0.008752351,-0.012986316,-0.0020184058,0.027692076,-0.01362626,-0.027795501,0.020891873,-0.012953996,0.0038170333,0.0072785425,-0.01758227,-0.021538282,-0.010264943,0.005122775,0.0097930655,-0.021977838,-0.009482791,0.006483462,-0.011202233,-0.015643049,-0.045584623,-0.038887843,0.009347045,0.001672578,0.028855609,0.00012110031,0.00056762615,-0.0017226746,0.02139607,0.019482708,0.010685108,-0.0026066361,-0.02071088,-0.0054104263,-0.014505373,-0.04007723,-0.023800705,-0.04294728,0.026425118,0.006195811,-0.013742613,-0.008616605,-0.018319175,-0.023399932,-0.014699295,-0.020594526,0.01597918,0.02307673,-0.004149933,0.014091672,0.025752855,0.0055170837,0.022986233,-0.02148657,0.0010649555,0.006279844,-0.0006662032,0.009644392,-0.016108463,-0.016392881,-0.008674782,0.008849312,0.028933177,0.0059340163,0.037853595,-0.02717495,0.0053845705,-0.001851956,-0.003943083,-0.007705171,-0.01466051,-0.010264943,-0.035629954,-0.018435527,-0.0016055134,0.024511753,0.022288114,-0.014906146,0.020400604,-0.0101291975,0.011538365,-0.022016622,-0.005455675,0.013038029,-0.013290128,0.01925,0.005361946,-0.027330087,0.0147639355,-0.018513096,0.0028894392,0.0025484595,-0.0025630037,-0.024279047,0.0128311785,0.01953442,-0.010083949,-0.020633312,-0.019508563,0.00036319994,0.0047543235,-0.0010092029,-0.013574547,-0.0055784923,-0.016560948,0.008661854,0.007394896,-0.025145233,-0.0007017556,0.004705843,-0.0012596856,0.014091672,-0.03842243,-0.011493117,-0.012074882,-0.006457606,0.031105105,-0.011997314,-0.007944342,0.022107119,-0.004282446,0.0158499,0.012928139,0.23229282,0.01424681,-0.005103383,0.030898254,0.0044925287,0.0102908,0.013613331,0.00082659296,0.00013524047,-0.0033839406,0.003240115,0.0036651276,-0.02001276,-0.007918485,-0.005155096,-0.024653962,-0.028855609,-0.020452317,-0.035397246,-0.016211888,-0.00095749035,0.02113751,-0.017608127,-0.01799597,0.03371659,0.012036098,-0.021913197,0.01466051,0.02148657,-0.0028845912,-0.034569845,0.012824715,0.01605675,-0.009469862,-0.02557186,-0.0049385494,0.029760579,-0.004990262,0.04504164,0.012966924,0.016043821,-0.014815648,0.003419493,-0.03627636,0.004722003,0.02725252,-0.0101485895,-0.0042986064,0.0035584704,0.009508647,-0.024550537,-0.017052216,0.01731078,0.020607455,0.01097599,-0.018228678,0.02148657,-0.016690228,-0.012217092,-0.002218792,0.0013259423,0.012307589,-0.03100168,-0.0009582984,-0.01424681,0.010012845,-0.025377939,-0.019301713,0.014673439,-0.00028340906,0.0058435192,-0.004909461,0.022792311,0.023929987,-0.0090432335,-0.012242949,0.0107045,0.021783916,0.01897851,0.008455004,-0.00166773,-0.0015125923,0.0089850575,-0.025313297,-0.0020523423,-0.018383814,-0.00427275,0.004437584,-0.012818251,0.015358631,0.000112919224,-0.015992109,-0.014337307,-0.026657823,0.0033936368,0.009153123,0.021706346,0.031596374,0.00022482843,-0.017543485,-0.015281062,0.040568504,-0.021577066,-0.016444594,-0.008189976,-0.0063218605,0.021926126,0.037517462,0.013076814,-0.00019735613,-0.0066127437,-0.025907991,0.019172432,-0.006347717,-0.004317999,0.011939137,0.0030268007,-0.014052888,0.0027617738,0.0010762677,0.014156313,-0.040620215,-0.033406314,-0.0044731363,0.021602921,-0.012314053,-0.008467931,-0.020646239,-0.022120047,-0.027692076,0.012359302,0.017957186,0.01181632,0.004799572,-0.02334822,-0.014104601,0.022611316,-0.0004516769,-0.014065816,0.0045119207,0.008448539,-0.00130251,0.00781506,-0.012223557,-0.003325764,-0.028597046,0.008907489,-0.014621726,0.00023028249,-0.020180827,-0.008151192,-0.007672851,-0.00008453791,-0.021047011,0.03216521,0.007892629,-0.04211988,-0.02446004,0.019418066,-0.007310863,-0.016211888,0.008054231,0.012747146,-0.009217763,-0.0063283243,-0.015048355,-0.16444594,0.01494493,-0.00462181,-0.02599849,0.026179483,0.046877436,-0.017220283,0.028002352,-0.007588818,0.0046412023,0.03878442,-0.007827989,-0.01167411,0.0046670586,-0.0027084453,0.0039560106,-0.019288784,-0.018357959,0.0036683597,0.013742613,0.022456178,-0.010277871,0.020633312,-0.0021493032,0.011176377,-0.03239792,-0.03531968,0.011060024,-0.018758731,0.0108596375,-0.018913869,0.009689641,0.0073625757,0.0061117783,0.012727753,-0.0010875798,0.023141371,0.0015748091,-0.00028967112,0.009747817,-0.003338692,0.014570014,0.0013970471,0.0023755457,-0.01688415,0.03503526,0.014673439,-0.0048318924,0.0020733504,-0.009372901,0.008500252,-0.0005466179,0.0024757388,0.0007720523,0.022753526,0.02911417,-0.019211216,0.008616605,-0.009547431,-0.00041370047,0.0132772,-0.0061764186,-0.011777535,-0.021189222,-0.0018067076,-0.010743285,-0.030665549,0.0049482454,-0.007394896,0.00314477,0.008054231,-0.045817327,0.017530557,-0.016043821,0.021628778,-0.0070393723,-0.04191303,0.03286333,0.018668234,-0.017983042,-0.0053910343,0.031984217,-0.0116676465,0.033458024,-0.010762677,-0.008015446,0.0024159462,-0.0041919495,-0.010794997,-0.014919073,0.012307589,-0.008661854,-0.004052972,-0.005804735,0.034026865,-0.004967638,0.0012499895,0.0032013305,-0.00463797,0.004069132,0.007847381,-0.01334184,-0.02841605,0.025067663,0.026360476,0.024175622,-0.038680993,0.017672768,0.012087811,0.014570014,-0.022740599,0.017013432,0.026166555,0.017026361,0.016315313,0.007142797,-0.03420786,-0.022714742,0.0014293675,-0.0064285174,0.037827738,0.00049530936,-0.02647683,0.011557757,0.001007587,-0.003151234,-0.09613365,-0.027976494,0.009185444,-0.0024531146,-0.023193084,-0.00239009,0.0010536434,0.012559688,0.0042889104,0.03384587,0.0006197427,-0.032889187,-0.021990767,0.0033193,-0.012346374,-0.00848086,-0.016030893,-0.0027052131,0.0055073877,0.010433009,-0.024615178,-0.0032788995,0.01453123,-0.0112151615,-0.001382503,-0.019198287,-0.020723809,-0.00463797,-0.00053126574,-0.0036457353,0.0051421677,-0.0147251515,0.008086552,-0.023322364,-0.013613331,0.0044828323,-0.018448455,-0.005271449,0.02488667,-0.017879618,0.00077972846,-0.022611316,-0.0045797937,-0.0411632,0.008855776,0.001206357,-0.020542813,0.004350319,0.0022672724,-0.024847886,-0.010762677,0.015268133,-0.018448455,-0.03433714,0.003049425,-0.011900352,0.016069679,0.021370215,-0.014492445,-0.01362626,0.013988247,0.024175622,-0.022068335,-0.009191907,0.012049027,0.0063541806,-0.016638516,-0.0273818,0.016560948,-0.007912021,0.012559688,0.026890531,-0.035836805,0.011964994,-0.031311955,0.007123405,-0.019547347,-0.012947532,-0.008532573,-0.008118872,-0.014324379,-0.003888138,-0.016858295,-0.016767798,0.00370068,0.010394225,0.00648023,0.021538282,0.010691572,-0.01869409,0.014738079,-0.0014334075,0.01640581,-0.007562962,-0.016160175,-0.00889456,-0.002317369,0.002863583,0.005468603,-0.003438885,-0.025869207,-0.005795039,-0.06081397,0.022068335,-0.01108588,-0.020904802,0.021215077,-0.008623069,0.017608127,-0.008403291,0.011654718,0.0025500755,0.0052035763,0.030355273,-0.009844778,-0.0076469947,-0.009935276,0.0128117865,0.021641705,-0.011783999,0.007110477,-0.017750336,-0.00795727,-0.0147251515,0.001200701,0.00462181,0.0066967765,0.024382472,-0.0034033328,0.011079416,-0.0061667226,-0.012934604,-0.011538365,-0.03043284,0.008409755,0.027304232,-0.014699295,-0.01988348,0.0063865012,0.026386334,0.011699966,-0.019573204,-0.005462139,-0.021848556,0.007776276,-0.021383144,0.003332228,0.010820853,-0.019030223,0.009334117,0.015901612,0.0026244123,0.017284922,0.016897079,-0.018952653,-0.013141454,0.0004415768,-0.029838147,0.020129114,-0.018435527,0.02460225,-0.034026865,0.03870685,-0.017065145,0.025933849,-0.013290128,0.026580255,0.0010633395,-0.023503358,0.028390195,0.0035649345,-0.022469107,-0.035836805,-0.008021911,-0.007666387,-0.0075500337,0.012411014,0.0011772687,-0.0001571577,-0.00078215246,-0.01167411,0.021292645,-0.004825428,-0.011603005,-0.00067105127,0.00014604758,0.01980591,0.03100168,-0.0005066215,0.004602418,-0.0068195937,0.015462055,-0.036302216,-0.007582354,0.0023464574,0.009605608,0.019870551,-0.010400688,-0.0057724146,0.008758815,-0.014130457,0.01618603,0.012210628,-0.0051454,0.017595198,-0.011480188,-0.006923019,0.021240933,-0.030717261,-0.018332101,-0.026528543,0.010232623,0.015604265,-0.0005062175,0.0044214237,0.008635998,-0.009185444,0.004537777,0.016444594,-0.022469107,-0.025352083,0.037724312,0.008461468,0.011874496,0.005087223,-0.0019973975,0.0062087392,0.0071751177,0.0043664793,-0.0184226,0.015798187,-0.00014483556,-0.017078072,-0.031105105,-0.0074401447,-0.022055406,0.014091672,0.010400688,-0.016664373,0.0265544,-0.0014002791,0.06686434,0.016599732,-0.0041014524,-0.007653459,0.009133731,0.025119375,0.028209202,-0.016250672,0.005187416,-0.00016251075,0.008144728,0.0120813465,0.03195836,-0.009586216,-0.0046508983,-0.0031673943,0.0005777262,0.007912021,-0.015578409,0.013665044,0.01181632,-0.010685108,0.014906146,0.00021937437,-0.030949967,0.015552552,-0.0040109553,-0.027743788,-0.012637257,-0.033199463,0.0094181495,-0.006392965,-0.017349564,0.010226158,0.019973977,-0.015229349,-0.005652829,0.0019747734,0.023115514,0.031648085,0.025377939,0.023994628,-0.018655306,-0.0063121645,-0.025895065,0.019844694,-0.010342512,0.009741354,-0.016379952]},{\"id\":\"24b80efa-e318-41ac-aaee-ea9d2fa07e1f\",\"text\":\"Just got a BlendJet and Love this! It's Great! You are Great! Have a Great Day! \",\"vector\":[-0.032476608,0.0034727654,-0.011345008,-0.023882877,0.009177336,0.0122749265,0.0037228814,-0.014827393,-0.0099276835,-0.018470109,-0.016315263,0.017072024,-0.026230121,-0.010485635,0.010286825,0.011928612,0.011832414,-0.01607156,0.015301973,-0.009837898,-0.013608879,0.0074008703,0.0036170632,-0.018931862,-0.02057365,0.005672504,-0.0020939205,-0.01799553,0.0061887694,-0.011389901,0.018162275,0.00044812463,-0.034349274,-0.021240626,-0.017905746,0.0053935284,-0.01712333,0.005364669,0.018354671,-0.0034952117,0.022305222,0.00055153796,0.008824607,-0.009639088,-0.034118395,-0.0010670015,-0.0058007687,-0.0056019584,-0.0005294925,0.0010653982,0.023280034,0.018444456,-0.012877771,-0.0054352144,0.018957514,-0.011364248,-0.013980847,-0.006541497,0.018482937,-0.004059576,-0.0017107298,0.004579048,-0.016841149,0.012614829,0.009690395,-0.02067626,-0.0186112,0.00761892,0.011941439,0.014288682,0.0079203425,-0.01879077,0.029141728,-0.0002537235,-0.015725246,0.002507574,-0.021125188,-0.00008041592,-0.012602001,-0.005422388,0.01672571,-0.029834358,0.001443779,0.011114132,0.016802669,0.0018598374,0.0067659603,0.016507661,-0.017726174,-0.0044251303,-0.008760476,0.007509895,0.0021500362,0.011287289,-0.01212101,0.020304294,0.013057341,0.0023648795,0.010973041,-0.032861404,0.001675457,0.016174173,-0.010966628,-0.014019326,-0.031578757,-0.00803578,-0.0031825665,-0.016430702,0.035939753,0.010453569,-0.017251596,0.011819587,-0.012326233,-0.015789378,0.011749042,-0.010004642,-0.02605055,-0.0063971994,-0.0073303245,-0.023639174,0.024100928,0.040736854,0.022561751,-0.015699593,0.032168772,0.035478003,-0.022843935,-0.019573186,-0.011563058,0.0031328641,0.015468717,0.033554032,0.0061534964,-0.0018245646,-0.020419732,0.020509517,-0.039941613,-0.0015463907,0.0042808326,0.011928612,0.013968021,0.030193498,-0.011319355,0.015289146,-0.024254845,0.013942367,0.018495763,-0.025999244,0.030013928,-0.01378845,0.0031104176,-0.01658462,0.012711027,0.013050928,0.017841613,0.018098142,0.004428337,0.0016562173,-0.003028649,0.009017005,-0.00024971523,-0.018495763,0.033682298,-0.0045149154,0.021471502,0.016122866,0.008843848,-0.02263871,-0.00034431042,0.007695879,0.0048035113,0.022035867,-0.014250202,0.016918108,-0.016712883,0.010543354,0.015866337,-0.008600145,-0.010383023,-0.0051305857,-0.00054151734,0.014545212,0.0075740274,0.018842077,-0.001149572,-0.036401507,0.022843935,-0.027961694,0.007888276,-0.0019351928,0.0020907137,0.021843469,-0.006727481,-0.028679976,-0.66040903,-0.029526522,0.0059675127,-0.011159024,0.01581503,0.025858153,0.012345472,0.008548839,-0.011627191,0.008702757,-0.009190162,0.028320834,-0.010299651,0.006624869,0.022805454,0.0035208645,0.006714654,-0.032091815,-0.01549437,-0.0012249274,-0.026935576,0.020612128,-0.03029611,0.0009002575,0.012557109,-0.012941903,0.034451883,0.007291845,-0.0020522345,0.0101008415,-0.011691323,0.031373534,-0.0022061518,-0.019239698,0.05279373,0.0037806006,-0.0080870865,0.0143656405,-0.000093793526,0.009658328,-0.032066163,0.00011183074,0.009773767,-0.0048676436,-0.007535548,-0.0015792585,0.023703307,-0.0064196456,-0.0013547953,-0.016635925,0.01741834,0.010998693,0.017367033,0.011543819,-0.011171851,-0.015071096,0.04455914,0.01166567,0.015160881,-0.0013475805,-0.010453569,0.026499476,-0.0141988965,-0.0024642847,-0.004402684,0.013442135,-0.006791613,-0.02133041,0.0045501883,0.0082474165,-0.0021211766,0.0015303576,-0.009882791,0.0048644366,0.012762332,0.020060591,0.022536099,0.0101777995,0.0072341263,0.007727945,0.002866715,-0.006624869,0.008632211,-0.0027192105,0.03327185,-0.0005182694,-0.012242861,0.0014950848,0.013480615,-0.012550696,0.023395471,0.028603017,0.0048740567,-0.023536563,0.0101008415,0.0069711837,0.0018822837,0.0071892333,0.018085316,-0.018264886,-0.0074970685,-0.013275391,0.033579685,0.021830643,-0.014468253,-0.016507661,0.013660185,0.013288218,0.004973462,-0.018008357,0.018842077,0.0067852,-0.022228263,-0.006214422,-0.021856297,-0.026153162,-0.005489727,-0.007259779,0.012076117,-0.023844399,-0.0069711837,-0.016815495,0.014057806,0.006708241,-0.0102611715,0.024229191,0.009395385,-0.019509053,-0.011851653,-0.011062826,0.022728495,0.0038800056,0.007009663,-0.00040764108,0.006708241,0.015083923,0.01741834,0.0044571967,0.016815495,-0.027269064,-0.00091709226,0.011588711,-0.0013435722,0.016430702,0.0044764364,0.0018149448,0.0123582985,0.012127423,-0.022484792,-0.013557574,-0.013012448,0.00253483,-0.017867265,0.0072148866,0.021497155,-0.009145269,-0.017495299,-0.019201217,0.0008842244,-0.022125652,0.016520487,0.018393151,-0.011640017,-0.00995975,0.014391294,0.01418607,-0.018508589,0.011659256,-0.03370795,-0.027936041,-0.009902031,0.0017540191,-0.011075652,0.011575884,0.0031248475,-0.009196576,-0.007259779,-0.02968044,0.0062048025,-0.0029645166,0.009369733,0.0009363319,0.004954222,0.0068044397,0.023485256,0.016058734,0.031142656,0.028679976,-0.04037771,0.011742628,-0.00009684983,0.018303365,-0.024408763,-0.0027608965,-0.028115612,-0.011505339,-0.020265814,0.026101856,0.038633313,-0.002190119,0.023138942,0.0031344674,0.031527452,0.0024402349,-0.0037645674,-0.023254381,0.02394701,-0.027294718,0.004360998,0.026153162,-0.0100944275,-0.02307481,-0.009600609,-0.010459982,0.03381056,-0.012159489,-0.006458125,-0.007676639,-0.015225014,-0.0074906554,0.0010421503,0.0032130294,-0.0069391173,-0.024190713,-0.027525594,0.03283575,0.00030021946,-0.0011431586,0.019034473,-0.011979918,0.0028923678,0.02525531,0.013801276,0.0021997388,-0.00033489097,-0.0079973005,0.015378932,-0.01523784,0.033938825,0.008151218,0.013724318,-0.0009908444,0.01122957,-0.022574577,0.014724782,0.01593047,0.031193962,-0.020958444,0.009209402,-0.00027496734,-0.011979918,-0.01019704,-0.014609343,0.0012449687,0.007368804,-0.035785835,-0.013762797,-0.001960846,0.01166567,0.013711491,-0.0017395893,0.028166916,0.013378003,-0.0011351422,0.009946924,0.0018261679,-0.0080870865,-0.054076377,0.013236912,0.010453569,-0.0034310794,-0.0067659603,0.022151304,-0.024100928,0.034195356,-0.01208253,0.008119152,0.018329019,-0.0032386824,0.04589309,-0.014493905,-0.04248125,0.024883341,0.022087172,-0.0059867525,0.011261636,-0.01676419,-0.012576349,-0.009953337,0.029526522,0.03475972,0.034349274,0.022690017,0.012852117,0.02775647,-0.010273999,0.02009907,-0.01890621,0.0074136965,-0.017623562,0.0018710606,-0.006102191,-0.016405048,-0.05140847,0.005322983,-0.0062304554,-0.0016153329,-0.028603017,-0.00507928,-0.008048607,0.021381717,-0.024639638,-0.025524665,-0.02242066,0.009190162,0.004088436,-0.005954686,-0.023998316,0.03686326,-0.0135704,-0.019611664,-0.01900882,0.00058761245,0.017495299,0.08860522,0.030680904,-0.008215351,0.017097678,-0.021561287,-0.0041333283,-0.021035403,-0.0026262186,-0.007695879,-0.00360103,-0.005002321,0.0043096924,0.015276319,0.0019640524,0.008991352,-0.0077984906,0.012768745,0.0011992744,-0.0060220254,-0.017610736,0.01755943,0.019637318,0.0043000723,0.009190162,0.014481079,0.026499476,0.015789378,0.01105,0.012839291,-0.0016866801,0.0045309486,0.008933633,-0.02499878,-0.0039954437,-0.018547067,0.009279948,0.010408676,-0.009485171,0.0043064854,0.002794566,0.023305686,0.017764654,0.00096198486,-0.018367497,-0.010248345,-0.011729802,-0.01864968,0.004110882,-0.018444456,-0.013724318,0.010229106,-0.007862623,-0.0050824867,-0.00046536018,0.007516308,0.03352838,-0.023382645,-0.017251596,0.0011664067,0.0007711912,-0.01973993,-0.02590946,-0.004284039,-0.0006477365,-0.015378932,-0.035170168,-0.015301973,-0.018085316,0.009292774,-0.005072867,-0.030706557,-0.005197925,-0.0106844455,0.006268935,0.030834822,0.0058777276,0.00868993,0.0020281847,0.020073418,-0.008478293,0.0019848954,-0.004986288,0.0067852,-0.019893847,0.0033348808,-0.014019326,0.011377075,0.018059662,0.0023632762,0.015173708,0.0275769,0.0133651765,0.023921357,-0.01795705,-0.005432008,-0.010004642,0.0012361505,0.016520487,-0.015507196,0.0034631456,-0.014263029,-0.012044051,0.0065735634,-0.013942367,0.016623098,0.020073418,0.012044051,0.016405048,-0.01057542,0.0010261172,0.004912536,-0.014352814,0.0085873185,-0.007875449,-0.015430237,0.027012534,0.0038319065,-0.012454498,-0.0066954144,-0.0111013055,-0.0104343295,-0.03283575,0.03496494,-0.012653308,0.015853511,0.020419732,0.002278301,0.00360103,-0.012050464,0.030706557,0.0005503355,0.009318426,-0.014686302,0.006874985,-0.033990134,-0.024626812,-0.031732675,0.018110968,-0.00012696195,-0.016494833,-0.051690653,0.009562129,-0.0011439603,0.012454498,-0.00083131524,-0.017508125,-0.005977133,0.01545589,-0.0060124053,0.012755919,-0.0093440795,0.0025620863,-0.038633313,-0.01654614,-0.00079844747,-0.013737144,-0.025409227,-0.010569007,0.021317584,0.025011607,0.039762042,-0.011582298,0.015276319,-0.0036523358,-0.015558502,-0.0010653982,-0.0006381166,-0.0062368684,-0.0019736723,0.02039408,0.0050343876,-0.01374997,0.004793891,-0.012153075,-0.02093279,0.008221764,0.008119152,-0.018162275,-0.010293238,-0.045072198,0.0128649445,-0.011120545,-0.0033445007,0.015340452,-0.017828787,-0.005630818,0.031655714,0.004835577,0.014044979,0.016597446,0.016302437,-0.015558502,-0.0059194136,0.009029831,0.0011022743,-0.02553749,-0.010883256,-0.0111013055,-0.010152147,0.0133651765,0.011973505,0.034528844,-0.010126494,0.014468253,-0.009228641,0.009568543,-0.004777858,-0.013980847,0.011755455,-0.0027753264,-0.0010910511,-0.02968044,-0.014711956,-0.020471038,-0.011838827,-0.0030318557,-0.016802669,0.009465931,0.002352053,-0.015071096,-0.019945152,0.0064966045,0.0127815725,-0.00997899,0.01505827,0.037966337,-0.012416018,-0.0029468804,0.01418607,-0.013724318,-0.003835113,-0.007811317,0.03563192,-0.016199825,-0.0124416705,0.0028699215,0.006185563,-0.008221764,-0.0057783225,0.010844776,-0.003205013,-0.008612971,-0.03406709,0.0004641577,-0.014955658,0.016995067,0.01249939,0.005072867,-0.016674405,0.0073174983,-0.0258325,0.0077343583,-0.008721996,0.019355135,0.013929541,0.009369733,0.00027536816,0.009074724,-0.020945618,-0.0036940218,0.019252524,0.01777748,-0.008875914,-0.0056949505,0.0074008703,-0.0035946167,-0.005399942,-0.0066890013,0.011973505,0.018931862,0.0057622893,-0.018200753,-0.013544747,-0.0027865495,0.025101392,-0.018085316,-0.026986882,0.0019287796,0.014506732,0.00094755506,0.007702292,-0.011441207,-0.008593732,-0.0069327042,-0.012005571,-0.020432558,0.009985403,-0.015340452,-0.0046720398,-0.018187927,-0.0136986645,-0.024408763,0.0016963,0.025601624,0.026807312,-0.008824607,-0.007843384,0.021830643,-0.0018293746,0.02329286,0.004229527,0.014263029,-0.024203539,-0.012185141,-0.0014838617,-0.004694486,-0.0071379277,-0.011896546,-0.015725246,-0.035580613,0.003205013,-0.0045501883,0.015866337,-0.007259779,0.00783697,-0.0057494626,0.019547533,-0.016777016,-0.012249274,0.0044347504,0.00009103784,0.0031937899,-0.008202524,-0.012133836,-0.021561287,0.0062593147,0.0031665335,-0.015032616,-0.015661113,0.0070994482,-0.021291932,-0.014391294,0.016315263,-0.007824143,-0.0155456755,-0.0049253623,-0.00868993,0.011716976,0.000026454583,0.008580905,0.014699128,0.024395935,-0.012711027,0.016712883,-0.00906831,-0.014558038,-0.009036245,-0.013929541,-0.019470574,-0.015789378,0.00360103,0.023126116,0.004537362,0.00007295052,-0.025588797,-0.056641668,-0.018944688,-0.024806382,-0.012108183,0.012646894,0.010132907,0.005983546,-0.017007893,0.021894775,0.0058681075,0.0029645166,0.009049071,-0.013480615,0.0052780905,0.0007431333,0.00720206,-0.033015322,-0.030809168,-0.013063755,0.0073880437,0.011505339,0.01422455,0.0048323707,-0.01212101,0.010293238,0.012730266,0.021086708,0.020509517,0.02202304,-0.001358002,-0.026602088,-0.017328555,0.0069070514,-0.0062240423,-0.0071058613,0.009773767,0.027089493,0.0033958065,-0.023049157,-0.014044979,-0.0019544326,-0.01664875,-0.00509852,0.012486563,0.0036715756,0.009433865,0.03632455,0.006102191,-0.008061433,0.013519094,0.008612971,0.017905746,-0.0053005368,0.01737986,-0.008131979,-0.015378932,-0.02547336,0.0033797736,-0.019034473,-0.026499476,-0.0063779596,-0.0015992998,-0.03740197,0.0030591118,0.025691409,-0.031655714,-0.0043994775,-0.009433865,-0.014930005,-0.0038671792,0.007343151,0.024460068,-0.050074518,-0.010479222,0.01694376,-0.0036202697,-0.036196284,0.027217759,-0.0019736723,0.017944224,0.01571242,0.22225699,0.003851146,-0.006900638,0.04343041,-0.004579048,0.011216744,-0.0056115785,-0.0015880767,0.00084734836,-0.0030847648,0.009934097,0.009465931,-0.012832878,-0.0039024518,0.0026582847,0.011345008,-0.037709806,-0.022536099,0.01142838,-0.008266657,-0.012069703,0.0043289317,0.014301509,-0.011242396,0.017315727,0.015532849,0.0016153329,0.0114347935,0.014506732,-0.014994137,-0.010953801,0.0034471124,0.024537027,0.0053101564,0.013390829,-0.0074842423,0.009793006,-0.009074724,0.017674869,0.034990598,-0.004187841,0.0074650026,0.01418607,-0.0221,0.025960764,0.01188372,-0.011197504,-0.0148787,0.027936041,0.0011664067,-0.013814103,-0.020304294,0.004668833,0.020240162,0.0048003043,0.0072982586,0.01523784,-0.016918108,0.0131343,-0.015686767,0.012685373,0.019149913,-0.007593267,0.005807182,-0.02394701,-0.003716468,-0.0057270164,-0.0010573817,0.03740197,-0.021574114,0.008548839,0.00040924439,-0.00008377285,0.021291932,-0.031527452,-0.014917179,0.004617527,0.012640481,0.022010213,0.0039377245,-0.0077087055,0.004312899,-0.012685373,-0.023100464,-0.015314799,-0.05089541,-0.0033124345,-0.01813662,-0.0013860599,0.0035497241,-0.008317962,0.0042038737,-0.002497954,0.00952365,0.009658328,-0.0016321676,-0.00047698416,0.010645966,-0.009228641,0.023716133,-0.013673011,-0.0084205745,0.008760476,0.018149449,-0.013737144,0.007695879,-0.016815495,0.011819587,-0.009433865,-0.018688159,-0.0013588036,-0.02387005,0.008612971,-0.0104279155,-0.022202611,0.024678119,0.00085215823,-0.012127423,0.017405514,-0.027012534,0.035247125,0.0080870865,0.0040243035,0.0039409315,0.008952873,0.006490191,-0.013852582,0.009299187,-0.0122749265,-0.011556645,0.0019913088,0.02347243,0.022266744,-0.03555496,-0.024844863,-0.005127379,-0.006624869,0.011787522,-0.015340452,-0.0021019368,-0.01039585,0.011614364,0.009292774,-0.0014614153,0.029577827,-0.029141728,0.032527916,-0.024100928,-0.017726174,0.0016401842,-0.03283575,0.018059662,-0.017790306,-0.011345008,0.03011654,-0.012095356,-0.047663145,-0.009183749,-0.00865145,-0.022908065,-0.008645037,0.0104279155,0.022369355,-0.017662043,-0.00827307,0.003674782,-0.16253696,0.031014392,-0.0011030759,-0.024280498,-0.010209866,-0.0039986502,0.026653394,0.009113204,-0.0105177015,0.009177336,0.012653308,0.012313406,-0.017687695,-0.0012994813,0.011787522,0.002831442,-0.025986418,0.00593224,0.036811955,0.01720029,0.01636657,-0.01166567,0.02216413,-0.00030222358,0.02180499,0.00030422772,0.0028811446,0.005906587,-0.01737986,-0.009421038,0.0025268137,-0.01799553,0.043302145,0.0034182528,0.039839,-0.00012706217,0.032810096,0.0012193158,0.011486099,0.027371677,0.036119323,0.016238304,0.009158096,-0.00851036,-0.011838827,0.023382645,0.021766512,-0.0023087636,-0.008375682,-0.0061599095,0.018123794,-0.029423911,-0.011486099,0.014275855,0.02299785,0.0016946967,-0.011716976,0.039172024,-0.0029116075,-0.023228727,0.0043096924,-0.011133372,-0.026204467,-0.017174637,-0.026319906,-0.007503482,-0.01962449,-0.002465888,-0.005890554,0.0038383196,-0.014545212,-0.010729338,0.016263958,0.019534705,0.01249939,0.0031505004,-0.016276784,0.02144585,0.021458676,-0.022497619,-0.026756005,0.03186094,0.008484706,0.01519936,-0.013634532,0.007452176,-0.01105,0.005563479,-0.026525129,-0.015109575,0.01886773,-0.014660649,-0.016161345,-0.009530064,-0.00549614,0.012563522,0.012319819,-0.0013139109,-0.0036940218,-0.004421924,-0.0014285475,0.010312478,-0.016623098,0.01378845,0.023151768,0.0054448345,0.021599768,0.008311549,0.011556645,-0.00083131524,-0.02826953,0.009671154,0.020547997,0.0207917,0.0013339523,0.037068482,-0.0036940218,-0.02619164,0.050613232,-0.008010128,0.024177887,0.011473273,-0.011377075,0.022151304,-0.020599302,0.011569471,-0.073418684,-0.042352986,-0.0024819209,0.03447754,0.0028907645,0.023523737,0.0056692977,0.015083923,-0.015827857,0.028526058,0.02031712,-0.010973041,-0.02263871,-0.0028907645,0.029577827,-0.027987346,-0.0018470109,-0.02424202,-0.020022111,-0.004409097,-0.020060591,0.0010116874,-0.017841613,-0.010806297,0.008375682,-0.012255687,-0.03219443,0.016187,0.019470574,0.012223621,-0.0011872497,-0.022882413,0.007432936,-0.03642716,-0.021381717,-0.0071892333,-0.03029611,0.009388972,0.021099534,-0.04212211,-0.002050631,-0.015827857,-0.013519094,-0.034092743,-0.024511375,0.016507661,-0.0068236794,0.0071571674,-0.0049253623,-0.007253366,-0.029398257,-0.0023873257,-0.035170168,0.0023424332,0.023010679,-0.0017043165,0.016315263,-0.0042391466,-0.021112362,0.021022575,-0.025973592,0.007227713,-0.021291932,0.03763285,-0.02281828,-0.0076317466,0.009728873,-0.015789378,0.018559895,0.0026406485,-0.007670226,0.016789842,-0.023626348,0.014416946,-0.03180963,-0.0095108235,-0.0031024013,-0.017097678,0.014596517,-0.005573099,-0.015699593,-0.006733894,0.005181892,-0.015558502,0.030655252,0.00035974226,0.00034070297,0.013211259,-0.018110968,-0.019175565,-0.0079139285,0.011056413,0.019855367,-0.014455426,-0.02855171,-0.014352814,-0.010703685,-0.005460867,0.047073126,-0.008683517,-0.027038189,-0.008305136,-0.07059686,0.019547533,-0.012287754,-0.020612128,0.03632455,-0.023100464,-0.006519051,0.0013339523,0.00011002702,-0.029962622,0.0029805498,0.0054031485,0.005355049,-0.021817816,-0.008266657,-0.014160417,0.039454207,0.034092743,0.013262564,-0.0106010735,0.006124637,-0.011781108,0.0059194136,0.0060508847,-0.008715583,0.021279106,-0.025114218,0.010556181,-0.023164596,-0.0034214596,-0.01440412,-0.03352838,0.025986418,0.059309572,-0.011069239,-0.028679976,-0.012011984,0.025781194,-0.0015560106,-0.05010017,-0.017187463,-0.042019498,0.012775159,-0.01309582,0.009170922,0.0011167041,-0.0025925492,0.0025797228,-0.002002532,0.035606265,0.021253452,0.011729802,-0.003851146,-0.028962158,0.009446692,0.0023376232,0.01777748,-0.007452176,-0.008677104,-0.0133651765,0.034118395,-0.0013892665,0.019021647,-0.03091178,0.017072024,0.015596981,-0.01081271,0.015776552,0.02553749,-0.0016930933,-0.016148519,-0.016738536,0.0044251303,0.022600232,0.022920894,-0.024755077,-0.0010197039,0.0006894225,-0.019586012,0.014930005,0.037709806,0.0033477072,-0.022189785,-0.007881863,0.018059662,0.035349738,-0.03021915,0.008779715,-0.008151218,0.027782124,-0.02470377,-0.006406819,0.01611004,0.009619849,-0.006464538,0.030963086,0.007644573,-0.0018181514,-0.019893847,0.047919672,0.0051915115,0.026653394,-0.0025668964,-0.017341381,-0.030373069,0.025896633,-0.031476144,-0.008388508,-0.008625798,0.011178264,0.035349738,0.0040403362,0.017867265,0.024678119,-0.014327161,-0.02115084,-0.000058320333,-0.005525,-0.010838362,0.028936505,0.011967092,-0.0024899375,0.043533023,-0.00615029,0.01748247,0.03011654,-0.031065699,0.0054769004,-0.0005010338,0.0097417,-0.012973969,-0.0043513784,-0.012383952,0.0020378046,0.00530695,-0.0064260587,-0.014442599,0.062490538,-0.01748247,0.06844202,-0.02993697,-0.0077407714,0.00317936,-0.011152611,0.024139406,0.036298897,-0.009042658,-0.017931398,-0.007041729,-0.016187,-0.012140249,-0.010722925,-0.0073046717,-0.021471502,-0.03352838,0.0065735634,-0.0033124345,-0.032245733,-0.002289524,0.029962622,-0.008818194,0.005044007,0.0057783225,-0.0271408,-0.014250202,0.011171851,-0.021279106,-0.0060091987,-0.027192105,0.007586854,0.008715583,-0.039710734,-0.008189698,0.01825206,-0.0030526987,-0.013038102,-0.0002727628,-0.015571328,0.02158694,0.015622634,0.020483864,-0.018944688,-0.018482937,0.037709806,-0.008612971,-0.016802669,-0.007785664,-0.030757863]},{\"id\":\"fdb6d7bb-d323-4752-9fb9-d3151393575d\",\"text\":\"I have already made a video about oVertone on my TikTok and it has done well. https://vm.tiktok.com/ZM2agPbTj/\",\"vector\":[-0.022900859,-0.020140313,-0.00013476692,-0.023211906,0.029964225,0.02209732,-0.011171782,-0.032063793,0.017988903,0.0103552835,0.012124365,-0.004007974,-0.011716115,-0.020995693,0.024767142,-0.0058029764,0.009305499,0.013439836,0.00723185,-0.009078694,-0.04896403,-0.008346437,-0.011936441,-0.008281635,-0.003995014,-0.010731133,0.019712623,-0.024611618,0.012435412,0.0050123977,0.004500466,-0.00011623773,-0.013932328,-0.033411667,-0.008819487,-0.006279268,-0.019660782,-0.02856451,0.0052651237,-0.02297862,0.002250233,-0.011139382,0.011281945,-0.008236273,-0.024896745,0.022473168,-0.011366188,-0.011735556,0.004992957,0.0016402885,-0.012156766,0.022226922,-0.030016067,0.0044907457,0.0058936984,-0.0032595166,0.023341509,0.0044875056,-0.0011024359,-0.0055470103,0.0023312347,0.008028909,-0.0056118118,-0.009746149,-0.014684025,0.009311979,-0.0060459822,0.0024867584,0.0011988282,0.009318459,0.037273835,-0.0029160685,0.0018047225,0.0062695476,0.022732375,-0.010620969,-0.02856451,0.00001337797,0.014087851,0.0013381515,0.0040241745,-0.02004959,0.006463952,0.027372163,0.009940553,0.01104866,-0.02763137,0.018999808,0.008975011,0.0048763147,-0.014334097,0.0049151955,0.026905593,0.0037746888,-0.02636126,0.021099376,-0.009953514,0.035589,-0.027475845,-0.00424774,-0.0047402317,-0.013323193,-0.017263126,-0.01105514,-0.02336743,-0.01824811,0.015837492,0.022810137,0.009998875,0.0011032459,-0.018209228,0.021060495,-0.00007006665,-0.050441507,-0.016291102,0.019336775,0.0044291844,0.00848252,-0.028849639,-0.025428118,0.046631176,0.02036064,0.022317644,-0.011612433,0.011534671,0.016809516,-0.017081682,-0.032659966,0.032245237,-0.0024818983,0.0569735,-0.00082216936,0.013089907,-0.0010724652,-0.00039711184,0.013582399,-0.013569439,0.00002536372,-0.0038913314,-0.014671065,0.007063366,0.02086609,-0.015422762,0.007277211,-0.017600093,0.016083738,-0.0015827772,-0.004902235,-0.0014726146,0.006765279,0.008249234,-0.02036064,0.016018936,0.014476661,-0.008152031,0.012441892,0.03618517,0.008702844,-0.0053817667,0.010841295,0.010420085,0.019427497,0.02293974,-0.0010052336,-0.0011040559,0.016122619,0.023211906,-0.02599837,0.011884599,0.002078509,0.0028528871,0.051841218,-0.033644952,0.021527067,-0.013076947,0.009843351,-0.011722595,-0.011314346,0.0036774864,-0.011541151,-0.021241939,0.012202127,0.01876652,-0.0063440693,-0.014865469,-0.0012385191,0.017379768,-0.00061885454,-0.0067458386,-0.007277211,-0.008534361,0.015772691,0.0063894303,-0.012655738,-0.6345365,0.007063366,0.017600093,0.027553609,0.0030472917,0.030845525,0.0032514164,-0.0072383303,-0.013647201,0.027553609,-0.02339335,-0.017211284,-0.008145551,-0.0026487622,-0.0077632223,-0.013491677,0.029031083,-0.026037252,-0.012701099,0.0074262545,-0.015124676,-0.013297273,-0.026931513,0.0015924975,0.0040306547,0.006849521,0.00723185,-0.0069985646,-0.02853859,0.039399326,-0.015215398,0.035848204,-0.0013462517,-0.012817741,0.0401251,-0.0067328783,-0.0074197743,0.007406814,-0.011359707,0.015863413,-0.037273835,-0.014152653,0.009214777,-0.0050123977,-0.007575298,-0.0011842479,0.02087905,0.00093071186,0.030975128,0.001958626,0.007743782,0.0011283566,0.028434908,0.002248613,-0.005786776,-0.02209732,0.036470298,0.0060200617,-0.005566451,0.0030100308,-0.030560398,0.007277211,0.006473672,-0.009700788,-0.026646387,0.018546196,-0.0029128285,0.029186606,0.024145048,-0.020153275,-0.00637971,0.01696504,-0.026620466,0.017950023,0.0039334525,0.038984597,0.0048698345,-0.004756432,0.024870824,0.022421326,0.0043643825,-0.00082581444,-0.016913198,-0.0074392147,0.013815685,0.015163557,-0.03486322,-0.00553405,0.017289046,-0.008301076,-0.005440088,0.037118312,0.016498469,-0.02036064,-0.008553801,0.0027346243,-0.004753192,0.015124676,0.042406116,-0.00467543,-0.0063570295,0.0014199634,0.0015981676,0.0018387432,0.014061931,-0.014502581,-0.012487253,-0.0072512906,0.001619228,-0.0221362,-0.00766602,-0.030586319,-0.0034960422,-0.0006589505,-0.0028982481,-0.04258756,0.023561833,-0.000723752,0.016498469,-0.022732375,0.019414537,-0.020943852,-0.0043546623,0.023808079,0.00810019,0.024015445,0.0046138684,-0.0043255016,-0.01780746,-0.007944667,-0.010588569,-0.00938326,0.016226301,-0.012584456,-0.0023101743,0.003787649,0.00029909954,-0.0050059175,0.002084989,-0.03530387,-0.0055146096,-0.02675007,-0.006214466,-0.0019796866,-0.009221257,-0.005624772,-0.0069402433,-0.00892965,0.002049348,0.009940553,0.013387995,-0.0146969855,-0.020321758,-0.020736488,0.014360018,0.015215398,-0.0024851384,-0.00810667,0.004805033,-0.025428118,0.020334719,0.02001071,-0.014308176,-0.034292966,-0.01618742,0.0068365606,-0.039865896,0.0007354973,-0.004050095,-0.007614179,-0.014256335,0.013200071,0.004539347,-0.016666953,-0.016044857,0.018883163,-0.010860736,-0.014774747,0.009635987,0.002465698,0.0053752866,0.021488186,-0.018390672,0.010050716,0.03289325,0.0015276959,-0.011171782,0.04585356,-0.005832137,0.020930892,0.009059253,0.018909084,-0.013349114,-0.006288988,-0.018027784,0.004795313,-0.006084863,0.019349735,0.011858678,0.0007419774,0.010225681,0.015189477,0.024391294,-0.029238448,0.014269295,0.0027961857,0.004591188,-0.000403997,0.0070504057,0.038336582,0.0066421563,-0.0203736,-0.004157018,-0.009940553,0.02293974,0.0105820885,-0.0079317065,0.0049670367,0.0037131272,-0.0012838802,-0.015396842,-0.013063987,0.0073808935,-0.0057964963,-0.019466378,-0.0062760278,0.005738175,-0.0023620154,0.0123187695,-0.0044875056,-0.010944977,0.019233093,0.030897366,0.017781539,0.020464322,0.00033899298,-0.014554422,-0.0030246112,0.017975943,0.0052456832,-0.016705833,0.00936382,0.007154088,-0.007750262,0.015915254,0.006933763,0.022887899,-0.017898181,-0.027916497,-0.006295468,-0.016718794,-0.004798553,-0.030456716,-0.0043093013,0.029471733,-0.029523574,-0.0289274,0.0059001786,0.036677662,0.035044663,0.0022291725,0.0049119554,0.0022081118,-0.0018468434,-0.027838735,0.019919988,0.007698421,-0.00082054926,-0.0030359514,-0.00047548118,-0.0086639635,-0.029938305,0.046579335,-0.028771877,0.02551884,-0.00024584078,-0.0039820536,0.011618913,0.006431551,0.02211028,-0.015267239,-0.035874125,0.008048349,-0.0012393291,-0.0069596837,-0.020580964,-0.01020624,-0.013802725,-0.023989525,0.032608125,0.01621334,0.011398588,0.0048633544,0.0064509916,0.00027824155,0.016122619,0.021591868,-0.008612122,0.023522953,-0.0001747616,0.027942417,0.031804588,-0.016770635,-0.019453418,0.033359826,-0.005145241,-0.017263126,-0.012098445,-0.0247153,-0.0021335902,0.03709239,0.01064041,-0.02677599,-0.02085313,0.005744655,-0.0006553054,0.0003187425,-0.02291382,0.037844088,-0.016874317,-0.004759672,-0.0059034186,-0.027916497,0.023730317,0.099016726,0.0049637966,-0.02293974,0.02297862,-0.024015445,0.020969773,-0.003440961,-0.011003299,-0.016057817,-0.010873696,0.024456095,-0.009875752,-0.011022739,-0.011152342,0.0004884415,-0.022175081,-0.0031185732,0.0061367042,0.010841295,-0.038906835,-0.0075947386,0.020710567,0.02682783,0.0072836913,0.03317838,-0.015928214,0.019699663,0.055781152,-0.0075947386,0.01832587,0.0018922045,0.010277522,0.0007132218,0.017289046,-0.010711692,0.020995693,0.0073873736,0.0298087,0.0051160804,-0.005475729,-0.0022421328,0.012072524,0.0070374454,-0.005864538,0.0009930833,-0.013232471,-0.0025774806,0.0041926587,-0.000034476434,-0.0144637,-0.00020331478,0.015267239,-0.0213197,-0.016705833,-0.02164371,0.002339335,-0.019803345,-0.00043660027,-0.0073355325,-0.0027070837,-0.006292228,-0.028357146,-0.014269295,-0.015098755,0.02675007,-0.022758296,-0.014010089,-0.021578908,-0.0020655487,-0.0047402317,0.00030902226,0.008702844,-0.0560922,-0.0062403865,0.026257576,-0.000018149489,0.012921424,-0.0014232035,-0.00025353595,0.02126786,0.0005370426,-0.0061075436,0.00053785264,-0.038880914,0.00030861725,-0.01617446,0.002298834,0.019064609,0.015241318,0.005478969,0.026413102,-0.006927283,0.022330604,-0.009441582,0.0015236458,0.019246053,0.009072213,0.025842847,-0.0031153332,-0.018533235,0.008696364,-0.04546475,-0.009629507,-0.029134765,0.0008553801,0.0025288796,-0.0078863455,0.013582399,-0.016096698,-0.008560281,0.0075558578,0.022654613,-0.010893136,0.0019732064,0.03198603,0.01314823,0.0032125355,0.02344519,-0.03649622,-0.005239203,0.00809371,-0.026451983,0.016446626,-0.023795119,-0.014411859,0.02550588,0.0019472858,-0.013543518,-0.022356525,0.0009104614,0.0016289483,0.00078855356,-0.020723527,-0.00011006134,-0.038362503,-0.0170428,-0.020243997,-0.0019942669,-0.022900859,-0.013413915,-0.010543208,0.01748345,-0.021112336,-0.01748345,-0.005653933,-0.035252027,-0.027035195,0.0130963875,-0.014658105,0.006574115,0.0037746888,0.011580032,-0.013737923,-0.010595049,0.0012717299,-0.023173025,-0.009441582,0.00047953127,-0.0063570295,0.022512048,0.038569868,-0.025739165,0.022006597,0.0021659909,-0.0059422995,-0.0032400761,-0.009441582,-0.017651934,-0.038543947,-0.0029662896,0.011709635,0.00016807896,0.024352413,0.023315588,-0.016498469,0.021086415,0.010873696,-0.011560592,-0.016679913,-0.02216212,-0.0067976797,-0.0075493776,-0.0006658356,-0.0072836913,-0.0073355325,-0.013893447,0.034189284,0.0041343374,0.021838114,0.011521711,0.026853751,-0.011923481,0.0015949275,-0.033904158,0.02168259,-0.014282255,-0.018364752,-0.024922665,-0.0144637,0.01912941,-0.0033275583,0.005909899,0.017535292,-0.00035134575,-0.02467642,0.050052695,0.0060654227,-0.050441507,-0.013543518,-0.020788329,-0.008365877,-0.040228784,0.0027751252,-0.0049994374,0.020308798,0.00554053,-0.025791006,-0.0036321254,0.0022291725,-0.013362074,0.01656327,0.0130056655,0.02503931,0.017950023,0.005391487,0.025816927,0.009480463,-0.01910349,0.012908463,0.015681969,-0.008372357,0.011832758,0.010944977,-0.019932948,-0.033282064,0.0077761826,-0.01827403,-0.049145475,-0.01877948,0.01569493,0.019233093,-0.016329983,-0.03452625,0.0029808702,0.0059649805,0.040669437,-0.017962983,-0.01148931,-0.0068430407,0.006120504,-0.031338017,0.03229708,-0.0027346243,0.006282508,0.0016913197,0.0014134833,-0.025168912,-0.014502581,-0.01572085,0.01828699,-0.0043676225,0.009143495,-0.027138878,0.017885221,0.04292453,0.014774747,-0.015215398,-0.0059747007,-0.018494355,0.029653177,-0.0010692251,0.014826588,0.0015690069,0.015928214,0.017327927,-0.015046914,-0.016005976,-0.04002142,0.0049573164,0.011599473,0.014061931,0.00212711,-0.002002367,-0.0018889644,0.0105367275,0.012999185,-0.010368244,-0.010251601,-0.009953514,-0.023030462,-0.00809371,-0.01569493,0.0022405128,-0.003437721,0.007808584,-0.011405068,0.013737923,0.02551884,-0.0064931125,0.011016259,0.0033826395,0.0059422995,-0.021060495,0.0032562765,0.013478717,-0.021902915,0.016978,-0.014658105,-0.015539405,-0.033826396,0.004895755,0.006856001,0.000087330176,0.0052197627,0.0152931595,0.008683404,0.018196268,-0.023289667,-0.03151946,0.022654613,0.013971209,0.00553405,0.015422762,0.004882795,-0.0041829385,-0.0044097435,0.0014159133,-0.00723185,-0.021721471,0.012033643,0.002467318,0.008553801,0.0020185674,-0.027916497,-0.013012146,-0.0025677604,-0.0023927963,0.0062598274,-0.011003299,0.001357592,0.0063019483,0.019207172,0.03393008,0.011567072,-0.00553405,-0.0123641305,-0.013109348,-0.009707268,-0.033956,-0.021954756,0.0000060909633,0.031752747,0.018377712,-0.021552987,-0.017327927,0.011599473,-0.03450033,-0.01148283,0.000059738904,0.0151117155,-0.0043708626,-0.005579411,0.0036321254,-0.0022388927,-0.0045749876,0.0036321254,-0.00023591805,-0.021799233,-0.0014264436,-0.012474293,0.00075817783,-0.01700392,-0.008190912,-0.0101868,0.01235117,0.008605642,0.011592993,0.0106728105,-0.0072577707,-0.002846407,-0.026698228,0.013841606,-0.00068689615,0.017159443,0.01656327,-0.035122424,-0.0061043035,0.01780746,0.009629507,0.0015090655,0.014139692,0.00081528415,0.008255715,0.0030440516,-0.008819487,-0.006972644,-0.01575973,0.0044810255,0.013867526,0.010005355,-0.02003663,0.0057154945,0.014982113,-0.0015228358,0.0074716154,0.02856451,-0.0047823526,-0.009104614,0.0054724887,0.0031234333,0.022239882,-0.018118506,0.009661907,-0.019777425,-0.0059422995,-0.014010089,-0.013439836,-0.008268675,0.015993016,0.016718794,-0.013245432,-0.008378837,-0.027087037,-0.006123744,-0.029057004,-0.0070504057,0.009221257,-0.009331419,0.006120504,0.009519344,0.0055956114,-0.033670872,-0.001063555,-0.011333787,-0.018196268,-0.00095987256,0.2502894,0.014204494,-0.03351535,0.047408793,0.023898803,0.0011267365,0.0029014882,0.008365877,-0.006331109,0.001995887,0.0025774806,0.010595049,0.005142001,-0.007018005,0.021514107,-0.0034766018,-0.016070778,-0.008294595,-0.021721471,-0.0074651353,-0.003949653,-0.012215087,0.021954756,0.004302821,0.02256389,0.008819487,-0.017379768,-0.0086186025,0.0151117155,0.0053428854,-0.013517598,-0.011359707,0.03281549,0.002762165,-0.0058872183,0.012415972,0.01235765,-0.01363424,0.01614854,0.0019813066,-0.0025369797,-0.00018974696,0.02039952,-0.0070439256,0.030378954,0.005197082,0.0010927157,0.00043093014,0.004720791,0.0059585003,-0.00019480957,0.011560592,0.021928836,0.029523574,-0.009473983,0.008942611,0.038310662,-0.003991774,0.012908463,-0.0006925663,0.005478969,0.030560398,-0.003275717,-0.0007273971,-0.031208415,0.007925226,0.01828699,-0.0014272536,0.016005976,-0.011683715,0.022706455,-0.028460829,-0.002767025,0.018792441,-0.021604829,-0.01907757,0.01145691,0.00552109,0.019479338,0.031674985,0.005621532,0.0019035448,0.015020994,-0.022836057,-0.02632238,-0.022615733,0.009124055,-0.011152342,0.013763844,0.010679291,-0.013258392,0.009137015,-0.0014564142,0.007938187,-0.011204183,-0.024067286,-0.01318711,-0.010569128,-0.02041248,0.005585891,-0.015967095,0.005187362,0.012992705,0.01699096,0.00723185,0.0018338831,-0.010919057,0.014735866,-0.0009525824,-0.018520275,0.027009275,-0.023056382,0.0030100308,0.0006160195,0.0014952952,0.017120562,0.020334719,0.007063366,0.009104614,-0.01235765,-0.0070050447,-0.01318063,-0.004853634,0.01651143,0.002250233,0.008806527,0.010374724,0.008372357,-0.0052068024,-0.00850844,0.026568625,0.022421326,-0.003949653,0.012539095,-0.007400334,-0.0047078305,0.02006255,0.0052554035,-0.009085174,0.01826107,0.010225681,0.017276086,0.02807202,0.006551434,0.018481394,-0.026426062,-0.0015852073,-0.0069402433,0.013284313,-0.022706455,-0.006088103,0.003907532,-0.014269295,0.017276086,0.027424004,0.0017966223,-0.017289046,-0.03649622,-0.013712002,-0.028616352,-0.02936805,0.0043222615,0.0061043035,0.0009955134,-0.013413915,-0.018364752,-0.16340353,0.03105289,0.020295838,-0.006979124,-0.0034118001,-0.029575415,0.02765729,-0.023043422,-0.0027718851,-0.012707579,0.018066665,0.017742658,0.0043255016,-0.02039952,-0.004584708,-0.026672307,-0.017690815,-0.0145155415,0.056247722,0.01745753,0.03532979,-0.010057196,-0.007354973,-0.014100811,0.0033729193,0.013070467,0.0005370426,0.021073455,0.006428311,-0.0040241745,-0.016355904,-0.016070778,0.01953118,0.0056377323,0.024533857,-0.0021919115,0.028123861,-0.019259013,0.01872764,0.02297862,0.05051927,0.010089598,-0.0038686509,0.026115013,0.0005657983,0.009065733,0.016381824,-0.01533204,0.0047369916,0.0073938537,0.01146987,-0.029445812,-0.006033022,0.00010216365,-0.0038913314,-0.0009201816,0.030327113,0.018053705,-0.009000932,-0.011813317,-0.0051160804,-0.0020266676,-0.03447441,-0.002423577,-0.0071411277,-0.009240697,-0.017548252,0.0047175507,-0.015241318,0.014282255,-0.030715922,0.009558225,0.011709635,0.017081682,0.022278763,0.007063366,-0.024119128,0.010296962,0.019634861,0.015591247,-0.004633309,0.02165667,-0.011631873,0.02299158,-0.001445074,0.025415158,-0.010808894,0.026568625,0.002046108,-0.00977207,0.00066300057,-0.015448683,-0.030378954,-0.018986847,-0.013122308,0.022745335,0.009525824,0.001061125,-0.00002232615,-0.037636723,0.012253968,0.009331419,-0.009603586,0.029264368,0.031545382,0.003528443,0.0027864655,0.023769198,0.021954756,-0.01872764,-0.0064833923,0.003016511,0.03442257,0.00042931008,0.009726709,0.02082721,0.00424774,-0.022460207,0.004351422,0.005226243,0.052126344,0.02006255,-0.020555044,0.0032060554,-0.033800475,-0.021889955,-0.089633465,-0.026931513,0.027190719,0.0066875173,-0.019207172,0.029108845,-0.0088000465,0.020788329,-0.034163363,0.040280625,0.009616546,-0.02341927,-0.012720539,0.011398588,0.0069402433,-0.031726826,-0.007458655,-0.005028598,-0.039451167,0.020347679,-0.004195899,-0.02426169,-0.0023895563,-0.027087037,0.0121826865,-0.0510636,-0.030482637,0.027424004,0.009720229,-0.011638354,-0.020619845,-0.010037756,0.019194212,-0.016355904,-0.013349114,-0.0065708747,-0.006029782,-0.005478969,0.010983858,-0.025466999,-0.013906407,0.0006224996,-0.0055437703,0.00059252896,-0.020075511,-0.005271604,-0.016317023,0.008210353,0.009260138,-0.013297273,-0.012798301,-0.011670754,0.0013235711,-0.016368864,0.031804588,-0.024922665,0.01877948,0.004205619,-0.01569493,0.020464322,-0.020762408,-0.013530558,-0.026413102,0.013135269,-0.007102247,-0.007815064,0.011780917,-0.013763844,-0.010154399,0.0044842656,-0.03921788,0.027553609,-0.008041869,0.026568625,-0.020956812,0.017366808,-0.032971013,-0.03742936,0.011787397,0.0018387432,-0.024896745,-0.0119558815,0.023354469,-0.024352413,0.025778046,-0.011100501,-0.009972954,0.022537969,-0.0094869435,-0.042509798,-0.012396531,-0.0043741027,-0.016472546,-0.03540755,-0.02636126,0.0064445115,-0.0130056655,0.0052230028,0.019051649,0.031312097,-0.016705833,-0.020606885,-0.0432615,0.032063793,0.015889334,-0.0061367042,-0.008398278,-0.010109038,-0.01743161,-0.016848397,-0.00051922223,-0.015422762,-0.0018581836,0.014243375,-0.031649064,0.0057673356,-0.014217454,-0.027916497,0.0075882585,-0.010912577,0.029756859,0.0057576154,0.0060654227,0.027035195,-0.0053428854,0.017975943,-0.004801793,0.017327927,0.010744093,0.0067004776,-0.005436848,-0.024469055,-0.004163498,-0.024883784,0.019336775,0.027087037,-0.0071411277,-0.044816732,0.017975943,0.00552109,-0.006856001,-0.008527881,-0.0014588443,-0.033463508,0.017690815,-0.012707579,-0.019647822,-0.01748345,-0.012545575,0.0012053084,0.00937678,0.012895503,0.03398192,0.004591188,-0.022213962,-0.032063793,0.005653933,0.0071411277,0.019271974,-0.00091613154,0.020710567,-0.0055502504,0.016070778,0.017314967,0.0013640721,-0.005495169,0.013083427,0.0069596837,-0.028849639,0.012921424,0.023354469,-0.025803966,-0.008586202,0.016381824,0.014165613,0.017107602,0.0018808643,0.016848397,-0.004591188,0.007944667,-0.0039269724,0.0042801406,0.0063926703,0.0121373255,-0.008372357,0.038543947,0.015902294,0.038129218,-0.024404254,0.025389237,0.00425746,-0.0048795547,-0.018973887,0.012292849,-0.017975943,-0.002768645,0.020308798,0.014813628,0.0015860173,0.029627256,-0.0031250534,0.0061399443,0.00808723,0.008599162,0.0019051648,-0.021371542,0.014074891,0.024572738,-0.02255093,-0.036366615,-0.008417718,0.0088000465,-0.007115207,-0.0025661404,-0.02255093,0.009104614,-0.009752629,-0.00066178554,0.0048341937,-0.009927593,-0.01957006,0.048264176,0.014619224,-0.006577355,0.016368864,-0.025194833,0.042328354,-0.008210353,-0.002300454,-0.011411549,0.01445074,-0.0009671627,-0.0059422995,-0.01999775,-0.020114392,-0.009661907,-0.0059325793,-0.0075040166,-0.02130674,0.021993637,-0.0035219628,0.072888754,-0.018883163,-0.03574452,-0.02085313,-0.009888712,0.015578287,0.024391294,0.009551745,-0.03696279,-0.0014167234,-0.024170969,-0.01021272,-0.009026852,0.02343223,-0.029082924,0.011035699,0.0246505,0.022382446,-0.017587133,0.007996508,0.03304878,-0.006554674,-0.0014304937,0.007899306,-0.0036256453,-0.020516163,0.03188235,0.0024818983,-0.0314417,-0.05661061,0.015228358,-0.0038686509,-0.049119554,-0.016317023,0.005145241,-0.029964225,-0.0049540764,-0.007108727,0.016252222,0.021786273,-0.0034766018,0.01235765,-0.043468863,-0.00072982715,0.006279268,-0.0046624695,-0.0126881385,0.015681969,-0.05054519]},{\"id\":\"6ea7a9d6-1577-415d-ae9a-3cd307fc6953\",\"text\":\"I want to use it but I’m in the UK is there a uk equivalent?\",\"vector\":[-0.010891794,-0.013530887,-0.019391317,-0.02560616,-0.0032656398,0.03371963,0.0120373,-0.021391205,0.002909647,-0.01412579,0.003309941,0.01606239,-0.0022799354,-0.009214673,0.007429963,-0.0011882245,0.026454212,-0.007543881,0.011695547,-0.016796527,-0.0059427046,0.013454942,-0.008505852,-0.0037054885,-0.017935703,-0.0115183415,0.008088154,-0.013265079,-0.010714589,-0.0001692943,0.0105247265,0.008208401,-0.0073097167,-0.03217541,-0.02010014,-0.0048794732,-0.016024418,0.009474153,0.011955026,-0.01953055,0.014467543,0.026125118,0.0143536255,-0.017859759,-0.017150937,0.015821898,0.0038637074,0.0028384484,-0.0026295993,0.018973619,-0.00085517357,0.01392327,-0.028175635,-0.026555473,-0.01055637,0.0068856897,-0.010942425,-0.008588126,0.013391654,-0.0093032755,-0.026504843,0.01606239,-0.03090966,-0.001492796,0.008740016,-0.008221058,-0.00048098568,0.010695603,0.0017957854,-0.009227331,-0.00024187726,0.022872135,0.012961298,0.003351078,0.030327413,0.021201342,-0.0060724444,-0.006600896,-0.00031129582,-0.009834891,0.02249241,-0.035770148,-0.005271856,-0.0077020996,0.018454662,0.02774528,0.009467823,0.032251354,0.003385886,-0.012834723,-0.008702043,0.01749269,-0.0061230743,-0.01285371,-0.013999215,0.020441892,-0.008847605,0.04432663,-0.009815905,-0.009594399,0.0037592829,-0.011771492,-0.024441667,-0.017366115,-0.022720246,0.011493026,0.002493531,-0.008556482,0.0042972276,-0.0026944692,-0.025530213,0.026783308,0.016353514,-0.02820095,0.0138979545,-0.02274556,-0.0043130494,-0.032099467,-0.009955138,-0.009834891,0.021289945,0.014783981,0.033542424,-0.0013053066,0.01804962,0.0025125174,-0.0002529526,-0.017745841,-0.0010315877,-0.000005871407,0.014961187,-0.0027704143,0.017998992,0.013632147,-0.01626491,0.04030154,0.005869924,0.012973956,-0.0022846821,0.00082906743,0.02218863,0.0065755807,0.01147404,0.0034365163,-0.0038668718,0.03177037,-0.0070502376,0.0015877275,-0.0063414164,-0.019745728,0.00563576,-0.02865662,0.024049284,-0.01198667,0.017821785,0.017024362,0.0010806356,0.022669615,-0.0066705123,-0.009632371,-0.02865662,0.0006700574,0.010885466,-0.013290394,0.028302211,0.009081769,0.0046959394,-0.010607,0.02468216,0.0075818533,-0.009410865,0.013847325,-0.04080784,0.009657687,0.016328199,0.002976099,0.011385437,-0.0026533322,-0.002618524,0.016176308,-0.019821674,0.007461607,0.0035820776,0.025720077,-0.0133410245,-0.007195799,-0.0072654155,0.000984122,0.0033320917,0.0004912699,0.01754332,-0.0069742925,-0.012258806,-0.014518173,-0.6626464,-0.03976992,0.032555137,0.015138391,0.002351134,0.032479193,0.003768776,0.0067527858,-0.013163819,0.019859646,-0.022467095,0.00049878535,-0.028125005,-0.009955138,-0.010879137,-0.018252142,0.0033953793,-0.011385437,0.0032387425,-0.020720357,-0.023112629,0.02769465,-0.034757543,-0.019644469,-0.000028331086,0.01040448,0.015897842,-0.00902481,0.026327638,0.0125119565,-0.018315429,0.018290114,0.014657406,-0.005176925,0.043389972,-0.02473279,-0.016594006,0.014758666,-0.0052813496,0.0046231584,-0.023365779,0.0021343739,0.013935927,-0.019011592,-0.0036232146,0.022251917,0.016606664,0.0027245309,0.012252478,0.014834612,-0.012132231,0.011056342,-0.00308527,0.0056325956,0.022859478,0.024277119,0.014872584,-0.008297003,0.013062559,0.0013385325,-0.030048948,0.0031248247,0.0071894703,-0.019467263,-0.014783981,0.007436292,-0.0031991878,0.0077400724,-0.0064584985,-0.007594511,0.017163595,0.0038067487,-0.021846876,0.0037308035,0.008195743,0.010974068,0.0452886,-0.025327694,0.021264631,-0.0043636793,0.009550097,-0.0053319796,0.005275021,0.013492914,0.052705906,-0.0055060205,0.0040314193,-0.015226995,0.023935366,0.012404367,0.016404143,0.03273234,-0.008069168,-0.025251748,-0.032934863,0.016669951,-0.00014328706,-0.0034491736,0.015644692,0.0040725563,0.009727303,0.01616365,-0.0013219195,-0.007891962,-0.007062895,0.0052623632,-0.039820552,0.033010807,0.026378268,-0.0437697,0.0047845417,-0.011157602,0.017961018,0.02136589,0.009423522,-0.032504506,0.029416071,-0.010600671,-0.014113133,-0.011670232,0.0017467375,-0.0027957293,0.010309548,-0.0010323789,-0.0013496078,0.003945981,0.008898235,-0.018745784,-0.01422705,-0.00064553344,0.0093032755,-0.012916997,0.01167656,-0.015176364,0.02540364,0.03222604,0.02759339,-0.010088042,0.01887236,-0.009113413,-0.0018400867,-0.0071325116,-0.0025568188,-0.025669446,-0.026099803,-0.017125621,-0.004461775,0.010765219,-0.008777989,-0.011347465,-0.007543881,-0.02208737,0.009372892,-0.002634346,0.0053003356,-0.016847156,-0.0055534863,-0.01708765,-0.01902425,-0.006306608,-0.0037909267,0.0060629514,-0.043263398,-0.0087653315,-0.0019112852,0.020264687,0.004287734,0.03865606,-0.002808387,-0.031745054,-0.028530046,-0.011853766,0.0075502098,0.0019366003,0.001792621,0.00096750906,0.0023653738,-0.013404312,-0.0062021837,-0.00015861452,0.014049845,0.016201623,-0.009657687,0.0047339117,0.03926362,-0.014391598,0.012151217,0.020264687,-0.031441275,0.0057211984,0.010081713,-0.00780336,-0.0075818533,0.02015077,-0.0030393866,-0.0073666754,0.0108348355,0.026985828,0.011037356,-0.0063161016,0.012828395,0.008638756,0.036023296,0.0047402405,0.029314812,-0.005578801,0.018201511,-0.016037075,0.042453315,0.023315148,0.0039333235,-0.009347578,0.018847045,-0.0044427887,-0.03716247,0.0068667037,-0.0027403526,0.022960737,-0.017505348,0.011505684,-0.012537272,-0.00012360858,0.014771324,-0.0018938811,-0.03627645,0.014391598,-0.011024699,0.021340575,0.009784262,-0.015125734,-0.037440937,-0.02304934,-0.0032561466,0.021694986,0.0045155697,0.015340912,0.01570798,-0.015973788,0.015986446,-0.00057552155,0.026150433,0.008151442,0.032605767,-0.004278241,0.046174627,0.008740016,0.016809184,0.017885074,-0.025239091,0.024087258,0.005271856,-0.010651302,-0.014189078,0.0013804606,0.011353794,0.00041413817,-0.0073476895,0.015834555,0.022682272,0.021176027,-0.0008630845,0.00800588,-0.0023701203,-0.014657406,0.012733463,0.019011592,-0.013024586,-0.026049173,0.0032624754,-0.016910445,-0.016442116,0.0036042284,-0.015201679,-0.016733238,0.027036458,-0.019505236,0.018391374,0.00043787103,0.010271576,0.009246317,-0.0028605992,-0.041541975,0.011106973,0.00032039342,-0.003778269,-0.008138784,-0.02091022,0.003752954,-0.02010014,0.029719852,0.021948136,0.022631641,-0.023289833,-0.0065502655,-0.021846876,0.014049845,0.027213665,-0.014024531,0.008784317,0.032377932,0.016100364,-0.010860151,-0.012347409,-0.029289497,0.02718835,0.011442397,-0.0032782971,-0.016176308,0.0269352,-0.009815905,-0.012404367,-0.0076641273,-0.024340408,-0.0053383084,-0.0011019951,0.0031802014,-0.01167656,0.007986894,0.019049564,-0.0133410245,0.0022055726,-0.012492971,-0.015378885,-0.007929935,0.08480537,-0.0102146175,0.020505179,-0.0040535703,-0.013227106,-0.009980453,-0.0058066365,-0.027618704,0.0117461765,0.015189022,-0.0032624754,-0.01193604,-0.009164043,0.004338364,0.015885185,0.006053458,0.013189134,-0.008948865,-0.0051168017,-0.018454662,0.012942312,-0.00578765,-0.0005066963,0.018163538,0.015252309,0.034909435,0.030074263,-0.000004694036,0.0015513371,-0.030302098,-0.00458835,-0.0049490896,-0.019910276,-0.0075502098,-0.0006704529,0.007170484,0.0012048375,0.032200728,0.008505852,-0.0030504619,0.0071894703,0.017872415,0.0146447485,-0.038377594,0.012828395,-0.022049397,-0.0052623632,0.01789773,0.021239316,0.0059427046,0.012309437,0.0027735787,-0.01555609,-0.013201792,-0.007417306,0.008613441,-0.015416857,0.0033225985,-0.0112082325,-0.017783813,-0.0040535703,-0.007537552,-0.007164155,0.01004374,-0.0069679637,-0.016923102,-0.007727415,-0.012436012,-0.0045377202,0.008632427,0.009499467,-0.046453092,0.009898179,0.029821113,0.0043826657,-0.0016019671,0.014733351,0.004727583,-0.0044839256,0.03187163,-0.0017056005,-0.0031200782,-0.0030457154,-0.011151274,-0.03101092,0.0037371323,0.023935366,0.0038637074,-0.0149738435,0.00596802,0.022467095,0.0108348355,0.036023296,-0.023910051,0.008929879,0.014568803,0.0055724722,0.026175747,0.007297059,0.0066262106,0.01912551,-0.0146447485,0.02244178,-0.002493531,0.01693576,0.025998542,0.00023831733,0.0014128955,-0.017631922,-0.016467432,0.0043478576,0.0051895822,-0.001200091,0.00030457153,0.00953744,0.0037497897,0.0026549145,0.020568468,0.0011692382,-0.0090564545,0.006569252,-0.041288823,-0.00063327147,0.015328255,-0.007467936,0.031061549,-0.0054807053,-0.016771212,-0.00831599,0.004550378,-0.0033732285,0.016391486,-0.022264574,0.013138504,-0.015682666,-0.019568523,-0.014163762,0.013530887,0.0038067487,-0.015480145,-0.011442397,-0.0064521697,-0.016328199,0.014897899,-0.033415847,-0.016695267,-0.010663959,0.0039649676,-0.042503946,0.013087873,0.00047426138,0.02141652,-0.024542928,-0.0021359562,0.010613329,-0.020188741,-0.024758106,-0.015163707,0.0037402967,0.025466926,0.015897842,0.009100756,0.017062334,0.024922654,-0.0019413468,-0.030833714,0.019252084,0.016087705,-0.011942368,0.019163482,0.02417586,-0.015429514,0.0129043395,0.0168345,-0.022277232,0.012011984,-0.007562867,-0.011284177,-0.011632259,-0.009784262,-0.0043225423,-0.021391205,-0.00035104837,-0.0013875804,-0.024758106,0.0010300055,0.002067922,0.021251973,0.030048948,0.009290618,-0.005911061,0.00005755215,0.046478406,-0.010220946,-0.001759395,-0.018429346,-0.014796639,-0.0055345,-0.0009295365,0.025593502,0.023897395,-0.00021636445,0.0026058666,0.0033415847,-0.013847325,-0.00013349726,0.002751428,0.008866591,0.0065755807,-0.020214057,-0.026555473,-0.014163762,-0.02539098,-0.010423467,0.00026066575,0.018631866,-0.0075502098,-0.005654746,-0.0037719405,-0.026251692,-0.025036572,0.0065565943,0.012100588,0.013885298,0.020593783,0.016252253,0.0017609772,-0.040023074,-0.02860599,-0.01942929,-0.00698695,0.019239428,0.040149648,-0.010322206,-0.021049453,0.0018226826,-0.0014682721,-0.002575805,-0.01417642,0.01412579,-0.0029080648,0.012999271,-0.023340464,0.0018052785,-0.019517893,0.033744942,0.000011279282,-0.013391654,-0.03166911,-0.019695098,-0.0018543265,0.0053066644,0.000825112,0.008664072,-0.0064521697,0.0159105,-0.016847156,-0.012454998,-0.0064141974,0.011980341,0.011360123,-0.0066072242,-0.0022482916,-0.01922677,0.01682184,-0.0011652828,-0.0076514697,0.0007123809,-0.007436292,0.017859759,-0.021922821,-0.0026533322,0.0082273865,0.018176196,0.018163538,-0.008360291,-0.008872921,-0.015189022,0.04207359,-0.006480649,0.00010165569,-0.0032466534,-0.036757432,-0.0005636551,-0.0025315036,0.00979059,-0.013303052,0.0150371315,0.024694817,-0.0022688601,-0.0019492578,-0.019036908,-0.0076324833,0.011296835,-0.005243377,0.006854046,0.012714477,0.005619938,0.0064141974,-0.019302715,0.034858804,0.021732958,-0.014100475,0.01663198,0.000121334175,-0.01575861,0.025315037,0.0076894425,-0.014087818,-0.04232674,0.0135055715,-0.008012209,0.004762391,-0.016075049,0.00020044367,0.024606215,0.005575637,-0.0022482916,-0.02385942,-0.0002913207,-0.01005007,0.0207077,0.009993111,0.002018874,-0.0053731166,-0.0109803965,0.003134318,-0.011417082,0.0115753,-0.008980509,0.0040630633,0.021770932,-0.0014326728,-0.011752506,0.017049678,-0.012360066,-0.009543769,0.037997868,-0.00989185,0.008499524,-0.0025046065,0.022074712,0.0094488375,0.015682666,-0.008917222,0.009708316,-0.022062054,-0.029871743,-0.046529036,0.013037244,0.005110473,0.012682833,0.0061420607,-0.040478744,-0.031542536,0.0047908705,-0.042858355,0.0017878744,-0.023024026,0.020986166,0.026378268,0.038478855,-0.0012056286,0.0120373,0.0139739,0.008885577,-0.0039649676,-0.020973507,0.014366283,-0.017733183,-0.025036572,-0.034099355,-0.036630858,0.01744206,0.0150371315,-0.0024872024,0.013480257,0.046503723,0.01147404,-0.010853821,0.014113133,-0.0047402405,-0.0026248528,0.02096085,0.014378941,-0.020897562,-0.008037524,0.013999215,0.010208288,-0.011980341,0.012916997,0.011448725,-0.0055503217,0.013189134,-0.0075691957,0.0049174456,-0.007195799,-0.0046516377,0.02417586,-0.025796022,-0.0015450083,0.0043541864,-0.008436236,-0.031061549,-0.027821224,0.0043098847,0.00033285317,0.019214112,0.030808399,-0.018340744,0.00060953863,0.0050756647,0.0016612993,-0.01937866,-0.034808174,-0.011879081,0.0015450083,-0.018087594,0.021897506,0.005895239,-0.006803416,0.0026390925,0.014733351,-0.006904676,0.018720469,-0.037061214,0.029390758,-0.008170428,-0.013113189,0.017771155,-0.011512013,-0.028681936,0.022973396,0.0066831694,0.026454212,0.017239539,0.21649419,0.0072654155,0.029770482,0.024454325,0.023289833,0.011512013,0.02774528,-0.0035504338,-0.01656869,-0.020821618,-0.013594175,0.022631641,-0.029365443,0.0013409058,-0.00438583,-0.021378549,-0.039415512,-0.03427656,-0.010537384,0.038782634,0.0040725563,0.0149738435,-0.0030805236,-0.025112515,0.029871743,0.013758722,-0.0046927747,0.0040155975,0.0059870062,0.003945981,-0.022416465,0.00095089606,0.01192971,0.029162921,-0.008607112,-0.00012964067,0.016150992,-0.04625057,0.017581293,0.03473223,0.011720862,0.0045218985,-0.0071008676,-0.014366283,-0.033415847,0.012056286,0.0033162697,-0.015847214,0.0016328199,0.01356886,-0.023910051,-0.034149982,0.02835284,0.019138167,0.00043589328,-0.019846989,0.016454773,-0.00062417384,-0.003794091,0.0006154718,-0.012973956,0.01183478,0.0032466534,-0.013100531,-0.024808735,0.0245809,-0.029314812,-0.011898067,0.01422705,0.014619433,-0.016897786,0.026277008,0.0008425161,0.013771379,-0.0313147,-0.03075777,0.019505236,0.04030154,-0.0071831415,0.014062502,0.0043731723,0.016201623,0.016518062,-0.008107141,0.017910387,-0.012486641,-0.017682552,0.0034744886,-0.005044021,-0.0034808174,0.008113469,-0.021897506,-0.023391094,-0.015999103,0.010417137,-0.0034713245,0.00065067556,0.0245809,0.009486809,-0.01269549,-0.021745617,0.031593166,-0.008221058,0.028681936,-0.008626099,-0.0011913889,-0.0076071685,0.001175567,0.022479752,0.011328478,0.008499524,-0.040149648,0.0122018475,0.007645141,0.006854046,0.017948361,-0.020441892,-0.0011455053,0.02065707,-0.00015604346,0.015530774,-0.023327805,0.007778045,0.004987062,0.0016850322,-0.023365779,-0.029289497,-0.0044238027,-0.025163146,-0.03161848,-0.010936095,0.013910612,0.03784598,-0.035441052,-0.037947237,-0.00492061,-0.010391822,-0.0313147,-0.008505852,0.029542647,0.005344637,-0.017252197,0.005309829,-0.017366115,0.00044894635,-0.005825623,-0.016543375,0.0013345771,-0.00064909336,-0.037440937,0.0048731444,-0.00083302293,0.0071325116,-0.03437782,0.033061437,-0.0022482916,-0.03579546,-0.013125846,0.017150937,0.028757881,-0.019568523,-0.034099355,0.058477733,-0.0050725006,0.005569308,0.011284177,-0.15867464,0.028125005,0.030150209,0.0019634976,0.025973227,0.020112796,0.012011984,0.018479977,-0.014594118,-0.006778101,0.0245809,0.00009409085,-0.02193548,-0.015201679,-0.022277232,-0.018112909,-0.02010014,-0.0032498178,-0.014948529,0.0058635953,-0.004170652,-0.0073413607,0.0025663117,-0.0076641273,0.0089108925,-0.016226938,-0.017429402,0.023656901,0.0010901288,-0.00079505035,-0.008746345,-0.004632652,0.02106211,-0.019505236,0.0043953233,-0.01432831,0.009784262,0.0017657238,-0.0053414726,0.0010031083,-0.004702268,-0.007778045,-0.008803304,-0.028707251,0.004794035,0.031643797,0.029188236,-0.03463097,-0.005885746,-0.007588182,0.01932803,-0.013163819,0.0040219263,0.017226882,0.006037636,0.014163762,-0.005287678,0.005569308,-0.002018874,0.0022973395,-0.012973956,-0.024568243,0.0034428448,0.004278241,-0.018011648,-0.011334808,-0.01611302,-0.007512237,-0.017100306,0.0023938532,0.007936263,-0.023467038,0.025315037,-0.0091767,0.017682552,0.013556202,-0.009733631,0.006430019,0.005869924,-0.0013266661,0.0040092687,0.03789661,-0.015695322,0.048098568,-0.017859759,-0.008366619,0.0023685382,0.0067401286,-0.01779647,-0.007221114,0.023137944,0.0006103297,0.005743349,-0.01902425,0.0040820497,0.02417586,0.01917614,0.007942593,0.010309548,-0.009784262,0.022403806,0.021517782,-0.007948921,0.005135788,0.037997868,0.016745897,-0.0015790254,0.0029064827,0.007588182,0.020441892,-0.031846315,-0.011917054,0.019315373,0.035162587,-0.025479583,0.006047129,0.009575413,-0.027213665,-0.0065376083,-0.03065651,0.03668149,0.00039099864,0.009923494,-0.017480033,-0.012473984,-0.009708316,-0.103690386,-0.013353681,0.028681936,-0.0047971993,-0.035567626,0.008708373,0.003385886,0.0040662275,-0.0026470034,0.029719852,-0.016543375,-0.030859029,-0.003945981,0.012942312,-0.0067338,-0.011157602,-0.009094426,-0.01570798,-0.006145225,-0.00119218,0.00042560903,-0.0068983473,-0.027112404,-0.0066705123,-0.035213217,-0.0132144485,-0.02493531,-0.016328199,0.018036963,-0.0029333797,-0.00053478015,-0.015163707,-0.022631641,-0.011872752,-0.03523853,0.003949146,-0.009569083,0.0060154856,0.010777877,-0.03326396,-0.010474096,-0.0207077,0.006600896,-0.014037187,-0.003936488,-0.0030900165,-0.001492796,0.0066768406,0.018986277,0.0011518341,-0.0020441893,-0.0060692797,-0.029289497,-0.033542424,0.00036548584,-0.00785399,0.0018780592,-0.014923214,-0.037567515,0.019733071,-0.029542647,-0.006379389,-0.02749213,0.005664239,0.0055598146,0.029998317,-0.007670456,-0.012549929,-0.004673789,0.010037412,-0.024416352,0.011214561,-0.008100811,0.010163987,-0.025973227,-0.014391598,0.0024492298,0.01749269,0.01223982,0.0024792913,-0.02055581,-0.001425553,-0.015682666,-0.02085959,-0.019720413,0.0019112852,-0.0090754405,0.012334751,-0.0065312795,-0.03151722,0.0025156818,0.024454325,0.027264293,0.0100690555,-0.026909884,0.005335144,-0.0152649665,0.021657014,0.0362005,-0.023188572,-0.0036611871,-0.028681936,-0.05685757,0.026403584,0.014252366,-0.030479304,-0.010417137,-0.0192774,0.019492578,0.004645309,0.011815793,-0.0023859423,-0.014454885,0.01789773,-0.029314812,0.012132231,0.004170652,0.007828675,0.037921924,-0.0021106412,0.0014081489,-0.0075502098,-0.010258919,-0.010170315,-0.003009325,0.020492522,-0.0356942,0.0066768406,-0.01708765,0.002835284,-0.00953744,-0.012448669,0.017631922,-0.042149536,-0.003911173,0.021264631,0.013328367,-0.018973619,0.009847549,0.011682889,0.00958807,-0.00010620449,-0.0139739,0.002017292,0.019796358,-0.009258974,-0.006293951,-0.014859926,-0.0011186082,-0.01122089,0.027340239,0.011252534,0.037871294,0.01096774,-0.016809184,-0.020986166,0.0058825817,-0.007537552,-0.0107525615,0.004477597,0.008727359,-0.0034396804,0.020922877,-0.029137606,-0.005268692,0.020479864,0.024720132,-0.007126183,-0.011353794,-0.0040472415,0.004401652,-0.026175747,-0.00693632,0.007303388,0.0031026741,0.008676728,0.013948585,0.0067970874,-0.025277063,-0.013265079,-0.022505067,0.042529263,0.012651189,0.0011818957,-0.01958118,-0.005911061,0.012113245,0.0040219263,-0.041997645,0.01137278,0.0014912138,0.010258919,-0.009423522,-0.02208737,0.0133410245,0.020935535,0.00497124,0.0032118452,-0.029289497,-0.0055155135,-0.02865662,0.030555248,0.01968244,-0.0036548583,0.009429851,-0.009866536,-0.01983433,0.031745054,-0.013999215,0.009005824,-0.029593278,0.015252309,0.00047465693,-0.016176308,0.018138224,0.0028036402,0.011796807,0.0070122653,-0.013201792,-0.022986053,-0.025150489,0.02045455,0.009005824,0.0017499019,0.00492061,-0.02392271,0.03764346,-0.005610445,0.00010897332,-0.017112965,0.0053762808,-0.0052465415,-0.0077464012,-0.008575468,-0.006778101,-0.02789717,0.0030631195,-0.024315093,-0.007967908,0.027466815,-0.011081657,0.059946004,0.021403864,-0.0033384203,-0.0040061045,0.012973956,0.022568354,0.018277457,0.0050313636,-0.0197837,-0.026023857,0.0057749925,0.009999439,0.010062727,-0.017353456,-0.021732958,-0.0023970176,0.016328199,0.004892131,-0.027871855,0.021327918,0.047971994,0.009524782,-0.015897842,-0.023542983,-0.03187163,-0.0031295714,0.009853878,-0.013796695,-0.0125942305,-0.02815032,0.03313738,0.017809128,-0.011512013,-0.011214561,0.0054174177,-0.002468216,-0.01764458,0.007797031,0.018252142,0.004585186,0.013113189,0.014999159,0.0007843706,-0.028276896,0.006259143,-0.030884344,-0.0040567345,0.011822122,-0.029340127]},{\"id\":\"8f0934bb-c977-473a-9ec6-22c86653047e\",\"text\":\"I entered my phone number and it said that it was invalid. My phone number is \",\"vector\":[-0.019947482,-0.0007304924,-0.012614783,-0.016684273,-0.013268694,0.017446112,-0.03661906,-0.04040286,-0.02823883,0.007104148,0.0063581807,0.014855859,-0.0056661773,-0.025762854,-0.00837388,0.009516638,-0.008284998,-0.009294435,0.015719276,-0.016798548,-0.02023952,0.01688743,-0.015401844,0.014271783,-0.024036018,-0.020328403,-0.007827895,-0.019071369,0.022042539,-0.017992096,0.0047265757,0.0068946425,-0.02950856,-0.01678585,-0.036034983,0.00619629,-0.01924913,-0.02388365,0.026080286,0.0079548685,0.021255307,-0.0044440604,0.0038885528,-0.0010856205,-0.032708284,0.022969443,-0.010443542,0.0010134045,-0.02237267,0.041748773,0.0037996718,-0.017903214,0.0067930636,-0.037584055,0.0058598113,0.0052154223,-0.00007801905,0.015122503,0.0014252737,0.017534994,0.0032632102,-0.008278649,0.00016278356,-0.017255653,-0.021572739,-0.010183247,0.012824289,0.010729232,-0.018982487,0.026892914,0.008888121,0.015681185,0.010760975,-0.014932043,0.002615647,-0.0022379018,-0.02053156,-0.0057963245,-0.001534788,-0.0042821695,0.007719968,-0.029737113,-0.0074660215,0.008278649,0.042155087,0.012684618,0.01551612,0.020391889,0.022677405,-0.0040091774,0.026511995,0.014855859,-0.009059534,0.0027711892,-0.008818286,-0.013941652,-0.0034251008,0.039133128,-0.0056344336,0.0143987555,0.00073842827,-0.0010062623,0.0078025004,-0.01272271,-0.029965665,-0.01896979,0.026562784,-0.0047551445,-0.01935071,-0.024328057,-0.01617638,0.041520223,-0.0029045108,-0.017192164,0.012633829,0.019858602,-0.011567255,-0.0043964456,-0.04233285,-0.038295105,-0.00451707,0.011751366,0.025750156,-0.013090933,0.024086807,-0.0059709125,-0.02260122,-0.024886739,-0.001018166,0.0090150945,0.029889481,-0.005742361,0.021458464,0.009046838,-0.010449891,0.032327365,-0.019807812,0.007421581,-0.017230257,-0.028391197,0.0060343994,0.017890517,0.032555915,0.007326351,0.027350018,0.013230603,0.0245947,-0.005443974,-0.01603671,-0.015338358,0.0010443542,0.022994839,0.020226823,-0.007586646,-0.018360319,0.019185644,-0.000993565,0.02894988,-0.008596082,-0.031260792,-0.025178777,0.017509598,0.027299229,-0.027934095,0.021166425,0.024074111,0.0050122654,-0.0074914163,-0.021115636,-0.005212248,-0.023845559,0.017306441,0.00860878,-0.0010721296,-0.009326179,-0.0001426464,0.001844285,0.0039615626,-0.018982487,-0.009103975,-0.037914183,0.0041964627,0.022283789,0.021826686,-0.014462243,0.0028632446,0.00059201237,0.0017633397,0.013586127,0.0014316223,0.025077198,0.0061042346,0.0051995507,0.01011976,-0.64766467,-0.014157507,0.022728195,0.03494301,0.004698007,-0.00110546,-0.0020775984,0.0074279294,-0.048351377,-0.0046472177,-0.024721673,0.025267659,0.0056598284,-0.008018355,0.0037457081,-0.025216868,-0.009510289,0.003926645,0.013014749,0.019338012,-0.014347967,-0.009338875,-0.025039107,-0.0023601134,-0.0015474854,0.0046059513,-0.0087040095,-0.010748277,-0.033546306,0.01735723,-0.005183679,0.01537645,0.034257356,-0.019071369,0.034968406,-0.00007816785,-0.008494504,0.017281046,-0.013890863,0.0021839382,-0.024518516,-0.0098404195,0.010672093,-0.021039452,0.00006591692,0.0043710507,-0.0025362887,-0.033647887,-0.01971893,-0.009281738,0.014627308,-0.01782703,-0.01480507,0.022448855,0.020328403,0.009345224,-0.008158025,-0.017115982,0.0064819795,-0.026511995,-0.005663003,0.0011673594,-0.002547399,-0.008361182,-0.011738668,-0.0016522382,-0.02369319,0.010386404,0.013967047,0.0051963762,0.0011919605,0.021268003,-0.018804723,0.029762508,-0.0059391693,0.028264225,0.03207342,-0.019845905,0.016798548,0.015147897,0.005964564,0.0006658155,-0.0047741905,-0.006485154,0.0135734305,-0.018626962,-0.01996018,0.022258393,0.0061518494,-0.009008746,0.034968406,-0.006478805,0.017052494,0.008824634,0.0067803664,-0.012881427,-0.0068311556,0.020925175,0.006370878,-0.030245006,-0.035247747,0.004053618,0.03964102,0.002190287,0.023197995,0.006640696,-0.023439245,0.0041266275,0.023642402,-0.01154186,0.010919691,0.021890173,0.011433933,0.017700057,0.004459932,-0.023388455,0.029483167,0.017331835,-0.0017871471,-0.009300783,0.02473437,0.000094535484,-0.009859465,-0.005967738,-0.0016935045,0.009046838,0.016557299,0.0037076161,-0.010659397,-0.01971893,-0.01551612,-0.024480425,0.031946447,-0.018220648,0.018246042,0.011433933,0.008100888,-0.0026553262,0.026638968,-0.007923125,-0.032936838,-0.0037425337,-0.014068626,0.0047138785,0.047234014,-0.02308372,0.0002769602,-0.00043964456,-0.00084199075,0.0043710507,0.00723747,0.00409171,-0.009262691,-0.0020379191,0.005967738,-0.0064883283,0.011173638,0.0071358914,0.0032346412,-0.013052841,0.0035171565,0.02605489,-0.017230257,-0.0020379191,0.015605001,-0.0071739834,-0.010049925,0.02605489,-0.003087035,-0.030600531,-0.019172946,-0.022677405,-0.017534994,0.0049868706,-0.006774018,0.034104988,-0.020074455,0.007865987,0.007910428,-0.008202466,0.031895656,0.007421581,0.0024950225,0.005897903,0.013801982,0.009103975,0.0025839037,0.019744325,-0.017979398,0.027426202,-0.018080978,0.0065391175,-0.028670538,0.008881772,0.037152346,-0.004317087,0.021598134,0.018919,-0.008196117,0.027273834,0.017204862,0.016189078,0.033165388,-0.013217906,0.015351054,0.0052662115,-0.00033846282,-0.0011332354,0.0359334,0.010964132,-0.0039520394,-0.01664618,-0.005707443,0.006262951,-0.017636571,0.0027283358,-0.013344878,-0.0014101956,0.0075231595,0.01603671,-0.026359627,0.031489342,0.02280438,-0.007637435,-0.010284825,0.009446803,0.043297846,0.00874845,0.005907426,0.0011729145,0.003859984,0.0136496145,0.014233691,-0.0015268521,0.0053233495,-0.003185439,0.020391889,-0.017293744,0.043094687,-0.012640177,-0.003647304,0.0068311556,0.027070677,-0.014259085,-0.014843162,0.006989872,0.013878166,-0.006224859,-0.008837332,0.026562784,-0.0019236433,-0.0053043035,-0.036822215,-0.0062883454,-0.00034580345,-0.014551124,-0.009897557,0.010157852,0.021090241,0.0368984,0.015871644,0.025661275,0.018119069,-0.014386059,0.023642402,-0.011002224,0.0014403517,-0.022309184,-0.0056915716,-0.0047519705,-0.033876438,-0.010646699,0.018741237,-0.021826686,-0.0140051395,-0.013827377,0.020137943,-0.013852771,0.025889827,-0.0097642355,-0.00974519,-0.019883996,0.024505818,0.0067803664,0.01660809,0.0058471137,-0.01617638,0.0033330454,0.0015530405,0.016849337,0.009091278,0.02185208,0.0016181142,0.0078025004,-0.007751711,-0.0011483135,0.032276575,-0.008145328,-0.008278649,0.02185208,0.008462761,0.0019220562,-0.008754799,0.008456412,0.029356193,-0.017115982,0.007859638,0.0005745535,0.0074660215,-0.005637608,0.017471505,0.017115982,-0.005383662,0.00619629,-0.0056788744,0.004317087,0.003685396,-0.026638968,0.037304714,0.00577093,0.0035933403,0.001230846,-0.029559352,-0.01035466,0.082888074,0.014017836,0.014538426,0.01040545,-0.008380229,0.009548381,-0.03542551,-0.02894988,0.0029283185,-0.009834071,0.01234814,-0.014271783,0.009611868,-0.0015958939,0.0055741216,0.011218078,0.000545191,0.00775806,-0.0052852575,-0.028924486,-0.008081841,0.01144663,-0.020036364,-0.0017823856,0.0034060548,0.005878857,-0.008977002,0.014424151,0.0193888,-0.03230197,-0.006939083,0.023197995,-0.003812369,0.008354833,0.021293398,0.03093066,-0.005113844,0.022296486,0.011821201,0.002606124,0.02615647,0.011560906,0.003967911,0.005780453,0.014297177,-0.0031505213,-0.0041837655,0.028264225,0.018995184,-0.0027140512,0.013801982,-0.027705543,-0.019045973,-0.034968406,0.008792891,0.011840247,-0.020366494,-0.0042536007,-0.040326674,-0.016696969,-0.014703492,-0.023185298,0.01792861,-0.0064819795,-0.03997115,-0.02473437,-0.04355179,-0.010868902,-0.023617007,-0.024086807,0.008380229,-0.008240558,-0.017852426,0.031006845,0.026131075,-0.015084411,0.01272271,-0.0087040095,0.0007364443,0.009865814,0.01040545,-0.022144118,-0.0044059684,0.018919,0.012932216,0.029660929,0.0021347362,-0.009751539,0.0022252046,-0.0061328034,0.04106312,-0.0129449135,0.017712755,-0.005145587,0.018042885,-0.017954005,0.0032314667,-0.0045583365,-0.01480507,0.018855514,-0.00610106,-0.01830953,-0.0048122825,0.00027537302,0.0018315878,-0.0065137227,0.010507029,0.025927918,-0.013090933,-0.0024474075,-0.006281997,0.012227515,0.024962923,-0.007345397,-0.0073327,0.01721756,0.013370274,-0.010316568,0.00860878,-0.026080286,-0.016112894,-0.017801637,-0.0022029842,0.0010022944,-0.006647045,0.010126109,0.014297177,-0.02440424,-0.024810554,0.0135734305,-0.014690794,0.0131798135,-0.019642748,-0.027121466,-0.020937873,0.0058407653,-0.010710185,0.020125246,0.0094087105,-0.015020925,-0.020607743,0.007313654,-0.0006281203,-0.02445503,-0.038523655,-0.019807812,-0.00695178,-0.0038155434,-0.01971893,0.034358937,-0.003669524,0.03964102,0.013471852,0.015008227,-0.033266965,-0.010754626,-0.02056965,0.018195253,0.027146861,0.030625924,0.021026755,-0.0065518147,0.018880907,0.01976972,0.01196722,-0.0060090045,-0.018652357,0.011135546,-0.031768683,0.031489342,0.018461896,0.008926213,0.009834071,-0.0043647024,-0.0013641679,0.02015064,0.022588525,0.0104689365,-0.006418493,-0.013827377,-0.012652875,-0.0049265586,0.0096436115,0.0054185796,-0.011916431,-0.0020601396,-0.006459759,0.011414886,-0.003339394,-0.00671688,-0.003993306,-0.026435811,0.012887775,-0.019363407,-0.008354833,-0.039945755,-0.042662982,-0.012970308,0.006212162,0.0093325265,0.009237297,0.009053186,-0.024645489,-0.0060090045,-0.031768683,-0.0008292934,-0.016811246,-0.051474918,0.0042123343,-0.02558509,-0.008164374,0.0015443111,-0.010970481,0.017941307,-0.020176034,0.028467381,-0.020468073,0.023121811,-0.0147923725,-0.02242346,0.0038282406,0.009573776,-0.0035996889,0.019642748,0.016531905,0.04157101,0.0016649355,-0.0005098766,0.014919346,0.0017014403,-0.010557818,0.021877475,0.032606706,-0.024886739,-0.02327418,-0.001833175,0.010932389,-0.015071713,-0.03849826,0.017179469,0.003656827,0.024061413,-0.0012887776,0.020214126,-0.045938887,0.016430326,-0.016823944,0.007751711,-0.006466108,0.0048408518,-0.037203133,0.025356539,-0.016963614,0.0031394113,0.0028886392,-0.018385712,-0.006224859,-0.01447494,-0.003301302,0.013890863,-0.0034473212,0.032251183,0.0006400241,0.0069136885,0.010507029,-0.0022474248,-0.01816986,-0.0063454835,0.01140219,0.024658186,-0.01976972,-0.014906649,-0.01735723,0.023769375,-0.018004794,0.008259604,-0.0028235656,-0.020125246,-0.027324622,-0.018055582,0.019731628,0.011770411,-0.00041186917,-0.011097454,-0.01853808,-0.019807812,-0.02232188,0.004983696,0.013776587,-0.021534648,-0.020963268,-0.018868212,-0.0033616142,0.025178777,0.008386577,0.0016252564,0.032098815,0.033139993,-0.004542465,-0.0037838,-0.00017696884,0.009542033,-0.019464985,0.00723747,-0.0026283443,-0.030625924,0.0023601134,0.0050313114,-0.025483511,-0.010703837,0.009434106,-0.0030521173,0.0020077631,-0.007986612,0.03004185,0.008494504,0.0007443801,0.0065454664,-0.02124261,0.044948496,-0.0037171391,0.0093706185,0.008094539,0.01768736,0.0029299057,-0.002395031,0.0037964974,0.015681185,-0.0075104623,-0.009294435,-0.0026458031,0.0302704,-0.02369319,-0.024899436,-0.022537734,0.0053519183,0.004355179,0.0015609763,0.017192164,0.02360431,0.001202277,0.016773153,0.022728195,0.037457082,-0.0075104623,-0.0115863,-0.028035672,-0.007700922,-0.03542551,-0.0077263163,-0.008551642,0.012919518,-0.015681185,0.0018760284,-0.023680493,-0.0015236778,-0.009891209,-0.020036364,-0.023121811,0.016696969,0.013928955,0.0075295083,-0.009815025,0.026080286,-0.008475458,0.021940961,-0.006262951,-0.0015308202,-0.0031584573,0.0009681703,-0.0129449135,-0.017420717,-0.034257356,-0.016874732,0.020620441,0.0033838346,0.017712755,0.020823598,-0.026842125,-0.0025712063,0.0017887343,-0.0006023289,-0.012068799,-0.00252994,0.028264225,-0.03273368,0.008450064,-0.015122503,0.009821374,-0.014538426,0.008964305,0.009795979,-0.007929473,0.0053233495,-0.0013967047,-0.012456067,0.009002397,-0.023236087,0.02994027,0.018931698,-0.03428275,-0.00077215553,0.012087844,0.00014185283,-0.0021188646,0.00013986886,-0.01949038,0.011941825,0.024074111,-0.010837159,-0.033800256,-0.021166425,0.004536116,-0.043805737,0.0033647886,-0.0022632964,-0.028492777,-0.03509538,0.057696603,-0.0043266104,-0.025127988,-0.010653048,-0.01636684,-0.0047075297,0.011103802,-0.027248438,-0.011249822,-0.020582348,0.0005939963,0.0421043,0.0040218746,-0.00893891,0.024505818,0.0028902264,-0.004050444,0.026969098,0.21006438,-0.022753589,0.0029759333,0.015693882,0.01858887,0.010653048,0.014690794,-0.024531214,-0.026994493,0.0065391175,-0.007421581,-0.021877475,-0.015363752,-0.0011697402,0.010735581,-0.024328057,-0.015731974,-0.008424669,0.0034536698,-0.009986439,-0.00088008266,0.0075231595,-0.009478546,-0.009103975,0.040098123,0.0037457081,-0.0096055195,0.0021283876,0.0068121096,-0.0020141117,-0.040732987,0.014411453,0.015490725,0.0075802975,0.0007618389,-0.01083081,0.040606014,-0.00025275594,0.015084411,0.00011199429,-0.010875251,-0.008018355,0.010494331,-0.030473556,0.016087499,0.023959834,-0.0014252737,-0.021318793,0.0063391346,0.014335269,-0.009484895,-0.030295795,0.016150985,0.03400341,0.007421581,0.0031632187,0.0047265757,-0.017839728,-0.01258304,0.00588838,0.0038949016,-0.0021537822,0.009491243,-0.0127100125,-0.033038415,-0.002133149,-0.010373707,-0.0010856205,0.011789458,-0.027019888,0.009440454,0.013281392,-0.0027632534,0.020366494,-0.05566503,-0.029051458,-0.015046319,0.024061413,0.031717893,0.017865123,-0.0041774167,-0.0027203998,0.0019045973,-0.010081668,-0.01768736,-0.041799564,0.010132458,0.015617698,0.014538426,0.0062089874,0.0096817035,0.0068248073,-0.021585437,-0.022309184,0.018423805,0.00409171,0.0056979205,0.018296832,-0.0065708607,-0.029381588,-0.030803688,0.00926904,-0.0147923725,-0.0022172688,-0.017014403,-0.008735753,0.03679682,0.021699712,-0.0014141635,0.002364875,-0.0009546794,-0.021255307,0.0048979893,0.0085833855,0.024353452,0.009230948,0.014309875,-0.010386404,0.0212807,0.010373707,0.010246733,-0.028746722,0.0041139303,0.012113239,0.023896348,-0.007770757,-0.002442646,-0.023197995,-0.0005142413,-0.022652011,0.0019347535,0.031743288,0.006640696,-0.013865469,-0.03192105,-0.008494504,-0.0072120754,0.005605865,-0.029762508,0.0075676,0.020760112,0.008012006,0.008507201,-0.002634693,-0.008564339,-0.035450906,0.009770584,-0.007370792,-0.023540823,-0.020391889,0.008450064,-0.014957437,-0.00034084357,0.004904338,0.033647887,0.010957783,-0.03892997,-0.0029299057,0.018284135,-0.018385712,-0.010424496,-0.0033235224,0.015909737,-0.003079099,-0.022359973,0.011218078,-0.15917355,0.0075231595,-0.02260122,-0.00021168806,-0.0030521173,-0.0028108682,0.005507461,-0.017344533,-0.025420025,0.022207605,0.032657497,-0.007878684,-0.002026809,0.019668141,0.017268348,-0.005158284,-0.0021394978,0.010678442,0.03438433,0.02171241,0.03562867,-0.006155024,0.0046694377,0.006862899,0.0102340365,0.026334232,-0.013268694,0.0015435175,0.004678961,-0.0054090563,-0.032886047,0.019553866,-0.0049456046,0.0038187176,0.023832861,-0.011376794,0.015427238,0.013078235,0.0035552483,0.01924913,0.04299311,0.0029616489,-0.0231726,0.012741756,-0.023121811,0.022740891,0.041545615,-0.009713447,0.012786197,-0.022969443,0.018093675,-0.01480507,-0.002501371,-0.008246906,0.008005657,0.004834503,-0.008627826,-0.005993133,0.0029505386,0.0119608715,-0.038168132,0.0017363579,0.0014808244,-0.0148304645,-0.007878684,0.00046543597,-0.018322226,-0.012462415,-0.0039234706,0.031184606,-0.010113412,-0.034130383,0.0075231595,-0.011243473,0.012233864,-0.018880907,-0.026410416,0.012183074,0.014411453,-0.048402168,0.003367963,0.008164374,-0.03136237,-0.004536116,-0.015731974,0.016976312,0.030473556,0.02563588,0.013459154,-0.019566564,0.012741756,-0.016290655,0.015960526,-0.018004794,0.039894965,0.021687014,0.02100136,-0.0006134391,0.0053519183,0.0019077717,0.003223531,-0.025394632,-0.026791336,0.008031053,0.027223045,0.013827377,-0.025254961,0.021153728,0.0098404195,0.014855859,-0.025800945,-0.0014673335,0.014525729,0.036949188,-0.004469455,0.0026378674,-0.012621132,-0.025369236,0.0071485885,-0.0046249973,0.029026063,-0.0065581636,-0.004161545,0.021763198,-0.001548279,-0.0019268176,-0.08131361,-0.018753935,0.020264916,0.009567427,-0.0106657455,0.028162645,-0.012043403,0.016963614,-0.01291317,0.061708953,-0.014170204,-0.012836986,-0.00027100832,0.003580643,0.0012411627,0.021864777,0.000023869465,0.0009205554,0.009688051,0.027350018,-0.02563588,-0.034587488,-0.006304217,0.0021950484,-0.029965665,-0.029381588,-0.036923792,0.008456412,0.017560387,-0.004050444,0.0231726,0.00167922,0.012767151,-0.020264916,-0.024391543,0.03301302,-0.018868212,-0.003060053,0.013865469,-0.005078926,-0.0069263857,0.0081135845,-0.018322226,-0.01825874,-0.00010217371,-0.013230603,-0.018741237,0.025216868,-0.019858602,-0.028441986,-0.017128678,0.0027140512,-0.015693882,-0.010208642,0.0012998877,-0.0013586128,0.0027108768,0.034358937,0.007967565,0.015693882,0.007320002,-0.004469455,-0.0013054428,-0.010913343,-0.003993306,0.019757023,-0.021331491,-0.000748348,0.035400115,0.015985921,0.010068972,-0.008996048,-0.04157101,0.015985921,-0.019731628,-0.0029045108,-0.012652875,0.009256343,0.0017458809,0.016862035,-0.0022632964,0.0065137227,-0.011878339,0.0017268349,0.008913515,-0.012608434,-0.0068375045,-0.000086798056,0.0020823597,-0.012018009,0.0001699258,0.03093066,-0.009961044,-0.019477682,-0.02398523,-0.010418148,0.00033151897,-0.012449718,0.0016633483,-0.02780712,-0.018423805,-0.01428448,-0.04990045,0.025902525,-0.006158198,-0.00093642704,0.006148675,-0.029711718,0.008888121,-0.032174997,-0.0032267054,0.012519553,0.0071866806,0.037101556,-0.013624219,-0.0070977993,-0.00038806172,-0.023363061,0.0025315273,0.0074850675,0.0040885354,-0.013941652,-0.0131417215,-0.0061074086,-0.0065073743,0.0075358567,0.0009546794,-0.005396359,-0.019236432,0.01390356,-0.0085833855,-0.0076120407,0.0034409724,-0.01731914,0.0061328034,0.01745881,-0.0025807293,-0.029737113,-0.011408538,0.04042825,-0.008951607,-0.00534557,-0.0055042864,-0.031286184,0.039133128,0.006970826,0.0028299142,-0.012951262,-0.015858946,-0.025470816,-0.0055614244,0.014309875,0.005183679,0.0062312074,-0.016150985,0.0009594409,-0.0066153016,-0.035298537,-0.0057106176,-0.020823598,0.000083871724,-0.038422078,0.02605489,0.009542033,0.0036092119,-0.016773153,0.008342137,0.006881945,-0.021255307,0.024086807,-0.019833207,-0.033368547,0.0012252909,0.01963005,0.035958797,0.0058661597,0.027934095,0.00022021907,-0.029533956,0.016290655,-0.015592303,0.01106571,0.030956056,-0.0015776415,-0.01957926,-0.022867866,0.0051233666,0.02520417,-0.0070914505,0.013751193,0.029203827,0.0011554557,-0.04819901,0.0016300179,-0.017192164,-0.0053138267,0.00030552916,-0.010729232,0.008196117,0.008488156,0.01220212,0.0364159,0.021407673,-0.005713792,-0.0027346844,0.0068882937,-0.031210002,0.0048122825,-0.017141376,-0.04129167,0.020137943,0.007834244,-0.006583558,0.02558509,-0.013738495,0.015922433,0.0038758556,0.028035672,0.016455721,-0.021813989,-0.04035207,0.03948865,0.0070216153,0.029432377,0.020137943,-0.042916927,-0.011370446,-0.008913515,0.01787782,-0.017814334,0.009713447,-0.0081897685,-0.0024569305,-0.02676594,-0.018512687,-0.0026616747,-0.012125936,0.012221166,0.0026997668,0.021725107,0.0111165,0.05586819,-0.004990045,0.0014220993,0.0035488997,0.01971893,0.022194907,0.034358937,-0.0041742423,-0.016976312,-0.02719765,0.018474594,-0.016214471,0.0038250664,-0.0068184584,0.0044250144,-0.0015776415,0.021864777,0.0011919605,-0.018271437,0.0018855514,0.019744325,-0.003513982,0.013776587,0.01565579,-0.0030949707,0.004758319,0.016112894,-0.009484895,-0.025762854,-0.0496719,-0.0026648492,-0.025851734,-0.020315705,0.0065772096,0.003329871,-0.016798548,-0.03811734,-0.0006146294,0.027172254,0.0019649095,-0.029254615,0.038091946,-0.01787782,-0.012335442,0.017471505,-0.0063391346,-0.0074850675,-0.0050440086,-0.023502732]},{\"id\":\"14210767-b923-4bd7-ac70-e39130eca440\",\"text\":\"Is my TikTok post linked?\",\"vector\":[-0.030057305,-0.007918392,0.0028007647,-0.016775262,-0.0068560895,0.007155881,-0.018560972,-0.013040908,0.003353097,-0.00855056,-0.008524491,-0.014494243,-0.016253885,-0.021063576,0.012324017,0.0015095454,0.015693408,-0.02131123,0.014481208,-0.0079379445,-0.034384724,-0.0041123503,-0.009391279,-0.009006764,0.0033042182,-0.01240874,0.017466083,-0.0076902905,0.008231218,-0.003907059,-0.0006093578,-0.0022598375,-0.033055216,-0.02651195,-0.0047999145,-0.005207239,-0.012838875,-0.01017986,0.0055689435,0.0034410793,0.0065888846,0.0061522326,0.0023690006,-0.013998936,-0.027059395,0.015758578,0.019343035,0.0035029924,-0.012402223,0.017948356,0.0045424853,-0.013751282,-0.039415997,-0.025599543,-0.0070125023,0.000362519,0.008368079,0.007879289,-0.03725229,0.0016977295,0.018430628,0.015354512,-0.013829489,-0.0066214707,-0.00425247,-0.0048390175,-0.01166578,0.027294016,0.005217015,0.024217898,0.028388903,0.009143625,0.020855026,-0.013985901,0.0067778835,0.0042264014,0.0007470335,-0.011796123,0.00281217,0.042492114,0.023735626,-0.024595896,0.020815922,0.03639202,0.017062018,-0.008107391,0.012447843,0.016501538,-0.0014272658,-0.01671009,-0.010551339,0.04298742,0.019655861,-0.0028284627,-0.012695497,0.0013702404,-0.020555234,0.014689758,0.0010460098,-0.0027502566,0.0013620938,-0.0011470264,-0.025273684,-0.0034801825,-0.02086806,-0.0010981475,-0.005109481,0.009117557,0.029014554,-0.00834201,-0.027528634,0.02279715,-0.0011747244,-0.034567203,-0.01220019,0.015445753,0.003232529,-0.0238399,-0.02778932,-0.0025482234,0.05693422,0.0151198935,0.0017384619,-0.0180787,0.027450427,0.016970778,-0.015276306,-0.015145962,-0.0062662833,-0.010903268,0.039155312,-0.004672829,0.00039795626,0.035818506,-0.005122516,0.022979632,-0.019564621,-0.008211667,-0.008778662,-0.031803913,0.007175432,0.025951473,-0.018430628,0.021532813,0.014233555,0.01392073,0.006002337,-0.004516416,0.015445753,-0.0010916302,0.011541953,-0.019121451,-0.0070907087,0.007468706,-0.0045424853,0.034124035,0.004356745,-0.014689758,-0.007879289,-0.023435835,-0.03845145,0.030370131,0.01215457,-0.008139977,0.0065888846,0.033733003,0.024778377,-0.035870645,-0.015015618,-0.0027013775,-0.0088112485,0.02119392,-0.040041648,0.018222079,-0.011932985,0.01412928,0.009182729,-0.005744908,-0.004366521,-0.029144898,-0.03318556,0.01647547,0.020855026,0.012623807,-0.012819324,-0.010095136,0.009215314,-0.007983564,-0.020529166,-0.031204332,-0.0101146875,0.009332624,-0.0071819494,-0.019017177,-0.6298218,-0.021871708,0.040302336,0.0067974348,0.014520312,0.019395174,-0.01380342,0.024322173,-0.011137887,0.022758046,-0.018482767,-0.0069733993,-0.003037013,0.00476407,0.0015095454,-0.02021634,0.029066691,0.0022060706,0.0028349801,0.015224169,-0.019173589,-0.010440547,0.031204332,0.00011130148,-0.0024081038,0.013021356,0.017348774,-0.020568268,-0.029822687,0.022810183,-0.014989549,0.008250769,0.023800798,-0.005595012,0.05307604,-0.032924872,-0.0057742354,0.0038125594,-0.018912902,-0.0013515034,-0.042544253,-0.019955652,-0.0022337688,0.015980164,0.015784647,-0.006285835,0.003211348,-0.020190272,0.035583887,0.009521622,0.0024651291,-0.011411609,0.0045750714,0.020946266,0.0032032016,-0.027294016,0.027685046,0.001619523,-0.0065497817,-0.007279707,-0.010016929,0.0049400344,-0.016631883,0.009756242,-0.010753373,0.0009857258,-0.003766939,0.018704351,0.01712719,-0.0042817974,0.02172833,0.0007515141,-0.0094629675,0.026316436,0.008895972,0.049556755,0.02024241,0.0048553105,-0.0050768955,0.0030337544,-0.01854794,-0.0006969326,0.0051159984,-0.01401197,0.015367547,0.010095136,-0.033915486,0.0032537098,0.016358161,0.014064108,0.013933764,-0.0009409201,-0.0117830895,-0.009502071,0.030500475,0.0036170434,-0.030317994,-0.0088438345,0.029718412,0.012675946,0.010609995,0.012982253,-0.00989962,0.011431161,0.034124035,-0.009423865,-0.009489036,0.019017177,0.016657952,-0.019186623,-0.016579745,-0.013177769,0.011196542,-0.0063835927,-0.001294478,-0.025690785,0.033837277,-0.012936633,0.0025433355,0.008009633,0.025625613,-0.009502071,-0.0057481662,-0.0006325753,0.0058850273,0.038581796,-0.0011543583,-0.006875641,-0.0093521755,0.013177769,0.015628235,-0.0007893953,0.018235113,0.0011673926,-0.027763253,-0.006934296,-0.0007282966,0.000757624,0.016436366,-0.021715295,-0.010394927,-0.0073904996,-0.019642828,0.022810183,-0.01220019,-0.013712179,-0.010440547,0.011861295,-0.015810717,-0.0043306765,0.008798214,-0.022067225,-0.008276838,-0.006360783,-0.009788828,-0.0057383906,-0.005559168,-0.006790918,-0.009912655,-0.008472354,-0.0070581227,0.025886301,-0.0026296885,-0.0056504086,-0.023774728,-0.00806177,-0.019812275,-0.0022859063,-0.0016178938,-0.019369105,-0.0049693617,-0.025390994,-0.0023592247,-0.025195478,-0.0047314838,0.0221715,0.00857663,-0.0048064315,0.009808379,0.0009091488,-0.0038744728,0.0030728576,0.020151168,0.0005946941,0.008693939,0.0016301135,-0.010440547,0.028832072,-0.00446102,0.009964792,0.0070190197,0.0043143835,-0.01117699,0.003838628,0.006220663,0.02205419,0.01647547,0.027241876,-0.0015176919,0.011365989,0.015132928,-0.0070776744,0.02163709,-0.04087585,-0.02407452,-0.017088087,-0.015862854,-0.01445514,0.016579745,0.006960365,0.011880848,-0.012441326,0.0042101084,-0.006341231,-0.016670985,0.0055363574,-0.008459319,-0.0037897492,-0.02214543,0.026290366,-0.008935075,-0.01710112,-0.0030875213,-0.0051551014,0.0062336973,0.0067257457,0.007032054,0.040119857,-0.016918639,-0.01605837,-0.035192855,0.026603192,0.01810477,0.030109443,0.012454361,0.0038255937,-0.012108949,0.010342789,0.0209593,-0.0039657135,-0.019186623,0.013412388,0.0027779546,0.01389466,0.03847752,0.019343035,0.039285656,-0.027893597,-0.0105122365,0.008654836,-0.014285692,0.011659263,-0.02784146,-0.00601863,0.017622497,-0.021246057,-0.015589132,-0.0015193212,0.01879559,0.02781539,0.009730173,0.008948109,-0.02419183,-0.0015844932,0.006875641,-0.0009678035,-0.010147274,0.00903935,-0.0011625048,-0.024752308,-0.009391279,-0.0074947746,0.016736157,-0.0141032105,0.0126889795,-0.005353876,0.019512484,-0.014963481,-0.001798746,0.000029683788,-0.011444195,-0.04749732,0.011339921,0.016905606,-0.01873042,-0.024882652,-0.010831579,0.007625119,0.0024553535,0.006481351,0.00866787,0.015106859,-0.00045742566,-0.0005335954,-0.008107391,-0.0062499903,0.031908188,-0.006113129,0.03957241,0.00722757,-0.004607657,0.021806536,-0.022484325,-0.003473665,0.013262493,0.012825841,0.018756488,-0.020177238,-0.011111818,-0.0013637232,0.019603724,-0.0002456168,-0.0094629675,-0.004294832,0.005744908,0.003630078,-0.021663157,-0.004552261,0.019942619,0.0038060423,-0.011216094,-0.00066353194,-0.044343,0.01487224,0.105213605,0.0053278073,0.001842737,0.02395721,-0.013282045,0.009000247,-0.0067127114,-0.023044802,-0.015432719,-0.02214543,-0.0005759571,0.0063868514,-0.02247129,-0.005054085,-0.011561505,0.0061359396,0.010655615,-0.0106230285,-0.011613642,-0.040536955,-0.021884743,0.00053603936,0.00094662263,0.026146987,0.018235113,0.0063477485,0.028727798,0.018052632,0.002005667,-0.009938723,-0.019877447,0.027215809,0.003734353,0.01977317,-0.0028203162,0.008120426,0.013568801,0.03250777,-0.002077356,0.03227315,0.0036007506,0.018222079,0.026524985,-0.009058902,0.010401444,0.0065334886,-0.005728615,0.0027779546,0.008674387,0.0017368325,0.024530724,-0.002856161,-0.005881769,-0.023396732,0.00404392,0.0017563842,-0.011880848,-0.02867566,-0.0059827855,-0.01905628,-0.0027518857,-0.019082349,0.008022668,-0.004682605,-0.006458541,-0.020294547,-0.020946266,-0.02344887,-0.007879289,-0.005614564,-0.012793255,-0.015367547,-0.056412842,-0.026342504,0.017179327,0.0045066406,0.03401976,0.009449934,-0.0044512446,0.02202812,-0.012389189,-0.021989018,-0.014481208,-0.008798214,-0.026850846,-0.014064108,0.0044219173,0.02419183,-0.01754429,0.0017824529,0.024335207,0.03534927,0.035192855,-0.006875641,0.011828709,0.0050768955,0.0026573865,0.02419183,-0.020463994,-0.0070190197,0.0028007647,-0.027711116,-0.012011191,-0.01712719,-0.026368573,0.00046109158,0.01745305,0.029197035,-0.016488504,0.005471186,0.02312301,0.006008854,0.011235645,0.010772924,0.02930131,0.046741325,-0.0033221403,0.011255196,-0.025821129,-0.0048390175,-0.0129757365,-0.0088438345,-0.0035453544,-0.00030915946,-0.0043143835,0.018560972,0.0023038285,-0.028623523,-0.033706933,0.017192362,-0.008003116,0.0022109586,-0.021715295,-0.000084468964,-0.025625613,-0.0069799162,-0.008485389,0.005282187,-0.0037897492,-0.0038451452,-0.011822193,0.00027188924,-0.018899867,-0.022210602,-0.027476497,-0.042257495,-0.009378244,0.005744908,0.015484856,0.024048451,0.010297169,0.011489816,-0.026876913,-0.019747103,0.0121806385,-0.012532567,-0.004187298,0.013868592,0.014311762,0.0101146875,0.021545848,-0.0058948034,0.04668919,0.009580277,0.0010044627,-0.004272022,-0.008882937,-0.009254417,-0.0067844004,0.011952536,0.0019160555,0.00040284413,0.031230401,0.05417093,-0.022510393,0.011072715,-0.019721033,-0.021363366,-0.02021634,-0.02953593,-0.020046894,0.019838342,0.010375375,0.0029669532,-0.016840434,0.0015787906,-0.025599543,0.012258844,0.010818545,0.00601863,0.014142314,-0.008563595,0.045933194,-0.02526065,0.031829983,-0.012434809,-0.022067225,-0.0064520235,-0.014507277,0.030839369,-0.02105054,0.024296105,-0.013321147,0.02935345,-0.0064878683,0.031282537,-0.0061685257,-0.019564621,-0.0025905853,-0.001243155,-0.011339921,-0.047132358,-0.025521338,-0.0006305387,0.015224169,0.0030761163,-0.038920693,0.0019665638,-0.0036235608,-0.03336804,-0.012558635,0.014376933,-0.0010720787,0.015928026,-0.003766939,0.035244994,0.009951757,0.0067257457,0.033837277,-0.0020105548,-0.024856584,0.016723124,0.032142807,-0.023018735,-0.016019266,0.0073057762,0.0085570775,-0.025521338,-0.019316968,0.026160022,0.015654303,-0.02374866,-0.010323238,-0.006067509,-0.025495268,0.024908721,-0.039520275,-0.009078453,-0.0010867424,-0.017818013,-0.0025824388,0.01433783,-0.0030158323,0.016918639,0.013972867,0.006810469,-0.011040129,-0.008009633,0.00941083,0.00302072,0.00065660744,0.0316475,-0.011040129,0.010245032,0.014820103,-0.026929053,-0.0069864336,0.004487089,-0.008022668,0.030422268,-0.011841744,0.019447312,0.017062018,-0.0000780536,0.029666273,-0.020737715,-0.006758332,-0.009625898,0.0053049973,-0.009143625,0.042283565,-0.01905628,0.0038451452,-0.006438989,-0.00899373,0.014715827,-0.0054646684,-0.02191081,-0.01038841,-0.036339883,-0.012767185,-0.015028653,0.043925896,0.009443416,0.0071167774,0.014324795,-0.0029848756,0.009593312,-0.020085996,-0.0047184494,-0.0019274605,0.00025152302,-0.00018105583,0.0067127114,0.008902489,-0.04668919,0.029249173,-0.006077285,-0.025573475,-0.010662132,0.012917082,0.033576593,-0.011861295,-0.018587042,-0.004705415,0.0038614383,-0.0050182403,-0.0050117234,-0.01754429,0.037382632,-0.0028806003,0.011053164,0.015237203,0.02930131,0.018704351,-0.028779935,0.022575565,-0.014194451,-0.0030386425,-0.0026964897,0.00042239574,0.012245811,0.008322459,-0.016501538,0.003936386,-0.0076186014,-0.009508588,0.0022028121,-0.028597454,-0.0023592247,-0.005474444,0.008687422,0.018600076,0.021206954,0.00427528,-0.013464526,-0.026329469,-0.00052341225,-0.017609462,-0.011770055,-0.024296105,0.025716852,0.0011079232,-0.03623561,-0.0072210524,-0.002061063,-0.025847197,-0.030839369,-0.003064711,-0.011737469,-0.004258987,-0.02330549,-0.02523458,0.024713205,-0.0130539425,0.002388552,-0.0062597664,-0.03725229,-0.014350864,-0.022210602,0.008961144,0.0031331417,-0.014559414,-0.0049921717,0.009058902,0.031360745,0.025860231,0.007950978,-0.01199164,0.031621434,-0.02953593,0.015015618,0.005542875,0.009156659,0.0036431123,-0.010029964,0.004154712,0.0023787764,0.015836785,0.008596181,0.017726772,-0.0078076003,0.016879536,0.018587042,-0.009840965,0.00855056,-0.0026671623,0.012063329,0.012095915,-0.017700704,0.016866501,0.012532567,0.011450713,-0.031986397,0.0035909747,0.015993198,-0.025860231,-0.03018765,0.024113623,0.000027748996,-0.000425247,0.00722757,-0.00808784,-0.014833136,-0.038321108,0.008850352,-0.016657952,-0.0030777457,0.00813346,-0.0017514962,-0.006148974,-0.021428538,-0.02279715,-0.011196542,-0.009111039,-0.006025147,-0.0032357876,-0.018300286,-0.004825983,0.03125647,0.010616511,-0.026316436,0.0020740975,0.023852935,0.011190024,0.014350864,0.26089635,0.0058100796,-0.00806177,0.04152757,0.012702014,0.004757553,0.020711647,0.032898802,-0.03235136,-0.025052099,-0.011594091,0.005265894,0.0015201358,-0.0052039805,0.0029474017,-0.014077142,0.0065269712,-0.009300038,-0.0032374167,-0.029431654,0.014950447,0.0016798071,0.012675946,-0.002344561,0.024387345,0.006771366,0.0019307191,-0.008263804,-0.00961938,0.011372506,-0.012917082,-0.010583925,0.025182443,-0.002790989,-0.0017808237,-0.008935075,0.019525517,-0.008394148,0.036887325,0.0040145926,0.028519247,-0.02249736,0.007977047,-0.0053994963,0.011652745,-0.027450427,-0.008498423,-0.0012268621,-0.02312301,0.025912369,-0.030213717,-0.018782558,0.021337299,0.002421138,-0.015836785,-0.016371194,0.022419153,0.0054939957,-0.014272658,0.0045652953,0.028701728,0.03811256,0.017479118,0.01487224,-0.014715827,-0.0055656848,0.0023690006,0.0017840823,0.023409765,-0.02526065,0.001608118,-0.023735626,0.0038255937,0.020281512,-0.036287744,-0.012069846,0.026498917,0.013203838,0.037565116,0.019877447,0.0113073345,-0.003620302,-0.0019942618,-0.037512977,-0.020529166,-0.0045327093,0.02330549,-0.018300286,0.0034573723,-0.018534904,-0.00039958555,0.0027062653,-0.019851377,-0.010812027,-0.022197567,-0.015602166,0.008420217,-0.0001325842,0.0010826691,-0.0154066505,-0.015862854,0.04348273,0.027294016,0.016423333,-0.028832072,0.002911557,-0.013699145,-0.008537526,0.027189739,-0.014963481,0.025156375,-0.020385787,0.01947338,-0.0045424853,-0.027945735,0.023592247,-0.00855056,-0.021206954,-0.007781531,0.012330534,-0.0038027836,-0.023905072,-0.00012932559,-0.002639464,0.015628235,0.0058198557,0.0066801254,-0.0015567951,-0.021024473,-0.018130837,0.026329469,0.01742698,0.0012415258,0.0076511875,-0.025964506,0.009612863,0.019212693,-0.028076079,0.007905358,0.018782558,-0.0028854883,0.012187156,-0.000011322354,-0.015980164,0.004291573,-0.038138628,0.011509367,-0.00604144,-0.020385787,-0.007038571,-0.007572981,0.00072544534,-0.0006199482,0.0034573723,0.009730173,0.010746855,0.0061750426,-0.02344887,-0.02430914,-0.012597739,-0.012135018,-0.019734068,0.032690253,-0.023370663,-0.015758578,-0.019499449,-0.1643376,0.025482234,0.015862854,0.007957496,0.0001547834,0.0022598375,0.01298877,-0.0062108873,-0.0023380439,-0.0011323628,0.015680373,-0.013633973,0.0117114,-0.024087554,-0.009710621,0.0006431657,0.0016977295,-0.008674387,0.027632909,0.007964013,0.00927397,-0.02075075,0.017635532,0.000866787,-0.013399354,0.01612354,-0.034071896,0.011932985,-0.0033726487,-0.000094804825,-0.0028610488,-0.014207486,0.014559414,-0.0073383623,0.021350332,0.015719475,0.009176211,-0.025443131,-0.0073383623,-0.0011299187,0.0151198935,0.03894676,-0.009997378,0.0057481662,0.009423865,0.007331845,0.01240874,-0.00008996785,0.018443663,-0.0054972544,0.0025091202,-0.022223637,0.029405586,0.0114181265,-0.034150105,0.02151978,0.011561505,0.022249706,0.0029848756,-0.0014647397,-0.0007494775,-0.020789854,0.0023836643,-0.02953593,-0.003118478,-0.022184534,-0.012656393,-0.008120426,-0.028779935,0.02600361,-0.009404313,0.017726772,0.032872733,0.018991107,-0.010166825,0.008726525,-0.032481704,0.00632168,-0.004360004,0.023735626,-0.0035388372,0.04882683,-0.034984306,0.012454361,-0.012148052,0.0011388799,0.005924131,0.0061783013,-0.009280486,-0.013295079,0.012102432,0.0019942618,-0.011437678,-0.0057090633,-0.0020105548,0.005021499,0.0062728007,0.020046894,0.004148195,-0.041996807,-0.015862854,-0.01715326,-0.002258208,0.017440015,0.007664222,0.0049367757,-0.021624055,0.007950978,0.0067974348,-0.018508835,-0.0034638895,0.00309078,0.016618848,0.013438457,0.009919171,0.03600099,-0.0036626637,0.009938723,-0.0022272517,0.009006764,0.049296066,-0.0057709767,-0.0009246271,0.015471822,-0.04215322,-0.0151198935,-0.08884241,-0.013145183,0.010922819,-0.0037310943,-0.026824776,0.023644386,0.013360251,0.0071819494,0.0031803914,0.028753866,-0.012252327,-0.016579745,-0.006034923,0.0084462855,0.007142846,-0.015797682,-0.018169941,0.001259448,-0.00029531043,0.019903515,0.0074817403,-0.030239787,-0.019212693,-0.03125647,0.020763785,-0.020907164,-0.023905072,0.02214543,0.008628767,0.013933764,-0.013438457,-0.008452803,0.0073253275,-0.03761725,-0.033498384,0.013184287,-0.028362835,-0.024270035,0.02930131,-0.016514573,-0.017622497,-0.005839407,-0.008283355,-0.026642295,-0.017270569,-0.00388099,-0.0017857115,0.015250238,0.0014427442,-0.022419153,0.010401444,-0.0009686182,0.011437678,-0.01647547,0.024556793,-0.016371194,-0.0021213472,0.043169905,-0.008465837,0.0160323,-0.011796123,-0.022223637,-0.00785322,0.02481748,0.026772639,-0.00046720146,0.013027874,-0.01715326,0.02781539,-0.0034378206,-0.016071403,0.01647547,-0.0030353838,0.0036105262,-0.041892532,-0.014507277,-0.01700988,-0.007964013,0.014767965,-0.018873798,0.00069448864,-0.026929053,0.0034215276,-0.009084971,-0.010974958,-0.0066703497,-0.01935607,0.02354011,-0.008909007,-0.009554208,-0.011411609,-0.0025824388,0.0007266673,0.0026101368,-0.0046141744,0.014885275,-0.009502071,0.009287003,0.008270321,0.041840393,-0.011568022,0.0004419473,-0.06011461,0.014833136,0.0093195895,-0.0146115525,-0.004910707,-0.0020317356,0.019043244,-0.033759072,-0.016788296,0.027215809,0.007670739,0.01215457,0.002562887,0.0073513966,0.013203838,-0.0012480429,-0.0026199126,-0.015954094,0.017622497,-0.0015869371,-0.012271879,0.011828709,-0.017909253,0.012343568,-0.0043860725,0.04296135,0.011027095,0.013080011,-0.024439484,-0.018222079,0.04298742,-0.03430652,0.006357524,0.031595364,-0.0069799162,-0.030083375,0.016436366,0.032012463,-0.01331463,-0.007540395,0.0018818402,-0.014950447,0.02035972,-0.01031672,0.020646475,-0.00040284413,-0.028154284,0.013985901,0.010740338,0.008948109,0.037148014,0.0067648487,-0.019290898,-0.006148974,0.009808379,-0.009189245,0.030969713,-0.022901425,0.014715827,-0.025417062,0.01721843,0.024530724,0.009756242,-0.0066214707,0.025039066,0.01840456,-0.026133955,0.008035702,0.0063803345,-0.0150416875,-0.004487089,0.009326107,0.016501538,-0.0018622886,0.0102711,0.014155349,-0.009990861,0.013073494,-0.00850494,0.020307582,-0.006771366,-0.004835759,-0.034489,0.008700456,0.03143895,0.007840186,-0.016071403,0.029197035,-0.014741896,0.0024015866,-0.02737222,-0.003336804,-0.0045424853,0.01278022,0.01947338,0.023487972,-0.014168383,0.00018299063,0.005093188,0.005940424,0.0067452975,-0.0019535294,-0.0033726487,-0.02193688,-0.02235398,0.03482789,-0.02472624,-0.05159012,0.012669428,0.01433783,-0.00007204556,-0.029509861,-0.028206421,0.0027225583,0.0018736937,-0.011033612,-0.0033107353,-0.014298727,-0.028362835,0.057455596,-0.0030060564,-0.0049693617,0.021246057,-0.0059176134,0.01347756,-0.008980695,-0.009554208,-0.01612354,0.03167357,0.0027746959,0.012936633,0.0092087975,-0.006875641,0.0017140224,0.012623807,-0.011392058,-0.025482234,0.016371194,-0.012069846,0.061522324,0.013399354,-0.019538552,0.005526582,-0.0047021564,0.025482234,0.013399354,0.01584982,-0.014572449,0.010173342,-0.0070907087,-0.009091488,-0.006478092,-0.0066605737,-0.0016292989,0.0044936063,0.023409765,0.0035649058,-0.010023447,-0.026081815,0.0050964467,0.007175432,0.000489197,0.023266388,-0.0021555624,-0.01310608,0.0131647345,-0.017400911,-0.029796617,-0.040510885,0.015967129,0.005679736,-0.013503629,-0.031178264,0.031308606,-0.015354512,-0.016957743,-0.014924377,0.01798746,0.011932985,0.009567243,-0.011978605,-0.036027055,0.012760669,-0.002883859,-0.0033596142,-0.014220521,-0.0009792086,-0.054952994]},{\"id\":\"eeea486a-1b16-45d7-bbf1-bde151d9ed8c\",\"text\":\"Can I get sponsored by gfuel \",\"vector\":[0.0049769734,-0.011947394,-0.016997462,-0.023908079,-0.026433112,0.009535323,-0.01363518,-0.013369387,-0.004478612,-0.011688246,0.037795763,0.0041164686,-0.0013480688,-0.012851091,-0.0023090765,0.0072229244,0.032347005,-0.0038905449,0.006614923,-0.00075335696,-0.017661944,-0.009209727,0.008671496,-0.017077198,-0.023509389,-0.012146739,0.024452955,-0.014113608,0.0067245625,0.017582206,0.022844907,0.005149739,-0.019602232,-0.00053200126,-0.0036646207,-0.0113427155,-0.009900789,0.010957316,0.016492454,-0.018858012,0.021117253,0.012412532,0.017329702,-0.03718444,-0.027482994,0.0039603156,-0.013302939,-0.002697799,-0.0032908493,0.020532507,-0.0067743985,-0.004624798,-0.0045716395,-0.013661759,-0.009920723,-0.0154425725,-0.018725116,0.02495796,-0.000713488,-0.010704813,0.015123621,0.015203359,-0.01326307,0.0037576484,-0.023256887,0.00644548,-0.027057726,0.015509021,-0.020399611,-0.0045184805,0.012379308,0.0110968575,-0.0056215217,0.0012741451,-0.0057211937,-0.008000369,-0.00042692997,-0.013741497,-0.0013937519,-0.0030798763,0.02462572,-0.022991093,0.0077478653,0.020811591,0.020027502,0.0340215,0.0020532508,0.0034519865,-0.022552535,-0.022858197,0.0014651838,0.013528863,-0.00948881,0.0070302244,-0.012777998,0.009555258,-0.02122357,0.021050803,0.02769563,0.0005884823,0.013449125,0.008213003,-0.010645009,-0.008890775,-0.035377044,-0.008379124,-0.010611785,0.013176687,0.02691154,0.021861473,-0.020559087,0.020333163,0.0025482902,-0.00227253,-0.0010573578,-0.0011254671,0.0072561484,-0.01819353,-0.015734944,-0.0039437036,0.029795393,-0.008193069,0.032852013,-0.010339347,0.005066679,0.0071365414,-0.013508928,-0.009183148,-0.002199437,-0.009369203,0.030406717,-0.014512297,0.00946223,-0.0052560563,-0.028519588,0.010930737,-0.026964698,0.0067179175,-0.013927552,0.008133265,0.02045277,0.032772277,-0.0018040698,0.019495916,-0.036971804,0.003601495,-0.00085469056,-0.036546536,0.0071498314,-0.023708735,-0.008007013,-0.014831249,0.0034054725,0.024506113,-0.0030998106,0.0065252176,-0.023310045,0.032798853,-0.012332794,0.006256102,0.02346952,-0.019921184,0.017249964,-0.028705642,-0.024652299,0.045158226,0.050846197,-0.0066215675,-0.0111167915,0.0010914124,0.0111832395,0.058474455,-0.03561626,0.023788473,-0.009774537,-0.00312639,-0.0026296894,0.0037510034,-0.008379124,0.0016504083,0.0012874347,0.010757971,0.02804116,0.019163674,-0.0014552166,-0.020612245,-0.00025935582,-0.022924645,0.004488579,-0.028174056,0.0014543859,0.019907894,0.019801578,0.008658206,-0.6430064,-0.0109041575,0.040373955,-0.0050168424,-0.007322597,0.038061555,-0.0032626088,0.010166582,-0.02457256,0.040400535,-0.019057358,0.030513035,-0.028891698,-0.023549259,0.021569101,-0.013349453,0.008252872,0.00043689721,-0.0024436342,-0.0027110884,-0.021675417,-0.001027456,-0.019283282,-0.0016578838,0.035058096,0.018020764,-0.00063042773,-0.0051929303,0.003086521,-0.0038772551,-0.012000553,0.034712564,0.0033456692,-0.00464141,0.058474455,-0.03407466,0.017608786,0.008744589,-0.020598955,0.0028672419,-0.04247372,0.002103087,0.005163029,0.005060034,0.0006433021,0.035509944,0.007196345,0.017648654,-0.0068375245,0.00035570576,0.009289465,0.010452309,-0.006116561,-0.014817959,0.016386138,-0.0068308795,0.023628997,0.0052095423,-0.02615403,0.023256887,0.0023024317,0.014605325,-0.031921737,-0.02385492,-0.0020216878,0.012419177,-0.036254164,0.016917724,0.017117068,0.029821973,0.0047344374,0.005106548,-0.021715287,-0.0034785657,0.0109440265,0.02995487,0.0007031055,0.012080291,-0.022459507,0.006365742,-0.011674956,-0.008113331,-0.00039287526,-0.014910987,0.016984172,-0.02918407,-0.025994554,0.0029885098,0.009894144,-0.011037054,0.0019485948,0.0310712,-0.0109772505,-0.014964145,0.005202898,-0.00016352498,-0.02304425,0.011023764,0.010870933,0.0028605969,0.010924092,0.009216372,-0.002392137,0.004511836,0.01933644,0.0034685985,-0.030645931,-0.004345715,-0.006173042,-0.045211386,-0.004079922,-0.026938118,0.0045417375,-0.0023074152,-0.00406331,-0.030220661,0.003134696,0.0029868486,-0.0046546995,-0.021529231,0.011787918,0.008186424,0.0064189006,0.017715102,-0.0005901435,0.018273268,-0.0002294541,-0.019429468,-0.026951408,0.0047410824,0.012140094,-0.0016811406,0.014645194,-0.00002990171,0.010080199,0.01004033,0.020944487,-0.0034287295,0.013954132,-0.027881684,-0.02578192,0.00662489,0.0064355126,-0.01228628,-0.014538876,0.024825064,-0.0061929766,-0.0057909647,0.0052660233,-0.027509574,0.002136311,0.0054985923,-0.0043390705,0.027110884,0.006246135,-0.030167503,0.009774537,-0.028466428,-0.018645378,-0.0039204466,0.010292834,-0.0032941718,-0.019030778,-0.006714595,-0.0052494113,-0.008286096,-0.0034386967,-0.012598587,0.003295833,-0.01586784,0.013515573,-0.036147844,-0.0111832395,0.030858565,-0.0075219413,0.0064288676,0.0011836094,0.018087212,-0.006761109,0.006857459,0.007269438,0.0029071108,-0.0056613907,0.029609337,0.042633194,-0.0028273729,-0.010033685,0.04587587,-0.009721379,0.01974842,-0.019429468,0.020426191,0.0056049097,0.014685063,-0.0064587696,-0.0030250563,0.012552073,0.0001693392,-0.005747773,0.0004580776,0.015934289,-0.019854736,0.015774814,-0.027403256,0.02918407,-0.018990908,0.012246411,-0.031257253,0.031257253,0.02995487,0.0012417516,-0.0072627934,-0.010744682,0.018087212,0.017090488,-0.013050435,-0.02381505,0.014631904,-0.0155356,-0.011615153,-0.009389137,-0.006930552,0.019588944,-0.0050567114,0.021409625,0.028705642,-0.011475612,0.009183148,0.0021263438,-0.021927921,-0.008990448,0.006767754,-0.0034785657,0.0008094227,0.024346637,-0.013103594,-0.0068840384,-0.0037011672,0.03670601,-0.015389414,0.0063391626,0.00094439567,0.030938303,0.024439665,0.028147478,0.0026845091,0.013834525,0.0029054496,-0.02576863,0.010292834,-0.035749156,0.009010382,-0.022313321,-0.016572192,0.02126344,-0.02420045,-0.0053756633,0.014206635,-0.02804116,0.0110171195,0.01479138,0.031363573,0.00009525979,-0.047178254,0.0034519865,0.023921369,0.0054753353,-0.0039005121,-0.0040965346,-0.014884407,-0.004166305,0.0061364956,-0.008007013,-0.015030594,0.020186977,0.0008081768,0.020771721,-0.004551705,-0.0077810897,0.011402519,0.009728023,-0.0016628674,0.006116561,0.020200267,-0.0074887173,-0.009548613,-0.00929611,-0.004681279,0.0032426743,0.015110331,0.029476441,-0.012352729,-0.012439111,-0.005737806,-0.006472059,0.0055949423,0.013415901,-0.021476073,0.021050803,-0.00041114853,0.0041065016,0.02125015,-0.03410124,-0.008073462,0.031044621,0.011037054,-0.0310712,-0.0035383692,-0.002973559,-0.03452651,0.0083459,0.0012791287,-0.012704904,-0.010684878,0.01701075,0.0014344516,-0.032772277,0.0012716533,0.027722208,-0.0031479856,0.00009453301,0.001297402,-0.022898065,-0.0061929766,0.0865422,0.012179963,-0.013023856,0.012844446,-0.019934474,0.008379124,-0.0015623644,-0.029396703,0.0023871532,-0.014592035,0.00069479947,-0.0010847676,-0.021688707,-0.002626367,0.0077744448,-0.009209727,-0.029396703,-0.014445849,-0.024001107,0.009136634,-0.013954132,-0.00812662,0.0022010983,0.012186608,0.032426745,0.016372848,0.008325965,0.026300216,-0.030592773,-0.0020383,-0.00986092,-0.009894144,-0.0014203313,-0.0053856303,-0.009442296,-0.00024482026,0.0156020485,-0.00021263439,0.024054265,-0.0016313044,0.007515297,0.020200267,-0.0010955655,-0.011781274,0.0027542799,0.0039038344,-0.022100687,0.00025499513,0.006767754,0.0011412486,0.03069909,-0.005342439,-0.021715287,-0.018326426,0.0004551705,-0.011462322,0.002609755,-0.018459322,-0.016904434,-0.021927921,-0.027084306,-0.014751511,0.005156384,0.006658114,-0.01663864,-0.010106778,-0.018127082,-0.016213372,0.012179963,-0.0026712194,-0.0041463706,-0.038353927,-0.031895157,0.009508744,0.023748603,0.014990725,0.0011154999,0.008060172,-0.010512113,-0.013003922,0.015309676,-0.019017488,-0.02495796,-0.020997645,-0.0013912602,-0.017170226,0.0069438415,-0.0036646207,-0.0071365414,0.0062029436,0.007129897,0.013336163,0.030167503,-0.006126528,-0.009329334,0.015336256,0.02883854,-0.028227216,-0.014578745,0.008605048,-0.005050067,-0.021515941,-0.016399426,-0.01738286,-0.018379584,0.030672511,0.036892068,-0.0059703747,-0.041383967,0.008618337,0.022858197,0.01231286,0.006103271,-0.016532324,0.029529601,0.01061843,-0.011508836,0.000318121,-0.02344294,-0.00062876655,-0.01779484,-0.035004936,0.041835815,0.021808315,-0.012910894,0.0067876885,0.011767984,-0.010345992,-0.008033593,-0.0013347791,-0.028200636,0.0468593,-0.016532324,-0.013548797,-0.039231043,-0.020612245,-0.029343545,-0.0008106686,-0.009156568,-0.014140187,-0.037237596,-0.018353006,0.0039304136,0.0071033174,0.0002412902,-0.037689444,-0.012532139,0.000087317145,0.00336062,0.012937473,-0.01738286,-0.00020972728,-0.014857828,-0.004787596,-0.005422177,-0.003850676,-0.04101186,-0.013821235,0.039948687,0.030672511,0.024134003,-0.0035981725,-0.0069172624,-0.009409072,0.02575534,-0.0067710765,-0.00984763,-0.0026645747,-0.0053125373,0.010060265,0.0112962015,0.016346268,0.008438927,-0.018897882,-0.012831156,0.0051929303,-0.0347923,-0.0110902125,-0.015455862,-0.042154767,0.016598772,0.010558627,-0.00425601,0.0006034331,-0.017941026,-0.04013474,0.0023821697,0.008844261,0.015243228,0.0049171704,-0.009621706,-0.021542521,0.016319688,0.005478658,0.010399151,0.016505744,-0.04693904,-0.0035882052,0.0021878085,0.013794656,0.021170411,0.016146924,0.004687924,0.018605508,-0.010419085,0.017502468,-0.0052959253,-0.023150569,0.0038041621,-0.026061002,-0.026087582,-0.008531955,-0.010837709,-0.024120713,-0.014459139,-0.005568363,-0.04021448,0.01585455,0.0034619537,-0.022818327,-0.013515573,-0.0017193484,0.009468875,0.016612062,0.008093396,0.029529601,0.002845646,0.001623829,0.000043554748,0.0112962015,-0.004302524,0.0004942088,0.020917907,-0.008571824,-0.007548521,0.014525587,-0.008213003,-0.025462968,-0.013548797,0.021768445,0.015921,0.02008066,0.000962669,-0.002239306,-0.018884592,0.0069172624,0.018313136,-0.017648654,-0.010226385,-0.017887868,-0.0040998566,0.04167634,0.0051663513,0.0059703747,0.007621614,0.0074820723,0.003054958,-0.009329334,-0.024333348,0.01930986,-0.0026213834,0.029290387,0.0041563376,0.006302616,-0.0112696225,-0.007694707,-0.004873979,0.021316597,0.0031612753,0.022499377,0.008312675,0.0110968575,0.0070302244,-0.022459507,0.029503021,0.0034154397,-0.0022177103,-0.0043656495,0.011987263,-0.015814682,0.006897328,0.009183148,-0.0394171,-0.007654838,-0.008492086,0.008890775,0.0072561484,-0.017661944,0.022911355,-0.023735313,-0.0005689631,-0.00046430712,0.035350468,-0.01152877,0.0112563325,0.015256518,0.02651285,0.00326427,-0.01590771,0.01082442,0.0027675694,0.009156568,-0.03224069,0.01516349,0.0005286789,-0.020253425,0.026433112,0.01439269,-0.028280374,-0.031629365,-0.00019913708,0.014857828,0.0013430852,0.0068308795,0.032905173,0.02572876,0.022858197,-0.013522218,-0.00019830649,-0.013781366,-0.024479534,0.015283097,0.015097042,-0.014299663,-0.0028954824,-0.014711642,0.023349913,-0.0008031932,0.003973605,-0.027429836,0.0153761245,-0.002054912,0.021024225,-0.008239582,-0.0073292414,-0.017249964,-0.012013843,0.010545337,0.0017758294,-0.014233214,0.023349913,0.027350098,-0.0065783765,0.0052095423,-0.009561903,-0.0077146413,-0.031629365,0.0044354205,-0.023575837,0.010485534,-0.020253425,0.02269872,-0.018818144,-0.03293175,-0.016146924,-0.00888413,-0.0114423875,-0.0045749615,-0.003697845,0.010319413,-0.0006786027,0.005246089,-0.016758248,0.025237044,-0.01439269,0.020266715,0.005787642,-0.020293294,0.012910894,-0.028891698,-0.0065086056,-0.01100383,-0.03224069,0.0023821697,0.03455309,0.029901711,0.016120344,0.018884592,0.022167135,0.01778155,-0.00948881,-0.0040500206,0.014645194,0.004754372,0.005973697,-0.019549074,-0.0068308795,-0.006864104,-0.0016935996,-0.004787596,-0.021901341,0.024173873,-0.01629311,0.0035981725,-0.0155356,-0.0016753264,-0.022805039,0.004947072,0.020359743,-0.0059371507,-0.00984763,0.015136911,0.020559087,-0.023575837,-0.00022218633,0.00984763,-0.0018107147,0.0031546305,0.035456784,-0.027164042,-0.0020183655,0.011701536,0.009741313,0.0013181671,-0.009701444,0.008565179,-0.027801946,0.0067245625,0.029529601,0.009927368,-0.005940473,-0.0227253,0.0002703613,0.008485441,-0.0073292414,-0.031842,0.0015166812,-0.004136403,-0.010113423,0.02764247,0.0020781688,-0.031921737,0.00037896266,0.030061187,0.016014026,0.02386821,0.23155884,-0.004770984,-0.009302754,0.050261453,0.00246523,-0.007129897,0.019509206,0.0014901019,-0.016585482,-0.0012459046,-0.0028971436,0.021768445,-0.027988002,-0.02200766,0.0019818188,-0.012977342,-0.058580775,-0.017622074,-0.006744497,-0.0065484745,0.009276175,0.008040238,-0.006295971,-0.008053527,0.03032698,0.008385768,0.007701352,-0.014857828,0.024333348,0.022300031,0.000109224304,0.011249688,0.03484546,-0.007581745,0.010179872,-0.0012716533,0.0035516587,-0.012771353,0.030911723,0.02616732,0.011628443,0.01345577,-0.021755155,-0.013488994,0.009914078,0.0058707027,-0.025888236,-0.0030798763,-0.013189977,0.011694891,-0.025170596,-0.021662127,0.02571547,0.030513035,0.0075352313,-0.01362189,0.014937566,0.0054720133,-0.019256702,0.012166674,-0.0112563325,0.03872604,0.011249688,0.04319136,-0.009648285,-0.0017143647,-0.0040433756,-0.0066780485,0.01364847,0.0022143878,-0.027855104,0.00089622074,-0.00493046,0.02652614,-0.009349268,-0.018525772,-0.0051995753,0.027217202,0.017515758,0.0071033174,0.01400729,0.029051173,0.02127673,0.0035948502,-0.0025649022,-0.009335979,-0.009110055,0.003641364,-0.0014602002,0.0010706474,0.019269992,-0.005269346,-0.010645009,-0.0008339255,-0.015216649,-0.03970947,0.02463901,0.0112098195,0.00019716441,-0.011861012,-0.02422703,0.04967671,0.004133081,0.012452401,-0.017582206,0.013316228,0.0023356557,-0.0057178717,-0.0042925566,-0.009189792,-0.0006146463,-0.022366479,0.013847815,-0.002902127,-0.011841077,0.016957592,-0.0013405933,-0.019389598,0.020691983,-0.01626653,-0.019947764,-0.02198108,0.020997645,0.002071524,0.00596373,-0.01021974,0.0024220385,-0.008073462,-0.014817959,-0.028599326,0.019389598,0.013847815,0.010498823,-0.04056001,-0.0113094915,0.006495316,-0.027509574,0.0112031745,0.0034685985,-0.006810945,-0.017316412,0.016093764,-0.014047159,-0.009242951,0.018485902,-0.048294585,-0.007867472,-0.008664851,0.0112629775,-0.014259794,-0.0005594112,0.012605232,-0.0043556825,0.02008066,0.027828526,-0.0054653683,-0.024426375,-0.049437493,0.0040898896,0.0030649253,-0.029503021,-0.000013393475,0.025117436,-0.01439269,-0.008193069,0.0030981496,-0.16968223,0.022167135,0.003810807,-0.0066448245,0.01740944,-0.0012774675,0.030964883,0.0072495034,-0.024931382,-0.008445572,0.035775736,-0.018685246,-0.03144331,-0.016558902,0.0032925105,-0.0046447325,-0.026712194,0.005837478,0.0016014028,0.0055218493,0.0024320057,-0.0012085275,0.008438927,0.004907203,0.009409072,-0.018658668,-0.021329887,0.024333348,-0.022100687,0.011814498,-0.029689075,-0.017515758,0.013548797,-0.0021496008,0.011980618,-0.02497125,-0.017077198,0.016957592,-0.004691246,0.03944368,0.0067710765,0.012060356,-0.013329518,0.0075219413,-0.010279544,0.002998477,-0.008970513,-0.00968151,0.015575469,-0.0049105254,0.047922473,-0.027084306,-0.0010424069,0.022366479,-0.010664944,0.018698536,0.0017060587,0.0111898845,0.011861012,-0.009110055,-0.013283004,-0.016731668,0.009183148,-0.02574205,-0.02125015,-0.021130541,-0.03149647,-0.0013954132,-0.03069909,0.0008031932,0.011415808,-0.01896433,0.004053343,0.004285912,0.030380137,0.00085302937,-0.031629365,-0.010744682,0.006711273,-0.0030250563,-0.032134373,0.034180976,-0.011561994,0.015269807,-0.01588113,0.019469336,0.029875131,-0.021821603,-0.019495916,-0.024346637,0.020665405,0.0029370124,-0.019774998,-0.005179641,0.006405611,0.013495639,0.0037177794,0.015123621,-0.00079073414,0.013874394,0.012545429,-0.030247241,-0.043138202,0.012253056,0.04393558,-0.0155488895,0.0075219413,0.024027687,0.024293479,-0.02200766,-0.021170411,0.018618798,0.0032327073,0.034685984,0.024346637,0.037981816,-0.008684786,-0.03154963,0.01152877,-0.025037698,0.03893867,-0.0005020996,-0.00044727974,0.0068308795,-0.018246688,0.009821051,-0.08085422,-0.038061555,0.015322966,0.013595311,0.00095602416,0.0037443587,0.02163555,-0.0033672648,0.0018970974,0.02571547,-0.0033672648,-0.012279636,0.0020997645,-0.009535323,0.032878593,-0.008817682,0.017661944,-0.009442296,-0.021502653,0.01701075,-0.0057510957,-0.005020165,-0.041171335,-0.010080199,-0.026286926,0.005196253,-0.03566942,0.0026961376,0.017077198,0.013714918,0.018485902,-0.009940658,0.023628997,-0.038858935,-0.025795208,0.0022941257,-0.0040267636,-0.017754972,0.005883992,-0.023974527,0.015841262,0.01289096,0.031948317,-0.008698075,-0.022592403,0.013322873,-0.02764247,0.024931382,0.021037515,-0.017688522,-0.008279451,-0.026991278,-0.01516349,0.000962669,0.005083291,0.0000419195,0.024878222,0.025542706,-0.032160953,0.003681233,-0.022379769,0.023389783,-0.013136818,-0.010997185,0.004495224,-0.002111393,-0.028652484,-0.017529048,0.0112031745,-0.008943934,0.004747727,0.0155887585,-0.018605508,-0.0006250288,-0.038539983,0.004375617,0.02046606,-0.044972174,0.014140187,-0.008605048,-0.015628627,-0.019522494,0.0037842277,-0.019057358,0.030220661,-0.01249227,-0.0043324255,0.009322689,-0.005212865,-0.022273451,0.009821051,0.018392874,0.027164042,0.00910341,-0.02499783,0.002006737,-0.016944302,0.013861104,0.026645746,0.011621798,0.01024632,-0.013103594,-0.06543823,0.047125097,0.0069106175,-0.009495454,0.005189608,-0.008711365,-0.0032626088,-0.01815366,0.018366296,-0.0013746481,0.0155356,0.028546166,-0.0064122556,-0.015097042,0.0056447783,-0.02881196,0.024479534,-0.011422453,0.025130726,0.0032543028,0.013768077,0.013675049,0.005036777,0.014817959,0.008226293,0.027376678,-0.009794472,0.024944672,0.0049271374,-0.024506113,0.0076481933,-0.01820682,0.014964145,-0.0078076688,0.0027343454,-0.019642102,-0.0113094915,0.0047676614,-0.007123252,-0.018113792,0.0069504865,0.008618337,0.005259379,-0.0055849752,0.0032343683,0.011628443,-0.023589127,0.008013658,0.026207188,0.0014842877,-0.002544968,0.022379769,-0.016931012,-0.014685063,-0.025901526,-0.013661759,-0.002755941,0.0064986385,-0.011920815,-0.019549074,0.040081583,-0.016984172,0.008193069,-0.025237044,0.05539126,0.010704813,-0.008312675,0.008977158,0.014578745,-0.028679064,-0.027536154,0.009747958,0.003329057,-0.011767984,-0.0012259701,0.014472428,-0.0021047483,-0.023522679,-0.019163674,0.014698352,0.0033955052,-0.020213556,-0.017117068,0.026260346,0.018764984,0.032825433,-0.0013173365,0.008923999,-0.010937382,0.0011387569,-0.036998384,0.0034420192,0.007315952,0.0014460799,0.054035712,0.0075950343,0.002829034,0.009495454,0.011608508,-0.0007479581,-0.002239306,0.01345577,0.021462783,-0.013369387,-0.015947578,0.029396703,-0.009216372,-0.024745326,-0.012080291,-0.017595496,0.017196806,-0.0034420192,0.007628259,0.0111898845,-0.0044221305,-0.00040927966,-0.012884315,-0.02380176,-0.0043158135,0.0039071566,0.041038435,0.002232661,0.00014442111,-0.016346268,0.013588666,0.0008335102,0.004777629,-0.004455355,0.025609154,0.017754972,-0.0050567114,-0.010512113,-0.00502681,-0.026379954,0.0048872684,-0.020758431,-0.0067810435,0.008166489,0.007694707,0.07803682,0.02307083,-0.016067186,-0.0059703747,0.014658483,0.014565456,0.008624982,-0.0049105254,-0.026273636,-0.005787642,-0.013741497,-0.02691154,0.022060817,-0.018459322,-0.00312639,0.0016470859,0.017103778,0.016931012,-0.016558902,-0.02420045,0.0155621795,0.0010947349,-0.01857893,0.009714734,-0.0016130311,-0.005050067,0.011987263,0.004687924,0.008133265,-0.011475612,0.011508836,0.016904434,-0.015362835,-0.010126713,0.011987263,0.012179963,-0.0071498314,0.008492086,0.0002466891,0.017568916,-0.0056049097,0.013508928,-0.0060168887,-0.007196345,0.018472612,0.023190437,-0.033224124,-0.0011902542,-0.01627982]},{\"id\":\"4dbd8d9c-2ccd-4797-8916-4ea586f2023b\",\"text\":\"It would be way more convenient for us to just copy link and post it on here instead of you guys trying to link it. Because most of the time it doesn't read my profile. So, it's a lot of time wasted trying to connect my videos. \",\"vector\":[-0.04173016,0.019629216,0.007369173,-0.027820108,0.010176164,0.008217187,0.0017206789,-0.006790683,0.012923991,-0.0046246327,-0.011129358,0.0057421704,0.0186563,-0.0051899753,-0.0034150628,-0.023060713,0.020378623,-0.011865618,0.01981328,-0.021864291,-0.026426474,-0.011076768,-0.015645524,-0.01981328,-0.009236118,-0.013443317,0.009998673,-0.014909264,0.0025489714,-0.022377044,0.010794097,-0.009071774,-0.0129568605,-0.044280775,-0.028635252,-0.0131212035,0.008453842,0.00015972157,-0.008907431,-0.030896623,-0.002885876,-0.0043945517,0.00200335,-0.028661547,-0.010531147,0.021693373,-0.0055153756,-0.0129568605,-0.017354699,0.020838786,0.0086247595,-0.020549541,-0.04683139,-0.028898202,0.008289498,0.015264247,0.0036911604,0.013265827,0.003697734,-0.028819317,-0.014449101,0.020155115,-0.024467496,-0.009209823,-0.009985525,-0.010110427,-0.005896653,-0.001510319,0.04004728,-0.0074677793,0.01830132,0.01043254,0.00069476315,0.0037470371,0.030844033,0.015132771,-0.014133561,0.0043616826,-0.01581644,0.01001182,0.026413325,-0.010117,-0.013357859,0.019405708,0.021298949,-0.0024437914,-0.006090579,0.013923202,-0.017118044,-0.021483013,-0.002821782,0.019155907,0.004825132,-0.0051538195,0.004851427,0.010202459,-0.012319206,0.026294997,-0.013305269,-0.009104643,0.009071774,0.01001182,-0.022022061,-0.003382194,0.0062812176,-0.021640783,-0.008743087,-0.023455137,0.022784615,-0.020234,0.0146857565,0.03215878,-0.020615278,0.013739136,0.001273664,-0.015303689,0.0019671945,-0.023718089,-0.007211403,-0.011070194,0.028398598,0.008434121,0.008315793,-0.0024651561,0.0040658643,-0.0116684055,-0.02160134,0.0009145729,0.003464366,-0.0050650737,0.042966027,0.016815651,0.004667362,0.012943713,-0.031422522,0.010143296,0.025585033,-0.00557454,-0.002468443,-0.020141969,0.021851143,0.010577163,-0.01714434,-0.005357606,-0.015369426,0.025348378,-0.013305269,-0.0018800923,0.0057881866,0.0047232388,0.00024405045,0.009439904,0.0030798016,-0.00016537089,-0.00915066,0.018314466,0.00085130055,0.015947916,-0.004125028,-0.006744667,0.0041611833,0.024612118,0.002867798,-0.015106476,0.020536393,0.035314184,0.0061464556,-0.010978161,-0.014159856,0.007257419,0.003516956,0.011458045,-0.022613699,0.0043123798,-0.0073363045,0.023849564,-0.015895326,0.0021496161,-0.0116947,-0.015658671,-0.01332499,0.005640277,0.0017453305,0.015448311,-0.011122784,0.0008660915,0.033052813,-0.018537974,0.00057355966,-0.0037075947,0.0076715657,0.0056238426,0.013949497,-0.0025423977,-0.6533781,-0.00600512,0.029555578,0.014843526,0.0031093834,0.037943684,0.0022301446,0.016789356,-0.01749932,0.016145129,-0.036365982,-0.007402042,-0.0019918461,-0.008243482,-0.007112797,-0.012082552,0.040678363,-0.030502198,-0.020470656,0.016329193,-0.016171424,0.0007950128,0.016513258,0.010853261,-0.0014265036,-0.0068301256,0.009669986,-0.025532443,-0.016145129,0.036208212,-0.0074612056,0.00632066,0.010314213,-0.01718378,0.05198521,-0.017604502,-0.01567182,0.0016828799,0.012976581,0.012148289,-0.04194052,0.0010756297,-0.00051316334,0.007954237,-0.010425966,-0.012970008,0.008072564,-0.0008340445,-0.0021167474,-0.012450681,-0.0011857401,-0.02470415,-0.011352865,-0.001247369,-0.012384944,-0.008033122,0.017578207,-0.025782246,0.009242692,0.009827755,-0.0027757657,0.0144096585,-0.005817768,-0.027714929,-0.014896116,-0.009354445,-0.026452769,-0.0036024146,-0.009308429,0.0010772732,0.0115303565,0.0019080308,-0.01586903,0.024598971,-0.016092539,0.041099083,0.019839576,-0.0078293355,-0.03988951,0.0065737492,-0.00089156476,0.0056567113,0.00006768908,-0.0059722513,0.015080181,0.028372303,-0.000023097999,0.010958441,0.017420435,-0.005926235,0.019839576,0.0025539016,-0.00053411716,-0.023626056,0.017920041,0.018235581,0.0009268987,-0.003806201,0.020641573,-0.0017371133,-0.03752296,-0.011688126,0.0075861067,-0.009873772,0.03402573,0.017709682,-0.01728896,0.0039245286,0.023231631,-0.022153536,-0.010228754,-0.016408078,0.015895326,-0.019642364,-0.022429634,-0.029844822,0.018314466,0.014330774,-0.002502955,0.0038390697,0.00794109,0.009163807,-0.006935306,0.003295092,0.0053345975,0.02098341,0.017420435,0.000031045558,0.0042630765,-0.00216112,0.0021134606,-0.0036878735,0.027898993,-0.016105685,-0.02086508,0.029713348,0.018643154,-0.0014396511,0.001384596,-0.015382574,0.013620809,-0.0005645207,0.00019947221,-0.003881799,-0.010754654,0.0026064916,-0.00077446987,0.0059952596,-0.0016467243,0.0101038525,0.004647641,-0.027846403,-0.008946873,0.014067824,-0.0044800104,-0.012621599,-0.010189312,-0.023271073,0.0064094057,-0.028766727,0.018682595,0.010807244,-0.0024963813,-0.01106362,-0.0029926994,-0.0051735407,-0.0064159795,-0.0075203693,-0.017315255,-0.014869821,0.0043682563,0.0076781395,-0.014554282,-0.0024700863,-0.009111216,0.02664998,0.012253469,0.014291331,0.0070010433,-0.02633444,0.0019885593,0.011142505,-0.0013574793,-0.017617648,0.023836415,0.02559818,-0.016000506,0.0059130876,-0.044806678,-0.000633956,0.007612402,-0.011780159,-0.035366774,-0.0059722513,0.0030058469,0.018971842,0.020812491,0.028530072,0.004404412,-0.00584735,0.007139092,-0.021824848,-0.0070010433,-0.02396789,0.0146857565,-0.018774629,0.0016343985,-0.028056763,0.033315763,0.00057725736,0.010222181,-0.018209286,0.008657628,-0.023100156,0.017210076,0.023718089,-0.009893493,0.008756234,-0.011339718,0.024901362,-0.010859834,-0.035366774,0.0047593946,-0.023205336,0.0075598117,0.030975508,0.0048974436,0.04201941,0.021193769,-0.029608168,-0.017591354,0.006376537,-0.025808541,0.026097786,0.01986587,0.0065507414,0.01316722,0.0005756139,0.031159572,0.0047659683,-0.011464619,0.011234538,0.038154043,-0.017867452,0.036471162,0.029450398,0.036313392,-0.018945547,-0.0051078033,0.012029962,-0.0073625995,0.037023358,-0.015132771,0.012825385,0.028924497,-0.0260189,-0.014935559,-0.0038390697,0.033210583,0.020615278,0.0061628902,-0.025151165,-0.0033756203,-0.00985405,-0.01106362,-0.006790683,0.010958441,0.007546664,0.030765148,-0.013725989,0.00050905475,-0.011043899,0.012549288,-0.04188793,-0.0026410038,0.0019343258,0.0057421704,0.014357069,0.013962644,0.0047363867,-0.0017995639,-0.021430423,-0.004716665,0.0030748714,-0.015777,-0.030344427,-0.018774629,0.015303689,-0.011773585,0.006485004,0.0081317285,0.011254259,0.02217983,-0.0032868746,-0.012089125,0.0035038085,0.047068045,-0.022797763,0.013403875,0.015895326,0.00874966,0.007086502,0.0007814545,0.013318417,0.027741224,0.031106982,-0.008992889,-0.013923202,-0.010301066,0.0012868114,-0.007645271,-0.0059426697,0.003084732,-0.0007498183,-0.013127778,0.00081596663,0.000864448,-0.013870612,0.0019326824,-0.00458519,-0.029082268,-0.01592162,-0.015369426,0.021732816,0.074993335,0.012923991,0.0051275245,0.034446448,-0.014120414,-0.00300256,0.00085540913,-0.04191423,0.01981328,-0.00495332,0.0046147723,-0.00003343368,-0.02396789,-0.009354445,0.009617396,-0.011280554,0.035393067,-0.018432794,0.007454632,-0.013384154,-0.00557454,0.012220601,0.024441201,0.01106362,0.005242565,0.0081580235,0.013673399,0.014738346,0.0010887772,0.0038292091,0.005166967,0.0077241557,0.015553491,0.015172213,-0.0031307482,0.023586612,0.020194558,0.021745963,0.015737556,0.0060675708,0.020063084,0.03494605,-0.000018604225,-0.015566639,0.020904522,-0.027557157,0.0009975665,0.008756234,0.028687842,-0.027189028,0.027320502,-0.011162227,-0.02428343,-0.0019704814,-0.0074349106,0.0010394742,-0.011319997,0.0013566576,-0.010222181,-0.01592162,-0.0055515314,0.013883759,-0.0043386747,-0.0016187858,-0.022771468,-0.030870328,-0.022363896,-0.00495332,0.0020920958,0.0036287096,0.02149616,-0.012404665,-0.030502198,-0.010117,-0.019169053,0.0087891035,0.021614488,-0.013029171,0.006682216,0.00008735897,-0.029950002,-0.03757555,-0.0032079897,-0.027636042,-0.0113923075,-0.009551658,-0.01703916,0.0108729815,-0.029055974,0.011333144,0.014896116,0.022166682,0.022114092,-0.01053772,0.018879808,0.023376253,0.007572959,0.033473533,-0.0033378212,-0.0113660125,0.013489334,-0.025795393,-0.012476976,-0.032842454,-0.003461079,0.009479347,0.024691002,0.019563477,-0.008664202,-0.019261086,0.017459879,-0.0021956323,0.008079138,0.00004437281,0.016763061,0.020010494,0.0027396102,0.014620019,0.0239153,0.008907431,-0.018235581,-0.03194842,0.00395411,-0.016868241,0.005798047,0.00094415474,0.014606872,-0.059163745,-0.007579533,0.010741507,0.0016804147,0.012121994,-0.0038982334,-0.029371513,-0.017223224,-0.027504567,-0.004286085,0.011734143,-0.025926867,0.012766222,0.00032231916,0.022455929,-0.0044701495,-0.026518505,-0.01572441,-0.03402573,-0.0040757246,-0.0113660125,0.013620809,0.022166682,0.01734155,0.020404918,-0.026978668,-0.027820108,0.0020789483,-0.020615278,-0.037943684,0.013213237,0.02270573,0.0061628902,0.017157486,-0.04288714,-0.009985525,0.005775039,0.022035208,-0.0077504506,0.003219494,-0.020089379,0.0016508328,0.0033263173,0.019090168,0.012437534,0.026360735,0.013739136,0.00231889,0.016224014,-0.008559022,0.0010230398,-0.0058309156,-0.016197719,0.0029433963,0.009301855,-0.006274644,-0.014357069,-0.02486192,0.0037207422,0.011142505,-0.020838786,0.014357069,-0.0044964445,0.003917955,0.00049796153,0.0097751655,0.004503018,0.017959483,-0.0015094972,-0.0012021745,-0.012851681,0.022324454,0.018327614,-0.0040001264,-0.0047692554,-0.026413325,0.0051801144,-0.021009704,-0.0031767644,-0.016092539,-0.02612408,0.002979552,-0.0127465,-0.013193515,-0.04241383,-0.01886666,0.009683133,0.008559022,0.0063436683,-0.025690213,0.0049303123,-0.007231124,-0.0048054107,0.023718089,-0.010531147,-0.0029861256,0.023060713,0.03221137,0.021732816,0.022061503,-0.008414399,0.006139882,-0.0046509276,0.0044767233,-0.0015004583,0.022784615,-0.029476693,-0.00066928985,-0.016486963,-0.0063896845,-0.028240828,-0.047173224,0.021759111,0.0056337034,0.0006598401,0.00055301667,-0.0095845265,-0.015461459,0.0058670714,-0.024046775,0.016237162,-0.0074414844,0.008473563,-0.0094464775,0.033946842,0.008039695,0.029660758,0.0054200566,0.00794109,-0.033342056,-0.0092558395,-0.012168011,-0.009242692,0.017249519,0.011412029,-0.0058835056,0.006300939,0.006376537,0.011681553,-0.019892165,-0.031974718,-0.0070010433,0.017525615,0.00058670714,0.016250309,-0.010833539,-0.012845106,0.014527987,-0.009702854,-0.0003046522,-0.02354717,-0.0053707534,-0.0057586045,0.0127465,-0.0009885276,0.016250309,-0.014041529,-0.0013566576,0.013364432,0.014094119,0.0014495117,0.025400968,-0.056954965,-0.005249139,-0.018524826,0.0022400052,-0.0019014571,-0.0036550048,-0.0012038179,0.008019974,0.032737274,-0.016723618,0.011438324,-0.0004036693,0.014199299,-0.008263203,0.01211542,0.03231655,-0.041046493,-0.00024918618,-0.0043978384,-0.02249537,0.011970798,0.019576626,0.021851143,0.008250056,-0.0129305655,0.0027823395,0.010787522,0.002867798,-0.017643943,-0.026242407,0.0042827977,0.0047955504,0.00985405,0.01576385,0.0065770363,0.0066230525,-0.023231631,0.015053886,0.0045621824,0.002412566,-0.0063962582,-0.018275024,0.010616605,-0.0053345975,-0.041177966,-0.008683923,-0.019497741,-0.018235581,0.021561898,-0.02628185,-0.00022309662,-0.011089915,0.009689706,-0.003648431,0.032921337,-0.026005752,-0.0057125883,-0.010807244,-0.026689423,-0.01618457,-0.013397302,-0.023560317,0.010274771,-0.0011339717,-0.023428842,-0.012897696,-0.016224014,-0.0478306,-0.006955027,0.010826966,-0.001390348,0.004203913,0.0054167695,0.004512879,0.03144882,0.0042992323,0.024638413,-0.015303689,-0.013712841,-0.004463576,0.03655005,-0.006816978,0.012148289,-0.033157993,-0.00595253,-0.014606872,0.008335514,-0.0017108183,0.038259223,-0.00015027181,0.010314213,0.00030691194,0.0008504788,0.003490661,-0.008388104,0.0069944696,-0.037654437,0.010550868,0.012417813,0.03181695,-0.004069151,0.007211403,-0.01844594,0.0006820265,-0.003539964,-0.011898487,-0.008986316,-0.02643962,-0.028004173,0.0046312064,0.00915066,-0.008802251,0.025532443,0.007822762,-0.021206915,0.0038653647,0.024559528,0.003178408,-0.005298442,0.022889795,-0.029844822,-0.022245567,0.00070421293,0.04167757,-0.017565059,-0.007526943,-0.005222844,-0.022022061,0.015027591,0.0023665498,-0.008342088,-0.0029811955,-0.024506938,0.0063075125,-0.019576626,-0.004295945,-0.008374956,0.0030518633,-0.016066244,0.0013673399,-0.0029959863,0.011287128,-0.038969185,0.004233495,0.014304479,-0.010669195,0.00027917893,0.22214015,-0.0126281725,-0.0026623686,0.056218706,0.00568958,0.007106223,-0.0024487218,-0.0018718751,0.0026311432,0.011057046,0.0070667807,-0.01739414,0.0018653014,-0.015224804,0.013555071,-0.030134067,-0.018958693,-0.022626845,-0.03139623,-0.01201024,0.013390727,0.0022712303,0.016039949,-0.0002818495,0.034604218,0.0013344712,0.0029466832,-0.009472773,-0.0005065896,0.02118062,-0.031238457,-0.0045523215,0.016368637,-0.00864448,-0.04483297,-0.0008065169,0.00089567335,-0.008900857,0.020247148,0.036234505,-0.009262413,-0.013134351,-0.0032063462,-0.031133277,0.008276351,-0.007428337,0.0024865207,-0.011247685,-0.018156696,0.020930817,0.013022598,-0.019524036,0.0070404857,0.017538764,-0.015290542,-0.013883759,-0.00165905,0.001746974,0.0034840873,0.0078030406,0.035182707,0.028030468,-0.0061004395,-0.0023353244,-0.024533233,0.021680227,0.014067824,0.0032211372,0.023481432,0.0024733732,0.015684966,-0.019931609,-0.013403875,0.015461459,-0.018840365,-0.024980247,0.043702286,0.023902154,0.037917387,0.016276604,-0.004611485,-0.017104896,-0.034499038,-0.027609747,-0.009413609,-0.016118834,0.024980247,-0.008184318,0.027662337,-0.008473563,-0.010636327,-0.00070996495,-0.046068836,-0.023560317,-0.0028908064,0.010840113,-0.012246896,-0.016302899,-0.0031685473,0.0049138777,-0.0034545052,0.015277394,0.035682313,0.003411776,-0.0073428783,-0.006034702,0.001968838,0.038232926,0.021417275,0.009479347,0.0074151894,-0.022574255,0.011464619,-0.010603458,-0.0036845866,0.017302109,0.03160659,-0.028950792,0.0127925165,-0.0011076768,-0.007862205,-0.030186657,0.025874278,-0.002912171,0.020049935,0.010504852,-0.00043838692,0.024612118,-0.016368637,-0.017643943,0.0071522393,0.030896623,0.008532727,-0.011872192,-0.012851681,0.005673146,0.018695744,-0.017801713,0.0014856674,0.012345501,-0.014146709,0.010649474,0.009597674,-0.00019341204,0.009367593,-0.014370216,0.003332891,-0.006928732,0.016723618,0.011563226,-0.006366676,0.011418602,0.0021463293,0.0018242155,0.040468,0.02633444,-0.0115303565,-0.038495876,0.024046775,-0.022074651,-0.0024421478,-0.009689706,0.016868241,-0.012555862,-0.028135648,0.0011627319,-0.16628957,0.014856674,0.008388104,-0.035209004,-0.014620019,-0.026926078,0.020378623,-0.0015357923,-0.009006036,-0.003881799,0.005561392,0.012858254,-0.0041546095,-0.012562435,-0.024612118,-0.0022268577,-0.032895043,0.002506242,0.026321292,-0.0048481403,0.006580323,-0.027267912,0.028451188,0.0016302898,0.004177618,0.0005595904,-0.0074677793,0.016828798,-0.0057125883,-0.033000223,-0.010209033,0.015211657,0.035997853,-0.0037437503,0.004407699,-0.005150533,0.006557315,-0.012253469,0.006024841,0.016855093,0.017367845,0.017801713,-0.006238488,0.008282924,0.0002028618,0.024086218,0.036365982,-0.017828008,0.0037371765,-0.014199299,-0.0084604155,-0.020404918,0.03478828,0.0111753745,-0.018669449,0.028267123,-0.006662495,0.013239532,-0.016657881,-0.0021167474,-0.010228754,-0.04446484,-0.030344427,-0.028898202,-0.030581083,0.004226921,-0.024480643,-0.00017256092,-0.00064628175,0.008828546,0.0010550867,-0.015027591,-0.0019671945,0.0059722513,0.0064422744,-0.017170634,-0.042860847,0.029476693,0.0027675484,0.014988149,0.0029779086,0.007211403,-0.006613192,0.020049935,-0.017893746,0.014317626,0.017657092,0.0032211372,0.0014503335,-0.022929238,0.033447236,0.0025456846,-0.0223376,-0.02633444,0.024349168,0.004716665,0.019484593,0.015658671,-0.0032030593,-0.004818558,-0.0037930533,0.00038333176,-0.022429634,0.027951583,0.024217693,0.004979615,-0.016881388,0.009111216,0.0265448,-0.004098733,0.009163807,0.002254796,0.024691002,0.023902154,0.0047035175,0.017380994,0.0036319967,-0.01839335,0.008992889,-0.013712841,0.033342056,-0.016039949,-0.0060281283,-0.0097488705,-0.01714434,-0.011931355,-0.12590045,-0.033210583,0.024007333,-0.0065967576,-0.019142758,0.023231631,0.0049763285,0.019392561,0.0037601846,0.032526914,-0.014922411,-0.030002592,-0.0043715434,-0.017683387,0.00846699,-0.022140387,-0.0033690466,-0.0006627161,-0.027320502,0.031369932,0.0010435827,-0.004295945,0.017578207,-0.011813028,-0.0013122847,-0.028871907,-0.007645271,0.023336811,0.027425682,0.002991056,0.0045063053,-0.017604502,0.013725989,-0.029897412,-0.014777789,0.003092949,-0.014672609,-0.014988149,0.028083058,-0.027609747,-0.006586897,0.008309219,0.007691287,-0.013476186,-0.0036352836,-0.009032331,0.0067052245,0.02217983,-0.010965014,-0.011944503,-0.007402042,0.011734143,-0.028845612,-0.0129305655,0.028766727,-0.0132592525,-0.00066025095,0.013594514,-0.020891376,0.013883759,-0.035498247,-0.02375753,-0.017841157,0.018012073,0.023113303,-0.014291331,0.0094464775,-0.0024207833,0.0077767456,0.0137522835,0.00039668469,0.025624475,-0.011122784,0.02365235,-0.035524543,-0.012549288,-0.014435953,-0.004410986,0.018169843,0.0024158529,-0.012970008,-0.007717582,0.01976069,-0.024059923,0.0121614365,-0.0011290414,0.009492494,0.013311842,-0.006438988,-0.046436965,-0.005959104,0.017788567,-0.0023764104,-0.006346955,-0.020549541,0.032526914,0.010531147,0.016053095,0.011490914,0.0120233875,-0.016671028,-0.0021019564,-0.025716508,-0.00038887837,0.010623179,-0.003885086,-0.0021397555,-0.0009885276,-0.0019704814,-0.0069090105,-0.014764641,0.002765905,0.0048678615,0.019234791,-0.019247938,0.0075861067,0.0042926585,-0.002088809,0.026623685,-0.029134858,0.011661831,-0.006300939,-0.0052557127,-0.012858254,0.022087798,0.020207705,0.015093328,0.025742803,-0.00794109,-0.006438988,-0.020549541,-0.029818527,-0.011267407,-0.04173016,0.0095845265,-0.004483297,0.0020000632,-0.02428343,0.019786986,0.009315003,-0.0068366993,0.021890586,-0.0036615785,-0.014107266,-0.00072023645,-0.008197466,0.0239153,-0.001591669,-0.033420943,0.0055515314,0.005936096,0.0038029142,0.019287381,0.008223761,-0.028556367,-0.019576626,-0.0373126,-0.024138808,0.018314466,-0.0021167474,0.020431213,-0.019576626,0.044149302,0.010794097,0.017946336,-0.013252679,0.02002364,0.014633167,-0.007875352,0.019642364,0.014988149,-0.019274233,-0.020957114,0.020194558,0.007645271,0.024112513,0.011103063,0.0137522835,0.001393635,0.033000223,0.0010337221,-0.0021151039,0.009551658,-0.002821782,-0.024664707,0.026032047,0.01137916,0.033157993,0.008138302,0.017367845,-0.011471192,0.0032803009,-0.03920584,0.01311463,0.0040855855,0.0031291049,0.010965014,0.012937139,-0.019129612,0.016316047,-0.0026557948,0.027898993,0.018853514,-0.0078293355,-0.012759647,-0.008867988,-0.014475396,0.026360735,-0.0108729815,-0.032526914,0.015185361,0.010892703,0.0038456435,-0.015329984,-0.0028250688,0.0040461426,-0.018367056,0.021062294,0.0019343258,-0.023060713,-0.029082268,0.041151673,0.011628963,0.023796974,0.018998137,-0.0062614963,0.031106982,-0.008795677,-0.013555071,-0.037496667,0.015408869,0.0118327495,-0.008986316,-0.003908094,0.0043912646,0.006922158,0.0089534465,0.016421227,-0.0033296042,0.023179041,-0.029187448,0.07352082,0.019287381,-0.020168263,-0.007448058,-0.0068761418,0.0249671,0.030212952,0.0041053067,-0.0041348883,0.009472773,-0.01572441,-0.009190102,0.017302109,-0.013502481,-0.0044537154,0.012457255,-0.016710471,0.03236914,-0.01279909,-0.026084637,0.013818021,-0.022534814,0.020681016,-0.013403875,-0.019944755,-0.0034873742,0.006816978,0.011872192,-0.02544041,-0.014278184,-0.00932815,0.016394932,-0.027241617,0.003408489,0.010557442,0.008440694,0.00049837236,0.01248355,0.015211657,0.036523752,0.0212858,-0.000023316268,-0.035971556,-0.02596631,-0.0036648654,0.014593724,-0.026978668,-0.0077833193,-0.022061503]},{\"id\":\"53428e1e-f34f-4a15-8c5f-ea5a799fad30\",\"text\":\"Bad voice problem. Gets worse when I get nervous. \",\"vector\":[-0.019924242,-0.004560214,0.031004433,-0.014158021,-0.0004652078,0.013366578,-0.02187144,-0.055978827,-0.007644326,-0.0028721185,-0.00468584,0.002938072,-0.01327864,0.002967908,0.0022816774,-0.003718522,0.023278449,0.005496126,0.0340697,-0.027110035,-0.011507317,0.004487979,0.0022581227,-0.0010748853,-0.002352342,-0.0049904822,0.0063880687,-0.019597614,0.022926698,0.010194529,0.033215445,-0.004871138,-0.012191977,-0.0131278895,-0.0055181105,0.009145553,-0.0017304946,-0.03002455,0.008391799,-0.016343908,0.0146856485,-0.030929057,0.017776042,0.007625482,-0.03226069,0.0344717,-0.017838854,-0.023278449,-0.020137805,0.012273635,0.028190415,0.0030778307,-0.012926889,-0.010276185,0.0013944457,0.0024088735,0.01229876,-0.0035080987,0.0039854767,-0.0168841,-0.011601537,-0.0065953513,-0.013153015,-0.012845231,-0.017688103,0.009629212,-0.0193338,0.006180786,-0.007926984,-0.00395407,0.011262347,0.023052322,-0.01498715,0.022449318,0.012223384,0.018052418,-0.017826293,-0.010533718,0.0018686828,-0.00947218,0.034697827,-0.030878806,-0.0056908457,0.027562287,0.0298738,-0.006532538,0.014082645,0.0036274432,-0.017386602,-0.020916685,0.015100214,0.017110225,0.00458848,0.005477282,-0.0055086887,0.0035300832,0.035124958,0.025439212,0.0075061377,-0.027863787,-0.0048931222,-0.009315148,-0.041607242,-0.00100108,-0.027235659,0.006545101,-0.012166852,0.01566553,0.009830214,-0.021683002,-0.0014745321,0.0150750885,0.013957019,-0.021431752,0.034396328,0.012179415,0.023454325,0.007926984,-0.018768486,-0.012725887,0.025100023,-0.012889201,0.016570035,-0.008756114,0.0052448744,0.0014941611,-0.029748175,-0.033567198,0.0041142427,0.0063880687,0.02733616,0.019899117,0.026632655,-0.008762395,0.0035363645,0.007776233,-0.023127697,0.0015930914,0.0016990881,-0.009641775,-0.009327711,0.03266269,-0.025439212,-0.0031500654,-0.01659516,0.014145458,0.006300131,-0.0034452858,0.01722329,0.0069471034,0.011394254,-0.01703485,0.019999618,-0.012305041,-0.00039434704,0.01317814,-0.0035457865,0.004720387,-0.011249784,-0.019007174,0.0030684087,0.01869311,0.018077543,-0.0033793324,-0.019396614,0.014572585,-0.0068717278,-0.025012083,-0.011318879,0.0021843174,-0.012763575,0.012807543,0.000024425863,0.0066016326,0.0086807385,0.0055338135,-0.0073867934,-0.0108226575,-0.0012562574,-0.002444991,-0.042964,0.016029844,0.0081279855,0.004164493,-0.013504767,-0.0017399164,0.022499569,-0.011595256,0.020527245,-0.0027794694,-0.0037091,0.000509962,-0.00439376,-0.027964288,-0.67978597,-0.0061776456,0.0010214943,0.023190511,0.008743552,0.012700762,-0.00028089128,0.00033997465,-0.033893824,0.00037393285,-0.009660619,-0.0020194338,-0.00746845,-0.0026035933,0.0075626695,-0.014095208,0.005144374,-0.014321334,0.014245958,-0.01762529,-0.00033585256,0.009459618,-0.014572585,0.01224851,0.0145223355,-0.012939451,-0.0010387679,-0.024057329,0.00048758488,0.013630392,-0.00473609,0.003969773,-0.0032631285,-0.000673668,0.069496155,-0.0070601664,-0.009164398,0.020049868,0.015879093,0.005144374,-0.02298951,0.0035395052,-0.016431846,-0.018881548,-0.030351179,0.0031861828,-0.0022879587,0.00043969008,0.0021544814,0.0056311735,0.0051192488,0.008303861,-0.00522289,0.025589963,0.022876447,-0.017688103,0.013555017,-0.012864076,-0.02493671,-0.0098176515,-0.00072902185,0.011808819,-0.00658907,-0.011513599,0.002021004,0.012336447,-0.011494755,-0.0072548864,0.023366386,-0.014949462,0.012864076,0.00021160085,-0.024710583,0.013102764,0.036079712,0.027210534,-0.0033102382,0.008762395,-0.0027402113,-0.010144278,0.020703122,0.0002726471,-0.009660619,0.005992348,0.029170295,-0.019974492,-0.013467079,-0.005219749,-0.002035137,-0.00004249683,0.013693205,0.015263527,0.023077447,-0.017449414,-0.012832669,-0.0000018984944,-0.021243311,0.022273444,0.019321239,-0.0027904618,0.0020806761,0.010747282,0.00072666636,-0.01190932,0.009246054,0.008021203,-0.032913942,0.005213468,0.010018652,0.0065011317,0.0039980393,-0.0054458757,0.024924146,-0.011808819,-0.0034327232,-0.030426553,0.030099927,0.00039827285,0.02293926,-0.037059594,0.016896661,-0.0053453753,0.026582405,0.0030055956,-0.011318879,-0.0075187003,-0.013756018,0.0069973534,-0.016808724,-0.027662788,-0.007600357,-0.021833753,0.016180595,-0.0013897347,0.024873896,0.001752479,0.028014539,-0.011281191,0.010602812,-0.011281191,-0.03246169,-0.018052418,0.0044188853,0.027461786,-0.008360392,0.0071041356,-0.010332717,0.0021073718,0.020577496,0.013705768,0.014095208,0.005062717,0.0052291714,0.005477282,0.008310143,-0.013642955,0.020992061,-0.008699582,-0.016193157,-0.021582501,0.015527341,0.020979498,-0.02479852,-0.012964576,-0.010923157,0.0018608312,-0.02665778,0.012091477,-0.027210534,-0.023504576,0.001991168,-0.011921883,0.006991072,0.0096229315,0.008278736,-0.02430858,0.00012287767,-0.013705768,-0.006165083,-0.007493575,-0.00012572388,0.0068717278,-0.0030150176,-0.004142509,0.025062334,0.0040106014,0.014271083,0.008774958,-0.027989414,0.022574944,-0.035753086,0.012581417,-0.036230464,0.0063880687,-0.0151379015,0.0002486997,0.016130345,0.018190607,0.007813921,0.010263623,0.0058070496,0.01225479,0.007958391,-0.0027512037,-0.0031610576,-0.0024497018,0.010288748,-0.017110225,0.011871632,0.010470905,0.0033699104,0.011639224,-0.00039395445,0.015678091,0.00042045364,0.03133106,0.013115327,0.006551382,0.0038504289,-0.0135173295,-0.028039664,-0.0005770932,0.03271294,0.01820317,-0.0029427828,0.004623027,0.024924146,0.0027998835,0.032788318,-0.010357842,-0.012506042,0.0097862445,-0.0008628918,-0.01410777,0.002396311,-0.01869311,0.0063032713,-0.011387973,0.008178235,0.015791155,-0.012179415,0.0044345884,0.017449414,0.007883015,0.026381405,-0.0031437841,0.023341263,-0.009120428,-0.021833753,0.0053610783,-0.022562383,-0.02376839,-0.009679463,-0.0114382235,0.014183146,-0.02552715,0.010502311,-0.009955839,0.011249784,0.026934158,0.008266173,-0.008988521,0.027587412,0.0013646096,0.017662978,0.001103151,0.00961665,0.0029176578,-0.0027025237,0.013102764,-0.020615183,-0.005392485,0.009893027,-0.033315945,0.032059688,0.0021937394,0.0036494276,0.04115499,0.015024838,0.0052009053,0.02011268,-0.017512228,0.022298569,-0.00018353135,0.00400432,-0.008611645,0.0023444903,0.009246054,-0.012016102,0.033969197,-0.0010968697,0.031205432,-0.00010972623,0.007876733,0.0007890867,0.014384147,0.02811504,0.004764356,0.015037401,-0.005602908,-0.008071453,-0.006030035,-0.03359232,-0.01410777,-0.0076506073,0.013605267,-0.009779964,-0.020652872,0.0036054587,0.010313873,-0.0012491909,-0.00054215355,-0.013266078,-0.0050250296,-0.0090387715,-0.004579058,-0.014660523,-0.017411727,0.031858686,0.0033228006,-0.0011675342,-0.013542455,-0.0034829734,-0.007229761,0.080400474,0.02474827,0.014472085,0.008140548,-0.0023994516,0.010408092,-0.008184517,-0.042888626,0.04514989,-0.0055181105,0.022675445,-0.014195709,0.011300035,0.015602716,0.0003248603,0.00035351867,-0.0033699104,-0.013467079,-0.017047413,-0.0071481043,-0.025125148,0.004968498,0.0036839747,0.020150369,0.009158116,0.0008424776,-0.018366482,-0.008171954,0.033315945,0.0024277174,-0.008749832,0.01405752,-0.015514779,0.006532538,0.012160571,0.020615183,-0.0046732775,0.019396614,0.004974779,0.017989606,0.010671906,0.015188152,0.0017446274,-0.007242324,0.02045187,-0.007600357,-0.013190703,0.030401427,0.0033008163,0.006482288,0.0030228694,0.0028140165,-0.013341453,-0.013906769,0.017122788,0.008222205,-0.007889296,-0.019157926,-0.010131716,0.0039163823,-0.00449112,-0.022235755,-0.0000124337585,-0.008335267,-0.002225146,-0.024182955,-0.0150750885,-0.012235947,-0.03645659,-0.015590154,-0.00021631182,-0.013944456,-0.015879093,-0.003900679,-0.0010921587,0.00683404,0.0041142427,-0.022147818,-0.012512323,0.015451966,0.015451966,-0.016921787,0.015929343,0.004378057,0.00008023362,0.014359022,0.016419284,0.004359213,-0.007813921,-0.010194529,0.008454612,0.010452061,0.0131278895,-0.039119855,0.009183241,0.004896263,0.02265032,0.011268629,-0.005593486,0.02200963,-0.00297733,-0.03515008,-0.024710583,0.0069596656,0.02016293,-0.0026192965,0.03381845,0.032135062,-0.008372955,-0.006526257,0.0012876638,-0.0047266684,0.006972228,0.009453337,0.025828652,0.036004335,0.006183927,0.0074119186,0.013957019,0.0029977441,0.00034939658,-0.030401427,0.027260784,0.009641775,-0.019873992,0.020954372,-0.0012978709,-0.008316424,-0.027939163,0.007751108,0.010307591,-0.0013143593,-0.015426841,-0.042084623,-0.03216019,-0.021984505,0.0073114177,0.006111692,-0.025263336,-0.040778115,-0.0069596656,0.010276185,-0.024145266,-0.016456971,0.010948283,-0.019145362,-0.031130057,-0.019145362,-0.04467251,0.013856519,-0.00483345,0.020715684,-0.021607626,-0.0055181105,-0.012744731,-0.042536873,0.0033322226,0.031984314,-0.009063897,0.01078497,0.020828746,0.01444696,0.026984408,0.022976948,-0.024685457,0.0045916205,-0.018039856,-0.014082645,-0.029949175,0.030175302,-0.0039226636,0.008322705,0.021054873,-0.031506933,0.0070036347,0.0023790374,0.0021827472,-0.0020524105,-0.010577687,-0.015552466,-0.009076459,-0.0042649936,-0.006023754,0.009497305,-0.002567476,-0.008850333,0.005408188,-0.009208366,0.010766125,-0.013492204,-0.0061336765,-0.005182062,0.03308982,-0.0075375442,0.01317814,-0.009491025,-0.022034755,-0.0034484265,-0.028868794,-0.005238593,0.0078390455,0.027939163,-0.0052699996,0.004968498,-0.02806479,0.0053076874,-0.017537354,-0.02655728,0.0055086887,-0.00037550318,0.0032694098,-0.007160667,-0.025602525,0.0135801425,0.0013135741,-0.0033573478,-0.0076129194,0.005185202,-0.017537354,-0.028466793,-0.016042406,-0.013090202,-0.029748175,-0.009101585,0.03944648,0.029321047,-0.009484743,0.00810286,-0.009409368,0.016821286,-0.010539999,0.0017179319,-0.009346555,-0.0043560723,0.0055557983,0.03281344,0.0026192965,-0.021984505,-0.026532156,0.0032442845,-0.011067627,-0.005979785,-0.01000609,-0.0023696155,-0.011387973,0.02493671,-0.0021026607,0.00095789623,-0.011161847,-0.021934254,-0.008234767,0.0046638553,0.00034233014,0.013605267,0.0065765074,0.02992405,-0.012581417,-0.008800083,-0.028140165,0.0060928483,-0.0025800385,0.01693435,-0.018140357,0.0010529007,0.00053390936,0.009823932,0.005741096,0.01659516,-0.0050972644,0.023617638,-0.003621162,-0.02982355,0.011494755,-0.018881548,0.0021717548,0.010100309,-0.021808628,-0.011582693,0.012876638,0.0028093054,0.009019928,0.03359232,-0.026331155,0.0035803334,-0.013065076,-0.00028795775,-0.03070293,0.0075061377,-0.006476007,-0.027537161,-0.007964672,-0.0042147436,-0.0004813036,0.021017186,-0.007901859,-0.024396518,0.019095112,0.021054873,-0.0041864775,-0.0038441475,0.005910691,0.013479642,0.0069094156,0.030250678,0.009534993,-0.0211805,0.0013418399,-0.015514779,-0.0040985397,-0.017323788,-0.01327864,0.024911584,-0.000085582535,0.007556388,0.0135173295,0.02182119,0.015037401,-0.013416829,-0.01459771,0.027486911,-0.011727163,-0.0029506346,0.0075061377,0.0059044096,0.0011062917,0.004045149,0.029949175,-0.0063283965,-0.0069533847,-0.0107912505,-0.0000722348,0.013994707,-0.01224851,-0.04007461,-0.007204636,0.02412014,-0.023265887,0.020816185,0.0000068824256,0.005291984,-0.022474444,0.0192333,0.016808724,0.006432038,-0.014635398,-0.0094282115,-0.0029019546,-0.013730893,-0.012707043,-0.008567675,-0.0038598508,0.015364028,0.00800864,-0.009497305,-0.0073302616,0.0146856485,-0.013994707,0.04158212,-0.03080343,0.013605267,0.0234292,-0.009101585,-0.022612633,0.019497115,-0.020665433,0.0052448744,-0.029748175,0.004431448,-0.011061346,0.0053485157,-0.02562765,-0.0028548448,-0.042134874,-0.005838456,-0.019647865,0.026833657,0.0073239803,0.02821554,0.01132516,-0.016343908,0.0059483787,0.0062718648,0.008988521,-0.0046355897,-0.011136722,-0.013240953,-0.0099809645,0.0007305922,0.008806364,-0.02728591,0.010219654,0.031607434,0.00049268844,-0.006488569,-0.030200427,-0.021997066,-0.0038284443,-0.024823645,-0.0004110317,0.010106591,-0.04514989,0.0007643541,0.0060928483,-0.00015104531,0.00006580629,0.021381501,-0.016921787,0.0012295619,0.015967032,-0.055878326,-0.01532634,0.01576603,0.0063126935,-0.028743168,-0.005389344,-0.010916877,-0.0036839747,-0.04899404,0.01859261,0.0060174726,-0.0116329435,0.012273635,-0.0030621274,-0.023064885,-0.0029710487,-0.03660734,0.014032395,-0.031406432,0.02816529,0.0145223355,0.004280697,-0.035401333,0.0012562574,0.0025957418,-0.017562479,0.0058635813,0.21567427,0.006457163,-0.025979402,0.0051506553,0.010615375,0.00034625593,0.0082284855,0.0024088735,-0.010131716,-0.008429487,0.04901916,0.0071041356,-0.016783599,0.0040985397,0.0029129467,-0.014321334,-0.048441283,-0.026029652,-0.020765934,-0.05331556,-0.010408092,-0.013316328,0.01366808,0.00086132146,0.026532156,-0.014949462,-0.0107912505,-0.0057662213,0.040451486,-0.0033165195,0.007292574,-0.00038826204,0.01566553,0.01244951,-0.0043623536,-0.0055526574,0.0040011797,-0.008379237,-0.008900584,0.01317814,-0.000062027706,0.013756018,-0.0027323598,0.002669547,0.0013386993,0.022323694,0.00018883118,-0.014635398,-0.016909225,0.0015640404,-0.008310143,-0.007600357,0.016180595,0.036205336,0.013341453,-0.00805261,-0.01020081,-0.0028250087,-0.0067146956,-0.014773587,0.0039666328,0.018190607,-0.0016331346,0.0096669,-0.031054681,0.026582405,0.00031151256,-0.011444504,-0.0076757325,-0.0047894814,0.014534898,-0.01244951,-0.014509773,0.013793706,-0.039144978,0.0033542071,0.0038253036,0.020389058,0.015652968,0.032511942,-0.018492108,0.021419188,-0.003275691,-0.020615183,-0.042009246,-0.04334088,0.018454421,0.0019597614,-0.008862896,-0.024572395,-0.0049999044,-0.0055903452,-0.007204636,0.0043843384,0.017738353,0.022110129,-0.0100437775,-0.0030636976,-0.0042461497,-0.0040922584,0.005219749,0.02484877,0.0011243504,0.018366482,-0.0036431463,-0.012041227,0.009453337,0.002792032,-0.011143003,-0.014409272,-0.025690462,0.0039603515,0.003266269,-0.0090701785,0.018529797,0.0009390524,0.012537449,0.014974588,0.017260976,-0.0015616849,0.025049772,0.00019697723,0.028240666,0.0037687721,0.026733156,-0.023052322,-0.015841406,0.0066518825,0.023831202,-0.047235277,-0.0010568266,-0.027612537,0.014359022,-0.031205432,0.0025973122,-0.014095208,0.009735995,0.0074810125,-0.0145223355,-0.014396709,0.00951615,0.0037813347,0.01967299,0.00629699,0.013153015,-0.006940822,0.028089914,-0.0019456286,-0.015414278,0.010502311,-0.03929573,0.007122979,0.013002263,0.013077639,0.025062334,-0.010508593,-0.04319013,-0.014509773,-0.027738163,0.011011096,-0.010766125,-0.0069533847,0.028089914,-0.0064697256,0.0031013854,-0.032336064,-0.15848944,0.021733252,0.0021293561,-0.026909033,-0.0027197972,0.015967032,-0.0015734624,-0.010338998,0.0010434787,0.02153225,0.0035709115,0.013341453,0.0029600563,-0.0018168623,-0.0009916582,-0.016519785,-0.0015608998,-0.011614099,0.024584956,-0.0064508817,0.008806364,-0.023278449,0.014798712,-0.042964,0.0053767813,-0.016117781,-0.0037373656,0.02415783,-0.002620867,0.0053767813,-0.021431752,-0.015539903,0.006026895,-0.0004232017,0.010659344,0.012217103,0.003470411,-0.020677997,0.0018388467,0.011494755,0.014283646,0.024095016,0.007958391,0.01908255,-0.01537659,0.024270892,0.0171856,0.010232217,-0.01693435,-0.0013693206,-0.0010403381,-0.008724707,0.0043403693,0.004547652,-0.005587205,0.0028831107,0.012085196,0.018567484,-0.003187753,-0.042562,0.0141328955,-0.015276089,0.015364028,0.024132704,-0.00854255,0.017260976,-0.011161847,0.015062526,-0.021695565,0.025175398,0.0065765074,-0.011337723,0.006626758,0.0048679975,0.010854064,-0.00932143,-0.017587604,0.0084860185,-0.00087938015,-0.016871536,0.0135801425,0.017260976,-0.017750917,0.010357842,-0.012424385,0.026708031,-0.000106781874,-0.010539999,0.01874336,-0.013404266,0.041481618,-0.024672894,-0.020627746,0.0017728932,0.0032694098,0.018039856,0.02368045,-0.0038190223,0.00785789,0.006438319,0.021645315,-0.0068026334,-0.036280714,-0.0012939451,0.0076380447,0.012914326,-0.004120524,0.013467079,0.009333992,-0.023504576,-0.025175398,0.006413194,0.008209642,0.0149369,-0.023341263,0.017374039,0.007732264,-0.0074810125,0.0066518825,0.0047235275,0.05768734,0.021733252,-0.015941907,0.004525667,0.007826484,-0.011972133,-0.094571054,-0.029496923,0.008699582,0.013793706,-0.007751108,0.01356758,-0.00065129093,0.023806076,-0.00800864,0.045124765,0.018466983,-0.03371795,0.017449414,-0.0077197016,0.0036619902,-0.0057913465,-0.013316328,-0.006086567,-0.031557184,0.02172069,-0.023605077,-0.0024905303,0.010439498,-0.01317814,-0.030200427,-0.0023617637,-0.033064693,0.011915601,0.015401715,-0.009610369,0.010734719,-0.0032018858,0.01928355,-0.023969391,-0.032738067,0.008335267,-0.004836591,-0.03216019,0.024270892,-0.027838662,0.0069031343,0.013429391,0.0053139688,-0.036858592,0.0020665433,0.003313379,-0.0299743,0.015175589,0.0032034563,-0.0031500654,-0.028240666,-0.0075249816,-0.028919045,-0.017436853,0.029748175,-0.012129165,0.029496923,0.02713516,-0.03655709,0.026708031,-0.0031500654,0.0019519099,-0.009936996,0.008222205,0.011124159,0.010841501,0.020137805,-0.03509983,0.016431846,-0.036330964,-0.025062334,0.0014085786,-0.026682906,0.026431656,-0.01410777,0.051330674,-0.0038629915,-0.033014443,0.015389153,0.009340273,-0.025376398,-0.009333992,-0.005232312,-0.0013803127,-0.008611645,0.032486815,0.0019895977,0.0046984027,-0.011155565,-0.015828842,-0.004359213,0.033014443,-0.007600357,0.0021340672,-0.0017320649,0.011394254,-0.0033070976,-0.013090202,0.00017067434,-0.006262443,0.009943277,-0.0135801425,-0.031959187,0.01703485,0.011073909,-0.016293658,-0.006240458,0.0022518414,0.009290023,-0.011651787,-0.017600166,-0.0021450594,0.01244323,0.01684641,0.00006953581,-0.015426841,-0.023027198,0.0011989407,0.008900584,-0.017926792,0.023579951,-0.013994707,-0.0044974014,0.016708223,-0.0024983818,0.034094825,0.009962121,-0.008900584,-0.015539903,0.012939451,-0.013705768,-0.0336677,0.010276185,-0.03504958,0.019949367,0.018379046,-0.007801358,-0.020966936,0.008730989,0.03716009,-0.007575232,-0.004007461,-0.0018482687,-0.031054681,0.01566553,-0.01747454,0.0037907567,-0.008159392,-0.03597921,0.013140452,0.002762196,-0.007204636,0.015163027,0.0043089627,-0.0024795379,-0.013391703,-0.037562095,0.0062875682,-0.032838568,0.005970363,0.002254982,-0.015225839,0.020426745,0.022612633,0.0078076394,-0.01752479,0.0001864757,0.024924146,0.0011651787,-0.015590154,0.0106405,-0.039094727,-0.005916972,0.002108942,0.028642667,0.017198164,0.026255779,0.006070864,0.0020429885,0.02713516,0.00053901295,0.009553838,0.02011268,0.014635398,-0.017449414,0.008385518,0.021494564,0.017776042,0.0026365703,-0.0033573478,0.04474789,0.0127887,-0.021193061,-0.0024575535,-0.0028281494,0.035552084,0.007688295,0.031883813,0.007851608,0.0057662213,0.018090107,0.018064981,0.008605363,0.022223193,-0.026858782,-0.016042406,0.0061902083,0.0062844274,-0.025301022,-0.0149369,0.009930714,-0.0008291299,0.019823741,0.021808628,0.008234767,0.015539903,-0.010382967,0.00088173564,-0.019409176,-0.0034358639,-0.026105028,0.0035395052,0.016343908,0.015037401,0.02089156,-0.012323884,0.008109141,-0.002250271,0.011934445,-0.010747282,-0.008027485,-0.0011196394,0.008027485,-0.012342729,-0.025112584,0.009308867,0.018781047,-0.015200714,-0.004450292,0.0056751426,-0.017461978,0.0599486,-0.0062907087,-0.031205432,-0.0044534323,0.016808724,-0.014308771,0.013894207,0.011758569,-0.0006136032,-0.0008361963,-0.0117962565,-0.0033510665,0.0072109173,-0.017851418,-0.011004815,0.036280714,0.0073491056,0.014384147,0.0020162931,-0.00001370351,0.008410643,-0.0078704525,0.027512036,-0.008661894,-0.027059784,-0.0056782835,0.03143156,0.03364257,-0.008831489,-0.027612537,-0.0034735517,0.02718541,-0.039371107,0.0066895704,0.010307591,-0.032562193,-0.003812741,-0.031557184,0.00024811082,0.030476803,0.0004133872,0.014321334,-0.014874088,-0.017562479,-0.0016676816,-0.00839808,-0.004378057,0.017549915,-0.01113044]},{\"id\":\"70a076fd-0722-4db5-b277-e825d8ef1bcf\",\"text\":\"I have a voice problem and stay away from making videos because when I get nervous my voice gets worse. \",\"vector\":[-0.030201925,-0.006392699,0.015387295,-0.01905983,0.02091477,0.012909891,-0.016109353,-0.04646067,0.011347508,0.0018813956,-0.0055336994,0.017030599,-0.01566118,0.0005520472,0.01649528,-0.016532628,0.016258745,0.003015835,0.01668202,-0.032691777,-0.009156437,0.008901226,0.0031263225,0.0018113685,-0.012138036,-0.014652789,0.0031636702,-0.01648283,0.008907451,0.0002435388,0.029903142,-0.0077994666,0.0059071775,-0.03928989,-0.0068782205,-0.0036569724,-0.004780519,-0.011135871,0.0021257126,-0.033588126,0.0050450657,-0.01292234,0.0065607643,-0.010556979,-0.02823494,0.025321811,-0.029305577,-0.018823294,-0.020852525,0.005701765,0.016246295,-0.014254412,-0.035629805,-0.009890944,-0.004497298,0.013905833,0.01684386,-0.0026641435,0.0042576496,-0.020441698,-0.014764832,0.015922613,-0.010220849,0.00081231474,-0.011328834,0.011223015,0.0051104245,0.0011359957,-0.001030955,-0.0067101554,-0.0058293696,0.022919102,-0.0020136691,0.011347508,0.019308815,0.01734183,0.015163208,-0.008851429,0.009430321,-0.009125314,0.028832505,-0.012349674,-0.011048726,0.019259017,0.03386201,0.0031403278,0.002384035,0.0041393815,-0.018835742,-0.030201925,0.006940467,0.023068493,-0.0014799067,0.019756988,-0.014951571,-0.007450887,0.019433307,0.02126335,0.0034235488,-0.009841146,0.015349948,-0.016296092,-0.04267609,-0.0024774044,-0.0071583292,-0.014851977,-0.0027886361,0.014764832,0.007917735,-0.011795682,0.022371335,0.01716754,0.00671638,-0.025819782,0.014366455,0.0033862009,0.018910438,-0.0033550777,-0.020703133,-0.012187833,0.026317753,-0.028185142,0.012548862,-0.0046778126,0.015872817,-0.013992977,-0.028284738,-0.027238999,0.010345342,-0.001688432,0.03558001,-0.0041113705,0.027761867,0.0018611655,0.009262255,0.0058387066,-0.0029224656,-0.0033208423,0.0049143485,-0.019657394,-0.0065420903,0.021362944,-0.015001368,-0.009505016,-0.013756441,-0.0037285557,-0.0042669866,-0.023591364,0.03346363,0.031919923,0.026243057,-0.016955903,0.020491496,-0.003955755,-0.01462789,0.02159948,0.00335819,0.00791151,-0.009666856,-0.008814082,0.004945472,0.013482558,0.010040334,-0.017603265,-0.02651694,0.019358613,0.0027435075,-0.017827353,-0.01937106,0.0020292306,-0.0020198938,0.03199462,-0.013133978,0.010407588,-0.00883898,0.0016230734,-0.01666957,-0.0010138373,-0.011247913,-0.015262802,-0.044170003,0.00867714,0.012511514,0.0032243605,-0.022520727,-0.0013437428,0.028309636,-0.02006822,0.0015335942,0.0008130928,-0.004534646,-0.005832482,-0.0023000024,-0.017578367,-0.66568726,-0.008652241,0.03079949,0.030475808,0.0037161065,0.018325323,-0.007650075,0.013320717,-0.038567834,0.017254686,-0.0007224466,-0.01054453,-0.003258596,0.010843312,0.010264422,-0.0068782205,0.022732364,-0.035007343,0.009486342,-0.032094214,-0.003622737,0.011447102,-0.014366455,0.011708536,0.00437903,-0.020653335,0.0040802476,-0.024425464,-0.011783232,0.030650098,0.006735054,0.017192438,-0.0032523712,0.0029753752,0.057714805,-0.0069529163,-0.0030796377,0.01821328,0.004590668,0.0070338366,-0.03025172,0.0050419536,-0.018785946,-0.004752508,-0.025944274,-0.00732017,0.0029862681,-0.004179842,-0.0004761845,-0.0022517613,0.000045785102,-0.0026874857,-0.002159948,0.015798122,0.01530015,-0.018810844,0.023616262,-0.02686552,-0.025309362,0.007021387,-0.021587031,0.0014347781,-0.010980254,-0.011926399,-0.0093494,0.024014639,-0.013980528,-0.0073263943,0.007363742,-0.010139929,0.013669296,0.006498518,-0.033065256,0.009231132,0.014129919,0.039912354,-0.010345342,0.0072019016,-0.0123683475,-0.0155117875,0.025023028,-0.0023544678,-0.024873637,0.0061810617,0.0212509,-0.0009002377,-0.012530188,-0.019632496,0.00041160392,0.0016433034,0.017491221,0.040036846,0.034384876,-0.028782709,-0.012654681,-0.02788636,-0.011316384,0.0073263943,0.032816272,0.016246295,0.0038405992,-0.0043447944,0.009312052,-0.010345342,0.026915317,0.009984313,-0.04646067,0.00042833263,-0.005490127,-0.01600976,-0.0033519655,-0.00178647,0.029056592,-0.024213826,-0.004571994,-0.030998677,0.03042601,-0.008795408,0.017951844,-0.035281226,0.004223414,-0.00011836531,0.008633567,0.0010021661,-0.011428428,0.017727757,-0.0050014933,0.0041549434,-0.012959688,-0.011745884,0.002091477,-0.015947511,0.010376465,0.004347907,0.008347234,-0.0011414422,0.021188654,-0.0036196248,-0.0071645537,-0.011409754,-0.018835742,-0.022582972,0.0025754424,0.03587879,-0.00633979,-0.0011671189,-0.0018378232,-0.0011927955,0.017603265,0.017018149,0.008969697,0.00306252,0.024686899,-0.0005170337,0.009704204,0.0017288921,0.0104013635,-0.004995269,-0.01598486,-0.016918555,0.018661452,0.020628437,-0.021873364,-0.020740481,-0.018960236,-0.012629783,-0.02107661,0.01325847,-0.016619774,-0.015088513,-0.0077309953,-0.0074197636,0.0064549455,-0.005328287,0.0038935086,-0.0044723996,0.030052533,-0.0069529163,0.013631948,-0.00045673252,0.004067798,0.001601287,-0.024649551,-0.0049516964,0.016171599,0.013582151,-0.0119699715,0.010463609,-0.045639016,0.0075878287,-0.0057484494,-0.002318676,-0.03468366,0.003299056,-0.010600552,0.01310908,0.023230335,0.0143415565,-0.01131016,-0.000795197,0.006143714,-0.00086911453,0.0061592753,-0.0056706415,0.0002935304,-0.018661452,0.001502471,-0.02364116,0.021723973,0.013569702,0.012897442,-0.014217064,-0.012268754,0.010444935,0.014042774,0.012057116,0.009448995,0.008646017,-0.0021288248,0.0053065005,-0.03132236,-0.016657121,0.01564873,-0.0061125904,-0.00599121,0.022321537,0.015549135,0.016109353,0.031372156,-0.018649004,-0.012387021,0.005804471,-0.0007255589,-0.0066914815,0.000569554,0.003781465,0.000618184,0.00089012267,0.021537233,0.008266314,-0.02499813,-0.0097789,0.01735428,0.006252645,0.030749692,0.0022704352,0.02671613,-0.018350221,-0.016856309,0.0034515595,-0.012947239,-0.006255757,-0.01615915,-0.013420311,0.0076065026,-0.023006247,0.0012620445,-0.002141274,0.02023006,0.034907747,0.010488508,-0.0033862009,0.012785398,0.0044163777,0.0002906126,0.0020883647,0.013283369,-0.002326457,0.004046012,0.0035698276,-0.012872543,-0.014528296,-0.0022346436,-0.0272141,0.021325596,0.012268754,0.012281203,0.02736349,0.020690683,0.017466323,0.037497196,-0.02908149,0.027836563,-0.0084904,0.0045315335,-0.014217064,-0.01871125,0.013034384,-0.0033115053,0.03177053,-0.009143988,0.020939669,0.0007578492,0.011384856,-0.009760226,0.012088239,0.032890964,-0.021163756,0.01957025,-0.004254537,-0.009119089,0.00539987,-0.0069155684,0.0013717538,0.0046747,0.0027248336,-0.008172944,-0.021499885,-0.010507182,0.0111918915,0.009915842,0.0065420903,-0.015623831,-0.0049734823,-0.006405148,-0.0071707782,-0.015424643,-0.027712071,0.03264198,0.0059414133,-0.009361849,0.0006889892,-0.013768891,0.006423822,0.08948534,-0.0005477678,0.008801633,0.0018238177,-0.0009189116,0.01131016,-0.0070836334,-0.04743171,0.038717225,-0.007824365,0.014727484,-0.0015530462,0.020952119,0.0064549455,0.008695814,-0.0034795704,0.001914075,-0.032791372,-0.016756715,-0.0042171897,-0.009922067,0.011129646,0.012113138,0.007892836,0.0119761955,0.016208947,0.007687423,-0.008527748,0.00953614,0.004920573,-0.015150759,0.01564873,-0.005026392,0.0061188154,0.0066416846,0.02329258,0.014017876,0.03958867,0.01752857,-0.015163208,0.013893384,0.018263076,0.0018020315,-0.027512882,0.012872543,-0.018051438,-0.008745611,0.026068768,-0.005135323,0.00030850843,0.018449815,0.016258745,-0.0043074465,-0.0070276116,0.0048925625,0.0044941856,-0.0038686101,-0.010420037,-0.01582302,0.0046809246,-0.0075131333,-0.031197866,-0.011279037,0.003974429,-0.007880387,-0.02193561,-0.024973232,-0.004534646,-0.034409776,-0.015138309,0.011683638,-0.01172721,-0.024774043,-0.036277167,-0.012436818,-0.0056146197,0.010662798,-0.01497647,-0.028533723,0.00044506133,0.015461991,-0.010457385,0.016345888,0.0061032535,-0.00017399798,0.0047960803,0.0073886407,0.006529641,-0.009075517,-0.010581878,-0.0035978386,0.0076065026,0.020093119,-0.021649277,0.009355625,0.0077372203,0.010139929,0.018611657,0.0031730072,0.0060814675,0.0023031146,-0.04319896,-0.03336404,-0.006984039,0.012306102,0.0010107249,0.021723973,0.050145652,-0.003790802,-0.02143764,0.022670116,0.003554266,0.023915043,-0.0016137364,0.036003284,0.038916413,0.011322609,0.017030599,0.01937106,0.015399745,0.0034297733,-0.041231975,0.02806065,0.010463609,-0.013071732,0.026940215,0.014478499,-0.011758334,-0.024549957,0.004945472,0.010444935,0.026317753,-0.031073373,-0.027487984,-0.053133477,-0.02873291,0.021848466,0.008123147,-0.016383236,-0.024051987,-0.011073624,0.0067288294,-0.022197045,-0.013868485,0.004646689,-0.021898262,-0.03520653,-0.015935063,-0.021898262,0.024686899,-0.0005676088,0.031073373,-0.026168361,-0.01820083,-0.000022163102,-0.034957543,0.0048147542,0.024873637,-0.020342104,0.0092124585,0.041480962,-0.00061429356,0.0195578,0.032218706,-0.004223414,0.0016370787,-0.01699325,-0.024076885,-0.031048475,0.03622737,0.012692029,0.016744265,0.025247116,-0.021549683,0.02498568,0.0011562258,0.012785398,0.004310559,-0.002836877,-0.013358065,-0.0030594077,0.0036382985,-0.0020650222,0.001462789,0.011303935,0.00065436465,-0.002111707,-0.005141548,0.014851977,0.010837087,-0.003594726,0.0056799785,0.0002513196,-0.017578367,0.023728305,-0.007245474,-0.018138584,-0.011752109,-0.011683638,0.008509074,0.00858377,0.025483651,-0.0139307305,-0.0022128574,-0.035306126,0.028284738,-0.0074010896,-0.026666332,0.0065109674,-0.015947511,-0.00032056865,-0.008123147,-0.0023435748,0.013333166,0.007899061,0.0024136018,-0.0017833577,0.00018761437,-0.00995319,-0.022881754,-0.012648457,-0.004397704,-0.016395686,0.003445335,0.026815724,0.017453874,-0.019358613,-0.00059134024,-0.004388367,0.040709108,-0.001954535,-0.0037161065,0.007021387,0.0027621815,-0.006218409,0.011154545,0.000019524927,-0.031048475,-0.03961357,-0.0030173913,0.0020836962,-0.012318551,-0.012194058,-0.016034657,-0.007488235,0.02621816,-0.0050326167,0.0139307305,-0.025620593,-0.018848192,0.0030298405,0.0103889145,0.009287154,0.011092298,0.007538032,0.028807607,-0.024861189,-0.013183774,-0.026118563,0.0154868895,0.0075940536,0.0047462834,-0.024562405,-0.00522558,0.0055710473,0.022022756,0.0060129967,0.0059849857,-0.014590542,0.02091477,-0.023529116,-0.0155117875,0.00076329574,-0.0071396553,0.007313945,0.0031278785,-0.014839527,-0.026641434,0.008646017,0.0010317331,0.0059165144,0.027338592,-0.012125587,-0.0072516985,-0.011005153,-0.0048863376,0.0068657715,0.0068782205,0.0016433034,-0.02228419,-0.00042755454,-0.010102581,0.0031932374,-0.0006714824,0.0010675248,-0.00031064815,0.025272014,0.021910712,-0.0077932416,0.0018860641,0.013843586,-0.0076936474,0.015735874,0.024462812,0.0042389757,-0.03211911,0.019582698,-0.01496402,-0.0135448035,-0.01973209,-0.010139929,0.034584068,0.00009229965,0.016233845,0.010102581,0.012038442,0.015399745,-0.032915864,-0.020354554,0.02384035,-0.0048956745,-0.0017491222,0.018561859,-0.0031761194,0.008253865,0.004758733,0.019159423,-0.008316111,-0.0036631972,0.012050891,0.009424096,-0.004151831,0.0032523712,-0.031571344,0.032069314,0.008689589,-0.023118291,0.0059538623,-0.00969798,-0.005421656,-0.011515573,0.02431342,0.012405695,0.02228419,-0.009971864,-0.007276597,-0.014179716,-0.020441698,-0.013370514,0.0016479718,-0.01990638,0.025284464,0.008627343,0.007631401,-0.011702312,0.024039537,-0.034036297,0.025035478,-0.026641434,-0.001334406,0.010569428,-0.011067399,-0.020790277,0.043672033,-0.0151134115,-0.0057173264,-0.010861986,-0.0022035204,-0.011795682,-0.004752508,-0.018748598,-0.0029022356,-0.02654184,-0.0014550082,-0.0040242258,0.034758355,0.0069591408,0.02736349,0.0012223625,-0.012548862,0.0024011526,0.017478772,0.01650773,-0.0038717224,-0.0011577819,-0.017976742,-0.0061219274,-0.00035013567,0.0014301096,-0.0106379,0.0065109674,0.02040435,-0.005676866,-0.014354006,-0.012467942,-0.0051104245,-0.0077745677,-0.029006794,0.012810296,0.0034608964,-0.039513975,-0.0045221965,0.011110972,-0.010918008,0.0024136018,0.024599753,-0.0057982467,-0.0013227348,0.019408409,-0.034534268,-0.01139108,0.0033955378,0.01206334,-0.035953484,-0.015275252,-0.0025458753,-0.00858377,-0.028259838,0.03077459,0.0029380273,-0.0178647,0.0111981165,-0.018636554,-0.029131288,-0.0057546743,-0.032368097,0.008204068,-0.0306003,0.028010853,0.0039806534,0.005141548,-0.040584613,0.0077807927,-0.0037565667,-0.018748598,0.016246295,0.23364787,-0.005262928,-0.021412741,0.010581878,0.019308815,0.025545899,0.01225008,-0.003750342,-0.008079575,0.0057391124,0.02518487,-0.017777555,-0.0077309953,-0.003504469,0.00791151,-0.019109627,-0.03792047,-0.034509372,-0.028483925,-0.027861461,-0.003032953,-0.016619774,0.014441151,-0.003563603,0.039762963,-0.012455492,-0.022670116,-0.0032648204,0.025869578,0.003417324,-0.012579985,-0.009492567,0.027064709,0.0035885016,-0.003946418,-0.0011313272,-0.0029987174,-0.0038810594,-0.008210292,0.0107935155,0.010463609,-0.0006812084,0.01785225,0.0018362671,0.0038903963,0.012860094,-0.0057484494,-0.01325847,-0.020279858,-0.0026983789,-0.002071247,0.0026236833,0.014814629,0.027014911,0.000023415323,-0.0070649595,-0.016619774,0.00204168,-0.0135199055,-0.016433034,0.01241192,0.027064709,0.014839527,0.01121679,-0.043796524,0.022383783,0.007973756,-0.006685257,-0.009081741,-0.0064922934,0.0028119783,-0.023703406,-0.0107935155,0.014154818,-0.029703954,-0.013818688,0.0009204678,0.028483925,0.026292855,0.016619774,-0.022744812,0.012424369,-0.00304229,-0.022545625,-0.027936157,-0.04558922,0.021661727,-0.015262802,0.0014067673,-0.02686552,-0.004712048,0.013021935,-0.0143166585,-0.0015911721,-0.0080484515,0.0050326167,0.00097182096,-0.007108532,-0.009810023,-0.0127604995,0.0014013207,0.021811118,0.011459551,-0.0057889097,0.0033146176,0.0020961454,0.01310908,0.00514466,-0.0049050115,-0.006448721,-0.024935884,-0.0022424243,0.011428428,-0.0053656343,0.0051664463,0.0029598135,0.02450016,-0.00012624337,0.022831958,-0.0069591408,0.017727757,0.0107810665,0.012984587,0.014814629,0.034808155,-0.013694195,-0.011671189,0.008521524,-0.005872942,-0.035106935,-0.0012254749,0.0096046105,0.015038716,-0.02823494,0.012636007,-0.0012604884,0.01699325,-0.0036663094,-0.00842193,0.008453053,-0.0031527772,0.010370241,0.031845227,-0.009585937,0.017466323,-0.011752109,0.026442245,0.012704478,0.0006205182,0.014764832,-0.020964567,0.009766451,0.01954535,0.025794884,0.030226823,0.017416526,-0.029031694,-0.0161467,-0.03214401,0.011528023,-0.009803799,-0.01581057,0.01938351,0.0005333733,-0.001414548,-0.042377308,-0.15516768,0.022645218,0.0028431015,-0.027487984,0.0061717248,-0.0014861313,0.010949131,-0.0059507503,-0.017130192,0.0031994618,-0.009760226,-0.0006703153,0.009747777,-0.006392699,-0.015735874,-0.013495007,0.005673754,-0.010345342,0.030376215,0.008079575,0.022881754,-0.01888554,0.008216517,-0.03652615,0.0063086664,-0.012212732,-0.0010223961,0.024624651,-0.0021848464,0.008347234,-0.022508277,-0.011777008,0.028110446,0.0018969572,0.027238999,0.008222741,0.003180788,-0.027039811,-0.0046404647,0.012337225,0.011073624,0.03246769,0.0096046105,0.004242088,-0.021226002,0.012997036,0.017279584,0.010463609,-0.0018409356,-0.004385255,0.005007718,-0.010463609,-0.0027761867,-0.0029940489,-0.014528296,-0.005938301,0.008067125,0.018088786,-0.00127605,-0.028956998,0.00816672,-0.023566464,0.010469834,0.015598933,-0.01096158,0.0050046057,-0.0037565667,0.0058169207,-0.0075691547,0.02329258,-0.0021381618,-0.004192291,-0.0119637465,0.0072330246,0.013295818,-0.01600976,-0.024562405,0.0056893155,-0.012909891,-0.00968553,0.015524237,0.017043049,-0.018101236,0.016196497,-0.009648182,0.035131834,0.0034920196,0.00995319,-0.003554266,-0.012685804,0.03963847,-0.0055679353,-0.010600552,0.0040180013,0.013968078,0.031347256,0.03655105,0.004077135,0.01249284,-0.007899061,0.009368074,-0.011534247,-0.033662822,0.005928964,0.018462265,-0.013283369,0.0011624504,0.02346687,0.0096108345,-0.02107661,-0.014466049,0.008726937,0.020205162,0.0143166585,0.009554814,0.0017195551,0.0052286927,-0.019968625,0.011864153,-0.007886611,0.05119139,0.0061281524,-0.010532081,-0.009965639,-0.0022797722,-0.010146153,-0.115031235,-0.051041998,0.014889324,-0.000086804466,-0.008876328,0.021288248,-0.006156163,0.029703954,-0.010849537,0.03948908,0.0056613046,-0.027014911,0.009791349,0.00327727,0.0005781129,-0.012299877,-0.019520452,-0.00304229,-0.03468366,0.030749692,-0.022396233,-0.01954535,0.014590542,-0.02126335,-0.029803548,-0.008714488,-0.01989393,0.0080546765,0.006566989,-0.0023357938,0.01164629,-0.0047556204,-0.0035013566,-0.030027634,-0.026616534,0.007245474,-0.0014604548,-0.03211911,0.01344521,-0.03707392,0.010040334,0.017478772,0.0035169183,-0.021313148,-0.011901501,0.0028991234,-0.04043522,0.019159423,-0.00073411776,-0.006115703,-0.026566738,-0.013856036,-0.027512882,-0.013470108,0.029554563,-0.008365908,0.026442245,0.023690958,-0.034633864,0.0161467,-0.010930457,0.004291885,-0.018810844,0.015063615,-0.010164827,0.002426051,0.012231406,-0.015959961,0.0057795728,-0.016271193,-0.027687171,0.017254686,-0.01343276,0.03077459,-0.013669296,0.02925578,-0.018848192,-0.042252816,0.029380273,0.012822746,-0.025284464,-0.011901501,0.008309887,-0.01615915,-0.0018004754,0.024363218,0.010202175,0.011615167,-0.024263624,-0.025222218,0.0047462834,0.019682292,-0.014254412,-0.0030407337,0.0046062293,0.0075255823,-0.015561585,-0.006041007,0.008533973,0.0043230085,0.009424096,-0.023317479,-0.02298135,0.019707192,0.011664964,-0.005350073,-0.010619226,0.0072890464,0.006078355,-0.022172146,-0.009318277,-0.009000821,0.0046591386,0.009324502,-0.016047107,-0.009841146,-0.0088078575,-0.012884992,0.019657394,-0.024450362,0.023703406,-0.008079575,-0.017590815,0.015798122,-0.021574581,0.033613022,0.025222218,0.00331773,-0.0017055498,-0.0041549434,-0.015399745,-0.036999226,-0.0016526403,-0.03351343,0.017615715,0.008272539,0.005213131,-0.018785946,0.024051987,0.030226823,-0.015424643,0.022085002,-0.0029753752,-0.04128177,0.0065856627,-0.016943453,-0.009959415,-0.009361849,-0.04128177,0.00985982,0.013955629,-0.000299366,0.016931005,0.008409481,-0.012013543,0.00034040966,-0.037173513,-0.0080422275,0.003230585,0.007787017,0.007432213,-0.027338592,0.026367549,0.020678233,-0.0055834968,-0.01734183,0.0048738886,0.024076885,0.0034764581,-0.00732017,0.0027092719,-0.022993797,-0.018151034,0.012088239,0.02651694,0.015163208,0.01496402,0.016545078,0.01360705,0.030674996,-0.000079315454,0.0042669866,0.02057864,0.00850285,-0.012947239,0.023441972,0.028160244,0.037970267,0.01837512,0.006330453,0.024027087,0.002209745,-0.047705594,-0.0063802497,-0.004624903,0.033936705,0.031397052,0.023491768,-0.0052100187,0.007077409,-0.005007718,0.024462812,0.016034657,0.016744265,-0.022321537,-0.010052784,0.01954535,0.025745086,-0.017628163,-0.0155117875,0.02567039,-0.00995319,0.01497647,0.018748598,0.0071707782,0.01464034,-0.0044537256,0.0014106577,-0.020454148,-0.0147150345,-0.022856856,0.019582698,0.021997856,0.0069155684,0.029006794,-0.012959688,0.025994072,0.004684037,-0.00049719267,-0.037497196,0.0058947285,0.008552647,0.02230909,-0.022172146,-0.029031694,-0.0026330203,0.008540198,-0.0054092067,-0.020777829,0.018599207,-0.018599207,0.047506407,-0.0017724645,-0.021711523,-0.023441972,0.0026843734,-0.005823145,0.014839527,0.019756988,0.018287975,-0.0036445232,-0.015972411,-0.008309887,-0.0002876948,-0.028608417,-0.0154744405,0.01990638,-0.003504469,0.03079949,-0.011434653,-0.008397032,0.030699896,0.0076625245,0.031546444,-0.025272014,-0.014515847,-0.010264422,0.02634265,0.021176204,-0.017914496,-0.014080122,0.008975922,0.0153126,-0.026093666,-0.0011149875,0.002984712,-0.012847644,0.012175384,0.0042763236,-0.0036880956,0.02928068,0.003965092,-0.0005446555,-0.017279584,-0.0023529117,-0.006156163,-0.014416252,-0.012256305,-0.0038997333,-0.02415158]},{\"id\":\"923a7624-ab65-40fb-a800-bbaaa598ed35\",\"text\":\"Hi! The Link is not working to withdraw my funds. Can you please assist? Thank you! \",\"vector\":[-0.026566353,0.0008052302,-0.0018008442,-0.010024804,-0.015055931,0.019450366,-0.010012319,-0.0018148889,-0.011760105,-0.0113044325,0.020099543,-0.007328219,-0.0014208567,-0.029637463,0.015255678,-0.00048961426,0.0035767201,-0.012971072,0.0113044325,-0.0041978084,-0.018826157,0.002136357,-0.007066051,0.011909916,-0.0025374114,-0.0049811914,0.008720206,-0.021585163,0.020998405,-0.03400693,-0.009475499,0.0011672716,-0.041522413,-0.018176978,-0.0061141313,-0.008133449,0.013070946,0.000084951,0.0053806854,-0.016841171,0.033058133,0.0016151419,0.014281912,-0.015929826,-0.022421602,0.045592256,-0.01576753,-0.0061047683,-0.011660232,0.018039653,-0.016516581,-0.010986086,-0.024281748,-0.041946873,-0.004628513,-0.008258291,0.013782544,0.015492878,-0.0020052728,-0.007871281,0.002479672,0.0045380024,-0.022696255,0.0029525107,-0.0097002145,0.005355717,0.022683771,0.014906121,0.0032115576,0.010174613,0.0036921988,-0.0141445855,0.012771325,0.003561115,0.020024639,0.0014169554,0.0015831512,0.029762305,0.017727548,0.009306963,0.021510256,-0.014394269,0.009712699,0.0014364619,0.008120965,-0.020985922,0.027814772,0.014868669,-0.010349393,-0.026865974,0.0056584585,0.025967112,-0.011441759,0.016216962,-0.014281912,0.013445471,-0.017053401,0.032983225,0.0017118944,0.00028225972,-0.0023969642,-0.01937546,-0.0008294183,-0.00792746,-0.015068416,0.002053649,-0.009500467,-0.015755046,0.015055931,-0.009394352,-0.011466728,0.021098278,-0.0042695925,-0.030186769,0.00006715128,-0.005296417,0.019125776,-0.0023251802,-0.019687565,-0.03126041,0.0061016474,-0.0071846507,0.014194523,0.0044037974,0.010823792,-0.037802123,-0.022271793,0.0062701837,-0.009250784,0.000333757,0.010243277,0.025380356,0.016216962,0.0101121925,-0.0049936753,0.0316599,-0.030711105,0.005617885,-0.029063191,-0.013582798,0.010056014,0.022359181,0.012577821,-0.0005555464,-0.016516581,0.023769895,-0.0006105549,-0.021497773,0.021023374,-0.011610296,0.0036890777,0.0036641094,-0.0050779437,-0.03473101,-0.01761519,0.017377991,-0.009275752,0.001079102,0.006685283,-0.036254086,-0.005233996,0.011167107,0.0045536077,-0.013869934,0.02893835,0.02062388,-0.005814511,-0.008364406,-0.01269642,-0.0012164281,-0.0066478304,-0.0022268672,-0.009394352,-0.0039293985,-0.016429191,0.028888412,0.04012418,-0.020636365,-0.018901061,-0.012708904,-0.009850025,0.01084876,0.017265633,0.025942145,-0.00012162331,-0.00011703927,0.013008525,-0.027140627,0.013495408,-0.031909585,-0.0035423886,0.006292031,0.023982126,-0.0056054005,-0.65277326,-0.000028528322,-0.013158335,0.044818237,-0.008788869,0.02938778,-0.0013997897,0.029462686,-0.027140627,0.032883354,-0.024419073,0.013145851,-0.016866138,-0.015505362,-0.008782627,-0.007877523,0.00021749797,-0.0005102912,0.009594099,0.0077152285,-0.014069681,0.010599076,-0.0020598911,0.009569131,0.011866221,-0.010299455,0.015954792,0.005237117,0.010823792,0.032883354,0.0032895838,0.00035989576,-0.011866221,-0.008757658,0.037252817,-0.0074468185,0.0019834256,0.0075029973,-0.001415395,0.04119782,-0.015430457,0.003770225,0.014506627,-0.029737338,0.019600177,-0.023020845,0.010237034,-0.0034518782,-0.0009761075,0.005021765,0.012590304,-0.020112028,-0.01883864,-0.007546692,0.0057708165,0.003508057,0.030036958,-0.017427927,0.010018561,0.012053484,0.005755211,0.020836111,-0.026241764,-0.011685201,-0.0027902161,0.0058082687,-0.019837376,0.0125154,0.02768993,-0.014506627,0.005839479,0.002518685,-0.007128472,0.0154803945,0.007140956,0.008720206,0.007946186,0.007989881,0.009281995,0.02908816,0.020099543,-0.015517847,0.006195279,-0.017765,0.032433923,0.012646483,-0.010942391,-0.017490348,-0.013183303,0.023882253,0.031135567,0.020761207,0.0057926634,-0.03557994,-0.009413078,0.03153506,-0.018638894,0.016678875,0.00031347017,-0.029512621,-0.010374361,-0.00052862737,-0.027490184,-0.01591734,0.031959523,0.01946285,-0.0005848062,0.014806248,0.054880492,-0.03463114,0.0057926634,-0.00047947088,0.012796293,0.007584145,0.0060392264,-0.034231644,0.013021009,-0.0015776893,0.01671633,-0.01624193,0.0101121925,0.01815201,0.030186769,-0.0049967966,0.0015160487,0.016304351,0.014768795,-0.040523678,-0.009768878,0.021884782,-0.0020130754,0.009381868,0.018913547,-0.013832481,-0.0037202882,0.020823628,0.02414442,0.014968542,0.014182039,-0.030661168,0.008532943,-0.010168372,0.01970005,-0.020811142,-0.00649802,-0.034256615,0.004831381,0.028563824,-0.0008161538,0.018551504,-0.034556236,-0.011360612,-0.018364241,0.0073781554,0.007996123,-0.015929826,-0.009793846,-0.014968542,-0.013832481,-0.025592586,-0.0030773524,0.027265469,-0.021235606,-0.013021009,-0.0052558435,-0.012715146,0.005290175,0.014881153,-0.024306715,-0.014531596,-0.0005317484,-0.018514052,-0.027015785,-0.005099791,0.016429191,-0.00107286,0.017540285,-0.0006714153,-0.020524006,-0.001588613,0.0026060743,-0.0011875584,0.008252049,0.021347962,0.022571413,0.015180773,0.0031663023,0.03580465,-0.019250618,0.011341886,0.0143693015,0.013283176,-0.0126215145,0.00685382,-0.0051497277,0.00009168076,0.014182039,0.008202112,0.022970907,0.012172084,0.042221528,-0.01731557,0.027590057,0.0047502336,-0.006142221,0.014044712,-0.00049312547,-0.029312875,0.008164659,0.0050342493,0.0046628444,-0.011454243,0.014943574,-0.020648848,0.013245724,0.0047408706,-0.01299604,-0.01245922,-0.01445669,0.019188197,-0.025917176,-0.016666392,0.00039832364,-0.027115658,-0.0014380225,0.01615454,0.015043448,0.021497773,-0.008058544,-0.018726284,-0.022796128,0.015929826,-0.020474069,-0.00093865494,0.0020770568,0.013133367,0.0007740197,-0.007684018,0.030536326,-0.0018133284,-0.007165924,0.022821097,0.012584062,-0.03767728,0.026741132,0.0037577408,0.027115658,0.026066987,0.016678875,0.022933455,0.019625144,0.012708904,-0.011067233,-0.010680224,0.015967278,-0.048688337,-0.0048032915,-0.0049218913,0.019387946,0.038051806,0.017440412,-0.005680306,0.020973437,-0.006089163,0.011722653,0.009475499,0.003704683,0.021035857,0.00965652,0.029262938,-0.0033520046,-0.018052137,0.037177913,-0.0049468596,0.035954464,-0.012808777,0.01931304,-0.0065666833,-0.011192075,-0.003013371,-0.015068416,-0.036403894,0.018189464,-0.0025327299,-0.00026450874,-0.02584227,-0.024394104,0.014481659,-0.00020676937,0.026341638,0.016329318,-0.0027714898,-0.00542438,-0.007478029,0.0031179262,-0.027789803,0.020361712,0.0091446685,0.02601705,-0.013470439,0.021285541,-0.0062701837,0.0023345433,0.004868834,0.001153227,0.0073719136,-0.0035299044,0.0022549566,0.007621597,-0.01731557,0.013170819,-0.0046035447,0.008245806,0.007521724,0.0068350933,0.009019827,-0.008682753,-0.003642262,0.03820162,0.0238448,-0.021822361,-0.009125942,-0.03490579,0.009587857,0.05862575,0.012871198,0.004035514,0.011485454,0.003632899,-0.00950671,-0.0137326075,-0.045492385,-0.015492878,-0.0036672305,-0.0012523201,-0.031809714,-0.034231644,0.036728483,-0.009350657,0.015642688,0.022246825,-0.0073032505,0.004182203,-0.01856399,0.009887477,0.011847495,0.00012123318,0.012390558,0.0022221855,0.040873233,0.0086515425,-0.017927295,0.013470439,0.008988616,0.0049218913,-0.0014637711,0.015755046,0.021372931,-0.0031163655,0.05263334,0.0050529754,-0.0062982733,0.018489083,0.006872546,-0.0018414179,0.01916323,-0.014057197,0.007084777,0.004843865,-0.0058176317,-0.027265469,0.008994858,-0.0029134976,0.015355553,0.048863113,-0.00896989,-0.0036953199,0.005823874,0.0154179735,0.021347962,-0.0140821645,-0.042396303,0.007821344,-0.021185668,-0.02739031,-0.0025342903,0.0024000853,0.0048469864,-0.0042758347,-0.010299455,0.009968624,-0.011048507,0.0055429796,0.0039918195,-0.008283259,0.002944708,-0.029662432,-0.012078453,0.0020895412,-0.013982291,-0.003842009,-0.009076005,0.014281912,0.03877589,0.0017946021,-0.044119123,0.013108398,0.002744961,-0.007902492,-0.005911263,0.028988287,-0.0027262347,-0.022945939,0.03513051,0.00885129,0.02631667,0.012983556,-0.03153506,-0.00396373,-0.0033863361,0.014094649,0.01892603,0.0053182645,0.0080335755,-0.010717676,-0.008489248,-0.031934556,-0.024656273,-0.01245922,0.002670056,0.023108233,0.028688665,-0.007559176,0.00390443,0.013370566,0.004825139,-0.0007693381,-0.006685283,-0.007871281,0.023320464,0.021085795,0.0021285543,0.006220247,0.0015792499,0.0015082461,-0.013395535,0.020349227,-0.005074823,0.00082863803,-0.0061110104,0.0027855346,-0.052683275,0.0052683274,-0.014381786,-0.015218226,-0.010686466,-0.02298339,-0.025817303,-0.014506627,-0.029188033,-0.038850795,0.0050966702,-0.018801188,-0.014943574,-0.021023374,-0.018788705,-0.005511769,-0.013507892,-0.015692625,-0.028713634,-0.029512621,0.009350657,0.011766348,0.017215697,0.0087951105,0.027889678,-0.03937513,0.0067352196,0.0043039243,-0.011092202,-0.037976902,0.003966851,0.0022424725,0.017914811,0.025180608,-0.0034331519,0.021747457,-0.01609212,-0.00066556333,-0.010836276,0.020661332,-0.012078453,0.00045528274,0.023470275,0.030960789,0.0048657125,0.047489855,-0.0016354288,-0.010237034,0.005218391,0.0022331092,0.019425398,-0.022047076,-0.0037764672,-0.00235483,-0.007016114,0.015717594,-0.020848595,0.0018164495,-0.013208272,-0.009313204,-0.0069911457,0.02324556,0.008626575,0.0077714073,-0.015755046,0.030536326,0.0035392675,-0.0033426415,0.013982291,-0.016341804,-0.015343068,0.01454408,0.008483007,-0.001126698,0.025267998,-0.0077027446,0.0035330255,0.005352596,0.019138262,0.005421259,-0.006828851,0.0018975966,-0.0042945608,-0.014956058,-0.027590057,0.0015862723,-0.0009051037,0.022146951,0.007409366,-0.018102074,-0.0013467319,-0.020311775,-0.01362025,-0.02536787,-0.02169752,0.0082395645,0.015630204,0.012396799,0.028863445,0.0015043447,-0.009619067,0.019799924,-0.01591734,0.0060298634,0.0034955728,0.04154738,-0.025617555,-0.03523038,-0.0027699294,-0.0062889103,-0.0184766,-0.017103339,0.018863609,0.02264632,0.019000934,-0.00063552323,-0.010443023,-0.03428158,0.019712534,-0.016142055,0.012677694,-0.018876093,-0.0026232402,-0.010274488,0.005714637,-0.002787095,0.022596382,-0.0025920297,0.024269262,-0.005677185,0.010024804,-0.011204559,0.010330666,-0.004238382,0.057926636,-0.019063355,0.011291949,-0.009619067,0.004282077,-0.0052558435,-0.025130672,0.0055242535,0.014768795,-0.016129572,0.00040339536,0.015068416,-0.013270693,0.0007108185,-0.0008957405,0.0014996632,-0.011011055,-0.014656438,0.010124677,0.032708574,0.00676643,0.0023751168,-0.001308499,-0.0027465215,-0.0057926634,-0.026816037,-0.010836276,0.018801188,-0.017952263,-0.01084876,-0.014581532,0.006285789,0.018364241,0.0014637711,0.0043476187,0.0034643624,0.029462686,-0.037352692,0.022072045,0.0052496013,0.022421602,-0.029163064,0.0031350919,0.01662894,-0.04771457,-0.017178243,-0.022508992,-0.047489855,0.00023719958,0.0016198235,-0.024743661,0.0049343756,0.009057279,0.0067102513,0.034855854,0.011635263,-0.006816367,-0.02053649,0.03999934,-0.03001199,-0.0057645743,0.031135567,-0.004513034,-0.009974867,-0.024693726,0.020798659,-0.022808613,-0.0036703516,-0.0087951105,0.0019678203,-0.015280647,-0.0049999175,-0.029912116,-0.004163477,-0.012602788,-0.016653908,0.009331931,-0.0015105868,-0.00018960361,0.010655255,0.015030963,0.018426662,0.021148216,0.0006312318,-0.016566519,0.0018492205,-0.008451796,-0.018289337,-0.016728813,-0.005758332,0.017477864,0.0025140035,-0.0136701865,-0.018289337,0.0027980187,-0.027015785,-0.00096050225,-0.010948634,0.0065167467,0.0350556,0.0023876012,0.007009872,0.02309575,0.0107488865,0.022970907,-0.0049437387,0.009194605,0.032958258,-0.008264533,-0.0126402415,-0.01716576,-0.033757247,-0.0014177357,-0.011373096,0.042096686,0.026216796,0.021822361,-0.0175278,-0.027515152,0.013757576,0.003364489,0.00025885185,-0.015180773,-0.0072533134,-0.045317605,0.006267063,0.0061141313,-0.0014895197,-0.0101933405,0.023470275,0.0087639,-0.024194358,0.0074468185,-0.045342572,-0.002211262,-0.0065167467,-0.024431556,0.014743827,0.012240747,-0.0073032505,0.0029930843,0.0014926408,-0.012496673,-0.01699098,-0.0029806,0.010187098,-0.008645301,0.018676346,-0.020049607,0.0038857036,-0.0049250126,0.0069287247,0.0043382556,-0.0008395617,0.009812572,-0.0038513723,-0.036853325,0.012165842,-0.014469175,0.004147872,0.013220756,0.0116539905,-0.015393005,-0.008526701,-0.0031538182,-0.009250784,-0.042296432,0.006151584,0.008976132,0.0016838049,-0.015979761,0.028588792,-0.017665127,0.00858288,0.0035361464,0.20673816,-0.017927295,0.0016884865,0.024306715,0.005293296,0.017765,0.009500467,0.007140956,-0.03323291,0.0030336578,-0.020037122,0.0010681784,-0.013595281,-0.0065229884,-0.0033301574,-0.014956058,-0.032408953,-0.008645301,-0.03428158,-0.015442941,-0.005636611,0.027540121,-0.012858714,-0.020349227,0.0301618,-0.0015277526,0.009338173,0.0035673568,0.01058035,-0.0039824564,-0.02831414,-0.0073656715,0.021647584,-0.014169554,-0.014094649,-0.022171918,0.017802453,-0.00807727,0.026566353,0.016878624,-0.012053484,-0.0006152364,-0.012609031,-0.023532696,-0.0023985247,-0.00056998123,-0.016079634,-0.020836111,-0.01400726,0.030810978,-0.020211902,-0.014294396,0.013308145,0.013420503,-0.036828358,-0.019537756,0.014968542,-0.009837541,-0.011067233,0.0063887835,0.006679041,0.013270693,0.016079634,0.0038139196,-0.018663863,0.00091134576,-0.014132102,0.00061796734,0.021834847,0.020274322,0.011248254,-0.026042018,0.0023766775,0.013582798,-0.0447683,-0.009500467,0.0010299456,0.0005809049,0.017303085,0.0031179262,0.0056022797,0.030985756,-0.026191829,-0.015005995,-0.0028198662,-0.0250308,0.011604053,0.0103369085,0.0024188117,0.010649013,-0.0024952772,-0.0008208354,-0.024980862,-0.0059799263,0.025168125,0.008913711,0.010911181,0.021809878,-0.008370648,-0.008770143,-0.021098278,0.047639664,-0.0051216385,-0.0024765509,-0.0043476187,-0.005564827,0.0036235359,0.024106968,-0.0023579511,-0.011841253,0.009175879,-0.011866221,0.012284442,-0.01821443,-0.009619067,0.014531596,0.0330831,0.0047970493,-0.018077105,0.00986251,0.015655173,-0.029637463,-0.003573599,-0.025692461,0.01499351,-0.013295661,-0.0026216796,-0.031485125,0.016978497,-0.04217159,0.009325689,-0.0005606181,0.025942145,-0.02709069,-0.036229115,0.0054462273,0.012490431,-0.011129654,-0.014194523,0.011472969,-0.02032426,-0.0026997058,0.003174105,-0.019799924,-0.008801353,-0.038850795,0.0016666392,-0.017802453,-0.03400693,0.030960789,-0.014706374,-0.015730077,-0.0031272892,-0.00822708,0.02199714,0.00034741155,-0.02307078,-0.028863445,0.0126402415,-0.0038763406,-0.016416708,0.006810125,0.022683771,-0.0037390145,-0.015555299,-0.0037483776,-0.15540318,0.024656273,-0.012184568,-0.0055429796,0.024394104,0.03860111,0.006429357,0.004369466,-0.0010127798,0.019387946,0.01999967,-0.0056303693,-0.01856399,-0.010617803,-0.00035989576,0.0030289763,-0.0184766,-0.023732442,0.027939614,0.01299604,0.0075092395,-0.0041541136,0.020673817,-0.0078275865,0.014169554,0.012971072,-0.041472476,0.028064456,-0.0037889513,0.0014583092,-0.033732276,0.0013506332,0.0039855773,0.005233996,0.023307981,0.017640159,0.016279383,-0.011254496,0.010480477,0.024531431,0.007334461,0.02768993,0.0027605663,0.0026357244,-0.00070886785,0.039874498,0.028613761,0.0147188585,0.00986251,0.0018148889,0.00077089865,-0.0055211326,0.0040698457,0.008002365,0.007865039,0.039150417,0.0058706896,0.012883683,-0.0035361464,0.038526207,-0.01338305,-0.010992329,-0.020311775,-0.022196887,0.0064668097,0.0031850287,0.019562723,-0.0028151846,-0.03185965,0.018464115,-0.0073157344,-0.025867239,0.00727204,0.009768878,0.016866138,-0.026940878,-0.025205577,0.00953792,-0.0026185585,-0.010917423,-0.013283176,0.050885554,-0.007215861,0.028164329,-0.018788705,-0.024506463,0.006204642,-0.018064622,0.023233075,-0.02938778,0.02032426,-0.0070285983,0.018276852,-0.02169752,0.033907056,0.022484023,0.009375625,-0.00092070893,0.00575209,0.015755046,-0.017390475,-0.026841005,-0.010836276,0.015929826,0.027040754,0.01278381,-0.03630402,0.00088481687,0.037302755,-0.01955024,-0.015280647,0.009400594,0.028538855,0.03335775,0.003707804,-0.002643527,-0.000035696976,-0.019824892,-0.000043719043,-0.012559094,0.050535996,-0.003013371,-0.011460485,-0.0014450449,-0.020761207,0.0029884027,-0.073456965,-0.037877027,-0.008433069,0.008514217,-0.012646483,-0.0082395645,-0.00042056112,0.039649785,0.0065854094,0.012771325,-0.030661168,-0.021585163,-0.015030963,-0.01636677,0.024968378,-0.017752517,0.013195788,0.0055304957,0.029637463,0.015355553,0.00039676312,-0.025867239,0.01299604,-0.025555134,-0.03513051,-0.0072470717,-0.0059299897,-0.0029041343,0.027140627,0.004094814,0.005152849,-0.017777484,0.0012585623,-0.026042018,0.0052589644,-0.024444042,-0.02601705,0.0035892043,0.015143321,-0.03650377,0.0058644474,0.011285706,0.03170984,-0.052583404,-0.0140821645,-0.000033551256,0.0053089014,0.0065854094,0.0037296514,-0.011142138,-0.019937249,-0.0031616208,-0.020935984,-0.011472969,0.0369532,0.010886213,-0.0027527637,0.012009789,-0.009350657,-0.024793599,0.0101933405,0.003779588,-0.03508057,0.0038107985,0.021710005,0.0013303463,-0.010080982,0.015680142,0.005162212,0.0069911457,-0.013607766,0.04029896,-0.019837376,0.017240664,-0.02998702,0.0071534403,-0.019487819,-0.017115822,0.004169719,-0.0028776056,-0.028613761,-0.021010889,-0.0063045155,0.009693973,-0.0059081423,-0.024294231,0.0100497715,-0.00054267206,0.008863774,-0.025055766,0.0037327725,0.012821262,-0.0013951081,-0.007409366,-0.0035267833,-0.0015363354,-0.0151932575,-0.004229019,0.0014497264,-0.0096377935,-0.011073476,0.005571069,-0.065167464,0.024543915,-0.026066987,-0.02998702,-0.016653908,-0.007790134,0.010031045,-0.0031304103,-0.0151932575,0.0068600615,-0.014032228,0.017265633,0.019213166,-0.011036023,-0.01007474,-0.015892372,0.020186933,-0.009344415,0.024281748,-0.0014021305,-0.007883765,-0.02599208,0.013857449,-0.0036734724,0.0030523841,0.022633834,0.003951246,0.01636677,0.017477864,-0.0030196132,0.009931172,-0.034481328,-0.0047908076,0.024518946,-0.0021051464,-0.034306552,0.029038223,0.034381457,0.0010330667,-0.00938811,-0.013720123,-0.01716576,-0.028264204,-0.01877622,-0.0035174203,-0.0065105045,0.0059861685,0.008888742,0.029437717,-0.0024000853,0.026216796,0.022596382,-0.0074530607,-0.0034425152,-0.0055773114,-0.015879888,0.017515317,-0.025230546,0.010361876,-0.018613925,0.04109795,-0.01937546,0.0055398587,-0.030511357,0.013358082,0.0014832777,-0.018788705,0.012365589,0.009213331,-0.030985756,-0.022958424,-0.008283259,-0.0066353464,-0.015630204,0.03820162,0.0209235,-0.023919705,-0.0021004647,-0.020736238,-0.0111608645,-0.0066291043,-0.019687565,-0.025642524,0.0005102912,0.028339108,0.02938778,0.009831299,0.0051840595,-0.010667739,0.019000934,-0.05737733,0.010923665,0.0013787226,0.016029699,0.0013467319,0.015904857,0.007059809,0.02863873,-0.010655255,0.01671633,0.030885883,0.017590221,-0.00858288,-0.02298339,-0.017015949,-0.0012047242,-0.011029781,-0.024106968,-0.0061640684,0.0032209207,0.020811142,-0.0018351758,-0.011753864,0.010443023,-0.0029010132,-0.015730077,0.00861409,-0.020985922,-0.017590221,0.018651377,-0.0040011825,0.02485602,0.002869803,-0.012584062,0.026416544,0.0015909538,-0.010418056,-0.020673817,0.012665209,0.024156906,0.0025218062,0.013295661,-0.033657372,-0.013408018,0.015143321,-0.0006402048,-0.011991063,0.014856185,-0.027939614,0.07280779,-0.004110419,0.005939353,-0.014107133,0.004444371,0.0075779026,0.01499351,-0.005340112,-0.024057033,-0.0122719575,-0.0030711105,-0.01591734,0.005973684,-0.011741379,-0.01972502,0.00822708,-0.009469257,0.00834568,-0.0023704353,0.021110764,0.010911181,0.0033395204,0.016304351,0.02536787,-0.0014895197,0.017452896,-0.0074405763,-0.028963318,-0.01445669,-0.03490579,0.017552769,0.01111717,-0.010530413,-0.012115905,0.010549139,-0.032833416,-0.0026450874,0.009793846,0.019225651,0.011760105,0.032983225,0.054880492,-0.0012374952,-0.037926964,-0.013133367,0.011379338,-0.029937085,0.011959853,-0.028364077]},{\"id\":\"86700d49-f200-4ea8-a76b-48cfeec0ead9\",\"text\":\"It would be nice to have the details regarding payment, how much longer the post has to gain numbers and please return the sliding scale for estimating payout.\",\"vector\":[-0.008203443,0.0018828951,0.010971517,-0.04770225,-0.036280584,0.003243417,-0.023152389,0.02196991,-0.04531042,-0.0030485769,0.029642582,0.017387806,-0.01110589,0.0023229653,0.008156413,-0.0075181434,0.019846823,0.0072964286,-0.0031527157,0.027734492,-0.009701697,0.008505781,-0.038645543,0.0137530295,-0.0029293213,-0.00401102,0.021728039,0.0065674577,0.0052270917,0.0034466556,-0.0012681409,0.013605219,-0.034399368,-0.014310675,-0.026632637,-0.017025001,0.01325585,0.027035754,0.007309866,-0.005253966,0.019551205,0.012825859,-0.006087076,-0.022829894,-0.012422741,0.0016057518,-0.016621882,-0.03058319,-0.008405002,0.035984967,-0.008828276,0.008619999,-0.03173879,-0.0245633,-0.0028352605,0.017011562,0.014673481,0.0024388616,0.00019977416,-0.0040681288,0.023018016,-0.0014789377,-0.004773584,0.004854208,-0.010413872,-0.01286617,-0.0067253453,0.016124705,-0.0044309343,0.039451778,0.028836347,0.006325587,0.009224675,-0.01761624,0.015184097,-0.013222258,0.023770502,0.0018660986,0.0050120954,0.029239465,0.016218765,0.000102669015,-0.003859851,0.0054387283,0.0035978246,0.011287293,0.011871814,0.021083051,-0.022225218,0.005421932,0.025853276,-0.005395057,0.009191082,0.027841989,0.016702507,0.017360931,-0.008996242,0.021351796,-0.0022137875,-0.012550395,-0.0031056853,0.017105624,-0.011394791,-0.0163397,-0.026054835,-0.006584254,0.0042495313,-0.020975552,0.028325731,-0.006792532,-0.00023977099,0.018583722,0.0025547578,0.0076793903,0.0070881513,0.02191616,0.0043771854,0.0026051477,-0.00045686663,-0.018959966,0.019981196,-0.0023061687,0.03684495,-0.0032518154,0.0034147422,-0.007773451,0.010064503,0.004000942,0.0046459306,-0.0045619477,-0.018919652,0.030932559,-0.0024103073,0.0030217024,-0.029857578,0.025127664,-0.027170127,-0.0036347772,-0.025920462,-0.0059661404,0.037516814,0.024052683,-0.001301734,-0.014740667,-0.011764316,0.024039246,0.01756249,-0.0018694579,0.0053782607,-0.01874497,0.007746577,-0.026740136,0.018906215,0.0068529993,0.0035743094,-0.004084925,0.020921804,0.011542601,-0.024509551,-0.014955663,0.01017872,0.008230318,-0.0035978246,0.012321962,0.023770502,0.02334051,-0.0033593134,-0.022776145,0.014015055,-0.0061374656,-0.02598765,-0.0012631018,-0.00096412294,0.018059669,-0.011025267,0.021943035,0.014458485,-0.008458751,-0.00013720695,-0.026256394,0.021943035,-0.002670654,-0.0028554164,0.03708682,-0.015761899,-0.019457143,0.033942502,-0.021889286,0.0012471451,-0.013437253,0.004316718,-0.010850582,-0.0019685577,-0.0008969367,-0.64584816,-0.012772109,0.009466546,0.014203177,0.009023116,0.008693903,-0.005841846,0.014364424,-0.017871547,0.024388615,-0.0018073106,-0.006076998,-0.0065943324,0.007854075,-0.007182212,-0.024737984,0.00557646,0.006708549,-0.019833386,0.0037893055,-0.034909986,0.014982538,-0.00040017822,0.030529441,0.020236503,-0.0010833786,0.004575385,-0.013188665,-0.009338891,-0.0018711375,-0.025087353,0.008055634,-0.015399093,-0.011603069,0.033888754,0.0060266084,-0.00059963745,0.0023112076,-0.012160715,0.023649566,-0.038215548,-0.0018862545,0.009157488,-0.030798186,-0.013235695,-0.005730989,0.010890895,0.0070881513,0.030798186,-0.007833919,-0.0070612766,0.024187056,-0.0025581173,0.016648758,0.0127855465,0.00014550026,0.012449616,-0.0066212066,-0.02020963,-0.006171059,0.00044552895,-0.0026437796,-0.01595002,-0.05245904,-0.0049012383,-0.011414947,-0.0058720796,0.021324921,0.02245365,0.0037053227,-0.012604144,0.017508741,0.01502285,0.0190809,-0.0041319556,-0.0040782066,0.012402585,-0.007524862,0.0044544498,0.02226553,0.00018035313,-0.013276007,0.0036179805,0.007524862,0.016662195,0.007363615,0.014485359,-0.022708958,0.032894395,0.03106693,-0.0035306383,0.010064503,0.02632358,-0.0029293213,-0.00601989,0.026672948,0.010024191,-0.0064834747,0.0061139506,-0.033888754,-0.031792544,-0.011515726,-0.0038128207,0.0004071068,0.033055644,0.0032854085,-0.013813497,-0.007840637,0.033593133,-0.024428926,0.0072023678,-0.008902181,-0.0060837166,0.006742142,-0.019578079,-0.036038715,0.022937393,0.012651174,-0.017884985,0.001756921,0.0047668656,0.035501223,0.037597436,0.00040206782,-0.005327871,0.020948678,0.020182755,-0.008512501,0.019873697,0.0045451513,-0.027116379,-0.042461723,0.016648758,-0.016877191,0.0116500985,-0.007860794,0.008331098,-0.011294012,-0.0014100719,-0.04213923,-0.00518678,0.0037993835,-0.006453241,-0.018677782,-0.024106434,-0.019699015,0.010245906,0.018126855,0.010743084,0.015331906,-0.027438872,-0.023259886,-0.019806512,0.004447731,-0.011045422,0.01873153,0.0036986042,-0.027841989,-0.022037096,-0.012583988,0.005489118,0.017844673,-0.013249132,0.0002721044,-0.013040855,-0.013853809,0.008378128,-0.0059963744,-0.0017166091,-0.018462786,-0.015264721,-0.007565174,-0.006688393,-0.009473264,0.005519352,0.015076599,0.01678313,-0.025436722,-0.03869929,-0.009909974,0.00650699,0.006197933,-0.01164338,0.009849507,0.0395324,0.00031325597,-0.011334323,0.04858911,-0.010971517,0.011461978,-0.011690411,-0.02026338,-0.0048105367,0.027949488,-0.0045081987,0.008693903,0.020868056,-0.0005899794,0.0050994377,0.033458762,0.03058319,0.039478652,0.020451501,0.019403394,0.0065506613,-0.01595002,0.017656552,-0.021660853,0.016675632,0.027452309,-0.012389148,-0.018019358,0.009533731,-0.01311476,-0.011025267,0.0024136668,-0.02485892,0.009359047,0.00655738,0.025557656,-0.008761089,-0.017575927,0.033539385,-0.014821291,-0.005714192,-0.007417364,-0.0108169895,0.025651718,0.015855959,-0.01570815,-0.012993825,0.0067790947,0.0016687389,0.021418983,0.0395324,-0.012772109,0.030368194,-0.0050120954,0.028056987,0.0146466065,0.009856226,0.024025809,0.03190004,-0.0090298345,0.007961573,-0.0079548545,0.0098024765,0.015345343,-0.012066654,0.00076340395,0.019027151,0.020491812,-0.018704657,-0.0064969123,0.008895462,-0.035608724,0.0070075276,0.0052808407,0.01961839,0.022776145,0.011408228,0.01824779,0.023233011,-0.009291861,0.01668907,0.0036146212,-0.014324113,-0.019591516,0.0053513865,-0.005368183,-0.003513842,-0.026605763,0.013181946,0.00010209163,-0.004491402,-0.0029629145,0.012536958,-0.033458762,-0.005452166,-0.0038531325,-0.017105624,-0.012913201,-0.0014848165,0.019054025,0.0028251826,-0.01218087,0.017011562,0.009728571,-0.0090903025,-0.004007661,0.026686385,-0.0078003258,-0.00038863058,-0.0132088205,-0.00045350732,-0.018073106,0.022547713,-0.0067555793,-0.0014293878,-0.004652649,0.011193233,0.014176303,-0.014834728,-0.03523248,0.024066122,0.010783396,-0.016662195,-0.022198344,-0.0009338891,-0.01144854,0.010830427,-0.029051343,-0.0055361483,0.012483208,0.024428926,0.008250474,0.0068126875,-0.02328676,0.04418169,0.01654126,-0.017737174,-0.0009036553,-0.028110735,0.002726083,0.09212581,0.0341575,0.017334057,0.01991401,0.0015990332,0.009271705,-0.009782321,-0.021203985,0.026162334,0.0050456887,0.013370068,0.008331098,-0.018973403,0.0038766477,0.029293213,0.007108307,0.01937652,-0.0100443475,0.02446924,-0.0052808407,0.00047198354,0.0027176845,0.01389412,0.040473007,0.02969633,0.025409847,0.027868865,0.020666497,-0.0077532954,-0.024227368,-0.0042394535,-0.0016183492,-0.0047198352,0.006658159,-0.004457809,0.006893311,-0.012315243,-0.00055260706,0.0019568,0.018906215,-0.010306373,0.025006728,-0.0009624433,0.00430664,0.03571622,-0.015103473,-0.009332173,0.02588015,-0.0020962115,0.015842522,0.026995443,-0.028863221,-0.018086543,0.008619999,-0.003708682,0.008398283,-0.024012372,-0.015533465,0.015963458,-0.0026404203,-0.051222812,-0.011005111,0.0037120413,-0.0053513865,-0.014458485,-0.022722395,-0.0042965617,-0.007115026,-0.025718903,0.0016511026,-0.0004799619,-0.011905407,-0.027680743,0.0042260163,0.017186247,-0.016769692,0.034614366,-0.014015055,0.017132498,0.015264721,-0.036280584,-0.024832046,0.0073233033,0.007746577,-0.0022944112,0.0016301068,-0.015063161,0.0009204519,-0.019013714,0.012019623,-0.0055260705,0.003194707,0.016447198,-0.033055644,-0.0038363358,-0.019121213,0.000797417,0.03195379,-0.0014235091,0.0013915956,0.017871547,-0.024966417,-0.002961235,-0.0046022595,0.0026337018,0.005905673,0.0070075276,0.0011917164,0.00904999,-0.021929597,-0.0050020176,0.00040941633,0.002235623,-0.0071217446,0.023206137,0.010810271,0.0014755784,0.0038027428,0.009647948,0.009332173,0.011072297,-0.019725889,0.034184374,0.012530239,-0.010306373,-0.014418174,0.00885515,-0.02471111,-0.0033391574,0.0085460935,0.016057517,0.007887668,-0.008640154,-0.025920462,0.012698205,-0.003654933,-0.00601989,-0.009869663,0.008700621,-0.009264986,0.0057645817,-0.017643115,-0.031228177,-0.006255042,0.03356626,-0.033243764,-0.013773185,-0.0017636395,0.0005475681,0.027868865,0.0006500271,0.005593257,-0.030260695,-0.009547168,0.019994633,0.0023078483,0.0029965076,-0.021298047,0.0073972084,0.0021835538,0.009217956,0.014539109,0.0026185848,0.007840637,-0.00060299673,0.009829351,0.017696863,-0.011294012,-0.011280575,0.005274122,0.004568666,0.0027815115,0.0077398582,-0.00043755057,0.020935241,-0.006120669,-0.019551205,-0.00038716086,-0.023071764,-0.033754382,-0.0011060539,0.0023296839,0.0037960242,-0.005371542,-0.022010222,-0.01937652,-0.004971784,-0.007927979,0.012496646,-0.0057209106,0.017239997,-0.001987034,0.024657361,-0.008962648,0.024832046,0.0023716753,-0.024643924,-0.031577546,-0.014539109,0.009654667,0.008398283,0.021271173,-0.010205594,-0.009849507,-0.01208681,-0.005176702,-0.028513853,-0.021701165,-0.017817799,-0.0004041674,-0.010984955,-0.0016166696,-0.014619732,0.010198875,0.011240263,0.0043234364,-0.00827063,0.007276273,-0.026363892,-0.028970718,-0.00816985,-0.02089493,0.002040783,0.027465746,0.019457143,0.021593668,0.000084770174,-0.02754637,0.014082242,-0.009278424,0.009217956,0.031496923,0.032061286,-0.035393726,-0.024482677,0.029346962,0.01115292,-0.015076599,-0.027264187,0.007115026,0.018892778,-0.0061811367,-0.012187589,0.009916693,-0.0035306383,0.02617577,-0.0076189227,-0.0065237866,0.012449616,0.0018862545,0.0040882844,0.013443972,0.00033824088,0.0022389824,0.002647139,-0.012859452,-0.029561957,-0.013343193,-0.020021508,0.00885515,0.003307244,0.0211368,-0.029642582,0.015143785,-0.0051397495,-0.0020575796,-0.01223462,-0.020182755,-0.0014562623,0.020330565,-0.036119338,-0.005993015,-0.0053782607,-0.008478907,-0.013188665,0.0045854626,-0.025759215,-0.008042197,-0.016850317,0.0064700376,0.01859716,0.0028268623,-0.03356626,0.009674823,-0.009829351,-0.007128463,-0.013605219,0.013054292,0.028325731,-0.0032854085,0.005959422,-0.0071351817,0.011327605,0.016621882,0.024818607,-0.0031443173,0.000017413317,0.018113418,-0.0032417374,0.023300197,0.0056402874,-0.014149428,-0.03176567,-0.012778828,-0.027022317,-0.0407955,-0.005190139,-0.018677782,-0.025974212,0.0041823452,-0.00043461117,-0.0040177386,-0.006023249,-0.0030468972,-0.030314444,0.034856237,0.01820748,-0.009164207,-0.030448817,0.019174961,0.009379203,-0.009970442,0.020223066,0.00029393993,0.016702507,-0.04006989,0.01859716,0.00037687298,-0.014203177,-0.024428926,0.017549053,0.017575927,-0.027237313,-0.025933899,-0.012201026,-0.043160457,-0.022789583,0.037113696,-0.009775602,-0.027626993,-0.0033845082,0.01986026,0.026108583,0.0023229653,-0.020451501,-0.04590166,-0.019027151,-0.01615158,-0.013826934,-0.022480525,-0.008895462,0.047917247,0.028003236,-0.027237313,-0.021351796,-0.00018969623,-0.040983625,-0.0144047355,-0.014740667,0.017387806,0.0027227236,-0.003092248,-0.000015051299,0.021660853,-0.0051263124,0.048615985,-0.0045888224,0.0017048515,0.0003831717,-0.006658159,-0.0033929066,0.003547435,-0.022991141,-0.0061341063,0.02862135,0.021069614,0.023031453,0.018059669,-0.0001458152,-0.0039774273,0.0005668841,0.0072829914,0.00043629084,-0.00072351214,0.00032942268,-0.030475691,-0.014861602,-0.0046459306,-0.014861602,-0.006762298,-0.035501223,0.013316318,-0.008263911,0.00484413,-0.008707341,-0.0033744304,-0.013410379,-0.011999467,0.023555506,0.027210439,-0.010454183,0.019107774,0.0078070443,-0.009184363,0.018946528,0.011112609,-0.012019623,-0.016084393,0.029346962,-0.0022221857,-0.0059023136,0.003135919,-0.00900296,-0.0010355084,-0.0040614097,-0.021862412,-0.0156006515,-0.0069403416,0.014391298,0.008297504,-0.018435912,-0.0019316052,-0.01834185,-0.020881493,0.000645828,-0.012738517,-0.021472732,-0.010205594,0.003688526,0.003967349,0.0017065313,-0.0231927,0.030448817,0.006140825,-0.033754382,0.004383904,0.22639085,-0.029669456,0.001379838,0.03923678,0.00055554643,0.023125514,0.028728848,0.013853809,0.00778017,0.0007440879,0.0061475434,-0.012684767,-0.02024994,-0.005895595,-0.0031224818,-0.038027428,-0.032491278,-0.0074979877,-0.0045854626,0.0042596096,0.015439404,0.0218221,-0.009909974,-0.0068865926,0.018059669,0.002803347,0.0027193641,-0.004971784,0.01472723,0.022883642,-0.010857301,-0.013692562,0.021983348,-0.01101183,-0.031496923,-0.027344812,0.0030804905,-0.020666497,0.028836347,0.04555229,0.027600119,-0.015439404,-0.004830693,-0.02725075,-0.0016821763,0.01937652,-0.005489118,0.0067152674,-0.009432952,-0.00085998425,-0.028970718,-0.017132498,0.029320087,0.010219031,-0.005700755,-0.007760014,0.017871547,0.01306101,-0.0014982538,0.023219574,0.00420922,0.0085460935,-0.0017107304,0.010528089,-0.025315786,-0.011428384,-0.004639212,0.008821557,0.017159373,-0.017414682,0.009748728,-0.011945719,0.0018912934,0.011139483,-0.027653867,-0.017145935,0.035501223,0.036576204,0.028406354,0.008955929,-0.014109116,0.007403927,-0.0018896138,-0.023810813,0.0110588595,-0.0156544,0.017804362,-0.0014235091,-0.013222258,0.013840372,-0.025221726,0.0058317683,-0.016380012,-0.02000807,-0.014095679,-0.0006659839,0.024092996,0.039962392,-0.011428384,-0.0031846291,-0.014982538,0.04603603,0.007276273,-0.009728571,0.0076054856,-0.021244299,-0.015520028,0.03507123,0.0033693914,-0.0065943324,0.021190548,-0.023649566,0.016232202,-0.022708958,-0.011824783,-0.0029377197,0.008949211,-0.020841181,-0.011730722,0.015963458,-0.0056436467,-0.044692304,-0.0031325598,0.00900296,0.017213121,-0.010434028,-0.019712452,-0.030206947,0.000060152706,-0.021996785,0.019685576,-0.026498264,-0.0113007305,-0.021513043,-0.031147555,0.008834994,-0.0020458219,0.008996242,-0.0070881513,-0.0040210984,-0.007054558,0.006238245,0.005190139,-0.0354206,0.009876382,-0.022628335,-0.0020878133,0.013155071,-0.0057175513,0.012153996,-0.023501758,-0.03034132,-0.012335399,-0.018180605,0.018758407,-0.008922337,-0.028513853,-0.0395324,0.027197002,-0.018140292,-0.013121478,-0.01218087,0.0050826413,-0.0218221,-0.038027428,0.013410379,-0.17124437,-0.0035743094,-0.008452033,0.0035743094,-0.0028386198,0.0040143793,0.031443175,0.017253434,-0.021660853,0.0127855465,0.022131156,-0.0004912996,-0.009399359,-0.015627526,-0.0009557247,-0.000035062832,-0.042972337,0.03697932,-0.008787964,0.0006991571,0.023474881,0.0029494772,0.004867645,-0.008525938,0.011381354,0.0028755723,-0.018220916,0.02289708,-0.0034970453,-0.019699015,-0.033243764,0.008915618,0.006379336,-0.004125237,-0.004897879,0.0049785026,-0.0036851668,0.019484017,0.008048915,0.01830154,0.015466279,0.018516535,-0.0071351817,0.028836347,0.00069789734,0.026552014,0.021808663,-0.0038934443,0.0064969123,-0.03636121,0.0034970453,-0.013524596,0.017683426,-0.011636661,0.006352462,0.0051599056,0.013000543,0.010601993,-0.00070629566,-0.019094337,-0.016984688,-0.0035675908,0.0068563586,-0.023461444,-0.011730722,-0.018046232,-0.008035477,-0.005573101,-0.008882024,0.0013907558,-0.014901915,-0.008116101,0.019806512,-0.00043251162,0.036226835,0.0035810282,-0.046412274,-0.005784738,-0.015923146,0.017481867,0.00084150804,0.03499061,-0.016017206,-0.0107565215,0.0034701708,0.01110589,0.0035776687,0.023421133,0.011287293,-0.017145935,0.0022121079,0.0027899097,0.011435103,-0.012093528,0.0055697416,0.016742818,0.0145256715,-0.0048105367,0.026753573,-0.02803011,-0.0003248036,0.0037859462,-0.023233011,0.04399357,-0.0016678991,-0.0013529635,-0.020962115,0.026068272,0.015493154,0.004830693,-0.028110735,0.02050525,0.008875306,0.03660308,-0.009950287,0.01898684,-0.035635598,-0.012174152,0.017629677,-0.0024388616,0.048508488,-0.032813773,-0.013269288,0.01859716,0.005294278,0.0016040722,-0.11781784,-0.0019114494,-0.0081228195,0.010118252,0.0014990936,0.012698205,0.0072426796,0.018758407,0.000041650237,0.023918312,-0.015506591,-0.036173087,0.008035477,0.00547904,0.02128461,-0.010440746,-0.0011413267,0.0012017944,0.012798985,0.01947058,-0.02563828,-0.044289187,0.0005786417,-0.021298047,-0.010951362,-0.008438596,-0.028110735,0.025409847,0.0042260163,-0.0034533741,0.025665155,-0.017508741,0.0046660863,0.0024842122,-0.003644855,-0.008888743,-0.06218761,-0.028110735,0.011898688,-0.03254503,0.0023280042,0.014243489,0.0017115702,0.0043469514,0.0065137087,-0.014068805,-0.013349911,0.019040588,0.02519485,-0.03684495,-0.002133164,-0.013276007,-0.013531314,-0.034426242,0.017683426,-0.008646873,-0.017669989,0.010548244,0.003933756,0.0012631018,0.009661386,0.024832046,-0.00401102,0.00085410546,0.006090435,-0.012442897,-0.006611129,0.00694706,0.0068227653,0.0015696392,-0.0030620142,0.0024741343,-0.007565174,0.020290254,-0.029239465,-0.023904875,-0.03727494,-0.008942492,0.0017737175,-0.0120129045,-0.00846547,-0.0028856501,-0.011871814,0.0030368194,0.023380822,-0.022614898,0.010252625,-0.0065204273,0.010051066,-0.006587614,0.0021298048,0.010366841,0.01809998,-0.011509008,-0.00006141245,-0.0014117515,-0.033915628,-0.013880683,0.01785811,-0.02837948,-0.023918312,0.009097021,-0.03445312,0.027277624,0.00033215212,-0.018825592,0.020330565,0.00048500087,0.031819418,-0.006171059,-0.026310142,0.0068865926,-0.0072829914,0.03571622,-0.017334057,-0.018167168,-0.010769959,-0.013403661,0.023461444,-0.012274931,0.023327073,0.0002662256,0.0066312845,-0.0071553374,0.0036784483,0.0049314722,0.014982538,0.047245383,-0.0049986583,0.013692562,-0.01032653,-0.0046291337,0.01134776,-0.019658701,0.012570551,0.0049012383,0.0018207479,-0.011099172,0.0034130625,0.022923956,0.026189208,-0.016030643,-0.011932281,-0.009587481,-0.0098024765,-0.0135716265,-0.010601993,0.0022221857,-0.0069000297,-0.0007613044,0.0037321972,0.008714059,0.03238378,0.01668907,-0.016957814,-0.027519496,-0.004750069,-0.029723205,0.005327871,-0.013087885,0.009224675,-0.014391298,0.030744437,0.00038338164,0.004262969,-0.039505526,-0.0003008685,0.0076995464,-0.026404204,0.019403394,0.016890628,-0.047756,-0.01418974,0.011367917,-0.015533465,0.010346686,0.031496923,0.022547713,0.019336209,-0.034560617,-0.01394787,0.01809998,0.012610863,0.00841172,-0.0069672163,-0.0027999878,0.02915884,0.0133096,-0.01286617,0.018382164,0.0013067729,-0.012066654,-0.020088695,-0.008593123,-0.018919652,0.011670255,0.023878,0.0135716265,0.013383505,0.0063491026,0.012698205,0.035339978,0.0067320643,0.013383505,-0.014015055,0.0059123915,-0.0009322095,0.014995975,-0.03219566,-0.03649558,0.029669456,0.03165817,0.015036287,-0.005532789,0.02382425,0.010548244,0.0026101866,0.007921261,0.012315243,-0.024267681,-0.031093804,0.026941694,-0.00455187,-0.0039068814,-0.008579686,-0.025208289,0.038349923,-0.026941694,0.0027663945,-0.01834185,0.0066951117,0.003028421,-0.02710294,0.004202501,-0.010212312,-0.011750879,0.011515726,-0.012059935,-0.0051531866,0.021029303,0.009486701,0.070088714,0.008129538,-0.0014747386,0.00915077,-0.0041319556,0.012261494,0.00012513442,-0.0020642981,0.0036381364,0.0023481601,0.007995166,0.0016317865,-0.0070075276,-0.015331906,0.010944643,-0.007578611,0.008069071,0.041816734,-0.022144593,-0.016070955,-0.00090449513,0.008183287,0.022467088,0.001536046,-0.022708958,-0.0006953779,-0.009513576,-0.0055563045,0.018073106,-0.039774273,0.002843659,0.014498796,-0.008619999,0.009446389,-0.0021902723,-0.0018896138,-0.011542601,0.0146466065,0.0065439427,-0.012893045,0.0031779106,0.021889286,-0.016124705,-0.012268213,-0.04243485,-0.0023649565,-0.011126046,-0.0041420334,-0.039317403]},{\"id\":\"707f7abb-cb28-431f-ad26-e50c195c0043\",\"text\":\"I love the BlendJet!! I actually have 2 of them and purchased the larger 20oz container to use from time to time!!\",\"vector\":[-0.017386187,-0.016391942,-0.017176872,-0.030769235,-0.0011528651,-0.005543564,0.017111462,-0.017922556,-0.0043040295,-0.010714287,-0.003564888,0.020944534,-0.019583989,-0.013801676,-0.00019521032,0.022161175,0.012970959,0.008523026,0.008699635,-0.018079542,-0.026700683,0.004918891,-0.0010482079,-0.01401099,-0.018851388,0.025798013,0.008627683,-0.013775512,0.0022403195,0.0046408954,0.011721613,0.012722398,-0.03341183,-0.009706961,-0.011355313,0.0064429627,-0.018040296,-0.00036691362,0.0047651757,-0.021180013,0.01412873,0.013540032,0.016902147,0.005671115,-0.0322606,0.018838307,-0.007463371,-0.0010907248,0.0049973843,-0.010720828,0.018916799,0.029330196,-0.014534277,0.010217165,-0.0010498432,-0.02437206,-0.037441134,-0.0023040948,0.03239142,-0.01636578,0.016038725,0.01571167,-0.013893251,0.014992152,-0.009360284,-0.026478287,-0.0040718215,-0.0078035067,0.011662743,-0.015083727,0.016941393,-0.0135923615,0.010210624,-0.00065656076,-0.0041568554,-0.0066490066,-0.027577188,-0.0031527998,0.000967262,0.0025493854,0.027210888,-0.026059657,-0.0016941393,0.02322083,0.008110938,0.013919415,0.0014439431,0.012212194,-0.0066980645,-0.0018707485,-0.0052132397,0.0021798145,-0.0033146916,0.009216379,-0.03236526,0.018655157,0.00090757466,0.01412873,0.0021634619,-0.023325486,-0.02322083,0.017425433,-0.0145604415,-0.024241237,-0.04589221,0.006887756,0.009321037,-0.014298798,0.01200942,-0.00022239667,0.00045174325,0.027551023,-0.0006079115,-0.020002618,-0.00782313,-0.013291472,-0.0022108846,-0.012467296,0.00794741,-0.020382,-0.002644231,0.034667715,0.04301413,-0.00016066525,0.02953951,0.021140765,-0.019243853,-0.015790164,0.00080169097,0.013526951,0.02128467,0.04094715,0.0037186032,-0.012467296,-0.014926742,0.012984041,-0.030088961,-0.018563582,0.02013344,0.026923079,0.018171117,0.029120883,-0.01437729,0.013003664,-0.01624804,0.025784932,0.019296182,0.02401884,0.0048534805,-0.010622712,0.0015992938,-0.035138674,0.014835167,0.012526166,0.022291996,0.013356882,0.006269624,0.008470696,-0.015528521,0.018458923,-0.007254056,-0.015920985,0.029565675,-0.003103742,0.0050595244,0.018694403,0.0030350606,-0.011780483,-0.0077969655,0.0040718215,0.013566197,0.027629517,-0.025130823,0.037702776,0.0052655684,0.018668238,0.018053377,0.0070839883,-0.019230772,-0.0026573131,0.016875982,0.008091315,-0.002989273,0.021572478,-0.0018347725,-0.030533755,0.020787548,-0.020211933,0.0130690755,-0.011355313,-0.0017513738,0.013199897,-0.017072216,-0.009334119,-0.6400838,-0.038016748,0.018537417,-0.020290425,0.017216118,0.050549455,0.011708531,-0.010328364,-0.0018200552,0.0057397964,-0.006155155,0.027995817,-0.027524859,0.015515438,0.02165097,-0.003219846,0.010720828,-0.02844061,-0.017857146,-0.0123430155,-0.045499742,0.01546311,-0.033568814,0.021690216,0.003712062,-0.0001243827,0.028937733,-0.013801676,-0.00050366303,0.012938254,-0.017883308,0.03212978,-0.0089154905,-0.00053228025,0.037650447,-0.0023024597,0.0057103615,0.015489275,0.00721481,0.004925432,-0.024542127,-0.0055174,0.014259552,-0.017804816,-0.012905548,0.02377028,0.02528781,0.0061388025,0.0021847202,-0.011165622,0.007666144,0.0058738887,0.01127682,0.007012036,0.021572478,-0.018236527,0.0434066,0.012938254,0.017137626,-0.0055010472,-0.005530482,0.023744116,-0.016941393,-0.0054421774,-0.004147044,0.0058869706,-0.04662481,-0.020028783,0.01067504,0.0058935117,-0.0065214555,-0.016169546,0.006985872,-0.0048469394,0.01194401,0.022095764,0.017320776,-0.004444663,0.011970174,0.011976715,0.0016696103,-0.010262952,0.00988357,0.0018413137,0.023273157,0.0045460495,-0.00539966,-0.017294612,0.009379907,-0.023966512,0.021978024,0.04311879,0.019911043,-0.0385662,-0.013422294,-0.011479593,-0.009608844,0.000038863207,0.033124022,-0.014272634,-0.007482994,-0.0070578237,0.034065936,0.010511514,-0.011021717,0.0037807433,-0.016718997,0.02140241,-0.0036924388,-0.006658818,0.033307172,0.011381477,-0.01527996,-0.008437991,-0.009896652,-0.02492151,0.0028306518,-0.0000030453702,-0.000022523285,-0.020028783,-0.0079277875,-0.0028731688,-0.0051936163,0.0027701468,-0.013389588,0.030638412,0.0146912625,0.0005711179,-0.011754318,-0.019348511,0.019086868,0.025850343,-0.00800628,0.009118264,-0.01527996,0.020774465,0.0130886985,-0.008503403,0.023678705,-0.037545793,0.005183805,0.010943225,-0.0022419547,-0.014769755,0.014547359,-0.0024823393,0.0015289772,0.013095239,-0.00021892172,-0.018001048,0.015450028,-0.014063319,-0.028178968,-0.007149399,0.01527996,0.007672685,-0.0019852174,-0.010989012,-0.00027125035,-0.013141027,0.013867087,0.020656727,-0.009020148,-0.015934067,0.0055402936,0.0016295462,-0.009353742,-0.0049712197,-0.016274204,-0.036499217,0.0018691132,-0.00060913793,-0.01121795,0.017804816,-0.013487704,-0.0106292525,-0.023443226,-0.019871797,0.013095239,0.0010375786,0.00287971,0.025340138,0.010132131,0.021127684,0.04301413,0.01115908,0.0063383053,0.010714287,-0.049502883,0.015227631,0.026478287,0.0078035067,-0.0010964483,0.0024905156,-0.013867087,-0.02425432,-0.01152538,0.013127944,0.02153323,-0.0013997909,0.031083206,-0.012650446,0.009484564,-0.0031250003,0.0102564115,-0.020028783,0.009327578,0.0016148288,0.018851388,0.018772896,-0.016889066,-0.0044675567,-0.027864994,-0.011394559,0.018432759,-0.00709707,0.0052622976,0.0009549975,0.0052655684,-0.018838307,0.0034307959,-0.006289247,-0.00018805602,-0.03050759,-0.02802198,0.012728939,0.007129776,-0.0021634619,0.017687077,0.004359629,0.0017546443,0.022776036,0.0029254975,0.014992152,-0.011185245,-0.0048796446,0.03273156,-0.011420723,0.040659346,0.008712716,0.025497125,-0.00039532644,0.028597595,-0.008313711,0.010354527,-0.00030579543,0.025327057,-0.01879906,0.007842753,-0.004657248,0.015371535,-0.018393513,-0.01364469,-0.009118264,0.0063710106,-0.02091837,-0.0013719912,0.013775512,0.029251704,0.0122318175,-0.004068551,0.023024596,-0.0052917325,-0.012676611,0.018393513,0.0020947803,-0.024175826,-0.048168503,0.0049744905,0.0038363426,-0.0033245033,-0.02333857,0.00026409604,-0.03218211,0.020068029,-0.001813514,0.017072216,0.03207745,-0.010047097,0.019819468,0.010531137,-0.04246468,0.011911304,0.021389328,0.010347987,0.0149529055,-0.011545003,0.014965988,-0.009092099,0.035217166,0.02982732,0.017124543,-0.00043252882,0.021572478,0.0056057046,0.0022697542,0.0149529055,-0.025327057,0.02250131,0.006658818,0.0037807433,-0.01601256,-0.028728418,-0.024581373,0.030455261,-0.0002512183,-0.007960493,-0.02875458,-0.008032445,-0.011800106,0.018785978,-0.017059132,-0.012578494,-0.01467818,-0.008523026,-0.016339615,0.0031985876,-0.0034602305,0.033307172,-0.011499216,-0.007188645,-0.02473836,-0.026111986,0.013448457,0.08325485,0.017700158,-0.000611182,0.006573784,-0.0013229331,-0.0107600745,-0.010197542,-0.0029729202,-0.010164836,-0.009778912,-0.010197542,0.010590007,-0.0072736796,-0.005039901,-0.018001048,-0.004833857,-0.0012689693,-0.02231816,-0.010727369,-0.0030939302,0.0123626385,0.009608844,0.003620487,0.030219784,0.026321301,-0.005586081,0.02183412,0.03953428,0.015855575,-0.0102760345,0.0023629647,-0.012997123,-0.029696496,0.009720043,-0.018877553,-0.021559395,-0.003748038,-0.027786503,0.006770016,0.0032917978,0.024123497,0.021245424,0.007888541,-0.025706438,-0.008424909,-0.014102565,-0.015790164,0.012284146,0.008464156,-0.010864732,-0.0003076351,0.004480639,-0.0026393253,-0.0048436685,0.005792125,0.0337258,-0.046781793,-0.013932497,-0.0013221155,-0.013167191,-0.023665622,-0.033908952,0.007482994,-0.010642335,-0.00037856493,-0.034589224,-0.021742545,-0.01486133,-0.00606358,-0.024345895,-0.0037218737,-0.008097855,0.001209282,-0.0005232863,0.02825746,0.013566197,0.0066064894,0.011976715,0.02365254,0.017935637,0.013049452,0.008581895,-0.012532706,-0.03001047,-0.009321037,0.0022452252,0.02128467,0.005608975,0.0011978351,0.010001309,0.0220696,0.0025363031,0.036891684,-0.01412873,-0.009720043,-0.009667714,0.021140765,0.01667975,-0.01437729,-0.014508112,0.0007154305,0.0011749412,-0.005003925,-0.0038101783,0.02267138,0.010223706,0.00091738626,0.014050237,-0.02073522,0.011407641,0.027708009,-0.00172848,-0.0004832222,-0.01236918,-0.0052786507,0.016234957,-0.021742545,-0.008313711,-0.013540032,-0.00031642467,-0.025183152,-0.030481426,0.029016225,0.0031021065,-0.011630038,-0.00063121406,0.004415228,-0.010949765,-0.015685506,0.018184198,0.0013482799,0.012918631,-0.04361591,0.01012559,-0.04819467,-0.0050170072,-0.027001573,0.0231685,0.010537677,-0.027446367,-0.034353744,0.010079802,-0.010361069,0.03377813,-0.0062925178,-0.019884879,-0.015620096,0.0044839093,-0.007868918,0.023547882,0.0048534805,-0.009170592,-0.014599687,-0.006380822,0.007790425,-0.020172687,-0.027551023,-0.013278389,0.022305079,0.01279435,0.030455261,0.0024234697,0.0037251443,-0.008379121,-0.004385793,-0.010262952,-0.0042059137,-0.0018413137,-0.015253795,0.027891159,0.010563842,0.0058608064,0.0033686555,0.020761384,-0.010027474,0.0047619054,0.0025919024,-0.028649924,0.0011986527,-0.017909473,0.0064364215,-0.00024099786,0.00818943,-0.004686683,0.0026066198,-0.014704345,0.010210624,0.024149662,0.018524334,0.026216643,0.0153977,-0.013003664,-0.030664576,0.00011017629,-0.012486919,0.0013507328,0.004418499,-0.01442962,-0.02977499,0.0128466785,0.01036761,0.0003450419,0.00794087,-0.011937468,-0.012074831,0.0037251443,-0.010380692,-0.006397175,-0.0073456313,-0.012042126,-0.007371796,-0.02043433,-0.03608059,-0.009713502,-0.0057430672,0.0044969916,-0.015266878,0.015986396,-0.0029565676,-0.012506543,-0.0067830984,-0.0018691132,0.022030354,0.0073848777,0.012159865,0.054421775,-0.012434591,-0.0060962853,-0.0062500006,0.003777473,-0.013206438,-0.011662743,0.042176876,-0.010694664,-0.0069662486,0.01582941,-0.014926742,0.005608975,-0.023809526,0.007044742,-0.010590007,0.0130886985,-0.032339092,-0.01412873,-0.011368395,0.020382,-0.0023923996,0.0012051937,-0.002492151,0.018184198,-0.038513873,0.024973838,-0.0042713243,0.005105312,-0.021062274,0.015018317,-0.0112441145,-0.010995553,-0.017242283,-0.019819468,0.014822084,0.011793565,-0.002328624,-0.017517008,0.022396654,-0.014769755,-0.016653586,-0.002340071,-0.0110348,0.017974883,-0.015057563,-0.014141812,-0.01176086,-0.00020686162,0.035583466,-0.028728418,-0.026700683,-0.017634748,0.020748302,0.016849818,0.007953952,0.0032034933,-0.03461539,-0.009379907,-0.01624804,0.0041274205,-0.042124547,-0.027734173,0.0015625001,-0.035609633,-0.010419939,-0.006263083,-0.005098771,0.023273157,0.01479592,-0.007888541,0.019152278,0.02662219,-0.009929357,0.005978546,-0.008104396,0.0038559658,-0.02231816,-0.003970435,-0.0022615779,-0.0086538475,0.004026034,0.0033523028,-0.029461019,-0.027080065,0.0009460035,0.008209053,0.03396128,0.0016336344,0.020054948,-0.014704345,0.03529566,-0.026347464,-0.022540556,0.006809263,-0.012199111,0.01636578,0.012748563,-0.022095764,-0.021140765,0.0036466513,-0.0006414345,0.00013378549,-0.009438776,-0.004140503,-0.017660912,0.009236003,0.00799974,-0.0053931195,-0.0023989405,-0.01667975,-0.00079678517,0.023809526,-0.0045133443,-0.011270278,-0.00096562674,0.0130886985,-0.0031446235,0.0065803253,-0.011813188,-0.026373629,-0.02862376,-0.018759813,-0.009275249,-0.010668499,0.016601257,0.022893775,-0.0010661958,-0.0071821045,-0.028597595,-0.02825746,0.0062500006,-0.019714812,-0.012506543,0.004075092,0.004748823,0.0076268977,0.0048763743,0.03304553,0.010361069,0.005190346,0.002940215,-0.01431188,0.015332288,-0.010903978,-0.003147894,-0.040371537,-0.037964422,-0.017778652,0.002129121,0.0121206185,0.011074046,0.003607405,-0.0036531924,0.01158425,-0.017019887,0.020028783,0.023783362,0.019557824,0.006380822,-0.019322347,-0.03341183,-0.0013270213,0.01728153,-0.00047749875,0.005559917,0.015450028,0.0023204477,-0.026674518,-0.01164312,0.0034994772,-0.006331764,0.010459185,-0.0045820256,0.0013450093,0.020264262,0.0085622715,0.025562536,-0.0068485094,0.033987444,0.0039442703,-0.00031294973,-0.01618263,0.008738881,-0.0013212978,-0.025484042,-0.01709838,0.0051805344,-0.01182627,-0.009451859,0.0012894102,0.00794741,-0.023979595,0.010472267,0.024843017,-0.032469913,0.0032165754,-0.019544743,-0.003937729,0.004925432,-0.009353742,0.000835214,-0.049555212,0.012578494,0.0041077975,-0.036630042,-0.04754056,0.0101452125,0.0026949244,0.023207746,0.01946625,0.21936162,-0.017778652,-0.0031380826,0.060439568,0.0038919419,0.010197542,0.0016990452,0.007489535,0.005043172,-0.0053211674,0.0019279829,0.0105180545,-0.026334383,-0.0019508767,0.009150969,0.014874413,-0.036473054,-0.0154369455,0.0010326728,0.00254775,-0.020329673,-0.0057397964,0.0105180545,-0.013160651,0.026491368,-0.0055664578,0.0037382264,0.005847724,0.018079542,-0.0016197346,0.0011250655,-0.0011684002,0.024306647,-0.012676611,0.012984041,-0.004379252,0.00053677725,-0.012571953,0.01599948,-0.0038984828,-0.0132195195,0.021127684,0.018223446,0.0076072747,0.0045166146,0.005465071,-0.015502356,0.0036793568,0.028414445,0.005003925,-0.0116169555,-0.013840922,0.0012076467,0.008948196,0.006204213,0.0007068453,0.0389325,-0.02765568,-0.006770016,0.0016573458,0.0014014262,0.033254843,-0.01091706,0.016326532,-0.013141027,-0.00068885734,-0.005324438,0.013284931,0.022305079,-0.024777606,0.009497646,-0.01085165,-0.016849818,0.020473575,-0.033071693,-0.0018200552,-0.0006508373,0.02917321,0.0072998437,0.006168237,0.010668499,0.0020097464,-0.0006782281,-0.017294612,-0.01571167,-0.04675563,-0.019570908,-0.0056122453,0.022710625,-0.008281006,0.0071821045,-0.005317897,-0.006295788,-0.008195971,0.018956047,-0.012990582,0.0005915588,0.016627422,0.0000728206,0.024607537,-0.02857143,0.002104592,0.008529566,0.0061224494,-0.0071755634,0.005487965,-0.024345895,0.019413922,0.010197542,-0.0026049847,-0.010583465,-0.040057566,0.011773941,-0.0046605184,-0.027080065,0.008876244,-0.009065935,-0.01588174,0.019047622,-0.018354267,0.0068615917,-0.012885925,0.02352172,-0.00799974,0.0039573526,-0.0020113818,-0.015868656,0.0045395084,0.0010997189,-0.02146782,-0.00013991776,0.019505497,0.024672948,-0.04468865,-0.016889066,-0.012761644,-0.017216118,0.00020338666,-0.0068615917,-0.013396129,-0.022789119,0.0027276298,0.015384617,-0.01601256,0.027760338,-0.031632658,0.0042288075,-0.010485349,-0.004621272,-0.022880694,-0.0021601913,0.013526951,-0.038723186,-0.002971285,0.030455261,-0.023992676,-0.03874935,-0.015122973,0.00094436825,-0.0047815284,-0.02303768,-0.0117674,0.032653064,0.002371141,-0.016352696,0.009635009,-0.16493984,0.015266878,0.01061617,-0.005164182,0.0032541866,-0.006681712,0.02291994,-0.005651492,0.0023744116,0.01437729,0.0400314,0.0060308743,-0.0072671385,-0.01212716,0.012578494,-0.022043435,0.013880169,-0.008346416,0.024450552,0.008908949,0.038226064,-0.016169546,0.028833074,0.011289902,0.01709838,0.02298535,0.020892205,0.017595502,-0.0015780352,-0.009765831,-0.0007706208,-0.011446888,0.048587132,0.005828101,0.04468865,-0.012192571,0.015358453,-0.0032394691,0.018001048,0.01879906,0.023914184,-0.0028960626,0.006299059,0.020695973,-0.011845893,0.037100997,0.023665622,-0.025143906,-0.0042288075,-0.0036531924,0.008032445,-0.01231031,0.0003096792,0.012787809,0.028048145,0.004778258,-0.011074046,0.029434854,-0.008287546,-0.016405025,0.01170199,-0.020905288,-0.011898222,-0.015201467,-0.034955524,-0.014115647,-0.0048175044,0.009085558,-0.0021716382,0.000013439872,-0.038801678,-0.0107600745,0.0100340145,0.023207746,0.027995817,0.010171377,-0.015227631,0.015528521,0.02807431,-0.018864471,-0.022815282,0.032888543,-0.0076792263,0.0045558615,-0.028492939,0.012761644,-0.01364469,-0.011924386,-0.0015011776,-0.016588176,0.009739666,-0.01419414,-0.010603089,-0.003358844,-0.0027832289,0.009052853,0.011440347,0.0037742024,0.008156725,0.00009249494,0.019871797,0.024764523,-0.027577188,0.03317635,0.03218211,0.010845108,0.025235482,0.012598118,-0.0018445841,-0.004699765,-0.010805862,0.011263737,0.016391942,0.028885404,-0.0017399269,0.026308218,0.008575354,-0.024293566,0.049188912,0.0046180016,0.01673208,0.011669285,-0.0069335434,0.018472007,-0.017294612,-0.012650446,-0.102511786,-0.030429099,0.02165097,0.03990058,-0.004928703,0.014534277,-0.0070578237,0.027524859,-0.02875458,0.042726327,0.010419939,-0.0022354135,-0.019021457,0.00040309396,0.051857673,-0.010269494,0.015607013,-0.033071693,-0.029853484,-0.0009819794,0.0018887365,0.0025428443,-0.021781791,0.0018298668,0.009458399,-0.024058087,-0.03181581,0.009020148,0.018079542,-0.013167191,0.032234434,-0.018197281,0.019976454,-0.018001048,0.00600144,-0.00399987,-0.010171377,0.01151884,0.02480377,-0.035557304,-0.008594978,-0.0041045267,-0.007129776,-0.021991106,-0.016091054,0.0224359,0.0035975932,-0.00612572,0.00025551088,-0.009013606,-0.02431973,0.0029925434,-0.03092622,-0.016535847,0.020028783,-0.00636774,0.013324177,0.0132195195,-0.035740454,0.020512823,-0.04165359,0.0050529833,-0.026635272,0.018315021,-0.028126638,-0.016627422,-0.0034340662,-0.010452644,-0.0012272699,-0.024973838,0.0036466513,0.0108908955,-0.011813188,0.028126638,-0.038801678,-0.012107536,0.014939823,-0.01491366,0.003869048,-0.0055991635,-0.021271588,-0.007646521,-0.019570908,-0.027446367,0.029644169,-0.008980901,0.009805077,0.014926742,-0.008627683,-0.023547882,-0.029618004,0.008614601,0.028414445,-0.017477762,-0.040005237,0.008751963,-0.009981686,-0.0030301546,0.054003146,-0.0042124544,-0.025065413,-0.0151753025,-0.049529046,0.029853484,0.00095090934,-0.011394559,0.01983255,-0.014298798,-0.000046221918,0.0032754452,0.0015077186,-0.02237049,0.0044479333,0.017438516,-0.0090463115,-0.011191785,0.0020588045,-0.031030877,0.026007328,0.018759813,0.012637364,-0.01036761,-0.0077969655,0.026530614,0.014782838,0.016326532,-0.0042124544,0.015960231,-0.014089484,0.024293566,-0.015018317,-0.0019394298,-0.025994247,-0.010838567,0.020761384,0.017595502,-0.017072216,-0.029748825,0.0040358454,0.019897962,0.008719258,-0.058241766,-0.00017374741,-0.026648354,0.020146523,-0.010766615,-0.0023515178,-0.0068550506,-0.0066653593,-0.0014055143,0.012957877,0.021310834,0.021180013,0.02267138,0.008922031,-0.029487183,-0.00093292136,-0.0032100345,0.013932497,0.007371796,-0.008130561,-0.00436617,0.023233911,-0.009314496,0.037310313,-0.03097855,-0.008261383,0.010786239,-0.0107600745,0.0112441145,0.016718997,-0.0007796148,-0.004052198,-0.0064069866,0.018367348,0.009863947,0.02528781,-0.035766616,-0.012434591,0.01200288,-0.020970698,0.018615909,0.018354267,-0.0154369455,-0.036185246,0.007430665,0.008640765,0.01516222,-0.037362643,0.012970959,-0.009903193,0.013298013,-0.018759813,-0.0017153979,0.0018167846,-0.004039116,0.012853219,0.054788075,0.006495291,0.0020342756,-0.025941918,0.034720045,-0.0010294023,0.004264783,-0.018942963,0.0011929292,-0.019348511,0.022095764,-0.03553114,-0.001209282,-0.00089040434,0.0021863556,0.024529045,-0.017059132,0.035792783,0.02171638,-0.0134615395,-0.012048667,-0.027603352,-0.013180274,0.0001527955,0.025340138,0.020905288,0.0067569343,0.018969128,-0.02183412,0.02013344,0.011538463,0.006573784,-0.009451859,0.008320252,0.015201467,-0.014782838,-0.01636578,-0.024398223,-0.0073848777,-0.0070382007,0.006027604,-0.005232863,0.042961806,-0.0030824833,0.07310309,-0.034065936,-0.021821039,-0.007849295,0.013526951,0.025863426,0.039037157,0.025457878,-0.024149662,-0.0056776563,-0.010341445,-0.013141027,0.0075876513,0.0024398223,-0.007882,-0.014730509,0.0161303,-0.0009893382,-0.02189953,-0.0034471485,0.016117217,0.0036760862,-0.0037218737,0.0073652547,-0.023194665,-0.010328364,0.0073848777,-0.029618004,0.0017333858,-0.012938254,0.01619571,-0.0054127425,-0.0637886,-0.009360284,0.012859761,-0.0041306913,-0.0011356948,0.0069073793,-0.0053767664,0.02091837,-0.010361069,0.031868134,-0.025706438,-0.007568028,0.026399793,-0.033437993,-0.023495555,-0.011126375,-0.0396651]},{\"id\":\"d6caeed4-d906-450f-aaf9-652a59a30344\",\"text\":\"It’s all good         \",\"vector\":[0.011358524,-0.005074685,0.011765752,-0.026187882,-0.027791733,0.017792724,0.009961419,-0.032753646,0.0047990233,-0.010982621,0.015675139,-0.01090744,0.006922873,-0.008182147,0.010838525,-0.02311801,0.018669829,-0.017805254,-0.0027393904,-0.011703101,0.010487683,-0.001843489,-0.02754113,-0.017867904,-0.01435948,-0.017091038,0.01716622,-0.04147459,0.02751607,-0.0029805945,0.0049086614,-0.018594649,-0.0032734852,-0.0013046953,0.011101657,-0.030648593,-0.035084244,-0.027290529,0.020524282,0.0017463808,0.010706959,-0.0051248055,0.016213933,-0.0055445633,-0.021426449,0.005319022,0.002947703,-0.008777326,-0.018557059,0.026162822,0.009729613,0.024107886,-0.026563784,-0.025536317,0.024847163,0.0028255347,0.020549342,0.0019405972,-0.008426484,-0.017792724,0.010118045,0.0010877681,-0.0378158,-0.00013303428,0.013369603,-0.0027393904,0.0095479265,0.0030181846,0.019196093,0.018419228,0.02291753,-0.014760442,-0.016025981,-0.005732515,-0.014622611,0.00118331,-0.03453292,-0.00093740714,-0.003405051,0.007868894,0.02310548,-0.036437493,0.00324216,0.023468852,0.0189079,-0.00645926,-0.0027002338,0.014610081,0.009084313,-0.0075681726,0.011602861,0.037114117,0.004147459,-0.005488178,-0.012692978,0.015036104,0.008871301,0.029771486,-0.0005192155,-0.012141654,0.007900219,-0.007643353,-0.009973949,-0.0030166183,-0.011972498,-0.030924255,0.0009632504,-0.027992215,-0.0065532355,-0.016401883,-0.019459225,-0.029921848,-0.017880434,-0.02749101,0.013732975,0.03358063,0.005632274,0.0022005965,-0.018607179,-0.030974375,0.0077247988,-0.011314669,-0.0072423904,-0.019960428,0.0108072,0.00645926,-0.02874402,-0.008182147,0.0014902973,-0.007887689,0.018344047,0.013181651,0.008157087,0.004636132,0.012624063,0.012229364,-0.012511292,0.013407193,-0.0049807094,-0.007173475,0.032152202,0.04465723,-0.002299271,0.004939987,-0.01154021,-0.0072737155,-0.003981435,-0.013820685,-0.01236093,-0.030949315,0.014660202,-0.00016817726,0.0042664944,-0.027240409,-0.016414413,0.03039799,0.0003443816,0.0081194965,-0.02172717,-0.009923829,-0.0009193951,0.002563969,0.011345994,-0.015136345,-0.012279485,0.028343057,0.03348039,-0.014860683,-0.005362877,0.0011057801,-0.008927687,0.01892043,-0.015812969,0.006478055,-0.019346453,0.018481879,-0.0005517154,0.0080505805,-0.014747912,0.0074052815,-0.024784511,0.005685527,0.0217397,0.014522371,-0.0071296194,-0.0051592635,0.019734887,0.00008707432,0.023443792,0.0020048139,0.020549342,0.02300524,-0.0026516796,-0.03583605,-0.6860473,-0.005199986,0.027215349,0.015148875,0.0048052883,0.015750319,0.019672237,0.018218746,-0.034933884,0.032828826,-0.014547431,0.014534901,-0.0040252903,0.014196589,-0.007762389,-0.010556598,0.023406202,0.007668413,-0.014848153,0.008614435,-0.019371515,0.019509345,-0.035435084,-0.016940678,0.0065720305,-0.004466976,0.0063245613,-0.024308369,-0.0023697526,0.0018544529,-0.030598473,0.014960924,-0.0040221578,-0.022078013,0.0783381,0.008232267,-0.014960924,0.0011143946,0.014221649,0.02300524,-0.015211525,-0.0061585377,0.029420644,-0.009159493,-0.009052988,0.029871726,0.02886932,0.010412502,0.0034864966,-0.025686678,0.011678041,-0.015086224,-0.0030416786,-0.019208623,-0.02027368,0.0016680678,0.036262073,0.01726646,-0.0006335525,-0.011878522,-0.021526689,0.022829818,-0.0031826422,0.001212286,-0.005685527,0.0065281754,0.015048634,0.00048279992,0.0348587,-0.011295874,0.013056351,0.009917564,0.007837569,0.0139209265,0.02291753,0.020336332,0.008746001,-0.013645264,0.0071296194,0.011208163,-0.004269627,-0.007831304,0.010688164,-0.008388893,0.03027269,0.00199385,-0.019847658,0.0024840897,-0.001837224,-0.009729613,0.024308369,0.0286939,-0.0058202255,-0.0055382983,0.028142575,0.011640451,-0.013582614,0.015650079,0.0025122825,-0.011114188,0.014973454,0.014823093,0.014635142,0.018356577,-0.0051060105,-0.013043821,0.013419723,0.03443268,0.00006920915,-0.004589144,0.011095392,-0.00865829,-0.014635142,-0.0040503507,-0.010713224,-0.030974375,0.0055101058,0.010656839,0.005698057,-0.031400397,0.028368117,0.0061209477,0.010957561,-0.0026939686,0.012843339,0.012611533,0.01290599,-0.00869588,-0.013081411,-0.0059893816,0.016364293,-0.0044168555,0.032051962,0.001507526,0.010180696,0.003199871,-0.00038725798,0.011609126,0.020398982,-0.012586473,-0.012266955,-0.004726975,0.016289113,0.00575131,0.001494996,-0.03175124,0.004504566,-0.012824544,-0.0077999793,-0.02172717,-0.0072862455,0.013607674,-0.0230303,0.025335835,-0.008764796,0.016852967,-0.014158999,-0.027891973,-0.0071546794,-0.016865497,-0.016163813,0.028493417,-0.011151778,-0.010663104,-0.006064562,-0.0081257615,-0.024220658,0.026363302,-0.008194677,-0.016088631,0.01012431,-0.0071045593,0.006810102,-0.0029915583,0.024308369,-0.013883336,-0.00081210624,-0.010669369,0.007862629,0.006810102,0.004545289,-0.0024684272,0.000027556402,0.00800046,0.011183103,-0.003608665,0.027290529,0.019246213,-0.0038623994,0.023569094,-0.010500213,0.02754113,0.000032548858,-0.012724304,-0.01591321,-0.005024565,-0.019734887,0.0139585165,0.036562793,0.019584525,0.009190818,0.005024565,0.020611992,-0.01296864,-0.0080631105,-0.026839446,-0.0038467366,-0.04167507,-0.0027863781,0.006452995,0.016063571,-0.0032077022,-0.013971047,-0.0030526423,0.010055395,0.008194677,-0.009798528,-0.0011629487,-0.024771981,-0.010418767,-0.0054443227,-0.0159508,0.014559961,-0.020361392,-0.007862629,0.018419228,0.02009826,-0.005181191,-0.0071358844,-0.001873248,0.0038937244,0.032728586,-0.004564084,-0.007768654,-0.0100366,-0.009679493,-0.009015397,-0.022629337,0.029871726,0.005632274,-0.0040033627,0.021038016,0.01586309,-0.005199986,0.008827446,0.005691792,0.03581099,-0.012617798,0.003235895,-0.0035585447,-0.011195633,-0.0038811944,-0.024934873,0.010638044,0.024245718,-0.036487613,-0.011258283,-0.013469843,0.01741682,0.023506442,0.002275777,0.015725259,-0.0044356505,-0.0080944365,0.0034081836,0.023418732,0.009228409,-0.006647211,0.00869588,0.0008630097,0.011145513,0.00033557139,-0.026288122,-0.001494996,0.021225967,0.0059893816,-0.014071288,0.009779733,-0.015224055,-0.000074103715,-0.028468357,-0.034207135,0.0056761294,0.029796546,-0.0012342136,-0.011289609,-0.0050214324,-0.01739176,-0.02158934,0.022817288,0.01006166,0.012016353,0.0064279344,0.002034573,-0.008175882,-0.015336826,0.0075869677,0.013482373,0.02308042,-0.011258283,0.0076120277,-0.012185509,-0.00649685,-0.023631744,-0.00054779975,0.00792528,-0.0065532355,-0.014083818,-0.024884753,0.006791307,0.036988817,-0.0076308227,-0.012279485,-0.0039062547,0.021088136,0.0033110755,-0.0259874,-0.008545519,0.024095356,-0.020825004,-0.017792724,-0.0015239718,-0.006603356,-0.008952747,0.108460434,0.045308795,0.004636132,0.020950306,0.016201403,0.013557554,-0.0013892734,-0.026488604,0.016025981,-0.007198535,-0.015036104,-0.008188412,0.014171529,0.016690075,0.017667422,0.01011178,-0.004172519,0.0021207172,-0.0040096277,-0.018331517,0.02891944,-0.015173935,0.016176343,0.034933884,0.0115778,0.007373956,-0.00015133996,-0.014096348,-0.0048115533,0.018657299,-0.026714146,0.02463415,-0.01732911,0.00945395,0.00039900496,0.049819626,0.020637054,0.0079754,0.0139209265,-0.003134088,0.02581198,0.013695385,0.020511752,-0.03039799,0.019947898,-0.017980674,-0.025172945,0.02749101,-0.01587562,0.004880469,0.015800439,0.00026587278,-0.017053448,-0.020774884,0.017003328,0.018406698,-0.0003318515,-0.023205722,-0.011815872,-0.016439473,0.0008426483,-0.013795625,0.0050872155,0.010312261,-0.01585056,-0.0080443155,-0.0048052883,-0.021464039,-0.0025592702,-0.005140468,-0.013319482,-0.008814916,0.0037026408,0.013181651,0.023656804,0.03295413,-0.008357568,-0.009692023,-0.02165199,0.016652485,0.009529131,-0.02001055,-0.0012506593,-0.008839976,-0.00470818,-0.020962836,0.009773468,0.019033203,0.002239753,0.00397517,0.021890061,0.012442376,0.0039877,-0.022203313,0.02022356,0.00506842,0.006114682,0.02166452,-0.0011981896,0.007035644,0.016389353,0.0023822829,-0.028017275,0.0044889036,0.0075619076,0.019258743,-0.0037120383,0.00429782,-0.017892964,-0.017905494,0.0040064952,-0.02448379,0.01875754,0.00012461563,0.009021662,0.019296333,0.025298245,0.014121408,-0.0029711968,-0.009905034,0.00865829,-0.020424042,0.014960924,-0.020649584,-0.0017369833,0.0057074544,0.005860948,-0.02167705,-0.014772972,0.006759982,-0.029896786,0.01874501,-0.00018041367,-0.012824544,-0.03921917,-0.004802156,-0.0022742108,0.0034770991,-0.011690571,-0.00009275201,-0.029871726,-0.022842348,0.027791733,-0.02170211,-0.014234179,-0.033856295,-0.00084734714,0.0072048,0.023606684,0.03455798,-0.02316813,0.01007419,-0.02759125,0.0031090279,-0.011966233,-0.010387442,-0.0043385425,0.0023227648,0.032127142,0.026463544,0.018481879,-0.0007882208,0.0021144522,-0.0080255205,0.0042414344,-0.018043324,0.001873248,-0.010732019,-0.01298117,0.011809607,0.013081411,0.011408644,0.00034399005,-0.02176476,-0.010425032,0.0012475267,0.0095416615,-0.024909813,-0.029646186,-0.019083323,-0.014296829,-0.0024621622,0.0063715493,0.005284564,0.018306457,-0.009215879,0.01740429,0.00429782,0.02864378,0.001735417,0.045333855,-0.014271769,0.010130575,-0.010080455,-0.029495824,0.009103108,0.0008254195,-0.008702145,-0.016276583,0.0058390205,0.015675139,0.02289247,0.007837569,0.023493912,-0.009435155,0.021301148,-0.0039595077,-0.02168958,0.006828897,-0.036262073,0.016502125,-0.024245718,-0.02464668,-0.016677545,0.022052953,0.0071045593,-0.015249115,0.006916608,-0.0055602263,-0.016965738,-0.00614914,0.0095040705,0.04611072,-0.0054944432,0.05508226,0.026764266,-0.0042821574,-0.014610081,0.020774884,-0.0139961075,-0.001416683,0.018707419,-0.01089491,0.01088238,0.013695385,-0.014108878,0.025498727,-0.0072737155,-0.012649123,0.015173935,0.02318066,0.016740195,-0.013357073,-0.004636132,-0.031450517,0.0022193918,0.00065900426,-0.0021724037,-0.00946648,-0.010970091,-0.03170112,0.011596596,-0.03606159,-0.001765176,0.0068602227,-0.00577637,0.013068881,0.01288093,-0.011972498,-0.012843339,-0.0024026441,0.030222569,-0.025573907,0.0047990233,0.010230816,0.029245222,-0.0038811944,0.0050809504,0.008933952,0.019496815,-0.018018264,-0.012611533,-0.0030636063,-0.007041909,0.013219242,-0.016113691,-0.014823093,-0.01598839,-0.031400397,-0.007743594,0.010186961,0.009397565,-0.0108072,0.0040534833,-0.0048836013,-0.007843834,0.0013086109,-0.003583605,0.020787414,-0.010280936,-0.029495824,-0.012736834,-0.023995116,0.01742935,-0.0017479471,-0.004492036,0.0019139708,-0.0024324032,0.0028975825,0.031425457,0.004946252,0.00045852287,-0.021927653,-0.01143997,0.0056354064,-0.025511257,-0.0022742108,0.017629832,0.017592242,-0.01585056,0.017717542,-0.000021952124,-0.02177729,-0.024834633,0.031525698,0.010612983,-0.003307943,-0.00612408,-0.022015363,-0.0014981285,0.008752266,-0.0013563819,-0.0159508,-0.014121408,-0.007373956,0.02455897,0.014284299,-0.01159033,-0.015161405,-0.011295874,0.007518052,0.006929138,-0.010581658,-0.0171161,0.0019734886,-0.0010290333,-0.0020079464,0.01236093,-0.006011309,0.00057129364,0.03568569,0.011245753,0.0021019222,-0.002167705,-0.000696203,-0.0018622841,-0.00033165573,-0.025385955,-0.021877531,-0.014572491,-0.013231772,-0.0048460113,0.018970551,-0.02003561,0.0080255205,0.0125614125,-0.0042727594,-0.022428855,-0.012605268,0.012147919,0.033806175,0.0154120065,-0.012517557,0.04337916,0.009128168,0.006640946,-0.009203349,0.0002903456,0.0034363763,0.011972498,0.006628416,-0.016251523,-0.042276513,0.0051780585,0.0139083965,0.02463415,-0.0056886594,0.013519964,-0.0014683695,0.0032703527,-0.030147389,-0.004081676,0.016038511,0.013169121,-0.0053597447,-0.013620204,-0.004394928,0.02455897,-0.0057732374,0.0074741966,0.004667457,0.0021222834,0.0015059598,0.0034332438,-0.027666433,0.0030996304,0.009792263,-0.033881355,0.01437201,-0.0012506593,-0.023569094,0.010763344,0.0050151674,-0.016639955,-0.019434165,0.0062807063,-0.00032617382,-0.009359975,0.0286939,-0.0068852827,0.010186961,0.009134433,-0.010255876,-0.024396079,-0.028192695,0.025711738,-0.019734887,-0.026463544,0.02300524,-0.0074491366,-0.024859693,-0.007330101,0.0035146894,0.014735382,0.011101657,-0.015286706,0.005719985,-0.006368417,-0.015249115,0.006393477,0.00078038947,-0.027666433,-0.028518477,0.021564279,-0.016452003,0.01437201,0.21271075,0.0028192697,-0.009385035,0.030598473,0.008652025,-0.007875159,0.013482373,0.0008974675,-0.0058703455,-0.02009826,0.0068852827,0.006622151,-0.010976356,-0.002839631,-0.0062713083,0.01885778,-0.045283735,-0.027666433,-0.015311766,-0.020549342,-0.013695385,-0.005986249,-0.008232267,0.003333003,0.0069917883,0.0062399833,0.0040722783,0.021363799,0.013532494,0.018131036,-0.006387212,0.006922873,-0.0010556598,0.00867082,-0.020900184,-0.011778282,0.0048710713,0.0030354136,0.029696306,0.0013759602,0.023544034,-0.0016116825,0.0012169847,-0.033881355,-0.0095604565,0.021551749,0.007348896,-0.0060426346,-0.0035992675,0.019283803,-0.033605695,-0.022040423,0.0072925105,0.0066910665,-0.011076597,0.00867082,0.024145477,0.012354665,0.00289445,-0.019434165,0.010663104,0.016351763,0.00092800957,0.005162396,-0.020599462,-0.007023114,-0.005895406,0.007041909,0.014171529,-0.005459985,0.013745505,-0.016527185,0.002665776,0.00060066103,-0.031224977,-0.017040918,0.007662148,0.0076934732,0.00078665453,-0.0075994977,-0.009836119,0.01742935,-0.0031983047,-0.021138256,-0.006828897,-0.045158435,0.022654397,0.0029007152,0.0010149371,0.002581198,0.01742935,-0.026513664,0.017780194,0.014271769,0.0036055325,0.008244798,0.010957561,0.026137762,-0.015499718,0.0022804758,-0.0005532816,0.020536812,0.010450092,0.020424042,-0.019797537,-0.023356082,-0.0032108347,0.01447225,-0.012830809,-0.014146468,-0.0020220429,-0.020424042,0.009347444,0.01232334,-0.014171529,0.03032281,0.017617302,0.0045014336,0.00288192,-0.006659741,0.0057795024,-0.010349852,0.002659511,0.0021269822,0.01006166,0.0079754,-0.022641867,-0.004611072,0.008200942,-0.039795555,0.03904375,-0.01598839,0.00858311,-0.0139334565,-0.005710587,-0.020962836,0.0010885512,0.0038874594,-0.004166254,0.0022977046,-0.02318066,0.011364789,-0.0015866222,-0.009265999,0.021890061,-0.012141654,-0.0067161266,-0.015599959,-0.010268406,0.00033929126,-0.02172717,0.0071108243,-0.0046455297,-0.009146963,0.022867408,-0.017642362,-0.029596066,-0.024345959,0.014985984,0.0012819845,-0.02581198,0.00083246763,0.029345464,-0.013119001,0.009955154,0.014559961,-0.1583803,0.019183563,0.007793714,-0.011602861,0.011922378,-0.01083226,0.013043821,0.0015592127,-0.01999802,-0.020386452,0.005272034,-0.0008050581,-0.03310449,-0.0022303555,0.0068664877,-0.02294259,-0.013206712,0.0003185383,0.0067537166,0.007856364,0.010713224,-0.015186465,0.029245222,0.014660202,0.018131036,0.0123859905,-0.010243346,0.0066785365,0.00012813971,-0.0013509,-0.020348862,0.0059705866,0.006778777,0.02009826,-0.0059173335,-0.016665015,0.0030495098,-0.016213933,-0.0007756907,-0.0077999793,-0.00052078173,-0.0002104663,-0.019935368,-0.0012835508,0.004576614,0.023794634,0.023280902,0.00793781,0.025298245,-0.015311766,0.0030886664,-0.028368117,-0.01601345,0.018557059,0.00055563106,0.0317763,-0.017040918,0.005547696,0.016702605,-0.029320404,0.025636557,-0.0064279344,-0.0016304776,-0.026989806,-0.0010799369,-0.013645264,-0.038367126,-0.0037840863,-0.007831304,0.0051310705,-0.0015349357,-0.026689084,0.0042602294,-0.028142575,0.009948889,0.0080129905,-0.02002308,0.0072423904,-0.014610081,-0.006478055,0.0072674504,0.045609515,-0.005679262,0.009748408,-0.01081973,0.0059549236,-0.010412502,-0.007843834,0.0031951722,-0.007787449,0.037890982,-0.026488604,-0.0030777026,-0.01715369,-0.00024159574,0.022002833,0.02162693,0.0009922263,0.007373956,-0.018469349,0.0077060033,0.001964091,0.0076809432,-0.0003420322,0.019045733,-0.008370098,0.009027927,0.023681864,0.009948889,0.006180465,-0.014259239,0.00798793,0.020411512,0.014071288,0.013895866,0.02751607,0.0020079464,-0.025536317,0.022428855,-0.021363799,0.042126153,0.011239488,-0.025523787,-0.0070920293,-0.0230303,0.016163813,-0.08715928,-0.018481879,-0.011728161,0.017592242,-0.013294422,0.00545372,-0.0017933687,0.0032609552,0.0032030034,0.02318066,0.004952517,-0.0068852827,-0.023280902,-0.0154621275,0.03317967,-0.0024684272,-0.029445704,-0.0012921653,0.0033893886,0.006791307,-0.032327626,-0.014647672,0.010155636,-0.0026642098,-0.04159989,-0.016389353,-0.02754113,0.022316085,0.005297094,0.007749859,0.007336366,0.01229828,0.016063571,-0.027666433,0.0018544529,-0.0003915652,-0.024396079,-0.022704517,0.008200942,-0.031600878,-0.01593827,-0.00500577,-0.00063002843,-0.024421139,0.007499257,-0.006609621,-0.0061460077,0.028317997,0.003176377,-0.018406698,-0.0402717,-0.006634681,-0.0075869677,-0.019571995,0.021175846,-0.011345994,0.009648167,0.024233188,-0.0057795024,0.011609126,-0.016502125,-0.0007760823,-0.041274108,0.023794634,-0.004636132,-0.001699393,-0.0014119842,0.0023901141,0.017980674,-0.0062180557,-0.027240409,0.006308899,-0.010249611,0.003458304,-0.028493417,0.008965277,-0.02003561,-0.02002308,0.027992215,-0.017579712,-0.021915123,-0.0200732,-0.0031246904,-0.0005141251,0.055583466,0.029746426,-0.0039125197,0.013131531,0.004159989,0.013557554,-0.011283344,0.008789856,0.020336332,-0.0064216694,0.0060864897,0.0015490319,0.0035460147,0.0051968535,-0.011195633,0.018005734,-0.017679952,-0.015800439,-0.048015293,0.014522371,-0.010612983,0.016464533,-0.0034614366,-0.01435948,0.009184553,0.0060739596,-0.008551784,0.019020671,-0.0063496213,0.026563784,0.0027754141,-0.014998514,-0.024333429,0.00079996773,0.010468887,-0.0063496213,0.025223065,-0.0045014336,-0.006221188,-0.010118045,0.012699243,0.004479506,0.0029132452,0.0216144,-0.011051537,0.025085233,0.011828402,-0.010706959,0.03343027,-0.01583803,-0.009792263,0.030222569,-0.003668183,-0.019722357,0.002924209,0.025323305,0.024847163,-0.03317967,-0.025448607,-0.01438454,0.0041192663,-0.010437562,-0.026187882,-0.03172618,-0.027666433,0.0051655285,-0.000083599174,0.008232267,0.025085233,-0.0017620435,0.0010423466,-0.012580208,-0.014184059,-0.007856364,0.013870806,0.01445972,-0.019070793,-0.015186465,0.03335509,0.013093941,0.021388859,-0.0049556494,0.015499718,0.01288093,0.006816367,0.0011488523,0.0074115465,-0.028142575,-0.009842384,-0.013369603,0.02305536,0.00217397,0.009710818,-0.0052814316,-0.015737789,-0.0051185405,-0.031425457,0.02576186,0.01236093,0.010249611,-0.026413424,0.017780194,0.01004913,0.01884525,-0.019835128,0.020937774,-0.025047643,0.022829818,-0.032177262,-0.011383584,0.0026830048,0.04601048,0.030874135,0.0109387655,0.016990798,0.02736571,0.012417316,-0.0006268959,-0.016802847,-0.008150822,-0.021075606,-0.011797077,-0.0024746922,0.036637973,-0.019546935,-0.03024763,-0.02588716,0.03573581,0.027340649,0.00045343253,0.007367691,0.027140168,-0.0077060033,0.002311801,0.010562863,-0.010287201,-0.0129937,0.029520884,0.02874402,-0.019033203,0.021025486,-0.005607214,-0.011740691,-0.009009132,0.0153869465,-0.016514655,0.002083127,0.0038530016,0.011258283,-0.026538724,0.003837339,-0.0095792515,-0.00719227,-0.00716721,-0.020361392,0.040647604,-0.016652485,0.019810067,0.011264548,0.0058860085,0.0037245683,0.012342135,0.01884525,-0.0057231174,-0.0008677085,-0.0037809538,-0.02603752,-0.013732975,-0.010224551,0.0065782955,-0.036387373,-0.009717083,0.010017805,-0.0061929952,-0.011508885,-0.012442376,0.013620204,0.0077310638,-0.01731658,0.003686978,0.02866884,-0.011226958,-0.007536847,0.034933884,-0.0025749328,-0.026939686,-0.042852897,-0.006615886,0.015587428,-0.040722784,-0.010982621,0.01447225,-0.04175025,-0.007480462,-0.027942093,0.0039375797,0.010656839,-0.005932996,-0.0012099366,-0.02578692,-0.029420644,0.018694889,0.012630328,-0.028167635,0.0011668643,-0.010732019]},{\"id\":\"802fcf7c-9211-4c5f-8d9f-cc97fa1215df\",\"text\":\"I was sent the wrong color.  I've emailed customer service I have replied to the text.  I'm about to make a post on all social media \",\"vector\":[-0.03723348,-0.0034914464,-0.021523587,0.00040312315,-0.0062981686,0.015516103,-0.009056443,-0.014689267,0.028758407,-0.015658217,-0.023125583,0.00017471363,-0.015671136,-0.03286675,0.005051454,-0.005587606,0.011872855,0.010723036,-0.011859936,0.007867866,-0.036613353,0.016407536,-0.005833073,0.017518599,-0.0033977812,-0.01652381,0.020477122,-0.017156858,0.012047267,-0.008442775,-0.012079565,-0.011091236,-0.013397335,-0.012531741,-0.017944936,0.0025354165,0.013810753,-0.0040146788,0.018487547,-0.029301018,0.010580923,0.0071766824,0.013759076,-0.006892457,-0.019727802,0.031187238,-0.010929745,0.0059331977,-0.0026355414,0.004996547,0.008888492,0.007751592,-0.013513609,-0.019120594,0.009573217,-0.011511114,0.018513385,0.007835568,-0.001102987,0.015761571,-0.00032237743,-0.0082166875,-0.011898694,-0.0066017727,-0.023138503,-0.024133291,-0.0041890894,0.00056804635,-0.007951842,0.01083931,0.017014746,0.0027259765,0.0018377732,-0.010044771,0.0013993239,-0.000090384776,-0.012815965,0.014547154,0.019882834,-0.006563015,0.022259988,-0.009553838,0.009224394,0.013539447,0.03439123,0.018074129,-0.0025047332,0.015916603,0.010852229,-0.015903683,-0.005106361,0.03860293,-0.016123312,0.0074027707,-0.012977458,0.023151422,0.009405266,0.052400764,0.0016197598,-0.015244798,0.017079342,0.012505902,-0.022893036,-0.01616207,-0.02623914,0.0053905863,-0.0032185256,-0.0032475942,0.02184657,-0.018694256,-0.027259765,0.022117876,0.02414621,-0.02204036,-0.023539001,-0.001673052,0.007351093,-0.03552813,-0.023784468,-0.019895753,-0.0017376486,0.011834097,0.0025967835,-0.015309394,0.039791506,-0.0012467144,-0.038318705,-0.0073187947,-0.01063906,0.021045573,0.011168753,0.021614023,0.005093442,0.02317726,-0.008139172,-0.0030376553,-0.0266138,0.020968057,-0.0024772796,-0.011756581,0.017957855,0.035631485,0.0008207806,0.009256693,-0.004957789,0.023099745,0.01102018,-0.013552367,-0.0075513427,-0.01064552,0.022402102,-0.016872631,-0.0013605659,-0.020567559,0.0044377865,0.003228215,0.00930837,0.021626942,-0.011297946,-0.033486877,-0.025554415,0.027699023,0.012667393,0.0026920633,0.013087272,0.029430212,0.023241857,-0.022660488,-0.020825945,-0.0070474893,-0.017402325,0.0311614,0.0074996655,0.004263376,0.0035786517,0.03651,0.019844076,-0.0035625026,0.019133514,-0.020787187,-0.022557134,0.017996613,0.011207511,0.009385887,0.0047866083,-0.022570053,0.022712165,-0.011058938,0.036716707,-0.013539447,0.000494164,0.0110072605,-0.0052226353,0.0010561544,-0.6317031,-0.036897577,0.010813471,0.031135561,-0.0035205148,0.048266582,0.00020731472,0.00951508,-0.017286051,0.03361607,-0.01141422,0.0023432418,-0.02055464,-0.016071634,-0.0006064006,-0.025115158,0.024998885,0.0078807855,0.015735732,0.0065920833,-0.021898247,-0.012835344,-0.014146656,0.007163763,0.0029956673,-0.0042859847,-0.00064919586,0.027673185,-0.016988907,0.030437918,-0.01236379,0.013255223,0.0152318785,-0.009805764,0.065630145,0.0015818093,0.009159798,0.009618434,0.0030118166,0.0007158111,-0.066560335,0.012447765,0.01027732,-0.025941996,0.017195616,0.012512362,-0.006944135,-0.018125806,0.030257048,-0.016394617,0.013823673,-0.003078028,0.0009721788,0.015322314,0.02055464,0.009153338,0.026329575,0.043202206,-0.0030747983,0.022247069,-0.039636474,-0.009017685,-0.02263465,-0.0071573034,0.001035968,0.019249788,-0.019805318,0.00417617,0.024042854,-0.0031410097,0.017040584,0.008636566,-0.036716707,0.028603375,0.012073105,0.012751369,0.0039662314,0.0066405307,-0.010083529,0.017738227,-0.015270636,-0.0027566599,-0.018552143,-0.02129104,0.03444291,0.007964761,-0.0077968095,-0.0051612686,-0.006030093,0.010161045,0.028060764,0.033125136,-0.0141337365,0.0073252544,0.014185414,0.00835234,-0.0057878555,0.0035302043,0.011549872,-0.012441305,-0.0045120725,-0.018255,-0.0064951885,0.009779925,0.01578741,0.013604044,-0.014650509,0.003837038,-0.0016076479,-0.013410254,0.029378533,-0.002527342,-0.014172494,-0.0032944267,-0.0091275,-0.027337281,0.016265424,0.007396311,0.00043683453,0.0052032564,0.009850982,0.0020945447,0.0125382,0.037336834,0.005968726,0.028758407,-0.017363567,-0.010425892,0.010626141,-0.006743885,0.0037369134,-0.014366284,0.022905955,-0.0046767937,-0.009721789,0.006401523,0.024378758,0.008991847,0.016859712,-0.01860382,-0.025308948,-0.010193343,-0.002771194,0.010212722,0.0031135562,-0.022582972,-0.026135786,-0.011575711,-0.016808035,0.0076288586,-0.0133069,-0.011704904,-0.017286051,0.024236646,-0.0020864701,-0.00817147,-0.010438811,-0.0277507,-0.009728248,-0.024843853,0.0049287206,0.03023121,-0.028784245,-0.013074352,-0.011898694,-0.037155963,-0.007906624,0.0069312155,-0.007544883,-0.018875128,-0.0077386727,0.0026113177,-0.01883637,-0.0266138,-0.008481534,0.008035817,-0.0076999147,-0.0049319505,-0.0035269745,-0.005245244,0.013655721,0.011834097,-0.021420233,0.002981133,0.017906178,0.009469862,0.0004982013,0.051031314,-0.012706151,0.024688821,-0.035657324,-0.023849064,-0.023771549,0.0034300794,0.008901412,-0.005490711,0.0059170485,0.019508174,0.0027485853,-0.0028454803,0.013565286,-0.012215218,0.034546264,0.0023448567,0.00049900875,-0.034158684,-0.0015801943,-0.0025531806,0.020748429,0.026872186,0.019882834,-0.0033784022,-0.011433599,-0.046638746,-0.0047123223,0.001463113,-0.026071189,0.021588184,0.009586136,0.019689044,-0.032944266,0.000021145293,0.0080487365,-0.024805095,-0.014405042,0.0074092303,0.016795116,-0.00588798,0.017518599,-0.0034494584,-0.012480063,0.0153998295,0.011834097,0.0058395327,0.014314607,-0.01254466,0.027802378,-0.006743885,0.03247917,-0.017273132,-0.007635318,0.017195616,0.007260658,0.004392569,0.037905287,0.0020848552,0.013358577,-0.0032443644,-0.0033493338,0.020838864,-0.011646767,0.0010795707,-0.0456052,-0.01140776,-0.00008382418,-0.016497971,0.0037175345,0.013862431,0.023345212,-0.00015543557,0.011711364,0.0014905665,0.020864703,-0.009347128,0.0038693363,-0.009650732,0.0013751001,-0.021626942,0.000765066,-0.0039242436,0.005086982,-0.023306454,0.020477122,-0.032194946,-0.00042593383,-0.0005361518,0.024662983,-0.037078448,0.015102685,0.0031264755,0.0054810215,-0.019172272,0.0159812,0.011847016,0.0072671175,-0.01806121,-0.004392569,0.034520425,-0.005587606,0.028370827,0.011162293,0.029378533,0.009495701,-0.013720318,0.009663652,0.015839087,0.034701295,-0.012318572,0.039610635,0.025799882,0.03268588,0.0015244798,-0.038292866,-0.0018846059,0.03741435,0.035786517,-0.002490199,-0.019262707,-0.011000801,-0.038370382,-0.0032815074,-0.000784445,-0.0054810215,0.013216465,0.012124782,0.0032750478,-0.013862431,-0.033977814,0.030567111,-0.013578205,-0.0051451195,-0.009256693,-0.0100964485,0.002643616,0.08888492,0.045320977,-0.0060397824,0.0051192804,0.008268365,-0.0014227402,-0.021329798,-0.008733461,-0.008571969,-0.0014639205,0.0072477385,0.0058395327,-0.0026161624,0.014495477,0.015916603,-0.0071185455,0.0058104643,0.0153998295,-0.018332515,-0.0277507,0.009657192,0.0009116195,-0.014353365,0.003937163,0.022531295,0.024753418,0.0033880917,-0.014120817,-0.0017925557,-0.013720318,-0.01520604,0.01614915,-0.018177483,0.010193343,-0.023448566,0.030257048,0.009986634,-0.014960573,0.0016811265,0.006918296,0.012790127,-0.01502517,-0.015193121,-0.016291263,0.015903683,0.00047962976,-0.0050449944,0.018655498,-0.01045173,-0.027828217,0.02032209,-0.020813026,-0.02054172,-0.023603598,0.023810307,0.020632155,-0.03421036,-0.02605827,-0.012292733,0.026717154,-0.016123312,-0.021316878,-0.0003167252,-0.03154898,-0.035088874,-0.018151645,-0.0050417646,-0.0058847503,0.0028406356,-0.0023044837,-0.016588407,-0.0150639275,-0.013849512,0.04389985,0.01768655,0.004521762,0.009534459,-0.008649485,0.018875128,0.028913438,0.0058266134,-0.032582525,0.009599055,-0.018797612,0.013268142,0.0040598963,0.037776094,0.00703457,-0.028551698,0.011918073,0.0311614,-0.0059202784,-0.0075707217,0.00036840249,-0.008223147,0.0058944398,0.00023618132,0.026665477,-0.013281061,-0.010761794,-0.0052581634,0.0035140552,-0.011524034,-0.017466921,-0.0015882689,0.013132489,0.003436539,0.002926226,-0.013526528,0.018720096,0.0002091315,-0.016730519,0.0029359155,-0.01083931,-0.0132035455,0.005032075,-0.0051418897,0.015722813,0.018590901,-0.021071412,-0.010509867,-0.050101124,0.03986902,-0.013642802,-0.0072348192,0.026148705,0.016110392,-0.031135561,-0.008817436,-0.003174923,-0.003346104,0.01975364,-0.013746156,0.0071766824,-0.024288323,-0.0039048647,0.01387535,0.027337281,0.013293981,-0.0047220117,-0.03139395,-0.014740945,-0.01311957,-0.033306006,-0.024469193,-0.030928852,-0.022983471,-0.004260146,-0.019508174,0.041884437,0.007125005,-0.01635586,-0.016187908,-0.008035817,0.0006423325,-0.0387838,-0.019185191,0.000009765189,0.04085089,0.03193656,0.011659686,-0.022557134,0.020154139,0.009198556,-0.005720029,-0.00894017,-0.024081614,-0.011162293,-0.007292956,0.0057135695,0.02510224,-0.0010198188,0.03971399,0.00817147,-0.0070474893,0.028164119,0.00027796725,-0.0010141666,-0.006540406,-0.022350425,-0.005209716,0.006924756,-0.000098913544,0.017273132,-0.016820954,-0.0007703145,0.014353365,0.012486523,0.0033848619,-0.009631353,0.006963514,-0.037362672,0.0015850391,-0.020800106,0.01614915,-0.0067697237,-0.02184657,-0.0073252544,0.019249788,0.006898917,0.03005034,0.018694256,-0.0010270859,0.000422704,-0.0026097028,0.013158328,0.0064499704,-0.027905732,0.0007303453,-0.032582525,-0.0067374255,-0.010981422,0.010128747,-0.025399383,-0.0028454803,0.004046977,-0.040566664,0.016174989,-0.03953312,-0.02183365,-0.02319018,0.00067301583,0.0071573034,-0.0019314383,0.00703457,0.032634202,-0.027983248,0.003118401,0.019521093,-0.012641555,-0.01633002,0.014960573,0.0353731,-0.0337711,-0.0010553469,-0.017234374,-0.004431327,-0.0032734328,-0.032763395,-0.0034042408,-0.0017828662,0.013242303,-0.012654474,0.0048770434,-0.034003653,0.036975093,-0.017195616,-0.008946629,0.0063692247,-0.011117075,-0.026445849,0.017531518,-0.008378179,0.01804829,0.026458768,-0.008966008,-0.006995812,0.009586136,-0.007951842,-0.02202744,-0.0052581634,0.01803537,-0.019236868,0.033176813,0.0022205082,0.012751369,-0.015696974,-0.027104734,0.006563015,0.0216657,-0.037750255,0.007435069,-0.012576958,0.0069505945,0.017634872,0.011310865,-0.017001826,-0.017570276,-0.019055998,-0.014288768,0.019120594,-0.002130073,0.006382144,0.010974962,-0.014921815,-0.008274824,-0.027647346,-0.017234374,0.008791598,-0.00313455,-0.008649485,-0.02414621,0.0059558065,0.027285604,0.013332739,-0.01007061,0.027466474,0.005781396,0.015748652,0.00417617,-0.006892457,-0.0020800105,-0.023642356,0.02623914,0.008016438,-0.045165945,0.016032876,-0.010929745,-0.03483049,-0.028267473,0.004408718,0.014056221,0.00019227582,-0.006879538,0.035786517,0.02147191,0.0041503315,-0.017066423,-0.04260792,0.0074027707,-0.00760302,0.014405042,0.0159812,-0.0011062168,-0.025140997,-0.02091638,-0.00093099853,0.000029800229,0.0029100769,-0.0040534367,0.022854278,0.025799882,-0.026846347,-0.023035148,-0.03191072,0.008139172,-0.02054172,0.016045796,-0.020632155,0.001482492,0.0009205016,0.009805764,0.03501136,0.03247917,-0.0046767937,0.013319819,-0.026368333,0.0116403075,-0.004828596,-0.0009802534,-0.020670913,-0.0013314974,-0.0034494584,-0.028267473,-0.0073446333,-0.0035011359,-0.04565688,-0.031264756,0.0043279724,0.017751146,0.029611083,0.009211475,-0.006068851,0.02452087,0.0022657258,0.013216465,-0.011937452,-0.014521316,-0.018771773,-0.014663428,-0.0019023699,-0.028939277,-0.018745935,-0.015477345,0.019534012,0.041522697,-0.010632601,0.016226666,-0.0010965273,0.020942219,-0.005923508,0.012719071,0.031135561,0.0019169041,0.012480063,-0.02245378,-0.034184523,-0.02030917,0.0017021204,-0.011194591,-0.0005555308,0.036354966,0.016084554,0.00053413317,0.00044329418,-0.0069828928,-0.030308725,0.015141443,0.024094533,0.0017053502,-0.019055998,0.003307346,0.0058621415,0.008184389,-0.0023674655,0.014663428,0.006634071,-0.0077838902,0.034908004,-0.0017457232,0.013733237,0.00588798,0.0006237609,-0.00049497146,-0.013565286,-0.0029391453,-0.023539001,-0.037336834,0.011330244,-0.016640084,-0.018629659,-0.013397335,-0.013526528,-0.0022156634,0.014702186,-0.01731189,-0.0012014968,-0.03953312,-0.0110266395,0.019792398,0.016084554,-0.043098852,0.014934734,0.0095925955,0.012693232,0.023254776,0.23316789,0.019120594,0.0036529377,0.03268588,-0.008132712,-0.01750568,0.018526305,0.015529023,-0.013629883,-0.0016133001,-0.0026097028,0.0074996655,-0.004466855,-0.005015926,0.022156633,0.006385374,-0.0155807,-0.013003296,0.012518821,-0.014211252,-0.0091275,0.009902659,-0.0027098274,-0.015167282,0.019353142,-0.0017537978,-0.011349623,0.012680313,0.019094756,0.0036238693,-0.03041208,-0.01578741,0.020606317,-0.018009532,0.0024417515,-0.0006051894,0.01178242,-0.0013290751,-0.009599055,0.017040584,0.021187685,-0.013604044,0.0178545,-0.023991177,-0.01977948,0.026200382,-0.017169777,-0.013694479,-0.007622399,0.008287744,-0.0077774306,-0.021045573,0.020347929,0.026342494,-0.009366508,-0.0014445415,0.016808035,-0.007331714,-0.035243906,-0.0072477385,0.005813694,0.028474182,0.01653673,0.008404017,-0.025735285,-0.0029407602,0.0012741679,-0.0057490976,0.0037789012,-0.021252282,-0.0019217489,0.0035980307,0.01502517,0.041703567,-0.014715106,-0.024650063,0.0053163003,0.024017015,0.038370382,0.012945159,0.020645075,-0.01196329,0.0119762095,-0.034494586,0.009075822,-0.041961953,0.010031852,0.013190626,0.0013064663,-0.0088303555,-0.00020146064,-0.00006777597,-0.024934288,0.0058072344,0.007454448,0.005090212,0.020632155,0.025761124,-0.018642578,0.015218959,-0.016627165,0.022479618,-0.009521539,0.006482269,-0.0011603164,-0.0027598897,0.0031458545,0.01065198,-0.012241056,-0.0054228846,0.004411948,-0.021239363,0.01063906,-0.0039823805,-0.013074352,0.016575487,-0.00011021795,-0.023396889,-0.003956542,-0.01921103,0.006860159,-0.009082282,0.01843587,-0.0061269877,0.011078317,-0.020761348,0.0074415286,-0.006004254,0.0055779167,-0.019495254,0.018745935,0.019831156,0.02167862,-0.029094309,-0.018926805,0.00361095,0.015296475,0.009767006,0.0013274602,0.020787187,-0.0089789275,0.012790127,0.030851336,-0.024301242,-0.0038596469,-0.030928852,0.03154898,-0.012615716,-0.009282531,0.0008211843,-0.035063036,0.0028099522,0.011614469,0.0005741023,0.02335813,0.015438587,-0.028835922,-0.024998885,-0.010716576,0.009482781,-0.023086825,-0.012241056,0.013436093,-0.0030134316,-0.011756581,0.014560074,-0.16257672,0.0064467406,0.007874326,0.017583195,0.008888492,-0.006821401,0.0108586885,0.0039662314,-0.011911613,0.009986634,0.029688599,0.003746603,-0.018565062,-0.024055773,0.00684078,0.0062206527,-0.01883637,0.0056360536,0.017234374,0.008856194,0.021342717,-0.012841804,0.0044022584,-0.0059170485,0.010819931,0.014353365,-0.016433375,0.035450615,-0.017182697,-0.026342494,-0.007092707,-0.023668194,0.034701295,0.031264756,0.031859044,0.009456943,-0.012686772,0.020373767,-0.0035269745,0.01689847,0.0027275914,0.0052743126,-0.0062658703,0.028835922,-0.03359023,0.019055998,0.029042631,0.0339003,-0.009004766,-0.034494586,0.009140419,-0.0061915843,0.0060171736,-0.0042472268,0.01387535,0.023668194,0.0044765444,0.030463757,-0.011136454,-0.030257048,-0.007312335,0.012706151,0.012874102,0.010251481,0.0007057179,-0.011117075,-0.0025015033,-0.017350648,-0.0266138,0.032039914,-0.00094957004,-0.0070797876,-0.004140642,0.0015309395,0.020490041,0.0017344188,-0.05020448,-0.0032863521,0.0012669008,-0.017531518,0.0033202653,0.036432482,-0.00059428875,0.02030917,-0.019275626,0.028448343,-0.012531741,-0.012144161,-0.00029997047,-0.011078317,0.0017699469,-0.021962844,0.01483138,-0.032246623,0.009741168,0.011375462,0.0030134316,-0.0007517429,0.004851205,-0.013009756,0.010477569,0.0043118233,-0.023900742,0.028344989,0.03480465,0.003950082,-0.014676347,0.0075707217,0.027802378,-0.012990377,-0.0016351015,0.006963514,0.016665922,0.022350425,0.01255112,-0.0021236134,0.0019055997,-0.018991401,0.004411948,-0.011498195,0.03594155,-0.018655498,0.001540629,0.016730519,0.0072154403,0.0049319505,-0.0825803,-0.024546709,-0.0017634872,0.006101149,-0.009767006,-0.00645643,0.018332515,0.029352695,0.0012224907,0.031419788,0.0010569618,-0.025619011,-0.014030382,-0.0150639275,0.024456274,-0.004996547,-0.001671437,-0.013991624,-0.018151645,0.016007038,-0.010768253,-0.01994743,-0.037543546,-0.013048514,0.017776985,-0.018448789,-0.042091146,0.005300151,0.010962043,0.0007719294,0.0029165365,-0.00036254842,0.000086599815,-0.023836145,-0.016265424,-0.0038596469,-0.019792398,-0.017402325,0.030386241,-0.039197218,-0.015813248,-0.0038111995,-0.01861674,-0.038499575,-0.0053905863,0.015942441,0.004738161,0.038499575,0.010167505,-0.008281284,-0.0038434977,0.0018038601,0.0025757896,-0.027595667,0.028965116,-0.006582394,-0.0016601327,0.037517708,-0.011905153,0.011336704,-0.0039242436,0.042478725,-0.016368778,-0.0003982784,-0.008765759,-0.02091638,-0.0077451323,0.002052557,-0.00069966196,-0.024650063,-0.010761794,0.017208535,-0.036225773,0.007435069,-0.027027218,0.0049158013,-0.015322314,0.003234675,0.021794893,0.0037239941,-0.018590901,-0.008907871,-0.025554415,-0.029766114,0.010606762,0.019986188,0.007893705,-0.004521762,-0.024120372,-0.009922038,-0.014120817,-0.0004120052,0.009450483,-0.014805541,-0.022763843,0.020231655,-0.023590678,-0.010406513,-0.0006261833,-0.0201283,-0.019314384,0.014676347,-0.047078002,0.024482112,0.01822916,-0.021161847,0.0050966716,-0.0066986675,0.006937675,-0.020813026,-0.005794315,-0.008507373,-0.0025822492,0.0070668682,-0.01235733,-0.025050562,-0.020761348,0.0076482375,0.01882345,0.0019863455,0.020179978,-0.026316656,-0.004847975,-0.019727802,0.0028261014,0.0033170355,0.00020650726,0.017634872,0.0003994896,0.025024723,-0.0060591614,-0.030644627,0.022156633,-0.00627556,-0.0015575856,0.015296475,0.009379427,-0.037259318,-0.008126252,0.04865416,-0.019430658,-0.036561675,0.0016003808,-0.019831156,-0.008649485,0.025179755,-0.02564485,0.015735732,-0.02585156,-0.009573217,0.027492313,0.0045120725,0.01903016,0.014430881,-0.026355414,-0.020877622,0.000498605,-0.055656433,0.005212946,0.022595892,0.024843853,-0.01312603,0.029714437,-0.005093442,-0.011801799,-0.019159352,0.03501136,0.02414621,-0.011885774,-0.0056005255,0.006705127,-0.022660488,0.009676571,-0.0033138057,0.014986412,-0.01254466,0.030127855,0.0062271124,-0.00199765,-0.0069893524,0.0017731767,0.005448723,-0.020412525,0.02813828,-0.019430658,0.01822916,0.0035495833,0.017027665,-0.009379427,0.005035305,-0.011608009,0.015348152,-0.03973983,-0.0022495766,-0.014547154,0.017725307,0.010735955,0.014805541,0.015464426,0.03250501,0.004063126,0.041703567,0.009857441,0.003381632,0.007712834,-0.034520425,-0.030463757,0.02625206,-0.0026823739,-0.015193121,0.008991847,0.016394617,-0.008404017,-0.027828217,0.011459437,0.028344989,-0.018926805,-0.014947654,-0.001157894,-0.015180201,-0.02850002,0.025360625,-0.0021413774,-0.0011942297,0.009586136,-0.0099284975,0.022944713,0.016019957,0.0094246445,-0.0027502002,0.0026500756,0.019908672,0.02244086,-0.00817147,0.00007423563,-0.007816189,-0.01254466,0.0077257534,-0.018074129,0.041005924,0.010484029,0.056793332,-0.00015735328,-0.013939947,-0.012673853,-0.0011514344,-0.0024256024,0.03609658,-0.0043053636,-0.0014211253,-0.019895753,0.01750568,-0.004240767,-0.0055326987,0.0012006894,-0.016665922,-0.0036593974,-0.0014849143,0.026303736,-0.025774043,0.0058201537,0.020231655,-0.008914331,0.023022229,0.00779035,-0.008391098,-0.014392123,0.004350581,-0.00015260947,-0.031316433,-0.022001602,0.012822425,-0.019353142,-0.0209293,-0.0021139237,-0.007467367,-0.031316433,-0.013552367,0.012706151,0.016304182,0.008261905,0.0056231343,0.03555397,-0.009728248,-0.015671136,-0.016394617,-0.02073551,-0.011233349,-0.0056554326,-0.042272016]},{\"id\":\"72862b11-f5d2-434a-881d-61841e3f5625\",\"text\":\"Ok so how do I do it need help plz\",\"vector\":[0.0023678737,0.020322334,-0.00010093636,-0.007211998,-0.014896914,0.029872648,-0.0097605,-0.03102867,-0.014713001,-0.005747266,0.0012430516,-0.004167589,-0.014910051,0.0014409218,0.0067095226,0.01355698,0.014226947,-0.008604479,0.008033036,-0.025511295,-0.022476736,0.00509372,0.023567075,0.011645603,0.004896671,-0.007934512,0.0014910051,-0.01433204,0.021018574,-0.004489436,-0.0013038084,0.008387725,-0.015869023,-0.04850036,-0.01882476,0.00018617038,0.0091824895,-0.020690158,-0.020453699,-0.034234002,0.013977352,0.0023038327,-0.00336954,-0.011166117,-0.0011272852,0.026154988,-0.02425018,-0.023842944,-0.011941177,-0.015855886,0.00042899238,-0.009116806,-0.037859704,-0.029268363,-0.0057965284,-0.0019277973,0.017616192,0.0023416004,-0.0014401007,-0.009175921,-0.0054287035,0.015212192,-0.00029742104,0.002395789,0.009977254,-0.000026196245,0.0034680646,0.01944218,0.009576588,0.0011543795,0.021084256,-0.0010074136,-0.015671974,0.019993918,0.0049590697,0.017051319,-0.0052415067,-0.0032069746,0.003605999,-0.007770304,0.020479973,-0.030398112,0.0010854122,0.030345567,0.019048082,0.010890248,0.0401192,0.011566784,-0.01600039,-0.00088425796,0.03299916,0.036703683,0.0050674467,0.00336954,0.017064454,0.008302337,-0.01874594,0.014726138,0.01758992,0.003921278,-0.0010402552,-0.002614185,-0.030109107,-0.0073105227,-0.00844684,-0.00755355,-0.01355698,-0.027219053,-0.013635799,-0.013491297,-0.0028243707,0.042431246,-0.013675209,-0.027875884,-0.013596389,-0.017681874,-0.012374685,-0.020453699,-0.055646673,-0.013182587,-0.002678226,0.017366596,0.024039993,0.007835987,0.026115578,-0.02297593,-0.0071331784,-0.011461691,0.01235498,-0.009688249,0.059745297,0.0331568,0.004643791,0.0020525951,-0.0068573095,0.028453894,0.01018744,0.0027258464,-0.017248368,-0.00022681175,0.012381254,0.01212509,0.011251505,-0.0123681165,-0.0131366085,0.031370223,0.015015144,-0.026522813,-0.0015419094,-0.0023021908,0.044060186,-0.01355698,-0.0030066413,-0.003780059,0.009675113,0.022989064,-0.0077834404,0.01502828,0.0058392226,0.0025583545,-0.0033925292,0.010423899,-0.004988627,-0.0014401007,-0.002205308,0.027770791,0.021241896,0.0019277973,-0.01956041,0.010443604,-0.010266259,0.02289711,-0.019153176,0.00604284,0.008873779,0.0043219444,0.00007707495,0.007855692,-0.00937297,-0.005888485,-0.03856908,0.012033134,-0.0002894159,0.034523007,-0.04148541,-0.010542128,-0.0001007311,-0.000022386115,0.005179108,-0.006558452,0.0069624027,0.015724521,-0.000992635,-0.0049787746,-0.65409803,0.008361451,0.00039266143,-0.009517473,0.014463406,0.017760694,0.0016075925,0.0019376498,-0.02614185,0.027744517,-0.008138129,0.044848382,-0.018233612,-0.016460171,0.01747169,-0.029820101,0.0180497,-0.029163271,0.0019261552,0.011724423,-0.03481201,-0.0023777261,-0.020716432,0.01596098,-0.010476445,0.006417233,0.01743228,-0.02711396,0.0053695887,0.033288166,-0.015724521,0.0019721333,0.0069624027,-0.005205381,0.056382325,-0.013622663,-0.016105482,0.005766971,-0.005175824,0.045689125,-0.020046465,-0.008880347,-0.0054516927,-0.013143177,-0.0065157576,-0.011376303,0.009241604,-0.027087687,0.016946224,0.0028949801,0.016972499,-0.00031794698,-0.0068573095,-0.009307287,-0.001316945,-0.00109937,0.0185883,0.017734421,0.0287429,0.021688541,-0.009097101,0.010213713,-0.034181457,-0.022122048,-0.016460171,-0.017813241,-0.030923577,-0.0058425064,0.015566881,0.0071988613,0.002699573,-0.0025764173,-0.017760694,0.009727659,0.009156216,0.044979747,0.021176213,-0.0165784,-0.01135003,0.018680258,0.028269982,0.0071725883,-0.0031232287,-0.021478355,0.0148575045,0.0023629474,-0.018102247,-0.00673908,-0.01797088,-0.0063614026,0.013077494,0.018430661,0.028086068,-0.024526048,-0.012650554,0.01580334,-0.0127884885,-0.010404194,0.016959362,-0.01743228,0.0008982156,-0.009977254,-0.002179035,-0.009162785,0.035626482,-0.023107294,-0.037833434,0.018811623,0.04025057,-0.012322139,-0.009471495,0.00604284,0.0005788318,0.020151557,0.013274543,-0.028401347,0.010995341,0.0053827255,0.03496965,0.010305669,0.016762313,-0.0026798681,0.01723523,-0.0037931958,0.008499386,0.019087492,0.018653983,0.007921375,0.005110141,-0.0078819655,0.0096225655,-0.02792843,0.008893484,-0.0069624027,0.0024696824,0.005159403,0.008886916,0.015080826,0.027192779,0.0062464573,-0.0032545947,-0.013885396,-0.0036322724,0.008919757,0.026680453,-0.0014162906,-0.006607714,0.013116904,-0.02409254,-0.0002994736,-0.030450659,-0.015671974,-0.021057984,0.0048178514,0.020716432,0.0010640653,0.029215816,-0.013261407,-0.029531095,-0.019836279,0.016381351,0.02556384,-0.020768978,0.0002721741,0.015133373,-0.0077046207,-0.013399341,-0.001295598,-0.012000292,-0.043245714,-0.007822851,-0.011757265,-0.028348802,-0.006111807,0.013977352,0.005675015,0.013465024,-0.010607812,0.005202097,0.006210332,0.006601146,0.0098787295,0.0055633537,0.015816476,0.0064238016,0.015212192,0.009918139,0.039620012,-0.04124895,0.017603055,0.009070829,0.019823141,0.000026132102,0.0040493594,0.00074550253,-0.0012143153,0.03741306,0.00031302075,0.0019737754,0.007770304,0.03370854,0.0021658982,0.020545656,-0.026667316,0.0074090473,-0.009353265,0.027770791,-0.011152981,0.016591536,0.0030115675,-0.000033405984,-0.024315862,0.022962792,0.010338511,0.0050641624,0.02041429,-0.012611144,0.025511295,-0.017826378,0.019796869,-0.00016677334,0.003474633,0.029294636,-0.02858526,-0.012716237,0.017208958,0.0065551675,0.014266357,0.0062136156,-0.037386786,-0.015514335,0.004249693,-0.007914807,0.00059278944,0.033603445,0.0160398,0.016394487,-0.007343364,0.008124992,-0.008440271,-0.009714522,0.021005437,0.0090182815,-0.021228759,0.018575164,0.012387821,0.018483208,0.021241896,-0.011790106,0.016026663,-0.0029935047,0.012072544,-0.026864365,0.0017356745,0.01723523,-0.028506441,-0.008630752,-0.00397054,0.022949655,0.026509676,0.015054554,0.008046173,0.011172686,0.0015443725,-0.01301181,-0.009918139,0.0058589275,-0.029294636,-0.016906815,-0.021386398,-0.031186309,-0.01181638,0.018391252,0.018351842,0.009281014,0.01956041,-0.0009376254,-0.011573352,-0.0062661623,-0.0010000244,-0.034417916,-0.012670259,0.010975637,0.00012818456,-0.000034021763,-0.021911863,-0.018890442,0.014975734,0.003520611,0.0074615935,-0.0109033855,-0.002461472,-0.015291012,-0.00032307848,-0.009241604,-0.00031507335,0.0077374624,-0.0038720153,0.03454928,0.008827801,0.02335689,0.006666829,-0.03318307,-0.021386398,0.030555751,-0.0045288457,0.0100298,-0.021977546,0.01445027,-0.019074356,-0.013018379,-0.019179448,-0.010318806,-0.0068178996,-0.0057735397,-0.015448651,-0.017957743,-0.004916376,0.008873779,0.009615998,-0.0017192536,-0.02273947,-0.017300913,0.002525513,0.054858476,0.021741087,-0.00024918505,0.019297678,-0.014148127,0.015093964,-0.027980976,-0.028453894,0.017878924,0.010128325,0.0049722064,-0.007540413,0.0059180423,0.0066504083,0.0379648,-0.0028818436,-0.0041117584,-0.0039639715,-0.0008161118,-0.013701483,-0.0056093317,0.0063482663,-0.012427231,0.03102867,0.020361744,0.037386786,0.021635994,0.004141316,0.014095581,0.00022989065,-0.017340323,0.007507572,0.01801029,-0.012492915,0.0055337963,0.021609722,-0.014581636,0.025012102,-0.0076783476,0.009832752,-0.0038588787,0.015895296,0.0029754417,-0.03370854,0.0027110677,-0.017064454,-0.0075010033,0.017997153,-0.005031321,-0.010594674,0.016512716,0.002699573,-0.023448845,-0.012893581,-0.0061643533,0.0067522167,-0.022358507,-0.008821232,-0.0030936713,-0.013202292,-0.020860935,-0.0027439091,0.02494642,-0.012151363,-0.005727561,-0.010102052,-0.012755647,-0.00065929355,-0.035968035,0.0054352717,0.010712904,-0.022463601,-0.026273217,0.025261698,0.013038084,0.0003741881,0.005747266,-0.00024200096,0.0058622113,0.0061807744,0.0040329387,-0.02397431,0.024381546,-0.0025222288,-0.0189824,0.0048868186,0.011369735,0.031107489,-0.0033284882,0.042536337,0.017760694,0.0048703975,0.028532714,-0.03397127,0.014555362,0.010102052,0.005333463,0.01808911,-0.0055140913,0.00972109,0.006111807,-0.02293652,0.018496344,-0.011908336,-0.0065748724,-0.012361549,0.008144697,0.024959557,-0.045137387,0.012427231,0.021583447,-0.025051512,0.0056881513,0.0018834613,0.025865981,0.04710788,0.021425808,0.02792843,0.0095306095,0.030739663,0.00039615086,-0.02319925,0.010778587,0.004249693,-0.022030093,0.017695012,0.012203909,-0.031895686,0.012946128,-0.013845986,-0.00067940896,0.00362242,-0.015934706,-0.015054554,-0.021754224,0.008893484,0.004594529,0.0054976707,-0.0056618783,-0.012157931,-0.009031419,-0.014095581,-0.0031199446,-0.0165784,0.00431866,-0.02564266,0.007960785,0.0015427305,-0.0012184205,0.02188559,0.018378116,-0.0036618295,-0.025839709,-0.027087687,-0.0022381498,-0.038411442,0.0015854244,-0.014003625,0.03885809,0.016381351,0.022424191,-0.0040723486,0.030529479,-0.0063088564,-0.012749079,-0.032552514,0.012236751,-0.02297593,-0.007507572,0.009826183,0.011244937,0.009964118,0.026890637,0.014476542,0.0030739664,0.0015878875,-0.013162882,-0.012657123,-0.010870543,-0.025655797,-0.0048047146,0.008013331,-0.018062837,0.006883583,-0.022214005,-0.00069008244,-0.007297386,-0.004857261,0.02025665,-0.005783392,0.0071988613,-0.012079111,0.02351453,-0.011198958,0.002397431,-0.023094159,-0.025301108,-0.009570019,0.021517765,0.008965735,0.013543843,-0.003776775,-0.0017455269,0.01948159,-0.034260277,0.018102247,-0.009208763,-0.0026076168,0.008459976,0.0032775837,-0.014621045,-0.035757847,0.011744128,-0.022056365,0.0055600693,0.00336954,0.014358313,0.01351757,-0.0125323245,-0.013491297,0.008085582,-0.021307578,0.029846374,0.010916522,0.010778587,0.016184302,0.01433204,0.0074156155,0.024066268,0.0049787746,-0.005264496,0.0048244195,0.026614768,0.0027685403,-0.008348315,-0.0023514528,-0.0019146607,-0.021557175,-0.019704912,0.022450464,0.009011714,-0.02111053,-0.027324146,0.009346697,-0.014621045,0.03919964,-0.010732609,0.003954119,-0.001834199,0.022411054,-0.044638194,0.027429238,-0.0029327478,0.015724521,0.027245326,0.004857261,-0.0133927725,-0.026168125,-0.02103171,-0.008308905,-0.005720993,0.014791821,-0.0039179935,0.013701483,-0.0002500061,-0.02474937,-0.020519383,-0.017051319,0.0096225655,0.01441086,-0.036519773,-0.0052349386,-0.0002569849,0.0035567367,0.0029442424,0.009661975,-0.014962597,-0.028453894,-0.009221899,-0.018601438,0.032289784,-0.0041610207,-0.011074161,-0.013754029,-0.021793634,-0.006949266,-0.011409145,0.02103171,0.00034586227,-0.03578412,-0.001791505,-0.00840743,0.00029105798,0.005780108,-0.0057965284,0.037439335,0.04997166,0.02932091,-0.016420761,0.0067029544,0.014148127,0.041432865,-0.026312627,0.0038884361,-0.0021396251,-0.03594176,-0.012026565,-0.0072842496,-0.017038181,-0.032053325,0.016092345,-0.017117001,-0.009648839,-0.00035817784,0.008210381,0.01351757,0.032394875,0.0033481931,-0.0019540705,0.0031708488,0.017721284,0.005248075,0.0014557004,-0.004410616,-0.0005332642,-0.012341844,0.018837897,0.019113766,-0.0061479327,-0.016460171,-0.0035271794,0.00087030034,-0.006988676,0.0038326054,-0.03602058,-0.024801917,-0.012026565,0.019849416,-0.0053006215,0.01681486,0.011238368,-0.0010698126,0.02428959,0.017182684,-0.031160036,-0.009570019,-0.020860935,-0.037938524,-0.04067094,-0.020650748,-0.016512716,0.024998967,0.010693199,-0.020361744,-0.01092309,-0.021911863,-0.035337478,0.010423899,-0.022161458,-0.012335275,0.023882354,0.002765256,-0.010056074,0.02544561,-0.0010016664,0.0008354062,-0.014726138,-0.0066109984,0.015540608,-0.009051124,-0.0023596634,-0.017813241,-0.027980976,-0.016486444,0.026588496,-0.0023678737,0.008611047,0.025090922,-0.009051124,-0.011790106,-0.0052940533,0.0034122341,0.0040920535,0.008118424,0.008085582,-0.021767361,-0.0095306095,0.027350418,0.011133276,-0.005573206,-0.016052935,0.024342136,-0.013070925,0.008972304,-0.03594176,-0.0032250374,-0.00010601654,-0.01351757,0.031449042,-0.0038391738,-0.0068967193,0.0048933867,0.002244718,0.0028128764,0.01498887,0.03160668,-0.0038752996,-0.00964227,0.009346697,-0.024618004,-0.019179448,0.005303906,-0.0057505504,-0.024447229,-0.0040854854,0.011507669,-0.004686485,-0.01177697,0.028480167,0.008144697,0.010272828,-0.020519383,0.0010977278,-0.027691972,0.00015332886,-0.04222106,-0.014686728,-0.023659032,0.007645506,0.014502816,-0.006693102,-0.02389549,-0.009852456,0.009832752,0.015790204,0.026010485,0.23645896,-0.0160398,-0.004768589,0.009996959,0.023645895,0.0154617885,0.008184107,-0.020926617,0.0068376046,-0.0043252283,-0.013432182,0.0049098074,-0.013412477,-0.003803048,0.0035436002,-0.015382969,-0.03218469,-0.025695207,-0.02293652,0.016184302,0.028847992,-0.003280868,-0.0077308943,-0.0055173757,0.030739663,0.022358507,-0.024381546,0.023790399,0.008630752,0.0044795834,0.01433204,-0.005349884,0.0024154938,0.0057045724,-0.016013525,0.014883777,0.038227532,-0.024841327,0.0394361,-0.0014146485,0.0009836035,0.023987448,-0.0016240132,-0.015645701,0.0045157094,0.000991814,-0.007297386,0.0010509287,0.007665211,-0.0003025525,-0.0016322236,-0.029767554,0.019389635,0.03381363,0.0016256553,-0.0019048082,0.0074418886,-0.010075779,-0.0149494605,0.027192779,-0.030844757,0.047712162,-0.018062837,0.007927943,-0.007888533,0.0012775352,-0.0054713977,-0.02363276,0.02924209,0.009655408,-0.021925,0.008788391,0.017287778,0.009635703,0.013911668,-0.014121854,0.008558501,0.02703514,0.034234002,0.0067719216,-0.008624184,0.0068376046,-0.0041938624,-0.02932091,-0.023002202,-0.041012492,-0.0037110918,-0.012118521,-0.0076520746,0.033918723,0.0048671137,-0.019048082,0.0008785107,-0.04411273,0.016604673,0.00894603,0.008210381,0.027429238,-0.0012373043,0.001013982,-0.021399535,0.010062642,-0.0042891027,-0.0051396983,0.0067522167,-0.001404796,-0.005028037,0.00048892817,0.015763931,-0.027665697,-0.0027570457,-0.022765743,0.007468162,0.00054393767,0.0039442666,-0.0015583301,-0.002356379,-0.001035329,0.0055797743,-0.0024943135,0.005592911,-0.019888826,0.0029196113,-0.017182684,0.00439748,-0.023750989,-0.019757459,0.0038096164,-0.003625704,-0.021360125,0.022594966,-0.00028100028,-0.011560216,-0.012013429,-0.022424191,0.013005243,-0.011323757,-0.0053663044,-0.0071200416,-0.024736233,0.0067653535,-0.011041319,-0.0050871517,-0.004679917,0.009747364,-0.016249985,0.0062727304,-0.012913286,-0.02107112,0.019376498,-0.029294636,0.0017192536,0.001078844,-0.0017603055,0.021570312,-0.003921278,-0.012171068,-0.043219443,-0.02319925,-0.0076980526,0.010844271,-0.005028037,-0.009083965,-0.0008505954,-0.005550217,-0.052993078,-0.16730784,0.01498887,0.014686728,-0.03063457,0.007468162,0.028690353,0.02266065,0.004601097,0.011507669,0.011809811,-0.003645409,-0.014883777,-0.03772834,-0.003625704,-0.0015870666,-0.011304052,-0.0010837702,0.016171165,0.019849416,0.021097394,0.014043034,-0.014108717,-0.00832861,-0.00009811405,0.015540608,0.005760403,-0.012269592,0.00055871636,-0.018877307,-0.035731576,0.0070083807,0.003239816,-0.0067062387,0.015212192,-0.00092695194,-0.020571928,0.019179448,-0.009399244,-0.008808096,0.029662462,0.01320886,0.007527277,0.0039771083,-0.0012898508,0.027402965,0.038358897,0.0035961466,-0.022345372,0.008827801,0.0030805347,0.028322527,-0.021911863,-0.0020870788,-0.015855886,0.020677023,0.02548502,0.0033761084,-0.007625801,-0.016906815,0.0015599723,-0.0015246676,-0.0033399828,0.008538796,-0.012361549,-0.019429045,0.0009023208,-0.0016125187,0.028033523,-0.033288166,0.019967645,0.0020000488,-0.012650554,0.016972499,-0.0011478112,-0.0045222775,0.00041236635,-0.031186309,0.018995536,0.010056074,-0.006157785,0.008105287,0.042588886,-0.0103910575,0.013425614,0.000042078198,0.0032513107,0.010200577,-0.011277778,-0.013662073,0.004473015,0.024972692,-0.023212388,-0.018417526,-0.021386398,0.030897303,0.017117001,-0.0061676376,-0.0015369832,0.016801722,0.005553501,0.023948038,0.019928236,-0.027271599,0.006433654,0.032841522,0.0076586427,0.024407819,0.027271599,0.02866408,-0.011258073,-0.0129724005,0.02095289,0.014699865,0.023685304,0.014804957,0.02564266,0.012190773,0.000329031,-0.0151071,0.016263122,0.03489083,-0.010364784,-0.004962354,-0.0007734178,-0.009944413,-0.0051199934,-0.09390048,-0.029504823,0.01723523,0.013937942,-0.015790204,0.003540316,0.009957549,0.023488255,-0.011448555,0.028164888,-0.03525866,-0.016788585,-0.0022808437,-0.035232384,0.0062300367,0.011855789,-0.009931276,-0.030398112,-0.0024778927,0.013990488,-0.01747169,-0.015658837,-0.010476445,-0.012348412,-0.0010287607,-0.012236751,-0.038096163,0.015816476,0.02204323,0.014226947,-0.0014655528,-0.021373263,0.017944608,-0.02548502,-0.015002007,-0.011054456,-0.004128179,-0.014029898,0.030923577,-0.021767361,-0.004187294,-0.014305767,-0.00824979,-0.042378698,-0.00080256467,-0.001121538,-0.013622663,0.00074386044,-0.003934414,-0.018614573,-0.024696823,-0.0062957196,-0.039462373,-0.0071331784,0.009688249,0.003651977,-0.04164305,0.015711384,-0.0185883,-0.0033071411,0.019271405,0.013340226,-0.024184497,0.002548502,0.01502828,0.016788585,0.004124895,-0.0057045724,0.011790106,-0.0151071,-0.017865788,0.014226947,-0.009051124,0.015133373,-0.021294443,0.0073565007,-0.009727659,-0.0058622113,0.011987155,-0.017169548,-0.02021724,-0.034575555,-0.010318806,-0.024276452,0.012709669,-0.00228577,-0.010942795,0.012230182,-0.004624086,-0.036519773,0.0028654227,0.035652757,0.028427621,-0.0067719216,-0.018772213,0.005336747,-0.013103767,0.031659227,0.003842458,0.0050871517,-0.0014589846,-0.024381546,-0.04810626,0.016223712,0.0018161362,-0.02363276,-0.01681486,-0.000431866,0.017419143,-0.01727464,0.0035698733,0.017156411,-0.000046209047,0.022870835,-0.024407819,0.011396008,-0.023803534,0.005632321,0.018338706,-0.010279397,-0.000722924,-0.010791724,-0.027297873,-0.0089263255,-0.013031515,0.013235133,0.0052086655,0.009661975,0.01693309,0.02618126,-0.036546044,-0.011205527,-0.0031872697,-0.015488061,-0.021596584,0.026391447,-0.012538893,-0.01305122,-0.00027586878,0.012676828,0.011579921,0.026746135,0.00625631,-0.034680646,0.009813047,-0.010831133,0.008992009,0.0036552614,-0.005162687,0.0009392675,-0.00635155,-0.019153176,0.02502524,0.015474925,-0.0069624027,0.027797064,-0.016289394,-0.041038767,-0.01932395,-0.030161653,-0.0063285613,-0.017681874,0.035390023,0.0011478112,0.021635994,0.0036585454,-0.029163271,0.0002894159,0.017603055,0.030476931,-0.008092151,-0.03657232,-0.000111661175,0.0049327966,0.011231801,-0.027508058,0.021399535,0.019218858,-0.03454928,0.0067916266,-0.030240472,0.022148322,0.011888631,-0.0087621175,-0.010180872,0.009386106,0.02367217,0.024499774,0.0209923,0.0072645447,0.008972304,0.00979991,-0.035679027,0.0027373408,-0.00310845,0.0022611388,0.026719863,-0.006955834,0.010706336,-0.011021615,0.0047554523,0.003934414,-0.0024302725,-0.014699865,0.015474925,-0.024736233,-0.012965833,-0.0022972645,-0.030240472,-0.02188559,-0.008361451,0.01161933,-0.010811429,-0.0070280856,0.019993918,0.0014039751,-0.008000195,0.02204323,0.005198813,-0.025130332,-0.035731576,0.015212192,0.014804957,0.0042398404,0.0093664015,-0.01506769,0.026930047,0.02641772,0.0049590697,-0.028164888,0.0077177575,-0.006890151,-0.008801527,0.004860545,-0.017760694,-0.02196441,0.012407526,-0.012913286,-0.030687118,0.019836279,0.008959167,0.06457957,0.008729276,-0.0022085924,-0.034128908,0.000036407906,0.026930047,0.017773831,-0.0027504775,-0.008538796,-0.00030665772,0.017182684,0.019770596,-0.0006658618,0.0017586634,0.0065715886,0.00035530422,-0.010010095,0.0071725883,-0.02037488,0.011685013,0.0133927725,0.0070740636,0.005632321,0.014870641,-0.0023202535,-0.010817997,0.042404972,-0.030476931,-0.012460073,-0.0044171847,-0.00074878667,0.0030049991,-0.011441986,-0.016263122,0.013924805,0.003065756,-0.02359335,-0.011757265,0.012295865,0.016762313,0.010693199,0.003967256,-0.028269982,-0.0049853427,-0.030004013,-0.00937297,0.011514237,-0.0049722064,-0.004229988]},{\"id\":\"398297d0-3e55-41c7-a31a-3a84284bbf5c\",\"text\":\"Ok so how do I do it now\",\"vector\":[-0.0015453805,0.0044467603,0.0037941753,-0.01629167,-0.035679024,0.024070222,-0.023270069,-0.042421307,-0.018849542,-0.009070604,0.00996258,0.00045910507,-0.011057873,0.0051419768,0.000102786245,-0.016462196,0.020922074,0.000025312265,0.01992516,-0.02867439,0.0022069835,-0.0016601566,0.010546299,-0.032871924,-0.012343368,0.0019856293,-0.003423612,-0.0038433652,-0.0043057497,-0.0009551025,-0.002316841,0.0107102655,-0.007857256,-0.040532418,-0.017000005,-0.009116515,-0.019492289,-0.0073915916,-0.023401242,-0.025434421,-0.004725503,0.0012248267,-0.0022217405,-0.021105716,-0.0053125015,0.01030363,-0.011051315,-0.012671299,-0.020226857,-0.012697535,-0.00464352,0.009969139,-0.03796143,-0.03525927,-0.011346454,0.005666668,0.0020380986,0.003931907,-0.0028218564,-0.007890048,0.0020922073,0.021591056,0.012494217,-0.001107591,0.016094912,0.016488431,0.0098379655,0.0012797554,-0.0028841635,0.002123361,0.021879636,0.0033678636,-0.021236889,0.0033777016,0.012520451,0.006601275,-0.012166284,-0.00391551,0.016068676,-0.0022709304,0.026628094,-0.015871918,0.0011526817,0.025172075,0.023427475,-0.0019413586,0.02475232,0.020922074,-0.013746917,-0.0034728018,0.02843828,0.043969147,0.0062635047,-0.012356485,0.009293598,0.016658954,-0.018744605,0.000575521,0.034734577,0.0004914884,-0.0064635435,0.00086246163,-0.022522382,-0.016606485,-0.0154390475,-0.010729942,0.012868059,-0.027441366,-0.004036845,-0.0073194467,-0.00015648514,0.045333344,-0.009451006,-0.038564824,-0.0041909735,-0.02529013,-0.019020068,-0.026444452,-0.04701236,-0.010677472,0.0024890052,0.02399152,0.026759267,0.0032989979,0.026523156,0.0025529522,-0.012913969,-0.0077851103,0.011326778,0.0026332955,0.05803088,0.01823303,0.0007858075,0.012277781,-0.0021331988,0.01755093,0.030930564,0.010749617,-0.015006177,-0.009470682,0.011130018,0.004735341,0.01218596,-0.0027234768,-0.017393524,0.017341055,0.014914356,-0.011956408,-0.0050009657,-0.021407412,0.007365357,-0.012828707,0.0026382145,-0.0094116535,0.01794445,0.025198309,-0.007824462,0.009641206,0.01842979,-0.0012986115,0.006489778,0.03578396,0.0057814443,-0.0009706793,0.014206022,0.03182254,0.04483489,-0.0109332595,-0.012271223,-0.006181522,-0.013563275,0.009201777,-0.026851088,0.010139664,-0.00012830347,0.0126581825,0.014284726,-0.011149694,-0.0019807103,0.017157411,-0.010257719,0.008913197,0.004217208,0.04289353,-0.03258334,-0.020423617,0.0039548622,-0.00089115574,0.009352626,-0.007404709,-0.0023676704,0.022784729,-0.013655096,-0.004663196,-0.65355575,-0.013799386,0.00022114927,-0.018206796,0.025565593,0.020397382,-0.017196763,-0.003090761,-0.017813276,0.036597233,-0.009969139,0.032032415,0.0010534822,-0.004023728,-0.0027283959,-0.031114206,0.02113195,-0.010408567,-0.0065783197,0.0004023318,-0.012205636,-0.0013174675,-0.03119291,0.017655868,0.000246564,0.0076080267,-0.0041680182,-0.040978406,-0.0018888894,0.025618063,-0.012166284,-0.0060536284,0.010179015,0.006427471,0.043995384,-0.012743445,-0.019387351,-0.0016773732,-0.018757721,0.022325624,-0.0176034,-0.025526242,0.0061552874,-0.0072669773,-0.004125387,-0.0058043995,0.0049780104,-0.021787815,0.02741513,-0.0054469537,0.02050232,0.014638893,-0.0022528942,0.015071764,-0.017091826,-0.010467595,0.02107948,0.01513735,0.02490973,0.005351853,0.002877605,0.0127500035,-0.026182106,-0.01508488,-0.0169213,-0.010264277,-0.012776238,0.018980715,0.0083360365,-0.0041909735,0.018941363,-0.0042663976,-0.012264664,0.0063815606,-0.008395064,0.046146616,0.023794759,0.008086808,0.009313274,0.00035232215,0.0061454494,0.0055453335,0.00841474,-0.027441366,0.0059322934,0.011792442,-0.012520451,-0.0030235348,-0.006925928,-0.0017347613,0.00526987,0.01780016,0.022443678,-0.01697377,0.00033531067,-0.00647994,0.0017249233,0.022496149,0.00943133,0.0043975706,-0.009674,-0.006368443,0.028123464,-0.0076145856,0.033108033,-0.00082269986,-0.027100315,0.015989974,0.03979785,-0.013720683,-0.006958721,0.0073784743,-0.005532216,0.004227046,0.006174963,-0.031796306,0.008158953,0.008932873,0.030143527,0.0011371048,0.004210649,-0.007194832,0.021354944,-0.0057027405,0.0016872111,0.029618835,0.027782414,0.01015278,0.0048074857,-0.020016981,0.018915128,-0.030038588,0.0050108037,-0.011241515,0.0015502995,0.017052474,0.026365748,0.00788349,0.014468368,-0.013071377,0.011569448,-0.025736118,-0.0225355,-0.022115747,0.021276241,-0.0022119025,-0.023965284,0.0059486898,-0.015543986,-0.0058339136,0.0043254257,-0.016881948,-0.026234575,-0.009595295,0.0076801716,-0.005073111,-0.0007612126,-0.01929553,-0.030195996,-0.020659728,0.0056502717,0.0145864235,-0.0107102655,-0.00256279,0.0145864235,-0.018928247,-0.024398156,0.0034170535,-0.010015049,-0.03830248,0.009195219,-0.021499233,-0.008782024,-0.0153472265,0.009510034,0.006122494,-0.00831636,-0.000657504,-0.0055682887,-0.0035842988,0.0122121945,-0.0037449857,0.015570221,0.0057125785,0.0023414358,-0.0057814443,-0.008591823,0.0097461445,-0.037305567,0.013760035,0.00391551,0.030983033,0.0103954505,0.0005197725,0.0011526817,0.0045910506,0.01731482,0.010264277,0.02170911,0.022443678,0.04042748,0.039824083,0.022456797,-0.0060470696,0.015780097,-0.012979556,0.027074082,-0.018101856,0.016068676,0.009116515,-0.0046599163,-0.032189824,0.008237656,0.010113428,0.012553244,0.023716057,-0.007306329,0.02548689,-0.015570221,0.014888122,0.008749231,0.0040007727,0.015832566,-0.014284726,-0.009608413,0.009752703,-0.002379148,0.02993365,-0.014770065,-0.040191367,-0.024634266,0.008099925,0.0059650866,0.02239121,0.036203712,0.022771612,0.00440085,0.0056371544,0.019125005,-0.012369602,-0.010474154,0.00025332763,0.024568679,-0.008565589,0.03229476,0.024201395,0.0373318,-0.0001504389,-0.016514665,0.0034859192,-0.02350618,-0.0302747,-0.019020068,0.014612658,0.01677701,-0.016108029,-0.008185187,-0.007214508,0.014940591,0.017419757,0.006620951,0.015320992,0.0036203715,-0.0036957958,0.013668214,0.0016331023,0.018993832,-0.020187505,-0.015740745,-0.0043942914,-0.04622532,-0.015150467,0.012369602,0.005371529,0.015832566,-0.0008005645,-0.0013674772,-0.023099544,-0.0065783197,0.0028202168,-0.023571765,-0.016881948,0.008165511,-0.0048829103,-0.011451392,-0.015937503,0.0037318682,0.019557877,0.010828321,0.008303243,0.014533955,-0.007234184,-0.015255406,0.002534916,-0.023388123,0.006702934,0.0050862283,-0.0094116535,0.015845682,0.00526987,0.015360343,-0.009273922,-0.011825235,-0.024594914,0.03258334,0.014809418,0.007712965,-0.013891207,0.0004148342,-0.02451621,-0.017787041,-0.015255406,-0.01832485,-0.016357258,0.0098576415,0.00894599,-0.004145063,-0.0112480745,0.008926314,0.0041516214,0.0034006569,-0.030091058,-0.006001159,-0.014520837,0.08820064,0.017996918,-0.0072932118,0.040820997,-0.03573149,0.025277013,-0.02113195,-0.033396613,0.021276241,-0.0018462582,0.012304015,-0.0038269686,0.0035285503,-0.0044861124,0.02132871,-0.012645065,0.013261578,-0.027493834,0.005860148,-0.036203712,-0.018639665,0.021827167,-0.01591127,0.034445997,0.011982642,0.035233036,-0.0006747205,-0.0009583818,0.014756949,-0.013904325,-0.00013066048,0.01983334,0.03229476,-0.0016527782,-0.0006907072,0.0083557125,-0.017445993,0.030248465,-0.011418599,-0.007312888,0.005469909,0.007890048,0.0037613823,-0.022364976,0.0022381372,-0.018705253,-0.01983334,0.003767941,0.0024316171,-0.010985728,0.009339509,-0.0075227646,-0.04622532,-0.01257292,0.004413967,0.013563275,-0.03197995,-0.006775079,-0.005040318,0.0054863053,-0.03646606,0.0068931347,0.0008747591,-0.017236115,-0.0005332997,-0.02674615,-0.012946763,0.009149308,-0.019033184,0.0031120765,-0.0020397382,-0.012999232,-0.019006949,0.0295926,0.00050501555,0.03211112,0.0033809808,0.0026611697,-0.017852629,0.013064818,-0.008054014,-0.018167444,0.010677472,-0.007312888,0.00036236507,0.0029169568,0.0066373474,0.00991011,0.0023512738,0.045044765,0.018482259,0.021066364,0.02606405,-0.017445993,0.0030022191,0.022364976,0.0042336048,0.017577166,0.019597227,-0.00056158385,0.0070964526,-0.011569448,0.02316513,-0.023912815,-0.0033481875,0.0105069475,0.003249808,0.010572534,-0.029881181,-0.013864973,0.025618063,-0.014337195,0.0039876555,-0.019623462,0.033055566,0.037515443,0.011818676,0.03525927,0.024634266,0.033108033,0.03148149,-0.032819454,0.006411074,0.010952935,-0.012087581,0.025355717,0.013773152,-0.017445993,-0.0029579483,-0.011359571,0.007771993,0.03022223,0.004846838,-0.018823307,-0.020672845,-0.0051288595,-0.0004386093,0.016986888,-0.017131178,-0.018757721,-0.015373461,-0.028621921,-0.020030098,-0.012913969,-0.01214005,-0.030904328,-0.017301703,0.018547844,0.003945024,0.02258797,0.0074965297,0.0017085267,-0.025198309,-0.011202164,0.008854169,-0.044992298,-0.0073587983,-0.00004647414,0.013550158,0.009293598,0.024162043,-0.0078113447,0.011694062,-0.012349926,-0.011077549,-0.03510186,0.0060437904,-0.011339895,-0.004148342,0.004154901,0.0035383883,0.009385419,0.0029284344,0.011110342,-0.0023348772,-0.005082949,-0.015530868,0.0004906685,-0.0064602643,-0.03331791,0.010513506,-0.0084475335,-0.021748463,0.0018265822,-0.015780097,0.021066364,-0.0052436357,0.0035810196,0.03292439,-0.0119892005,0.019269295,-0.013786269,0.026798619,-0.01542593,0.0020708917,-0.016068676,-0.022614203,-0.01126775,0.012225312,0.010270836,0.0146782445,0.008040898,-0.0051091835,0.02273226,-0.021263123,0.0015011096,-0.012677859,-0.009444447,-0.0018888894,-0.003656444,0.00435166,-0.031166675,0.014245374,-0.0014142075,0.00275627,0.016908184,0.007227625,0.019662814,0.0052206805,-0.019177474,0.007326005,-0.0095231505,0.024162043,0.0035383883,0.03418365,0.018259265,0.0076145856,0.0016749137,0.0039548622,-0.0025496727,-0.0035351089,-0.0079097245,0.012271223,0.012828707,0.009496916,-0.017354172,-0.007988428,-0.02282408,-0.022666672,0.017983802,0.021879636,-0.016094912,-0.008086808,-0.014415899,-0.017445993,0.031638898,0.0052436357,-0.010244601,0.013018908,0.018482259,-0.02475232,0.04701236,0.0021151626,0.032557108,0.023925932,0.00065053545,0.0031727438,-0.024345685,0.0047746925,0.0029120378,-0.02098766,0.0018052667,0.011739972,0.0033973774,0.00928704,-0.014966825,-0.023007723,-0.02113195,-0.0143634295,0.020869605,-0.031612664,0.0012461423,0.0016363816,0.010828321,0.011195605,0.017222999,-0.009956021,-0.011667827,-0.011333336,-0.01112346,0.018679017,-0.006919369,-0.019400468,-0.0049255416,-0.016212968,0.011182488,0.004017169,0.011156253,0.0126581825,-0.027152786,0.0054207193,0.0013027106,0.0024021033,-0.011930173,0.0003791716,0.0063389293,0.04525464,0.043942913,-0.00415818,0.0034924778,0.019518524,0.02843828,-0.024188278,0.012408954,-0.016212968,-0.030694453,-0.004623844,-0.0028218564,-0.021695994,-0.0035285503,0.028805563,-0.0083360365,-0.007922841,-0.004148342,0.011339895,0.033003096,0.021381179,-0.016383491,0.0010231484,-0.020108802,0.005856869,0.003036652,0.004958335,-0.007201391,0.0013051701,-0.013917442,0.011543213,0.033055566,-0.0058831032,-0.008165511,0.0011330057,0.0063553257,-0.015570221,-0.0041647386,-0.011333336,-0.0031301128,-0.01808874,0.00420737,-0.0006878378,0.01614738,-0.011851469,0.019754635,0.026772384,0.008690203,-0.016895067,-0.018298617,-0.016383491,-0.023073308,-0.027100315,-0.024673618,-0.009536268,0.02553936,0.018849542,-0.014297843,-0.013018908,-0.022784729,-0.014310961,0.0033875394,-0.020292444,-0.0033875394,0.016895067,0.0004008971,-0.0036597233,0.024096457,-0.012592596,-0.0067422856,-0.01794445,-0.0070046317,0.010802086,-0.0017101663,-0.01639661,0.0009362464,-0.02210263,-0.005860148,0.010231485,-0.008598382,0.03704322,0.02262732,0.0030169762,-0.0086705275,-0.0072735357,0.012343368,0.0038269686,0.017826393,-0.0014822535,-0.017445993,-0.001964314,0.030064823,0.015898153,0.008093366,-0.012133491,0.013891207,-0.009470682,0.02804476,-0.013864973,-0.005043597,-0.019282412,-0.013255019,0.032662045,-0.0050960663,0.001701968,0.015793214,0.0017921494,-0.005043597,-0.011720296,0.0323997,-0.019898925,-0.003297358,0.015714511,-0.013641979,0.014691362,0.0011526817,-0.012940204,-0.02804476,0.00093870587,-0.0003670791,-0.018495375,-0.004328705,0.0010895547,0.02156482,-0.012487657,-0.020646611,-0.018915128,-0.026916673,-0.0020085846,-0.03148149,0.018600313,-0.021814048,0.003259646,0.0055453335,0.0013961713,-0.025552476,0.0147963,0.019675931,0.021289358,0.041949086,0.26969144,-0.030904328,-0.0072800945,0.009313274,0.018075623,0.0036761197,-0.0021922267,-0.01789198,-0.0023086425,0.014993059,0.00025045822,0.01852161,-0.011726855,0.00445004,0.002867767,-0.009077163,-0.04197532,-0.015753862,-0.014560189,0.01324846,0.024358803,-0.0011494023,-0.021892752,-0.006712772,0.037174392,0.019413585,0.0055059814,0.027336428,0.009818289,0.0025267175,-0.00096002145,0.0023479944,0.01445525,0.0064602643,-0.014691362,0.014612658,0.014612658,-0.021525469,0.02316513,0.012907411,-0.006306136,0.009785497,-0.0135108065,-0.013032025,-0.005584685,0.0022463354,0.0013576392,-0.01591127,0.008067132,0.0050862283,-0.022141982,-0.013104171,0.01450772,0.032557108,-0.007345681,0.0036695611,0.0013010709,-0.00928704,-0.0019282412,0.04375927,-0.025014667,0.039771616,-0.021158185,-0.0006808692,-0.0029973001,0.0037876167,-0.011536654,-0.0001368092,0.03709569,0.0067685205,-0.026588742,-0.0062503875,0.016567133,0.0036793991,0.0056109196,-0.008572147,0.024398156,0.028805563,0.043470692,0.00575521,-0.0038466447,0.0075752335,0.0076736133,-0.029120378,-0.008867286,-0.043680567,0.018495375,-0.013182874,-0.010257719,0.028805563,0.0117858825,0.0015994892,-0.015596455,-0.027283957,-0.020016981,0.007214508,-0.0017708339,0.027782414,0.0051059043,0.014743831,0.0027251164,0.0026283765,0.006207756,-0.014717597,-0.008939431,-0.007857256,-0.01015278,0.006214315,0.007896607,-0.021932105,0.005479747,-0.04184415,0.009956021,0.006834107,0.006404516,0.008821376,0.010447919,-0.010998846,0.008401623,0.0023545532,-0.01194329,-0.018049387,-0.0025185193,0.0008063033,-0.0077392,-0.024804791,-0.018075623,-0.012507333,-0.018167444,-0.0358889,0.0064537055,0.0070046317,-0.0032907994,-0.013550158,-0.027021613,0.01513735,-0.026864205,-0.015045529,-0.004512347,-0.021774698,-0.008886962,0.0049878485,-0.00865741,0.0035744607,0.021394296,-0.024017753,-0.0071161287,-0.0075621163,-0.013576393,-0.00036830883,-0.037646614,-0.0029317138,-0.0024775276,-0.008434416,0.007844138,-0.0025021227,-0.01402238,-0.028254637,0.0053321775,-0.00034617342,0.013904325,-0.010520064,0.00764082,-0.022745376,-0.03056328,-0.036439825,-0.16779634,0.017354172,0.011451392,-0.016514665,0.013563275,0.015583337,0.017616518,-0.007194832,-0.011530096,0.0027923426,0.005260032,0.015727628,-0.026916673,-0.009811731,0.0057027405,-0.008644292,-0.005161653,0.03326544,0.031638898,0.01484877,0.015714511,0.0030218952,0.0028956411,-0.0050304797,0.008060574,0.01421914,-0.003863041,0.007850696,-0.017275468,-0.03544291,-0.005614199,0.002423419,-0.006512733,0.0059519694,-0.005053435,-0.012277781,0.018613432,-0.013117287,0.0010182294,0.010520064,0.02867439,0.018154327,-0.004850117,0.014638893,0.02422763,0.029172847,0.010867673,-0.016081795,-0.013215668,-0.006470102,0.022023926,-0.02302084,-0.023729173,-0.005148535,0.035993837,0.00050788495,-0.0026283765,-0.0050206417,-0.025985347,-0.010087194,0.0014248653,-0.0066766995,0.0026431335,-0.003195699,-0.021879636,-0.015111115,0.0064405883,0.008034338,-0.024450624,0.019243062,-0.0049747312,-0.008644292,-0.0040925937,-0.005758489,0.0059224553,-0.0024594914,-0.027782414,0.00947724,0.010119988,-0.00092066964,-0.0018610152,0.02316513,-0.003708913,0.011812117,0.00323997,-0.0004816504,-0.015819449,-0.00754244,-0.015006177,0.007949077,0.031087972,-0.00851312,-0.020541672,-0.025158957,0.011825235,0.0013273056,0.008926314,0.0149012385,0.027152786,-0.023847228,0.0075817923,0.0154390475,-0.0071489215,0.007509647,0.028595686,0.011425157,0.014310961,0.021814048,0.021289358,0.0051190215,-0.021971457,0.023375006,0.0075817923,0.024975315,0.006417633,0.016698306,0.0065356884,0.008749231,-0.012422071,0.00089689455,0.038853407,-0.007804786,0.00454514,-0.0014584784,-0.010231485,-0.013628862,-0.08673151,-0.031009268,0.0010887348,0.0081327185,-0.010342982,-0.0052239597,0.0068669,0.017354172,0.0021364782,0.01566204,-0.032819454,-0.024555562,-0.001155961,-0.029172847,0.009641206,0.011543213,-0.004686151,-0.035521615,0.004522185,0.0033531066,-0.031219143,-0.021171302,-0.007227625,-0.0076801716,-0.018075623,-0.032898158,-0.018285498,0.0026857646,0.022758493,0.007332564,-0.004820603,-0.016029326,0.025119606,-0.0042663976,-0.032189824,-0.014835652,0.00064151734,0.0046795923,0.01407485,-0.032976862,0.01116937,-0.020292444,-0.014114201,-0.042814825,-0.01334684,0.009851083,-0.020239975,0.0054567917,-0.0061421697,-0.01919059,-0.022994606,0.008821376,-0.029566366,-0.0064373086,0.0029530292,-0.0073850327,-0.00971991,0.031560194,-0.02422763,0.0032662046,0.0038400858,0.02408334,-0.023440592,0.012467981,0.0041811354,0.020908955,-0.022902785,-0.015557103,0.007647379,-0.014179788,-0.022286272,0.017419757,-0.004430364,0.014612658,-0.018495375,0.0007964653,-0.009778938,-0.0045943297,0.014770065,0.0041778563,-0.023519296,-0.015176701,-0.014756949,-0.016842596,0.036334887,0.012566362,-0.0021151626,0.010756176,0.0107102655,-0.041503098,-0.014101084,0.031927478,0.002766108,-0.004646799,-0.013891207,0.011917056,-0.013215668,0.023243833,0.0015642366,-0.0054272776,-0.01717053,-0.018482259,-0.042054024,0.010939818,-0.00065299496,-0.023676705,-0.018456023,0.013294371,0.0006394678,-0.014573307,-0.013851856,0.0074834125,-0.021984573,0.009647765,-0.013628862,0.0040598004,-0.025027785,0.0057027405,0.025106488,-0.0070964526,0.0033580256,-0.014861886,-0.0070833354,-0.028831799,-0.01983334,0.01619985,0.020476086,0.018993832,-0.0040598004,0.024096457,-0.007653937,-0.024122693,-0.0042434423,-0.023493063,-0.005686344,0.043549396,-0.004515626,-0.012540127,-0.0061060973,0.0006279901,0.0033383498,0.0141404355,0.00028940017,-0.0133074885,0.0032088165,-0.006706213,-0.0014683164,-0.0034793606,0.00362693,-0.0018626548,-0.0046599163,-0.014481486,0.02408334,0.010093752,-0.0005681425,0.020489203,-0.004463157,-0.042841062,-0.0029874623,-0.029750008,-0.006299577,-0.020817135,0.043995384,-0.0040991525,0.015150467,-0.0067554032,-0.027572539,0.00077555963,0.02093519,0.024096457,0.0034990364,-0.039535504,-0.010907024,0.010651237,-0.006299577,-0.016763894,0.00996258,0.010992287,-0.032425936,-0.004227046,-0.0031301128,0.02451621,0.005978204,-0.018547844,0.002108604,0.01769522,0.026759267,0.025014667,0.012907411,0.001421586,-0.017498462,0.00093788607,-0.02930402,-0.0037318682,-0.004879631,-0.0008895161,0.02964507,-0.008349153,0.010415127,0.010847997,0.0027251164,-0.01300579,-0.002520159,-0.005469909,0.012894293,-0.019229943,-0.022601087,0.0016790128,-0.010808645,-0.024070222,-0.0072669773,0.02615587,-0.009693676,-0.022469914,0.028726859,0.0024594914,-0.018101856,-0.0022807685,-0.02050232,-0.015360343,-0.042972233,0.016790127,0.013071377,-0.006702934,0.0027611891,-0.009700234,0.018508492,0.0108217625,0.012310575,-0.038617294,0.011477627,-0.015097998,0.0077785514,0.010192133,-0.01358951,-0.029408958,0.013130405,-0.0055978023,-0.035023157,0.019046301,0.0005230518,0.08227163,0.014192905,0.0018396996,-0.02586729,-0.00096248096,0.03258334,0.029723773,-0.0003998723,-0.033160504,-0.005401043,0.01871837,0.016212968,-0.0049944073,0.010533182,-0.0027529907,0.001959395,-0.016081795,0.0014724155,-0.018114975,0.011064432,0.021774698,-0.003758103,0.016278554,-0.005378088,0.0004685331,-0.01823303,0.051288594,-0.011097225,-0.012317133,-0.023794759,0.011497303,0.012599154,-0.010664355,-0.012415512,-0.011457951,0.008224539,-0.017918214,-0.006214315,0.006224153,0.029986119,-0.013655096,0.0027054406,-0.011687503,0.019282412,-0.01794445,-0.0007161219,0.004138504,0.013655096,-0.012933645]},{\"id\":\"2a5ac1f0-c4be-482d-a5e8-df61cf42d2ae\",\"text\":\"Ripple+ inflammed my sinuses. I'm so bummed and want to know if i can get my money back if possible.\",\"vector\":[-0.027024813,-0.015313144,-0.0035739834,-0.024344325,-0.03769178,0.0059692394,-0.016371593,-0.027547164,-0.0019880282,-0.0010532942,0.016797721,0.0045568286,0.020646626,-0.0007478732,0.019065827,0.002781865,0.024495533,0.012605164,0.01564305,0.0055946587,-0.028921774,0.0020670684,-0.010433282,-0.0033128075,-0.004360947,-0.009766596,0.015519335,-0.013670486,0.010350806,-0.016921436,0.006261344,0.00920988,-0.015849242,0.00007866415,0.0018230751,-0.011292413,0.011491731,0.003598039,0.0067252745,-0.0153818745,0.019505702,-0.013374945,0.01830979,-0.0116016995,-0.008508829,0.012632657,-0.011876621,-0.009670374,-0.0005171966,0.009931549,0.028481899,-0.0070001963,-0.0065603214,-0.008123939,0.0058042863,-0.018639699,0.02088031,-0.016399086,-0.0033059346,0.0052475696,0.009361087,0.0109899985,-0.015684288,0.00052965403,-0.014419648,0.014158472,-0.0074641267,-0.0152993975,-0.0061823037,0.018680936,0.016756484,0.020371705,-0.0041788113,-0.0031753466,-0.0026340946,-0.0013075968,0.006484718,0.00085741235,0.018378522,0.008605052,0.037554316,-0.010845665,0.0030344494,-0.006886791,0.023148416,0.00014454873,0.017842425,0.030461336,-0.009766596,-0.019354494,0.013381818,0.039781183,-0.006099827,0.018818397,0.017347565,0.013278723,-0.0048901713,0.048908588,-0.018832143,-0.023148416,-0.0053334828,0.0070861094,-0.012103432,-0.010502012,-0.030956194,0.005182276,0.01595921,-0.009622263,0.048028838,-0.014419648,0.008770005,0.00920988,0.0055671665,-0.05259254,0.00050989405,-0.0051032356,0.040550966,0.0013462576,0.00049442967,-0.03782924,0.0035808564,-0.0048042582,0.017457534,-0.013292469,0.018392269,0.013739217,-0.0125364335,-0.008233908,0.017292581,0.0152993975,0.00096738106,0.03381538,0.020770341,-0.0050551244,0.0052991174,0.043712564,-0.017498773,0.008776878,-0.009113657,0.016770229,0.021471392,0.033622935,-0.0016770229,-0.0017766821,-0.01613791,0.021787552,-0.0053575383,-0.016234132,0.030103937,-0.037526824,0.011862876,-0.05297743,0.004484662,-0.0042715976,0.0016787412,0.010350806,-0.017375058,0.013120643,-0.004512154,-0.008852482,-0.027835831,-0.0043437644,0.01462584,0.016742738,-0.009993407,0.015601812,0.014832031,-0.011333651,-0.019354494,-0.017058898,-0.007168586,0.027299734,-0.009312976,0.024880422,0.0230247,0.020467928,-0.0057527386,0.0048248777,0.014584601,-0.011856003,-0.02516909,0.017883662,0.029141711,0.023670767,-0.0076703182,-0.0326882,0.016165402,-0.03406281,0.027602147,-0.016770229,-0.013285596,0.00064091146,-0.010082757,-0.03180845,-0.6272616,-0.035354942,0.0061513754,0.0214439,0.016783975,0.037251905,-0.013938535,0.0041581923,-0.021388916,0.032605726,-0.0071204747,0.0067390203,0.0008582715,-0.008323258,0.01943697,-0.0108113,0.004611813,-0.010618854,-0.014337172,-0.011395508,-0.011752907,0.0068696085,-0.00045619835,0.01252956,0.01796614,0.011697923,0.020591643,-0.015972957,-0.006663417,-0.0034107484,-0.014227203,0.024866676,0.015615558,0.0092442455,0.06334198,-0.018488491,0.004783639,0.012447084,0.0072716814,0.027615894,-0.03301811,0.026639922,0.014887015,-0.015450605,0.01056387,0.005031069,-0.0005403932,0.0316435,-0.008282019,0.019986814,0.0026598684,0.013849186,-0.015161937,0.02622754,0.052784983,-0.0012311342,0.02327213,0.0072785546,0.0042337957,0.006202923,-0.00006470327,0.013491787,-0.01916205,-0.020660372,0.002316216,0.002158136,-0.023560798,0.0028849605,0.020619135,-0.010818172,0.038379084,0.019643161,-0.022199934,0.036262184,-0.013443676,0.025402773,0.01279761,-0.010715077,-0.0065019005,0.019670654,0.00043063922,-0.028701836,-0.027285988,-0.012398973,0.0295266,-0.0046083764,-0.014055377,-0.008914339,-0.02383572,0.005907382,0.011409255,0.03414529,-0.0061204466,-0.022791017,-0.023244638,0.017911155,-0.017347565,0.009567278,0.006965831,-0.001703656,0.029499108,0.0041066445,0.0050482512,-0.012227147,0.014117234,-0.020962788,-0.019904338,-0.005165093,0.028976757,-0.026667414,0.00927861,-0.009656628,0.0047698934,-0.019670654,-0.0048111314,-0.032990616,0.019272018,-0.011739161,-0.008928086,-0.028564375,-0.008866228,-0.024028165,0.0035946025,0.013168754,-0.027258497,0.005268189,-0.00043386096,-0.0048454967,0.0000048393217,-0.011718541,0.021402663,-0.036289677,-0.000013511171,-0.010605108,-0.003084279,0.01929951,0.022199934,-0.0065809404,-0.0034708877,-0.044482347,-0.01747128,-0.00022788439,0.008412607,0.0125776725,0.00032024094,0.0041753748,0.013155008,-0.003914199,-0.0072923005,0.00016763786,0.007374777,-0.008859355,-0.032715693,0.01293507,0.026722398,0.0026203485,0.018117346,-0.006110137,-0.023959434,-0.0066531072,0.01406225,0.018323537,-0.016536547,-0.026612429,0.006742457,-0.01947821,0.00026461223,0.010330186,0.010852538,-0.015423113,-0.0129831815,-0.017361311,-0.009450437,0.024894169,0.0017887099,0.028042024,-0.009952169,-0.01923078,-0.019010842,0.0019845916,0.019217033,0.015560574,-0.002151263,0.012474576,0.01936824,-0.009780343,0.0031547276,0.043465137,-0.011814764,0.04033103,0.00013338003,-0.00045362097,0.0009897185,0.016426578,-0.008089574,-0.02232365,-0.010605108,-0.0007702106,0.030818732,0.011044983,0.008859355,-0.007684064,0.015656795,0.023643274,0.011471112,-0.033238046,0.010206471,-0.0143646635,0.019780623,0.022103712,-0.024041912,0.007656572,-0.016192894,-0.0032337676,-0.012522688,0.008639418,0.027904563,0.031231117,0.0042337957,0.012364607,-0.0530874,-0.0061135734,-0.00006346827,0.00051977404,-0.001664136,-0.0011813046,-0.0046358686,-0.0042475415,0.025540235,0.0008101602,-0.0048008217,0.019959323,0.0026134753,0.018584713,0.0265437,-0.01207594,0.0043781297,-0.0025155344,0.022900986,0.004281907,0.004192557,0.017526265,0.01128554,0.006388495,0.0019914648,0.0013075968,0.017251343,0.010034646,0.0010730542,0.035299957,-0.016797721,-0.004137573,-0.014777047,-0.026722398,-0.005196022,-0.045087174,0.0067149648,0.024124388,0.03356795,0.012811355,-0.01437841,0.012309623,0.028701836,-0.013244358,0.034722622,0.02963657,-0.01390417,-0.020385452,-0.013155008,0.011972845,-0.0013033011,-0.025718935,0.019959323,-0.025498996,0.032495756,0.003321399,0.0037251904,0.0015833777,-0.0024364945,-0.009622263,0.008660036,-0.043602597,0.006945212,-0.007209824,-0.00083808193,-0.019904338,-0.0016761639,0.0071273474,-0.0028832422,0.035712343,-0.000019867395,0.010536378,-0.007800906,0.005275062,-0.017498773,-0.005367848,0.03945128,0.000116841766,0.012089686,-0.015093206,-0.007058617,-0.0027011067,-0.008268273,-0.020921549,0.0069177197,-0.0006598123,-0.017553756,-0.021540122,-0.01182851,-0.01575302,0.020261737,-0.0018780595,-0.017649978,-0.01859846,0.005972676,0.027657133,-0.042282972,-0.024000673,0.019533193,-0.01754001,-0.0050241956,-0.0362072,-0.010014026,-0.0046255593,0.087865,0.008130812,-0.020509167,0.020096783,0.008804371,-0.013381818,-0.0004433114,-0.048111316,-0.002704543,-0.038654003,0.013704851,-0.018832143,0.019835608,0.018323537,-0.0130656585,-0.01462584,0.013299342,0.00018310221,-0.006914283,-0.021732569,-0.013100023,0.002281851,-0.013938535,0.043575104,0.024165627,0.0077596675,0.053912163,0.004821441,0.0037973572,-0.008824989,0.0032475137,-0.0070654904,-0.02340959,0.0048592426,-0.02017926,0.009849073,0.008783751,0.006721838,0.006031097,0.020467928,-0.002867778,0.015436859,0.0012199655,-0.0034983798,-0.0043643834,-0.004006985,-0.024866676,0.00061599666,0.012508942,-0.022626063,0.0014192838,-0.009127404,-0.0152993975,-0.037224412,0.0077459216,-0.0028059206,-0.0030327311,-0.008852482,-0.02119647,0.016454069,-0.025746426,-0.024646739,-0.012261512,-0.0056187143,-0.0031478545,-0.030598795,-0.011904114,0.0044090585,-0.001703656,-0.021718822,0.0026684597,-0.0089212125,-0.021223962,0.011381762,0.016619023,0.0014295933,0.011031237,-0.0029313536,0.019945577,0.028028278,0.032358296,-0.013780455,0.028619358,0.013436803,-0.0032131486,0.018447252,0.001466536,0.00040056964,-0.025883887,0.018021123,0.02591138,0.0131825,0.0048764255,-0.025498996,-0.0047905124,0.024371818,0.02345083,0.033375505,-0.017649978,0.013856058,0.022433618,0.002709698,0.008089574,-0.0010541533,0.0015387029,0.010680712,0.01334058,0.011587953,-0.024921661,0.0005455479,0.0024485223,0.011182444,-0.014612094,-0.016330354,0.010309568,0.010130868,-0.032330804,0.03329303,0.00009321567,0.0019553814,-0.018612206,-0.02112774,0.025581473,-0.0018849325,-0.014749554,-0.023354607,0.008412607,-0.025526488,-0.023395846,0.0012603446,-0.0016186021,0.023560798,-0.012722006,-0.0019553814,-0.028179483,-0.008708148,-0.036152218,0.0035361815,-0.012873213,-0.03694949,-0.0005614419,-0.013450549,-0.01349866,-0.016921436,-0.0014673951,-0.02196625,-0.029361648,-0.026131317,-0.019588178,0.0153406365,0.00341934,-0.0076290797,-0.024069402,0.016783975,-0.0029640007,-0.011003745,-0.0028007657,-0.021320185,0.003395284,0.022364888,0.014117234,0.009203007,-0.0077665406,0.009491675,-0.0082270345,-0.010261456,-0.0028901154,-0.012213401,-0.041293252,0.03392535,-0.009532914,0.014914507,0.016426578,-0.031066163,-0.012667022,0.000112009155,-0.005972676,-0.0025224076,-0.021608854,0.004611813,-0.001559322,-0.019272018,0.009189261,-0.004453733,-0.00675964,0.00038038008,0.021608854,-0.018172331,0.007505365,-0.005378158,0.021100247,-0.003044759,0.035849802,-0.0077871596,0.028921774,0.0016349256,-0.019464463,-0.006728711,-0.033980332,-0.0089212125,0.000025008756,0.015519335,-0.011457366,0.023821974,-0.0121309245,-0.0011288977,-0.011319905,-0.020577896,0.0021031518,-0.006457226,-0.024028165,-0.013450549,-0.012508942,-0.0003107905,0.0012388664,-0.020770341,-0.010962507,0.0041341367,-0.032358296,-0.011574208,-0.024591755,0.0020361396,-0.006189177,-0.0027182891,0.04363009,0.021925014,-0.027753355,-0.024674231,-0.001993183,-0.013588009,-0.022117458,0.023629528,0.050668087,-0.0139179155,-0.0032251764,0.020069292,-0.008048335,-0.0025636458,-0.01824106,0.018254807,0.0070173787,0.0066393614,-0.0066668536,-0.04176062,-0.025746426,0.041843098,-0.031121148,0.0034227762,-0.01311377,-0.026323762,-0.019272018,-0.007773414,-0.00023003222,0.019959323,0.013258103,-0.00085569406,-0.006123883,-0.020069292,-0.017553756,-0.00397262,0.019175796,0.030461336,-0.0027406267,0.026598684,0.004532773,0.010130868,-0.013869804,-0.0008239063,-0.02024799,0.029801523,-0.015739273,-0.008515703,-0.009127404,-0.015862988,0.021925014,0.0010300976,-0.025279058,-0.0006525097,-0.011484858,0.024344325,0.03293563,-0.009450437,-0.020605389,-0.00572181,-0.02327213,-0.012103432,-0.025760172,0.010041518,0.01740255,-0.03505253,-0.0024966334,-0.0037904843,0.01627537,0.036976982,0.013478041,0.013711724,0.027121035,0.0010421254,-0.0053231735,0.00547438,0.009986534,0.033952843,-0.03598726,0.016701499,0.006409114,-0.046241846,0.008776878,-0.02049542,-0.035877295,-0.025155345,0.0029914929,-0.00051418965,-0.010522632,-0.019065827,0.022062475,0.01255018,-0.008660036,-0.016261624,-0.027024813,0.007546603,-0.005340356,-0.007752795,0.0056599523,-0.012405846,0.005680572,-0.0035293086,0.040688425,-0.0064640986,0.0013118924,-0.014832031,0.021636344,-0.0001993183,-0.008371369,-0.021388916,-0.006684036,-0.008852482,-0.012405846,0.015904225,-0.0088387355,0.0016108699,0.00044417052,0.023038447,0.006546575,0.009443563,-0.005584349,-0.017883662,-0.015945464,-0.00066453754,0.014914507,-0.019821862,-0.007958986,0.025361536,0.01024771,-0.018584713,-0.050228212,-0.010701331,-0.04690166,0.009498548,-0.023464575,0.012000336,0.03873648,-0.008460718,-0.0018557222,0.04275034,0.0034416772,0.02334086,0.0038695242,-0.011581081,0.0063575665,-0.018515984,-0.01595921,-0.003506971,-0.0028145118,-0.008873101,0.01381482,0.026914844,0.021182725,0.020591643,-0.0045671384,-0.0045293365,0.008605052,0.008783751,0.0316435,-0.019918084,0.0013282159,-0.004505281,-0.007189205,0.020330466,0.0093679605,-0.00643317,-0.0029949292,0.03279817,0.010144615,-0.023327114,-0.014254695,-0.018612206,-0.0012268386,-0.012639529,0.003072251,-0.0068627354,-0.028674344,-0.011622319,0.02049542,-0.040605947,-0.0018900874,0.006237288,0.025141599,-0.008563814,0.017045151,-0.017924901,-0.016330354,0.017828679,0.007175459,0.0007083532,-0.004993267,-0.013120643,0.024495533,-0.023492068,0.023258384,0.010776934,-0.017498773,0.0014003828,-0.00731292,-0.0013720316,0.0006576645,-0.021540122,-0.001243162,-0.030736256,0.010027773,0.036289677,0.0068180603,-0.055231787,0.007402269,-0.0055087456,-0.013718598,0.018268554,0.2326938,0.020536657,-0.0014527899,-0.0016555447,0.009938423,0.008041463,0.016014194,0.0041753748,-0.02559522,0.0064950273,0.010508886,-0.0011048419,-0.013326834,-0.005031069,-0.024674231,-0.0114779845,-0.04868865,0.0031255172,0.0049279733,-0.03167099,-0.00064348883,0.003769865,-0.018447252,-0.01207594,0.023547051,0.0026134753,-0.014474632,0.001243162,0.014639585,0.0034966615,0.0003367792,-0.007450381,0.0066737267,-0.007044871,-0.0126189105,-0.0022062473,0.0046805437,-0.01252956,0.010460774,0.01126492,0.0014656768,0.032990616,-0.01602794,-0.006202923,-0.015601812,0.027973292,-0.022406125,-0.014667078,0.007361031,0.007175459,-0.022241173,-0.008110193,0.013966028,0.012398973,-0.019766876,-0.021017771,0.024632992,0.000480254,-0.019024588,-0.0044228043,0.0026031658,0.024275595,0.017856171,0.017333819,-0.043190215,-0.0120072095,-0.020797834,0.010364552,0.0010378298,-0.029471617,0.0126189105,-0.028069515,-0.026777383,0.025045376,-0.030571304,0.00082433585,-0.01638534,0.023327114,0.029966475,0.02252984,0.014392156,0.01024771,-0.011704795,-0.021553868,-0.007326666,-0.042173002,0.023643274,0.0033196807,0.007814652,0.028206976,0.0007577532,0.006440043,-0.013979773,-0.018543474,0.027148528,-0.027519671,0.0024175935,0.008247654,-0.008831862,0.029911492,-0.024523024,0.029884,-0.016880197,0.00059494795,0.017553756,-0.008275146,0.0010300976,0.018625952,0.0024433674,-0.007209824,0.000012678888,-0.014185965,0.008158305,-0.0054228324,0.0015567447,0.000001763567,0.01740255,0.012247766,0.0026100387,0.035299957,0.019918084,-0.0030808423,0.005123855,-0.008337003,0.0044296775,-0.027904563,-0.01778744,-0.010027773,0.022914732,-0.055341758,0.030873718,0.009306103,0.018186077,-0.034640145,-0.023464575,0.0028712144,0.025155345,-0.01198659,0.006690909,0.0052132043,-0.017237596,0.025361536,-0.0029176075,-0.017320072,-0.014955746,-0.012158416,0.018364776,0.0005653079,-0.014529617,-0.0029210441,-0.039973628,0.009931549,0.0064950273,0.0035464913,0.04417993,-0.029884,-0.05108047,-0.015478097,-0.0056943176,0.013718598,-0.027684625,-0.009072419,0.011842256,-0.007567222,-0.028110754,-0.0073679043,-0.17605992,0.002165009,-0.008068955,0.0014553673,0.03518999,0.009079292,0.010632601,-0.015588066,-0.010440155,0.016687753,0.014653332,-0.0037526826,-0.012385227,-0.009491675,0.015024476,-0.024578009,-0.018529728,0.017443787,0.01578051,0.0023832284,0.007931494,-0.0133062145,0.008818117,-0.023780735,0.025402773,-0.0061994866,-0.022172444,0.029719045,0.0034107484,-0.0023694823,-0.028206976,-0.0138766775,0.01690769,-0.0057664844,0.022859747,-0.013862931,0.00556373,-0.00048712705,0.008440099,0.032000896,0.014041631,0.003670206,0.013979773,0.013526152,-0.038901433,0.013670486,0.0065019005,-0.017691217,-0.0013797637,-0.00045362097,0.008804371,-0.028839296,-0.026103824,0.0054640705,0.00093817065,0.030846225,0.007306047,0.010378297,-0.015395621,-0.030681273,-0.0029261988,-0.014185965,0.023533305,-0.02587014,0.02358829,-0.015395621,0.00000829598,0.006244161,-0.031945914,0.020467928,0.013979773,-0.011168698,-0.0059761126,0.0016753047,0.013752962,0.016536547,-0.0068971007,0.013086277,0.012213401,0.009642882,-0.010014026,0.05036567,-0.0130656585,0.0316435,0.0064640986,0.0064709717,-0.0061032637,-0.010611981,0.019711893,-0.033650428,0.01666026,-0.01214467,0.027052304,0.008721894,0.007931494,0.011869748,0.01564305,0.008020843,-0.0025602093,-0.0020034926,0.015175683,0.00039713312,-0.017320072,0.024550516,0.027835831,0.0016357846,-0.013773582,0.02706605,0.016495308,-0.039258834,-0.015450605,0.008440099,-0.008158305,0.030296382,-0.019986814,-0.0029829014,0.0012990055,-0.016151655,0.0076978104,-0.012323369,0.03920385,0.0052269506,-0.020083036,0.010062138,-0.019272018,-0.010632601,-0.113817625,-0.028481899,-0.007979605,-0.01929951,-0.007684064,0.0028093571,0.0064744083,0.027725862,-0.008907466,0.021540122,0.013010674,-0.017237596,-0.01754001,0.0030103936,0.014268441,-0.0078627635,0.007800906,-0.006952085,-0.005426269,0.030681273,-0.006848989,-0.018323537,-0.0051925853,-0.0004961479,0.009876565,-0.013890424,-0.031698484,0.003130672,0.02340959,0.014529617,0.021540122,-0.014845777,0.01167043,-0.021677583,-0.010295821,-0.0038557781,-0.04035852,-0.0071410937,0.014735809,-0.03912137,0.007285428,0.009759724,-0.005275062,-0.015409366,-0.02024799,-0.0055809123,-0.020220498,0.032578234,0.015395621,-0.0021856283,-0.008103319,-0.017512519,-0.021498885,-0.008928086,0.036674567,-0.004295653,-0.0074091423,0.04893608,-0.01722385,-0.0106257275,0.0008007097,0.0050035766,-0.027973292,0.018296046,-0.013670486,-0.027011067,0.027959546,-0.003321399,-0.019904338,-0.017306328,-0.015601812,-0.004807695,-0.01659153,0.009821581,-0.036124725,0.027533418,-0.016000448,-0.0376093,0.024935408,0.022667302,-0.013148135,-0.0100965025,-0.008660036,-0.0047905124,0.01947821,0.007505365,0.005498436,0.007209824,-0.029966475,-0.0014777046,-0.0013514125,0.014227203,0.0061513754,0.009058673,-0.008563814,-0.0055602933,-0.0216226,-0.016550291,0.006886791,0.0048042582,-0.0021993744,0.004006985,-0.04250291,0.0214439,-0.0004544801,-0.000040647617,0.010591363,0.003395284,0.025650203,-0.005268189,0.0017784004,0.007849017,-0.019643161,0.043437645,0.023437083,0.0020481674,-0.017924901,-0.008481338,0.03672955,-0.0068902276,0.030103937,0.0025670822,-0.0023437084,-0.0041685016,-0.009189261,0.027767101,0.007491619,0.017911155,0.028784312,0.013134389,-0.020426689,0.0013642994,-0.009326722,-0.013361199,0.019863099,0.021333931,-0.0021151796,-0.016605277,0.0020773779,0.025444012,-0.00698645,-0.006787132,-0.006223542,-0.029086726,0.018131092,-0.029086726,0.01015836,-0.017045151,-0.024083149,0.022667302,0.005543111,-0.0048042582,0.023230892,0.022516094,-0.025155345,-0.02839942,-0.019601924,-0.010123995,0.018625952,-0.025815157,0.0058008498,0.007897128,0.01237148,0.015038222,0.0011392072,-0.021925014,0.02977403,0.00753973,-0.034915067,-0.0072029512,0.0054812534,-0.023643274,-0.013203119,-0.030846225,0.00618574,0.01855722,0.006295709,0.012508942,-0.0071410937,-0.036674567,-0.002802484,-0.0013471168,0.010419536,-0.025279058,-0.022749778,-0.0016263343,0.013993519,0.028083261,-0.0019021152,0.0020567586,-0.0020825325,0.037499335,-0.029471617,-0.006934902,-0.00020586918,-0.021801298,0.013471168,0.022117458,0.009512294,0.0076222066,0.0144059025,0.027148528,0.015216921,0.03873648,0.0027114162,-0.01887338,-0.0022406126,0.008041463,-0.01884589,-0.035877295,-0.006879918,0.004512154,-0.00009337676,0.012831975,-0.0017663726,0.008989942,0.016165402,-0.009849073,0.0023591726,0.007952113,-0.0045740115,0.014873269,0.010206471,0.008062081,-0.008543195,-0.0052647525,0.00397262,-0.015368128,-0.014570856,-0.009519167,0.004464043,0.010845665,-0.01564305,-0.0030567867,-0.027176019,-0.0087150205,0.0015292525,-0.01979437,-0.018942112,0.021883775,-0.008515703,0.0442899,-0.014460887,-0.000854835,0.0033918477,-0.00024936267,-0.011333651,0.013368072,-0.002407284,-0.007890255,0.003039604,0.007752795,0.0070654904,0.027423449,-0.011333651,-0.022378635,-0.0076290797,0.014268441,0.015972957,-0.0025481815,-0.004144446,0.02056415,0.017746203,0.002518971,-0.011636065,-0.0026409675,-0.019849354,0.013704851,-0.004952029,-0.013642994,-0.025677696,0.016948929,0.007773414,-0.003941691,-0.0020223935,0.009079292,-0.036289677,0.018735921,0.02900425,0.007849017,0.002256077,-0.011017491,0.049211003,-0.006488154,0.0056874445,0.0013325115,-0.019272018,-0.017210104,0.01024771,-0.04404247]},{\"id\":\"29800180-94d4-42fd-b970-60361f38250f\",\"text\":\"Sorry but I don’t like it because one of them I can even put it on . The one that does not have clips . And the other is too heavy . I am trying to see how can I return them \",\"vector\":[-0.028970458,-0.0044015343,-0.0048459675,-0.013550273,0.007664003,0.036529113,0.013997998,-0.0149856275,0.013866315,-0.018685944,0.018764956,0.011384073,0.0004489598,-0.0042369296,0.009356141,-0.0014016104,0.016289297,0.02682401,0.014919786,-0.01775099,-0.003450118,-0.009882877,-0.020384667,-0.015393848,-0.007571824,-0.0006789951,0.03450118,-0.0068541467,0.0052146823,-0.017527126,0.0050829984,-0.0051192115,-0.023531912,-0.005945528,-0.022346757,-0.023005176,-0.015512363,-0.0075191506,0.00015843219,-0.014735428,0.007058257,0.008941337,0.008467275,-0.011654025,-0.019502385,0.031130074,-0.0068804836,0.019818427,-0.017685147,0.0014007875,0.0045858915,0.002500348,-0.030814031,-0.00095882337,0.011680362,0.017382273,0.015051469,0.022070222,0.023110524,-0.024822414,-0.0027406712,0.011588183,-0.0040064827,-0.0053233216,-0.0049578985,0.0036476438,0.018277725,-0.01938387,-0.0007131506,0.01798802,0.006617116,0.022188736,-0.0034402418,-0.0105544645,0.024163995,-0.017922178,0.011654025,0.0047406205,-0.011601351,-0.005530724,0.022939336,-0.012496802,-0.0015110727,-0.0076508345,0.0023768942,0.010561048,0.0415331,0.018225051,-0.012299276,-0.0180802,-0.010870506,0.027890649,-0.0014592222,-0.0031488913,-0.02796966,0.025296476,-0.013477847,0.026534306,0.0012649884,-0.018843966,0.014735428,0.009790698,-0.029971255,-0.005971865,-0.017303264,-0.010765159,-0.0035949703,-0.016262962,-0.011555262,-0.032683942,-0.0046089366,0.03352672,0.009270546,-0.017592968,-0.00601137,-0.015301669,0.030761357,-0.024993604,-0.021780517,-0.025112119,0.0023028222,-0.0005065715,0.031841166,-0.015723057,0.023413397,-0.01667118,-0.039952893,0.010521543,-0.0092771305,0.017803663,0.036529113,0.01725059,0.017685147,-0.0010625244,-0.012259771,0.007993213,-0.011048279,0.024545878,-0.02575737,0.002867417,0.01431404,0.02109576,-0.018620104,-0.0038089566,-0.029286498,0.01488028,-0.010771743,0.008934752,-0.0006958671,-0.005316737,0.0066862497,0.0044114105,0.0287861,-0.011443331,0.008539701,0.014656418,0.0060903803,0.0065710265,-0.022070222,-0.02027932,-0.015064638,-0.006156222,0.010982437,0.0036937334,0.028154017,0.014695923,-0.0016254731,-0.004529926,-0.002735733,-0.0055504763,-0.0017382274,0.011660609,-0.014946123,0.007736429,0.005201514,-0.00008549166,0.0024937638,0.013537104,-0.017566632,-0.00036459978,-0.0351596,-0.00022509716,0.023505576,0.007901033,-0.022794483,-0.032473247,0.015038301,-0.021069424,0.026507968,-0.029233824,0.018106535,0.0010699317,-0.015683552,-0.029286498,-0.634611,-0.018369904,0.009105941,-0.012905022,0.020055458,0.029734224,0.025230635,0.018198714,-0.018093368,0.04464084,-0.023479238,0.031604134,-0.018554261,-0.01963407,-0.015828405,-0.02084556,0.0028871694,-0.011311647,0.014630081,0.004352153,-0.034237813,0.012944527,-0.0021497395,-0.0052344347,-0.009474657,-0.01304329,0.0029200905,0.012365118,-0.020213477,0.033052657,-0.02773263,0.029075805,-0.0145642385,-0.025125287,0.052699894,-0.021648832,0.0065018926,0.032894637,0.011337983,0.003008977,-0.057045463,0.0063372874,-0.03149879,-0.027864313,-0.008579206,-0.02616559,0.007828607,0.018936144,0.022083389,-0.0057381256,0.004974359,0.012944527,-0.0118581345,-0.017382273,0.014511566,0.0073545454,0.053700693,-0.0009300175,0.013813641,0.014300871,-0.013879483,-0.004964483,-0.034395833,-0.013668789,-0.003180166,0.01775099,-0.010831,0.0012485279,-0.004022943,-0.025638854,0.0089545045,0.01709257,-0.04490421,0.023926964,0.019568227,0.030550664,0.02494093,0.031024726,0.015709888,0.010857337,0.014761765,0.0033974445,-0.0075454875,-0.0020707294,0.018751787,0.025177961,0.009632677,-0.009204704,-0.02282082,0.0077561815,0.02060853,0.022557452,0.009283715,-0.030313633,-0.023913795,0.0287861,-0.0145510705,-0.0075849923,0.020450508,-0.0005131557,-0.009849955,-0.0139189875,-0.016526328,-0.0044772523,0.012365118,0.017066233,-0.009698519,0.0052146823,0.012700912,-0.011173379,0.0068146414,0.0017612721,0.0076837554,-0.00858579,0.018488418,-0.030972052,0.017211085,0.022662798,-0.0056689917,-0.030471653,0.014366713,0.017724652,0.017316433,-0.0067027104,-0.0021810145,0.03334236,-0.015709888,-0.015894247,0.010245007,-0.0034962075,-0.009744609,0.0039143036,0.016157614,-0.009803866,-0.011989819,0.02322904,0.007716676,0.002365372,0.030577,-0.03181483,0.014537903,-0.018949313,0.0033069118,-0.011482836,-0.006287906,-0.02968155,-0.0040920773,-0.022359926,0.010027729,0.0073150406,-0.009988223,-0.02199121,-0.04169112,-0.00175798,0.0025102242,0.0038254173,-0.023834785,-0.016908212,-0.016065435,-0.002910214,0.003111032,0.018791292,-0.039873883,-0.031841166,-0.016697519,-0.018685944,0.029918581,0.014788101,-0.016789697,-0.014511566,0.0041118297,-0.006008078,-0.0028805851,0.0045463867,-0.0039669774,-0.0033941525,0.015499195,-0.01357661,-0.0036245992,-0.01029768,0.015314837,-0.006636868,-0.033816423,0.035133265,0.002640262,0.0059982017,-0.005639363,0.0033875683,-0.038636055,0.042375877,-0.0005452536,-0.017592968,-0.030761357,0.004526634,-0.015881078,-0.00850678,0.000104266896,0.023979638,0.025796875,-0.0035291284,0.032604933,-0.0009835141,0.01693455,0.024256174,0.027600944,-0.010765159,-0.0036410596,0.007255783,0.011588183,0.053858712,-0.0072228615,-0.01585474,-0.0042336374,-0.019607732,0.00017674448,0.028996794,0.0046747783,0.036344755,0.011331399,0.0026962277,-0.02002912,-0.009514161,0.02330805,-0.017382273,-0.009994808,0.0035686337,0.014379881,0.018541092,0.0066763735,-0.0033678156,-0.022425767,0.020569025,0.006017954,0.013135469,0.021135265,0.017053064,0.014077009,-0.002225458,0.03505425,-0.0055570602,0.018106535,0.026863515,-0.004325816,0.010580801,0.040795673,-0.020094963,0.02159616,0.024927761,0.020753382,-0.017224254,0.02199121,-0.020305658,-0.01700039,0.0065413974,0.01693455,-0.03294731,0.0093758935,0.018554261,0.030208286,0.03049799,-0.011318231,-0.026139254,-0.0050467853,0.02274181,0.003486331,-0.0066302842,0.013425173,-0.024348352,-0.01667118,0.0027011659,-0.004062448,-0.017303264,0.013214479,-0.013589778,0.0047439123,0.008822821,0.023400228,-0.0009382478,0.0323679,0.030023929,-0.007071425,-0.015578205,0.0006987477,0.016868707,0.010442533,0.0025266847,-0.020384667,0.015380679,-0.011357736,0.065789275,0.01042278,0.016618507,-0.0068475627,0.011226052,-0.008612127,0.007203109,0.032262556,-0.014709091,0.03718753,0.0051784692,0.010857337,-0.017105738,-0.006926573,-0.025678359,0.021846358,-0.0005374349,-0.0020838976,-0.024651226,0.014103346,0.0026945816,0.0015974903,-0.009751192,-0.0006810526,-0.0036344756,-0.0051620086,0.018211883,-0.007822024,0.0008209668,-0.009803866,0.029023131,-0.017922178,0.0012378286,-0.027047873,-0.0009835141,0.084067,0.035343956,-0.007071425,0.015907414,0.0077891024,-0.01783,0.0014937893,-0.02059536,0.027126882,-0.011166794,-0.0145510705,0.0045365104,-0.0028937536,0.0006921635,0.028154017,-0.021293286,0.023044681,-0.00045430945,0.0072162775,0.0145510705,-0.0032920975,0.0038616303,-0.018356735,0.024466868,-0.009942134,0.026349947,0.018225051,0.006547982,0.007097762,-0.010738822,0.01718475,-0.012608733,-0.009639261,0.015802067,-0.01775099,-0.005780923,-0.004161211,-0.012253187,0.019765753,-0.010784911,0.011719867,-0.000557599,0.019620901,-0.031472452,0.003911012,-0.019976446,-0.011278726,0.033158004,-0.002910214,-0.004730744,0.040901016,0.013813641,0.005451713,-0.02444053,0.020002784,0.0037793277,-0.032078195,-0.022030717,0.006554566,0.017895842,-0.011877888,-0.0043225237,0.016908212,-0.006324119,0.012240018,-0.03547564,-0.010027729,-0.0048525515,-0.02796966,-0.020911403,0.007703508,-0.0056920364,-0.026639652,-0.00063167117,-0.0057381256,-0.0065710265,-0.0031851043,-0.022926167,0.011989819,0.035712674,-0.0073216246,-0.012240018,0.0214118,0.011686946,0.004022943,-0.0012970864,-0.021490812,0.00014979043,-0.022070222,-0.0034929153,0.017224254,-0.0028312039,0.019515553,-0.0027949908,0.005672284,0.018712282,0.022346757,0.030577,0.0005073945,-0.0180802,0.026968863,0.008546285,0.0060047857,-0.024519542,0.018053861,0.008322422,0.011331399,0.021938536,-0.023966469,0.0038254173,0.02501994,0.01054788,-0.023189534,-0.004931562,-0.0049941116,0.0010312495,-0.022886662,0.03600238,0.034817223,-0.02059536,-0.005504387,-0.020490015,0.042981625,0.01585474,-0.039057445,0.014827607,0.017513959,-0.04503589,0.00042015393,0.0054912185,-0.011719867,0.014827607,-0.012207097,-0.018936144,-0.026863515,0.010817832,-0.0077825184,0.023031514,-0.006159514,-0.02387429,0.0019176467,0.008170986,-0.0098104505,-0.012766753,-0.028733427,-0.02338706,-0.02527014,0.01439305,-0.022636462,0.026363116,0.0017612721,0.0073545454,-0.039847545,-0.020542689,0.006396545,-0.028075006,-0.018751787,-0.0017876088,0.04274459,0.026099749,0.033816423,-0.016802866,0.020634867,-0.0045891837,-0.006212188,-0.0074862293,0.0013999644,-0.012911606,-0.0077495975,0.024848752,0.009665598,-0.012681159,0.007802271,-0.0080853915,-0.00043208778,0.006998999,-0.010850753,-0.010429365,-0.011621104,-0.013142053,0.01067298,-0.018791292,0.018435746,-0.0076508345,-0.020055458,0.018699113,0.0048821806,0.005412208,0.011871303,-0.016197119,0.033316027,-0.008072223,0.010060649,-0.015604542,0.005741418,-0.004967775,-0.016526328,-0.006179267,-0.027021535,0.016473655,-0.000051336145,0.005096167,-0.025441328,-0.011713282,0.0039044276,0.015762562,-0.019765753,-0.0026188635,0.012641654,0.003650936,-0.008144649,-0.02461172,-0.0103437705,-0.0054253764,-0.000490111,0.01602593,-0.03597604,0.015591374,-0.002875647,-0.026692325,-0.015117311,-0.0068080574,0.017764159,0.007848361,0.018962482,0.02264963,-0.030603338,-0.023768943,-0.017895842,-0.004734036,0.0044575,-0.0014797978,0.027521934,-0.0018386364,0.0009950364,0.0021020041,-0.029260162,-0.009593172,-0.035317622,0.0060936725,-0.015011964,-0.007229446,0.002773592,-0.007604745,-0.0074269716,0.007051673,-0.013425173,0.020239815,0.013431758,-0.02999759,-0.0036772727,0.014590575,-0.008862326,0.011015358,0.023321219,-0.0134712625,-0.017671978,-0.032183543,0.017448116,0.004121706,0.018053861,0.0448252,0.0052871085,-0.020674372,0.017474454,0.0001658394,-0.019515553,-0.033895437,-0.0029908705,0.016618507,-0.034395833,0.022544283,-0.0063010743,0.0046484414,0.028575405,0.0053924555,-0.009468072,-0.015762562,0.011147042,0.0031554755,0.031051062,0.013523936,-0.008704306,-0.012121502,-0.024163995,0.0050237407,-0.0042171767,-0.018159209,0.007933955,-0.011785708,-0.024084985,-0.011232636,-0.01238487,0.023597755,-0.007664003,0.019752584,0.0127272485,0.013346163,-0.0020756675,0.004157919,0.009514161,-0.00486572,-0.02282082,0.040031906,0.0034896233,-0.04709016,0.011140457,-0.000422623,-0.015802067,-0.009428567,0.016750192,-0.011028526,0.012779922,0.012700912,0.014353544,-0.010666396,0.010054066,-0.022781314,-0.04274459,0.003512668,-0.0039669774,0.02305785,-0.0027587777,-0.009428567,-0.007670587,0.011107537,0.0374509,0.023242207,-0.012016156,-0.003413905,-0.002057561,0.020108132,0.0062780296,-0.04145409,0.010620306,0.0054582977,-0.019160006,0.0117593715,-0.004727452,-0.014274535,0.013721462,0.014669586,0.010784911,0.014366713,-0.02525697,-0.016947718,-0.005919191,-0.008098559,-0.031920176,-0.013418589,-0.013300073,0.011337983,0.015301669,-0.001623827,-0.021938536,0.00048393832,-0.0022122895,0.020503182,-0.006452511,0.0037727437,0.00703192,0.026363116,0.01161452,0.033474047,0.023926964,0.01161452,-0.014946123,-0.0042764344,-0.009171783,0.013155221,-0.035212275,-0.006449219,-0.030761357,-0.016368309,0.007407219,0.005751294,-0.0020015952,0.03658179,0.0006563619,0.01635514,-0.0028526024,-0.012516554,0.039610516,-0.021490812,0.03426415,-0.011390657,-0.019884268,0.001690492,0.013253984,0.014774933,-0.027126882,-0.005231143,0.006449219,0.012338781,-0.0219122,-0.009428567,0.008427769,-0.00833559,0.012470465,0.00047241597,-0.007835192,0.018659608,0.025322814,-0.023597755,-0.008605543,0.002164554,-0.0012937943,-0.0035060837,0.039531507,-0.013313242,0.0011431809,0.018764956,0.01406384,-0.018225051,-0.0069068205,-0.008882079,-0.02731124,-0.035712674,0.00030595931,0.0077891024,-0.014630081,-0.009817035,0.0063372874,-0.0117593715,0.014590575,-0.020621698,0.0036443518,-0.041164387,0.028417384,-0.019199513,-0.012891853,-0.049829185,-0.0025168085,-0.022675967,0.0034994995,0.0034797469,0.22038616,-0.01357661,-0.014169187,0.014603744,0.014327208,0.0050533693,-0.0045101736,-0.007980044,-0.01291819,0.010521543,-0.0042863106,0.010185749,-0.0065018926,-0.0040657404,0.004078909,0.010534712,-0.02836471,-0.02862808,-0.01963407,0.034711875,-0.014406218,-0.0035850941,0.016486824,-0.025810044,0.045430943,0.004533218,0.0055241394,0.0015102497,-0.023479238,0.004388366,-0.019976446,-0.012319028,0.026547473,-0.023189534,-0.005688744,-0.007947124,-0.0010114969,0.015275332,0.011061448,0.023808448,-0.00042179998,0.0049875276,-0.00472416,-0.0018435746,-0.010580801,-0.0022073514,-0.023242207,0.0040986612,-0.0109890215,0.009738024,-0.00046706633,-0.0028130973,0.020463677,0.036450103,0.013484431,-0.010771743,0.022912998,-0.020397836,-0.034738213,0.0027670078,0.005339782,0.020990413,-0.01635514,0.0110812,-0.0066796658,0.023242207,-0.01963407,-0.006557858,0.02084556,0.0034962075,-0.01026476,-0.011436746,0.003176874,0.020871898,-0.004055864,-0.020055458,0.010699317,-0.011087785,0.020661203,0.010692732,-0.009257378,-0.018751787,-0.013214479,-0.002396647,-0.017329602,-0.039452497,0.030102938,0.003884675,0.01921268,-0.0014411156,0.006416298,-0.005892854,-0.004450916,-0.0032838671,0.016407814,0.014274535,-0.023426564,0.022912998,-0.022004379,0.01439305,-0.013030121,-0.004398242,0.032078195,-0.0011431809,0.0033332487,-0.0039406405,0.0117593715,0.005748002,0.008684553,-0.019107332,-0.025559844,-0.024361521,0.0056624077,0.018185547,0.009349557,-0.016499992,0.008816237,-0.017961683,0.001285564,-0.017474454,0.018053861,-0.0030336678,0.009105941,0.0025958188,0.0015374095,-0.013523936,-0.0017069525,0.012786507,0.026797673,-0.042481225,0.033974446,-0.0022534407,0.014248198,-0.043877073,-0.042507563,-0.012806259,0.004898641,-0.043956086,0.012766753,0.017342769,-0.005316737,0.018541092,-0.0019110625,0.0031571214,0.014419387,-0.0039241803,0.012700912,-0.030735021,-0.01946288,0.0036476438,-0.029707886,0.019831594,0.008236827,-0.012773338,0.022912998,0.0048459675,-0.031999186,-0.048117295,0.008638464,-0.00236208,-0.01775099,-0.016895045,0.032973647,0.0221624,-0.021201108,-0.034817223,-0.16623776,0.025783706,0.008645047,-0.010007977,0.009296883,0.02224141,0.02192537,-0.00048393832,-0.0145642385,-0.023676764,0.0046945307,0.022294084,-0.014419387,-0.020437341,-0.014932954,-0.040822007,-0.017197916,-0.00034957958,0.05651873,0.010738822,0.016447319,-0.013438341,0.027442925,-0.018014356,0.005780923,0.004450916,0.013537104,0.02183319,-0.00952733,0.003114324,-0.006715879,-0.010679564,0.024098152,0.02936551,0.022425767,0.0043159397,0.018132873,0.025783706,0.0068146414,0.017474454,-0.008217075,-0.019594563,0.0126153175,-0.0060278303,0.007953707,0.024335183,0.0021448014,0.0087438105,0.009988223,-0.011291894,-0.0015752686,-0.018962482,0.0032674067,0.018014356,0.0020213479,-0.00005581134,0.0037134858,0.028812436,-0.04548362,-0.016565835,0.0066138236,-0.018949313,-0.015143648,-0.0221624,-0.008098559,0.0072689513,-0.022109726,0.018172378,-0.045825996,-0.0065973634,-0.0056854524,-0.0064986004,0.0001302436,-0.00018435746,0.021622496,0.01863327,-0.035791684,-0.009145447,0.0075981608,-0.011351152,-0.007835192,0.018185547,0.003973562,0.021701505,-0.012997201,0.032315228,0.024071816,-0.029339172,-0.0024624888,0.0022534407,0.0061957273,-0.01946288,0.0020723753,-0.030550664,-0.008934752,0.02313686,0.00029958086,-0.01963407,0.0087899,-0.02773263,0.0019011863,-0.012529722,-0.034790885,0.04161211,0.013879483,0.0045134653,-0.003618015,0.006893652,0.020937739,0.003980146,-0.0022863618,-0.013774135,0.032341566,0.027785303,0.012002987,0.011226052,0.033711076,-0.012483633,0.0139058195,-0.009968471,0.009290298,-0.026771337,-0.0032295475,0.017342769,0.0025546676,0.0035653415,-0.09934233,-0.011937145,0.009705103,-0.0070911776,-0.03500158,-0.008394849,-0.0008658216,0.04195449,0.01921268,0.02804867,-0.024756573,-0.017448116,-0.0023423273,0.011706699,0.0054879263,-0.009928966,-0.015578205,-0.02657381,-0.014208692,0.024084985,-0.0022797775,-0.013240816,-0.009217873,-0.0040130666,-0.019726248,-0.03155146,-0.005751294,0.0052212663,0.012694327,-0.012733833,0.016078604,-0.007815439,0.006521645,-0.015512363,-0.02469073,-0.00703192,-0.022899829,-0.008329007,0.040769335,-0.019594563,-0.02159616,0.0044377474,-0.022531115,-0.009863124,-0.017237421,-0.032394238,-0.001860035,0.03278929,-0.0042961873,-0.010686148,-0.00029814057,-0.012411207,-0.016420983,-0.023215871,0.031604134,-0.005096167,-0.0051290877,0.028101344,-0.009178367,0.0055274316,-0.009428567,-0.0117593715,-0.03173582,-0.0025892346,0.014643249,-0.011390657,0.0044212868,0.00351596,-0.022662798,0.014709091,0.0051916377,0.0151963215,-0.02886511,0.026020737,-0.026047075,0.00615293,-0.03900477,-0.018251387,0.0120688295,-0.011120705,-0.020924572,-0.0037398227,0.0023439734,-0.025968064,0.010692732,0.004859136,-0.0053891633,0.018488418,-0.0020246399,-0.014919786,-0.0031159702,0.026297275,0.024256174,-0.012957696,-0.026178759,0.009612924,-0.008006381,-0.009843371,0.02616559,-0.0054912185,-0.010561048,-0.019660406,-0.025652023,0.03099839,-0.002261671,0.0016732085,0.01373463,-0.011765956,-0.00021419208,-0.025665192,-0.005734834,-0.010850753,0.0026484923,-0.0067487997,-0.018106535,0.0070780097,-0.01026476,-0.015117311,0.031472452,0.014248198,0.014366713,-0.030682348,-0.007505982,-0.026968863,0.01913367,0.01781683,-0.01913367,0.010791495,-0.016012762,0.021517148,0.0056656995,0.007743013,0.014156019,-0.014050672,-0.0072689513,0.010745406,0.009520746,-0.032920975,-0.016658014,0.010969268,0.0092639625,-0.04155944,-0.0003528717,-0.033026323,0.0075586555,0.009928966,-0.017671978,0.0013744506,-0.005270648,-0.00014701273,0.009764361,0.00062632153,0.029075805,0.022662798,0.01969991,-0.014498397,-0.024098152,-0.04047963,0.0008201438,-0.016723854,0.005379287,0.00041974243,0.028812436,-0.014972459,0.0063010743,-0.021148434,0.037161194,0.0055537685,-0.013477847,-0.00041089492,-0.0060212463,-0.027706292,0.0075784083,0.0051784692,0.0032344856,-0.007196525,0.042533897,0.022557452,-0.03018195,-0.007854944,-0.0133724995,0.0019439835,0.0011226052,-0.018685944,-0.002062499,0.016723854,-0.005843473,0.019252185,-0.02134596,0.012766753,0.007051673,0.006646745,-0.030076602,0.00452005,-0.022952503,-0.0005312622,0.042296868,0.017211085,-0.026889851,0.010811248,0.001963736,0.028338375,0.027890649,-0.013616115,-0.010528128,-0.007868113,-0.024822414,0.023018345,-0.010475454,-0.001692138,0.007828607,-0.0070385044,-0.0019044783,-0.019423375,0.015077806,0.015802067,-0.00830267,0.0103437705,-0.0282857,-0.0136951255,-0.018843966,-0.017237421,0.014735428,-0.0030451901,0.004325816,-0.027074208,0.021148434,0.025862718,0.0039505167,-0.00744014,0.010396443,0.012542891,0.03115641,-0.011311647,-0.0076771714,-0.025441328,0.016249793,-0.0028575405,-0.014656418,0.03992656,-0.021885864,0.059573796,0.015354343,0.0071438514,0.0047537885,-0.01692138,0.014379881,0.027811639,-0.0015958442,0.003079757,0.009283715,-0.0012304214,-0.005306861,-0.02264963,-0.016737023,-0.032104533,-0.008974258,-0.011252389,0.0049842354,-0.015117311,0.009599756,0.011166794,-0.0024098153,0.01586791,-0.0075981608,0.004964483,-0.0037595753,0.018369904,0.009408815,-0.02968155,-0.0060574594,-0.003752991,0.016328802,-0.027653618,0.0013127238,0.015499195,-0.02976056,-0.018554261,0.023373893,-0.011054863,0.021122096,0.019436544,0.022517946,-0.021280117,-0.011252389,-0.009744609,0.019739415,-0.010646643,-0.0053957477,-0.022583788]},{\"id\":\"dfefa709-86e2-4cb4-97b2-2db5500d4eb3\",\"text\":\"You should definitely be able to withdraw ANY amount that you have in your balance. I only got $5 due to having to reupload my video (and that one has more views) and tried to re link my newer video but apparently I wasn’t able to.. so now I’m stuck with just 5.00 in here for no reason and all my work just for the bounty was for nothing.. not even my 5.00 that I earned, which should be even more due to my reupload having more views\",\"vector\":[-0.039860494,-0.010274886,0.015435397,-0.03540519,-0.018256212,0.0016641493,-0.048138402,-0.030659892,-0.029763559,-0.017267609,0.0011294796,0.00040573938,-0.023159686,-0.00043869283,0.0039774817,-0.0024797472,0.010452835,0.006205135,-0.0009194013,-0.010090347,-0.022645613,0.0099980775,-0.035985168,-0.0043795137,-0.0134647805,-0.009345599,0.018954827,-0.0075858845,0.023186048,-0.030317176,0.014525882,-0.0010446245,-0.035537004,-0.008824934,-0.03332253,-0.008890841,-0.0065346695,-0.01289139,0.017452149,-0.014763147,0.020589316,0.005275848,-0.00448826,-0.008745846,-0.034429766,0.010149663,-0.01813758,-0.030000823,-0.0037599888,0.02739091,-0.0005202526,-0.009484003,-0.047742963,-0.02319923,-0.0047387066,0.02404284,0.012917753,0.03274255,-0.0019211862,-0.008231772,0.0023413429,0.010868048,-0.006472058,-0.010439654,0.0032393243,-0.0031025675,-0.0026362762,0.010894411,-0.00061375805,-0.0039379373,0.015540848,-0.0022721405,0.022395166,0.0012052725,0.019442536,-0.012159823,0.0050649457,0.033243444,0.028419057,0.0063600163,0.02292242,0.017017163,0.017122613,0.016107647,0.022540161,-0.015514486,-0.0039148703,0.034561582,-0.005499931,-0.013300014,0.012205958,0.00734862,0.028656323,0.015053137,0.0014169984,0.030343538,-0.035826992,0.03358616,-0.011296444,-0.0005227241,0.00027639707,-0.0007468076,-0.014736784,-0.008581079,0.012851846,-0.0086667575,-0.013550459,-0.028946312,0.00039750102,0.0120873265,-0.022039268,-0.008225182,0.013148427,-0.03007991,-0.011296444,0.0026791156,0.015909927,0.005490045,-0.024095565,-0.014657696,0.0315035,-0.024991898,0.01498723,-0.008047233,0.015224495,0.014367705,-0.002057943,0.008904023,0.013590003,0.0031668267,0.0060766167,0.0017284086,0.022948785,0.028129067,-0.0029114375,0.02358149,-0.024596456,-0.01078896,-0.015066318,-0.01909982,0.024425099,0.018651653,-0.0010413291,0.009510366,-0.005275848,0.028181793,-0.00072950707,-0.035457913,0.014420431,-0.00529562,-0.016753536,-0.007750652,0.018335301,0.006004119,-0.018941645,-0.00046423177,-0.018546203,0.0067356857,0.002530825,-0.011784155,-0.0033035835,0.03474612,-0.012430042,-0.027891802,0.026876835,0.022131538,-0.01747851,-0.013260469,-0.008429493,0.002748318,-0.008936976,0.028656323,-0.026112316,0.011632568,-0.012034601,0.008165865,0.029051764,-0.0002541535,0.0141568035,-0.0079351915,0.0015183303,0.0054834546,0.007216806,0.04399945,0.0031487024,-0.007190443,0.02356831,-0.017636688,0.010202389,-0.017346697,-0.007809968,-0.005490045,0.0010306193,-0.0011970341,-0.6179431,0.0031421117,0.023660578,0.02749636,0.011052588,0.014314979,-0.015382672,0.0045937113,-0.026969105,0.035668816,-0.004254291,0.00006451668,-0.007618838,0.00040882875,-0.0037171494,-0.010459426,0.014974048,-0.023845118,-0.023528764,0.015975833,-0.022395166,0.0015413978,-0.028814498,0.0402823,0.017887134,-0.031556226,-0.012759577,-0.028629959,-0.01900755,0.012436633,-0.011480982,0.007875875,0.013524096,0.023027873,0.037408758,-0.012924344,-0.003336537,0.00085678976,-0.0057437867,0.024108745,-0.03168804,-0.011111904,-0.0061820676,-0.016713992,0.009589454,0.008297679,0.0067554577,0.0054274336,-0.0002702183,0.008567898,0.009846492,0.009866264,-0.00015230673,-0.007757243,-0.009853082,0.016766716,0.015909927,-0.017228065,0.009727859,0.003265687,-0.006699437,-0.019402992,-0.043683097,-0.03139805,-0.009365371,0.009681724,-0.017900316,0.021393381,0.037751473,0.009286283,0.01107236,0.00078593986,0.002466566,0.0028274062,0.0065050116,0.014341342,0.020497046,-0.015962653,-0.009154469,0.011059179,0.0074408897,-0.027074557,0.01546176,0.00088562403,0.026020046,0.01402499,-0.009385143,-0.016120829,-0.006310586,0.02205245,0.008917204,0.007414527,0.009233558,-0.016938074,-0.0044717835,0.018743923,-0.022671975,0.011230537,0.005404366,0.0019113002,-0.009022655,0.009194013,-0.022566523,-0.0106835095,0.06416696,0.02968447,0.009095153,-0.0062018395,0.03551064,-0.037777837,0.012001648,0.014394068,0.0079483725,0.011797336,-0.021815185,-0.038647808,0.023041055,-0.005582315,0.01527722,-0.006287519,0.01040011,0.0034007963,0.008192228,0.00467939,-0.0034337498,0.041653164,0.024873266,-0.03569518,0.0037566936,0.022975147,0.0026642866,-0.0063402443,0.018388025,-0.0034205683,0.0071574897,0.009866264,0.02615186,-0.01651627,-0.006650007,-0.05248826,0.014433612,-0.0011583138,0.025136894,0.006854318,-0.018691199,-0.026006864,-0.00012254565,-0.0016616778,0.0031371687,0.025795963,-0.006567623,-0.000181141,0.007618838,0.0007356858,-0.0077967867,-0.009167651,-0.0072958944,-0.004237814,-0.02891995,0.002491281,-0.018862557,-0.00753975,-0.0035721543,-0.023067417,-0.02509735,-0.01851984,0.006729095,-0.0128057115,-0.00848881,-0.013425237,-0.0055427705,-0.024003295,-0.00019473431,-0.009345599,0.0075661126,0.013616366,0.035537004,0.012924344,-0.019323904,0.003904984,-0.0049496084,0.004544281,0.001660854,-0.013227516,0.010742825,0.013906357,-0.030580804,0.03751421,-0.005796512,0.0060601397,0.00045063847,0.009905808,-0.0008485514,-0.0027944527,-0.011606206,-0.015026774,0.008482219,0.036354247,0.013695455,0.024767814,0.01679308,0.018295757,0.010011259,0.0038489632,-0.008930385,-0.026573664,-0.009437868,-0.026099134,0.010327612,0.02567733,0.008389949,-0.016279005,0.009655361,-0.009002883,0.017017163,0.016107647,0.0127727585,0.00095070706,0.00782315,0.014341342,-0.038305093,-0.023739668,0.015791295,-0.020655224,0.004626665,-0.0032014279,-0.0039346423,-0.0013527392,0.016410818,-0.0034699985,-0.0067950017,0.024925992,-0.021525195,-0.00025600713,0.034482494,0.011672113,0.025044624,0.010769188,0.012140051,-0.0041554305,-0.012640945,0.02786544,0.016358094,-0.022856515,0.010854867,-0.0031585884,0.037566934,-0.021920636,-0.015422216,0.0044915555,-0.004382809,0.02920994,-0.013787724,-0.004709048,0.012832074,-0.040835917,-0.01928436,0.016437182,0.01633173,0.013998627,0.015066318,0.009246739,-0.0020497048,-0.016634902,0.021314293,0.02682411,0.016964437,0.017452149,0.013708636,0.009009474,0.00037484552,-0.031740766,-0.0030580803,0.00097295066,0.029420841,-0.014657696,-0.018968007,0.0025094054,0.0022276533,0.0053582313,-0.014539063,-0.042839486,0.01891528,0.017056707,0.0018058491,0.004982562,0.0035688588,-0.0012423452,0.0063303583,0.023436496,-0.006501716,-0.00869312,0.010485789,0.0060502538,-0.025743237,-0.009062199,0.02691638,-0.0072958944,0.0061062747,-0.027628174,0.02671866,-0.01900755,0.0068213646,0.013023204,0.021630647,0.008567898,-0.010841685,-0.01861211,0.0030284224,-0.01975889,-0.0042806533,-0.0042246324,-0.015830839,0.00367431,0.013326376,-0.0021485651,-0.0048243855,-0.006946588,0.020286145,0.023370588,-0.021050666,0.020576136,-0.038120553,-0.0034040916,0.09891308,-0.016582178,-0.019534806,0.031846218,0.0014046408,-0.000121515855,-0.0021716326,-0.029552655,0.022316078,-0.016463544,0.013346148,-0.021722917,0.017109433,0.0093521895,0.0015076204,-0.0030811478,0.016344912,0.004264177,-0.011190993,-0.02454373,-0.028867224,0.01469724,0.00868653,0.03819964,0.015791295,0.04486942,0.037408758,0.00482109,0.008159275,0.006336949,-0.030528078,-0.010492379,0.0038258957,0.02177564,0.0018025539,0.035800632,0.016437182,-0.011289853,0.023370588,0.0007080873,-0.012930934,0.013372511,0.0006512426,0.012930934,0.031556226,-0.026982287,-0.010228751,0.014196347,0.026731841,-0.013339558,0.01974571,-0.004850748,-0.016779898,-0.0067752297,0.0067257998,0.012350954,0.006762048,-0.008258135,-0.008198819,-0.023726486,-0.026929561,-0.034245227,0.01766305,-0.012752986,0.01202142,-0.016068103,-0.014090897,-0.007302485,0.0016732116,-0.023897843,-0.019455718,0.0027054783,-0.025795963,-0.010571468,0.0048804064,-0.01660854,0.0056712893,0.0000056896197,0.014591789,0.005812989,-0.009793766,-0.03817328,-0.03416614,0.009714678,-0.0011500755,0.019613896,0.0047024577,-0.0040730466,-0.0054274336,0.014776328,0.009154469,0.015145406,0.0121070985,-0.029078126,0.031714402,0.01221914,0.022105176,0.02920994,0.028471783,-0.011896196,0.008844706,-0.0076715634,-0.022381986,-0.005117671,-0.0027450225,0.012192777,0.012060964,0.021037484,-0.012232321,-0.010202389,0.01850666,0.0057602637,0.038357817,0.010775778,0.031081695,0.021248385,0.009141288,0.012911162,0.007974735,-0.0031618837,-0.015053137,-0.040835917,0.01374818,-0.004850748,-0.008515172,-0.01850666,0.01937663,-0.031450775,0.004484965,-0.012350954,-0.00023376355,0.010920774,-0.022105176,-0.018480295,-0.022685157,-0.011751201,-0.02157792,0.017043525,-0.022685157,-0.008218591,-0.013787724,-0.010274886,-0.025954138,-0.018783467,0.029605381,-0.03390251,-0.022553343,0.021498833,-0.0057108332,0.034930658,0.011158039,0.0120873265,-0.033427984,-0.019113002,0.014301798,-0.009404915,-0.020694768,-0.009226967,0.04020321,0.027812714,0.018361663,-0.00348318,0.012897981,-0.0056745843,0.012258684,0.0008666758,0.030290812,-0.018256212,-0.011658931,0.01688535,0.021920636,0.017979404,0.008759027,0.001283537,-0.00050954276,0.03703968,-0.0061161607,0.024649182,-0.028999038,-0.02509735,-0.0037006726,-0.017425785,-0.009167651,-0.008409721,-0.0033628999,-0.009681724,0.004448716,-0.010433063,0.0066467114,0.013945901,0.0030350129,-0.021063847,0.027232733,0.024135109,0.017399423,-0.009378552,-0.017346697,-0.009886036,0.018981189,0.018335301,-0.010584649,0.01489496,-0.014209528,0.031239873,-0.03234711,0.016713992,-0.010927365,-0.03026445,-0.014196347,-0.026230948,-0.016819442,-0.01985116,0.016120829,0.0014532473,0.011250309,0.015857201,0.008989702,0.008376768,-0.024596456,-0.035747904,-0.0072958944,-0.037593298,0.005928326,0.00016023616,0.024280103,0.043393105,0.013128655,-0.014288617,0.014407249,0.008778799,0.00147961,0.017307153,0.029631745,-0.01909982,-0.013642729,-0.0011187698,-0.008805162,-0.038595084,-0.0312926,0.02739091,0.023159686,-0.014288617,-0.011276672,0.0025028146,-0.0023891253,0.023594672,-0.02290924,0.013155018,-0.008956748,-0.0002879308,-0.011250309,0.046187557,0.022843333,0.009859673,-0.00014983522,0.009240148,-0.037197858,0.00868653,-0.026639571,0.030976245,0.011560071,0.030317176,-0.023555128,0.021037484,0.0030959768,-0.006808183,-0.026955923,-0.04621392,-0.016832624,0.014077715,-0.022671975,0.012950706,0.024359193,0.0017168749,0.005555952,0.002611561,-0.035088837,-0.024227379,-0.021617465,0.0065742135,0.022777427,0.008324042,-0.02616504,-0.009292874,-0.010070575,0.02910449,-0.0059019635,-0.0023808868,0.033243444,-0.014684059,0.0120675545,-0.0127925305,0.017742138,0.022197446,-0.021432925,0.021142935,0.01116463,0.02271152,-0.019257998,0.014749966,-0.0043201977,0.025571879,-0.046187557,0.0017448853,-0.0019145956,-0.02176246,0.009035837,-0.010571468,-0.031239873,-0.0059975283,-0.008923795,0.01679308,0.0052923243,0.021617465,0.018374845,0.006673074,0.0027549085,-0.017293971,-0.027048193,0.009912399,0.0014573664,-0.008383358,0.04352492,0.005315392,-0.02786544,-0.014288617,0.023924205,-0.0019409583,0.009596045,-0.018203488,0.016595358,0.012640945,-0.012456405,-0.028287243,-0.0022062336,-0.012851846,-0.0054867496,0.027469998,-0.0060568447,-0.006004119,0.0069795414,0.023093779,0.016858986,0.0029526292,0.005631745,0.0046596183,-0.0038357817,-0.005279143,-0.005766854,-0.023054235,-0.01956117,0.022447892,0.010558286,-0.016305368,-0.022210626,0.020378415,-0.028788136,-0.025730055,-0.016911712,0.029869009,0.029658107,-0.010597831,-0.010288068,0.04086228,0.017728956,0.028498145,-0.00075216254,-0.01212687,0.010802141,0.0076517914,-0.02797089,0.0013140189,-0.023990113,0.0052626664,-0.011843471,0.024029657,0.041784976,0.0021815186,-0.024715088,0.008857888,-0.019930247,0.029763559,0.039175063,-0.010169435,0.0014853769,-0.015145406,0.0033101742,0.017043525,0.0057833306,-0.0038127145,-0.015962653,0.0017794864,0.007473843,0.018941645,-0.034192502,-0.006893862,-0.0021848138,-0.03638061,0.02290924,0.028656323,-0.018453933,-0.00839654,0.025914595,-0.021881092,-0.020048881,0.024794178,0.0148685975,-0.002535768,0.010597831,-0.040414114,0.009055609,0.0036347657,0.005163806,-0.0035820403,0.02310696,-0.0017646573,-0.019772071,-0.0074013453,0.013774543,0.0029674585,0.005430729,0.004982562,0.0034864752,-0.023278318,-0.0018783468,-0.005638336,-0.020417958,-0.027654538,0.004982562,-0.0002234656,0.012858437,-0.038911436,0.018401207,0.0127859395,-0.01919209,-0.0028504736,0.21480379,0.0042246324,-0.014525882,0.05852533,0.006234793,0.0057075378,-0.002596732,-0.007322257,-0.0141568035,0.0032904022,-0.0023265136,0.015422216,-0.020167513,-0.014565426,-0.0034304543,-0.020694768,-0.020932034,-0.003885212,-0.0018981189,-0.0022606067,0.011428257,0.03063353,-0.02310696,-0.018546203,0.024477825,-0.024636,0.0028554166,-0.010657147,-0.012739805,0.0042905393,-0.020773856,-0.031951666,0.017188521,-0.0189021,-0.006528079,0.00562845,0.00802087,-0.014486338,0.024319647,0.027364546,0.010670328,0.027153645,0.008422903,-0.03390251,-0.0027236028,0.02062886,0.0020348756,-0.0036874914,-0.020562954,0.008159275,-0.023001509,-0.0005396128,0.0062545654,0.009200604,-0.02569051,0.00012357545,0.02644185,-0.0055987914,-0.005908554,0.013115474,-0.017148977,0.019363448,0.017148977,0.011243718,-0.046556637,0.012977069,0.010195798,0.013590003,0.049614716,-0.0029905257,0.011335988,-0.014249072,-0.019679802,0.02844542,-0.028893586,-0.009576273,-0.013497734,0.015619936,0.01259481,0.0023677056,-0.002702183,-0.00048729917,-0.016371274,-0.030290812,-0.027891802,-0.05499272,0.022579705,0.012687079,-0.0039445283,-0.008554717,-0.0042707673,-0.02099794,-0.026890017,-0.0077176983,-0.015013593,-0.0048935874,0.017017163,0.010288068,-0.017873952,-0.006659893,0.00887766,0.047953863,0.033928875,-0.0021436221,-0.0011195935,-0.028181793,-0.009016065,-0.0013412056,0.0033447754,-0.009681724,0.019389812,-0.01573857,0.0070586293,-0.007829741,-0.0071574897,0.0169908,0.010835095,0.005315392,-0.0038423724,-0.0027549085,-0.0076979264,-0.031081695,0.0039774817,-0.010973499,-0.00006904778,-0.0009152821,-0.012996841,-0.008581079,-0.024965536,-0.018150762,0.0004605245,0.01803213,0.0015125634,-0.015923109,-0.016595358,-0.005022106,-0.0027433748,-0.01613401,-0.002814225,0.013906357,-0.010149663,0.019627076,0.03677605,-0.0106835095,-0.0016105999,-0.036301523,0.020404778,-0.0005457915,-0.037408758,0.01738624,-0.016054923,-0.008554717,-0.009945352,-0.0026132087,0.017808046,-0.017966222,-0.03271619,-0.04697844,-0.0013856926,-0.0042147464,-0.042127695,-0.011507345,0.032320745,-0.017873952,-0.03817328,-0.020497046,-0.16471453,0.02176246,0.017425785,0.020272965,0.013787724,-0.017135795,-0.0063336533,-0.008060414,-0.029130852,-0.015316765,0.0047485926,-0.00839654,-0.011757792,-0.025914595,-0.0027895097,-0.015817657,-0.016173555,0.010966909,0.012535493,0.0031948371,0.03701332,0.0054109567,0.00061787723,-0.026178222,0.008930385,-0.0022012906,-0.032215293,0.03168804,-0.0038687352,-0.034377042,-0.008910613,0.005796512,-0.0045739394,0.013141837,0.016661266,0.029315392,-0.0062479745,-0.023818756,0.014842235,0.01250254,0.023186048,0.0066928463,0.0020744198,0.017887134,-0.014934504,0.03271619,0.0031734174,0.011922559,0.024925992,-0.011869834,0.027601812,-0.029526293,-0.0011896197,0.002652753,0.016634902,-0.001529864,0.00061540573,-0.004886997,-0.019271178,-0.0035853356,-0.0026758204,-0.0077440613,-0.013280241,-0.015857201,-0.0029130853,-0.0074277082,-0.0012448167,-0.002758204,-0.0025044624,-0.005051764,-0.014380886,-0.02749636,0.005720719,0.037356034,0.013042976,-0.017649869,-0.022316078,-0.0016015378,-0.0028208154,0.006030482,-0.00077028695,0.046240285,-0.037197858,0.004877111,-0.007790196,-0.0050352877,0.007645201,0.023647398,0.023555128,-0.023911025,0.0010034327,-0.019126184,-0.010255114,-0.030053549,-0.007243169,-0.002451737,0.016015377,-0.004257586,-0.00089962926,-0.020365233,-0.00544391,0.0011401895,-0.025940958,0.042259507,0.024385555,-0.010426472,-0.0038028283,0.0020925442,0.03340162,-0.027891802,0.0079154195,0.0060502538,-0.0016567349,0.015435397,-0.001393931,0.006920225,-0.00553618,-0.008436084,0.017201701,-0.032399833,0.051671013,-0.024161471,-0.02176246,0.0072299875,-0.010162844,-0.0038983934,-0.104132906,-0.023251956,0.0016163668,-0.016344912,-0.007974735,0.000624056,-0.018361663,0.02509735,0.014433612,0.031925306,-0.008910613,-0.02454373,-0.038726896,0.007711108,0.0042213374,-0.003176713,0.008449265,0.01841439,0.03179349,0.04945654,0.009708087,-0.020892488,-0.0036973774,-0.04086228,-0.013385693,-0.024332829,-0.00982672,0.021195661,0.010479198,0.02177564,0.02702183,0.007032267,0.007124536,-0.042602222,-0.01222573,0.0015413978,-0.042154055,-0.019482082,-0.0017679527,-0.018480295,0.016015377,0.0061919536,0.009991487,-0.03500975,-0.0046596183,0.012265275,0.0060436632,-0.0075002057,-0.008093368,-0.02569051,-0.003255801,-0.016028559,-0.005173692,-0.005200055,0.005163806,0.009714678,-0.013220925,0.019389812,-0.013148427,-0.006159,-0.021736097,-0.0056910613,-0.036248796,0.015474941,0.0141568035,-0.03379706,0.014473156,-0.0037665796,0.003417273,0.022592887,-0.008126321,0.027285459,-0.0056185634,0.009022655,-0.021248385,-0.001328848,-0.02167019,-0.032584373,0.011210765,-0.007842922,-0.010933955,-0.0007690512,0.005641631,-0.021142935,0.04199588,-0.03142441,-0.0017448853,0.017017163,-0.008165865,-0.049008373,-0.0065445555,0.010182616,0.023172868,-0.01966662,0.005144034,0.0107032815,-0.012733214,-0.00839654,-0.023884661,-0.034535218,0.0066928463,0.021248385,-0.022803789,0.009648771,-0.023739668,-0.009628999,-0.006501716,0.011935741,0.0067950017,-0.025822325,-0.03274255,-0.001016614,-0.024688726,0.024135109,-0.01298366,-0.0047024577,-0.0062545654,-0.024003295,0.0128188925,-0.0012637649,-0.0016287244,0.007981326,-0.0077967867,-0.010340793,0.02691638,-0.0003734038,0.015013593,0.021248385,0.03271619,0.014380886,0.015540848,-0.033006176,0.0070915828,-0.02891995,0.007618838,0.007012495,0.02232926,-0.025070986,0.019337086,-0.0071838526,0.021169297,0.0010693396,0.0048935874,-0.019495262,0.007981326,-0.027338184,-0.010802141,-0.021564739,-0.009154469,0.0148685975,-0.0023017987,0.0337707,0.02891995,0.013418646,0.0062282025,-0.021512013,-0.01822985,-0.031925306,0.015343127,-0.018875737,-0.01212687,-0.029236304,0.010914183,0.0032113139,0.012917753,-0.011513936,0.008409721,0.025136894,-0.019732527,0.009470822,0.030000823,-0.03809419,0.0064885346,-0.00802087,-0.012278456,0.0023825346,0.033296168,0.013800906,-0.0052461894,0.0030037072,-0.01822985,0.004096114,0.0047980226,0.005747082,-0.023357406,-0.0008724427,0.035247013,0.037250582,0.005944803,0.018453933,0.0066170534,0.021815185,-0.042786762,0.0060502538,0.00009597693,0.0006401208,0.0075661126,0.018098036,-0.016779898,-0.020259783,-0.0031783604,0.004257586,0.016582178,-0.0042411094,-0.012759577,-0.0027862145,0.0033233557,0.005453796,-0.02271152,-0.020272965,-0.013181381,0.000056175337,0.026204586,0.025044624,-0.0023775916,0.009708087,0.0040236167,-0.014104078,0.014486338,-0.021406563,-0.0044520115,0.034930658,-0.0016311959,0.011151448,0.004867225,-0.021472469,0.06232157,0.020562954,-0.029552655,-0.0045014415,0.030106274,-0.0043597417,0.019442536,-0.015699025,-0.03007991,-0.017900316,0.0024072498,-0.01393272,-0.030211724,0.033744335,-0.0023710008,0.050721955,0.008238363,-0.00092928734,-0.005173692,-0.018757105,-0.004366332,0.027232733,0.0066104624,-0.009490594,0.011276672,0.0031750652,-0.004636551,0.01757078,0.0008625566,-0.02223699,-0.008277907,0.004201565,0.016872168,-0.008824934,-0.0021568034,0.014684059,0.0013156666,0.03819964,0.0031734174,0.0022869697,-0.0038720306,0.005602087,0.0071640806,-0.014407249,-0.03522065,0.007473843,0.03179349,-0.012403679,-0.009213786,0.0025440066,-0.00010117739,-0.0014005217,0.04639846,-0.014525882,0.008159275,0.021248385,0.01633173,-0.00896993,-0.0010989977,0.0059415074,-0.014446793,-0.028577235,0.010709872,-0.027364546]},{\"id\":\"d41957a7-a855-48db-ae83-9a3e94580d21\",\"text\":\"Allow more than one video to be uploaded for our purchases\",\"vector\":[-0.03021357,-0.0060420465,-0.007593428,-0.03835415,-0.01235767,0.018736683,-0.019857682,-0.0259431,0.014906607,-0.034750942,-0.0041670436,0.013084984,0.011056512,-0.004423939,-0.0009858778,-0.004830968,0.012324307,0.009401705,0.008314069,-0.015934188,-0.016841663,0.018056078,-0.02072512,-0.009822079,-0.017282056,-0.0065124654,0.011596993,-0.024675304,-0.007580083,0.0016473001,0.011857225,-0.021525834,-0.022940427,-0.014586321,-0.029946664,-0.018896826,0.007927058,0.025289185,0.011390142,-0.010142365,0.008627682,0.0003521886,0.012344325,-0.017949315,-0.019497361,0.01453294,-0.027384384,-0.008988003,-0.025502708,0.016054295,0.0024772058,0.0020901945,-0.010883024,0.000024605242,-0.009762025,0.028558763,-0.009808734,0.02069843,0.012964877,-0.03819401,-0.0036732708,-0.00072272687,-0.010242454,0.007713535,-0.0309609,0.00785366,-0.021685977,0.0002304135,0.0011835538,-0.019337218,0.03224204,-0.01327849,-0.00546153,-0.004564064,0.008741116,-0.027357694,0.00395352,0.0028024954,-0.024488471,0.023033842,0.025742922,-0.025342565,0.018683303,-0.0015889148,0.02535591,0.01192395,0.009955531,0.036806107,0.0027708006,-0.015026714,0.011837207,0.0070729647,0.016227784,-0.007186399,-0.0073598865,0.009041384,-0.013018258,0.042064123,0.006235552,0.006725989,0.014226001,-0.016601449,-0.03160147,-0.00524467,-0.015013368,-0.014653048,-0.012037385,0.011723773,0.0093549965,0.012130802,0.00438724,0.014919952,0.015867462,-0.027331002,-0.008220653,-0.00546153,0.015547177,-0.009681954,-0.019577432,-0.007820297,0.017735792,-0.00038867941,0.02379452,-0.012884806,0.014626357,0.021619251,-0.014853226,-0.010916387,0.014412833,0.012771372,0.052286558,0.0043939124,0.025155732,0.009021366,-0.037473366,0.013825644,-0.012617902,0.023647724,-0.019217111,-0.018149493,0.007786934,0.021485798,-0.013772263,0.012831425,0.0008899591,0.020044515,-0.0020835218,-0.005564955,0.004407258,0.009868788,0.0017649048,-0.010802953,0.021632595,-0.022366581,0.009681954,-0.0006443237,0.005084527,0.0012160828,-0.03141464,0.004096981,0.008834533,-0.0043939124,0.0017699093,-0.018736683,0.03950184,0.02125893,0.011830534,-0.020751812,0.002940952,-0.002950961,-0.016534723,0.01944398,-0.02686392,0.00877448,0.0007231439,0.020631704,-0.010315852,0.005891913,-0.01969754,-0.007820297,0.008627682,-0.00585855,0.019630812,0.027891502,-0.025716232,-0.015667284,0.017148603,-0.027277622,0.018376363,-0.0057784785,-0.0013345216,-0.009915495,0.022606796,-0.004410594,-0.65765226,-0.005037819,0.028905738,-0.030080117,0.017895935,0.030347021,0.016534723,0.014226001,-0.019150386,0.017655721,-0.009061402,0.02187281,-0.0063122874,0.014092548,0.028745595,-0.009681954,0.014065858,-0.027731359,0.0006593371,0.024902172,-0.0060687372,-0.006685953,-0.0019834328,0.020711776,0.0077068624,-0.004370558,-0.0061521446,-0.008093874,-0.017375471,0.021806084,-0.021912845,0.021138823,0.029813213,-0.017749138,0.04083636,-0.00031361257,-0.008540939,0.01857654,0.03024026,0.022473345,-0.023420854,0.013625465,0.0007669329,-0.012210873,-0.0032695779,0.005278033,0.015106785,-0.003017687,-0.017522268,-0.02128562,-0.004400585,-0.015880806,0.004981102,-0.02164594,0.010435959,0.0048109503,0.03565842,-0.016921734,0.01002893,-0.0006067903,-0.020351455,-0.008580974,-0.026957337,-0.034297206,-0.011049839,-0.0011235004,-0.02164594,-0.0013912388,0.006572519,-0.014172619,0.009715318,0.014332762,-0.017508924,-0.000095710224,0.00027190876,0.033603255,0.0025272502,0.01020909,-0.021966226,0.0070929825,-0.0077068624,-0.0065124654,-0.009835424,0.002622335,0.0052279886,0.033523183,-0.01141016,-0.012784717,0.0016514705,0.017482232,0.00800713,0.017562304,0.020458216,-0.010716208,-0.005101209,0.024008043,-0.015373689,0.0070863096,0.027971573,-0.02223313,-0.013932406,-0.01156363,-0.0155872125,-0.0141325835,0.038514294,0.017642375,-0.015186856,-0.014252691,0.024421746,-0.018790064,0.02254007,0.005368113,-0.011203309,0.0005429835,-0.00082948856,-0.0365392,-0.010329197,-0.0022286512,0.00023666906,-0.010355888,0.0001866245,0.020324765,-0.008080528,0.0025639497,0.0047709146,0.032001827,-0.008714426,-0.030533854,0.008247344,0.015880806,0.015787391,-0.013385252,0.038807888,-0.0060587283,-0.017201984,0.032402184,0.012611229,-0.0023704441,0.023340782,-0.017709102,0.006328969,0.0048242956,0.017068531,-0.004066955,0.009361669,0.010269144,-0.023180641,-0.009982222,-0.036752727,0.024555197,-0.011957314,0.0014554627,0.012697973,-0.0064924476,-0.0052613514,0.01514682,-0.0067460067,-0.01754896,-0.03202852,-0.008994675,0.023901282,0.0068661137,-0.013225109,0.004850986,-0.020605015,-0.002260346,-0.0026306757,0.014653048,-0.011463541,-0.0019050296,-0.004850986,-0.003074404,-0.0021102123,0.022500034,-0.018443089,0.017095221,0.011109892,0.007506684,0.005838532,-0.001480485,0.010963095,0.022006262,-0.021899499,0.015600557,-0.0048242956,0.029332785,-0.015787391,0.015200201,-0.0376602,0.024114806,0.013151711,0.028532073,0.0019016933,0.013118347,-0.016334545,0.014426178,-0.006912822,0.010589429,0.004310505,-0.0041570347,0.014079203,-0.005014465,-0.008447521,-0.000015912607,0.0340303,-0.0141325835,-0.0030527182,-0.02558278,0.036218915,0.022419963,0.007693517,-0.024208222,0.000028723493,-0.0058652223,0.003126117,0.016307855,-0.011356779,0.005234661,-0.012531158,-0.005751788,-0.022673523,-0.051779438,0.01284477,-0.0037800325,-0.02655698,0.022059642,-0.013665501,0.028505381,0.018496469,-0.011650373,-0.011390142,0.024061425,0.0008941295,0.018589886,0.024875483,0.0027824775,0.018483125,0.003027696,0.026436873,0.01000224,0.017842554,0.031574782,0.028665524,0.0032962684,0.02100537,0.003182834,0.014613012,0.007119673,-0.025409292,-0.0032028519,0.018496469,-0.0058118417,-0.001898357,-0.013678847,0.016307855,-0.00090914284,0.001316172,0.009375014,-0.0029226022,0.026370147,-0.0058118417,0.0031544755,0.0045674,-0.00592194,-0.0035264734,0.0073598865,0.0074332855,0.0071396907,-0.00055257534,-0.01977761,0.009815406,-0.023020498,0.0066258996,-0.014519596,0.0045340373,0.015280273,-0.005421494,0.02558278,-0.016334545,0.033790085,-0.012070748,-0.026943991,0.018363018,0.00016201926,-0.004370558,-0.017615685,-0.0020718449,0.005761797,-0.0007736055,0.022032952,0.023981353,0.0009725326,0.002413816,-0.0078002787,-0.014853226,-0.011423505,0.039982267,-0.014546285,0.022193095,-0.00027378544,0.013625465,-0.006615891,-0.0014004136,-0.010202418,0.02412815,0.0074799936,-0.01977761,-0.020885263,-0.00080696854,-0.014866571,0.01297155,-0.014519596,-0.012564521,0.011243344,0.016334545,-0.00028024954,0.009655264,-0.0030894175,0.013985787,0.016254473,-0.018069422,-0.020124586,-0.019964444,0.016935078,0.08845209,-0.0010634469,0.027357694,0.03029364,-0.008274034,-0.0076868446,-0.021138823,-0.019230457,0.015894152,-0.004070291,-0.017121913,-0.0069995658,0.0031327894,-0.005901922,0.024608579,-0.0025939764,0.009788716,0.019297183,-0.014399488,-0.041717146,0.009348324,0.007486666,0.0064457394,0.04390576,0.014706428,-0.0065858644,0.017375471,0.02128562,0.0016523045,0.022393273,0.010135692,-0.00877448,-0.0011652042,0.020097895,0.0060954276,0.00785366,-0.008580974,-0.0016489683,0.024955554,0.021659287,0.0098821325,0.01821622,0.015240237,-0.0026106578,0.018776719,-0.014893261,-0.021779392,0.007780261,0.015467105,-0.0027057426,0.02153918,0.019564087,-0.0019484016,-0.0025856355,0.015013368,-0.014012477,0.0023287402,0.0015713992,-0.027024062,-0.04708192,-0.019590776,-0.014653048,0.007486666,-0.014866571,-0.0012594548,-0.021499144,-0.04935061,-0.0122775985,-0.024982244,-0.022660177,-0.007353214,-0.0039668656,-0.034724254,-0.01754896,-0.02711748,-0.009975549,-0.0027858138,0.011810516,0.0146663925,-0.006395695,-0.011290053,-0.0042637964,0.005608327,-0.006705971,-0.013985787,0.012717991,-0.03509792,-0.012417723,-0.01726871,0.004887685,-0.0019800963,-0.015947534,0.029733142,-0.008667718,-0.0036165535,0.012924842,0.012758027,0.027104134,-0.0011918946,-0.0023203995,-0.00039305832,-0.006892804,-0.014025822,-0.0096219005,-0.008514248,0.015360344,0.002250337,0.00004245968,0.014065858,-0.007353214,0.010622792,0.0043171775,0.011490231,0.014105894,0.02466196,0.020017825,0.0066692717,0.0046174447,-0.0006334807,-0.009808734,0.0053347503,-0.013305181,-0.010869678,0.0035097918,-0.0039468477,-0.014279381,0.0155872125,-0.033443112,0.026076552,0.0069261673,0.015346998,0.017762482,-0.023207331,-0.018282946,-0.02471534,-0.020938644,-0.008994675,0.030080117,-0.027357694,-0.011243344,-0.0076868446,0.018469779,-0.0063056145,-0.02499559,0.014893261,-0.029439546,0.0010117342,-0.004320514,-0.015106785,0.030613925,0.0086477,0.01281808,-0.0030777405,0.014879916,-0.008100546,-0.0025489363,-0.009028039,-0.025542744,0.020484908,0.027304312,0.039368387,-0.022940427,-0.0075867553,-0.0077268803,0.01251114,0.0032745823,-0.0015205205,-0.0024071434,-0.022766938,0.011930623,0.012884806,0.019283837,0.03160147,0.013305181,0.015387034,0.012704646,-0.010762917,-0.000055518183,0.0037066338,-0.00030985923,0.0020718449,-0.014359453,-0.011643701,-0.011590321,-0.011370124,0.0008274034,0.011223326,0.011950641,-0.012751354,0.014733119,0.026943991,-0.017201984,-0.0018383035,0.023073878,0.02954631,-0.009575193,-0.019297183,-0.020258037,0.021125477,0.027090788,0.015760701,-0.0036265624,0.0058118417,-0.011423505,-0.023701103,0.0073799044,-0.02965307,-0.022646831,-0.01606764,-0.017669067,0.0018499806,-0.018776719,0.010562738,-0.01092306,0.02153918,-0.0029993374,0.01601426,0.012150819,-0.007927058,-0.0018783392,-0.025756268,-0.0022770276,0.042678002,-0.0031311214,-0.01279139,0.036165535,0.008854551,-0.019377254,-0.00435054,-0.01076959,-0.0010993122,0.02622335,0.041583695,0.009061402,-0.03445735,0.0046141087,0.0066692717,-0.037126392,-0.032295424,0.011163273,0.025929755,0.02412815,0.011189964,0.004717534,-0.0013512032,0.011937296,-0.014973332,0.019243801,-0.010756244,-0.015226891,-0.013031604,0.0070729647,-0.007840315,-0.0074332855,0.010442631,-0.018403053,-0.022686867,-0.0067860424,-0.0085542835,0.004674162,0.0038601037,0.021779392,0.039234936,0.001788259,0.025195768,0.0039301664,-0.0038067228,-0.017735792,0.0059452937,0.021779392,-0.02212637,0.0038500947,0.03517799,-0.009555175,0.0026440208,-0.007646809,-0.016241128,-0.05207303,-0.018296292,-0.002895912,-0.0021035396,0.011390142,-0.0036565892,-0.0031478028,0.014559631,0.009301616,-0.003993556,-0.0031227805,0.028318549,-0.012778045,0.0041670436,-0.0039968924,0.010309179,0.016454652,0.0011076529,0.02583634,0.008834533,0.043371953,-0.028905738,0.0128047345,0.006762688,0.008841205,-0.023020498,0.017895935,0.013198419,-0.016241128,0.002293709,0.00500112,-0.0031945112,0.0018149494,-0.008454194,-0.0068527684,-0.016734902,0.010229108,-0.011490231,-0.0010901373,0.002777473,-0.026290076,-0.02225982,0.005084527,0.0017699093,-0.006495784,0.022166405,-0.028772285,-0.005658372,0.006195517,0.011390142,-0.009441741,-0.0045507187,-0.013298508,0.0045040105,-0.00088912505,0.028612144,-0.039768744,-0.0019600787,0.0014738123,-0.0048643313,0.0059953383,-0.00880117,-0.0026640387,0.0017865908,0.013772263,0.020845227,0.018149493,-0.022580106,-0.00518128,-0.011350106,-0.0134719955,0.0059419577,-0.021899499,-0.046628185,0.012831425,-0.011350106,-0.012417723,-0.00020632955,-0.009468431,-0.026076552,-0.019403944,0.005978657,0.013798953,-0.009068075,0.008067183,-0.008307397,0.038941342,0.008447521,0.024635268,-0.010075638,0.004180389,-0.02013793,-0.002994333,-0.00025355912,-0.0013537054,-0.03891465,-0.01512013,-0.004227097,0.021419073,0.013365234,0.018990243,-0.01548045,0.004123672,-0.009321634,0.02379452,0.022553416,-0.0050444915,0.020898608,-0.0076201186,-0.00081572635,0.004103654,-0.0011618679,-0.00005421494,-0.019003589,-0.012464432,-0.003479765,0.013024931,-0.008661046,-0.007680172,-0.0036899522,-0.013618793,-0.014092548,-0.0055382648,-0.008754462,-0.014372798,0.024648614,-0.014279381,0.021218894,0.00546153,-0.0023937982,-0.0055382648,-0.004443957,-0.026663741,0.0073665595,-0.015960878,-0.0010659491,0.0033229587,0.002940952,0.00941505,0.0028041636,-0.004370558,0.011576975,-0.0017031832,-0.039315008,-0.03411037,0.0019100341,0.0072798156,-0.012731336,-0.014039167,0.0104159415,-0.006879459,0.025596125,-0.0036499165,-0.009361669,-0.020631704,-0.0013837321,0.005478211,-0.01972423,0.011383469,0.23679751,-0.007493339,-0.013592103,0.05431503,0.007927058,-0.0015955874,0.02535591,0.0035931994,-0.0037333241,-0.016361235,0.0045674,0.022953771,0.0068327505,-0.0022336557,-0.01584077,-0.002053495,-0.04078298,-0.035444893,-0.0290125,0.027971573,0.013118347,-0.0063723405,0.034831014,-0.029759832,0.008654373,-0.0026506935,-0.0046808347,0.001481319,-0.009054729,0.0052580154,-0.024982244,-0.033870157,-0.013451978,0.01205073,-0.016454652,-0.0064557483,-0.011183291,-0.0022903727,0.029279403,0.022393273,-0.0072064167,0.023220677,0.008100546,0.0026306757,0.018202875,0.007826969,-0.026116587,-0.00972199,0.0014079203,-0.003963529,-0.010529376,-0.0072931605,0.010722881,0.020484908,-0.018469779,-0.001009232,0.0012344324,-0.00043830695,-0.018990243,0.008967985,-0.003027696,0.026770504,-0.016561413,0.0074533033,-0.016935078,-0.0035531637,-0.020338109,0.000120732504,0.007146363,-0.019657504,0.006375677,-0.013131693,-0.016107677,0.020404836,0.013091657,-0.02000448,0.020938644,0.008073856,0.024021389,0.022860356,-0.014893261,-0.024848793,-0.020431526,-0.008334087,0.006692626,-0.04692178,0.028051645,-0.018509815,0.009715318,-0.009294943,-0.011790498,-0.012904824,-0.015960878,0.00074107654,-0.02139238,0.02535591,-0.0018416399,0.0016639816,-0.013838989,-0.015226891,-0.004707525,0.056530334,0.014399488,0.0007414936,-0.009755353,-0.0036665981,-0.0073331962,0.017282056,0.0052847057,-0.009948859,-0.0066425814,-0.019403944,0.023367474,-0.008167272,-0.0032395513,0.0019066978,0.013718883,-0.021712666,0.0016814972,0.0032979366,-0.02212637,-0.024621924,0.003304609,0.0011159937,0.027944883,-0.0042537875,-0.02310057,0.020311419,-0.016601449,-0.049270537,-0.0013195083,0.012437741,0.009822079,-0.011096547,-0.0034530747,-0.0008966317,0.015280273,-0.020618359,0.01205073,0.012504468,-0.00834076,0.0022586777,0.019564087,-0.01629451,0.021072097,-0.0041103265,0.00094667624,0.0009074747,-0.0136054475,-0.01626782,0.0040135738,-0.0030443775,-0.015293618,-0.0027657961,0.025062315,0.0036899522,-0.015000023,-0.020231348,0.014079203,-0.017135257,-0.0066125547,-0.035471585,0.01637458,-0.008180617,-0.041797217,-0.0056717168,-0.17124581,0.0025105688,0.008414159,0.007286488,-0.009441741,-0.025742922,0.0030693996,-0.00060595624,-0.037126392,-0.010909714,0.022113023,0.0024988917,-0.024848793,-0.011970659,0.04145024,-0.025849683,-0.0064924476,0.010155709,0.017442197,-0.0031327894,0.055089053,-0.025289185,-0.018176185,-0.039074793,-0.013071639,-0.036138844,-0.023927972,0.05562286,-0.011450196,-0.013705537,-0.007233107,0.012471104,0.039822124,0.02407477,0.019123694,0.0011068189,-0.00990215,-0.009855442,0.011970659,0.004927721,0.01002893,0.010215763,0.005574964,0.0051078815,0.01110322,0.004257124,0.015026714,-0.007540047,0.0009033043,-0.027277622,0.007299833,-0.04521359,-0.0062288796,0.009101437,0.0077068624,-0.0003642827,-0.011363451,0.0030443775,-0.02197957,-0.018603232,-0.007253125,-0.0033112818,-0.01391906,-0.012037385,-0.027237587,-0.022273166,-0.0071730535,-0.0053280774,0.00094751036,0.018389707,-0.010235781,-0.0031694889,0.004897694,-0.0023470898,0.01798935,0.0068194056,-0.027731359,0.011810516,-0.0045173555,0.0009366674,-0.013358561,0.037286535,-0.003916821,0.0046941796,-0.0007527536,0.021899499,-0.0062388885,0.015106785,-0.0029326112,-0.012324307,-0.00095084665,-0.024168186,-0.0253826,-0.019710883,-0.0006947853,0.011670391,0.007980439,0.005161262,0.0034197117,-0.028585453,0.004150362,-0.0007331528,0.0025389274,0.0401691,0.026236694,0.007920385,0.019337218,0.031334568,0.034217134,-0.014439524,-0.007760243,0.022046298,0.024501817,0.006222207,0.022766938,0.024595233,-0.007046274,-0.012911497,0.005895249,0.009294943,0.041290097,-0.018042732,-0.0112099815,0.00564169,-0.0080271475,0.0012427733,-0.08530262,-0.026943991,0.013305181,-0.0014946642,-0.019484015,0.020258037,0.0020668404,0.03587194,0.012344325,0.030080117,0.002612326,-0.030693997,-0.012871461,-0.0096219005,0.031094354,-0.005828523,-0.004897694,0.013084984,-0.038754508,0.0094884485,-0.0016890039,-0.008694408,0.01757565,-0.030613925,-0.013411942,-0.027290966,-0.032295424,0.00493773,0.025342565,-0.0057384428,0.0035064556,-0.008607664,-0.0003882624,-0.020858573,-0.014412833,0.0011093211,-0.0073865773,-0.026690433,0.0038267407,-0.008360778,-0.0018466443,-0.01798935,-0.011396814,-0.013745572,0.016574759,-0.017922625,0.0030794085,0.016975114,0.0046674893,-0.030080117,0.0007473321,-0.0012427733,-0.0054948926,-0.010095656,0.00016014259,-0.009314961,0.0011910605,0.0011568634,-0.013645483,-0.00038680274,-0.03704632,-0.008988003,-0.05380791,0.012391034,-0.00047709147,0.009588538,-0.0017165284,-0.0036465803,0.007940403,0.017095221,-0.0025956444,0.027517837,-0.0024955554,0.008053838,-0.016774938,0.0011810516,-0.025195768,-0.022753594,0.018322982,0.005818514,-0.006232216,-0.0042704693,0.00031507222,-0.017762482,-0.014172619,0.000025087442,0.012190855,0.022646831,0.0043738945,-0.05861219,0.010749572,-0.004070291,0.019350564,-0.006442403,-0.039181553,0.011830534,-0.015013368,-0.005201298,0.025262494,0.010042275,-0.005868559,-0.019083658,-0.058558807,0.026690433,0.020351455,0.014559631,0.00016045537,0.015213546,-0.0018916844,-0.029839903,-0.016080985,-0.00018579043,-0.0008153093,-0.002041818,-0.033816777,-0.0014671397,0.00080238114,-0.008314069,0.025796304,-0.011670391,0.023874592,-0.011650373,-0.0014421174,0.013505359,-0.0008286545,0.013271817,0.019764265,0.014252691,-0.015533832,-3.2744e-7,-0.0076401364,-0.010689518,0.0038500947,-0.013692192,-0.022166405,0.017255364,-0.005658372,-0.04014241,-0.01299824,-0.0053180684,0.0056783897,-0.03272247,0.0047809235,-0.03883458,-0.0027407738,-0.004597427,-0.024822103,-0.0014512923,0.016721556,0.005264688,0.0057217614,0.010756244,0.017322091,-0.004927721,0.0076534813,-0.03213528,-0.022032952,-0.022032952,0.0017749137,-0.007760243,0.033710018,-0.0031111035,0.027197551,-0.012364343,0.0320819,-0.0029142615,0.00926158,0.023941318,-0.008314069,0.0030543862,0.03216197,-0.028825667,0.0026273394,-0.019630812,0.0035865267,0.0013328535,-0.00051962934,0.004303832,0.0053247414,-0.02100537,-0.011576975,0.008107219,0.015760701,0.0061387992,-0.025529398,0.020818537,0.0011318411,0.03950184,-0.001427104,0.014306072,-0.014426178,0.013945751,-0.04443957,0.012237563,-0.0037032976,-0.031281188,-0.008467539,0.013004913,-0.010802953,0.0035798543,0.00022082162,0.018002696,0.027544526,-0.010856333,0.0015980896,0.004003565,-0.013091657,0.013812299,-0.02558278,-0.009268252,-0.004200407,0.02128562,0.003796714,-0.009401705,-0.0070929825,0.0149332965,-0.029786522,0.014319417,0.024822103,-0.03584525,-0.023073878,0.04126341,0.0062288796,0.017655721,0.0117171,-0.027290966,0.036726035,0.016734902,-0.013972442,0.0002733684,0.053834602,0.0029909965,0.000537979,-0.012451086,-0.00800713,-0.018322982,-0.020017825,-0.022900391,-0.019150386,0.030774068,-0.0026240032,0.06720651,-0.01389237,0.008487557,0.0070729647,-0.013185074,0.016881699,0.026103243,0.012651265,0.019283837,-0.0065491647,0.0065791914,0.015907498,0.00726647,-0.010075638,-0.0036065446,-0.015547177,-0.014639702,0.009982222,-0.020711776,-0.0049844384,0.025129043,-0.021178858,0.03136126,-0.0027841458,-0.0037166427,0.016334545,0.0006047051,-0.00027357694,-0.03645913,-0.01955074,-0.011223326,0.0047809235,-0.0068127327,-0.025956446,-0.02530253,0.010676173,0.009962204,0.038060557,-0.03136126,0.02164594,0.005104545,0.010596101,-0.013625465,-0.0026690431,-0.018723339,0.023554306,-0.022153059,0.0079003675,-0.024795411]},{\"id\":\"4ee7226e-d451-420b-ae07-d69946b938dd\",\"text\":\"Your home page is broken right now.\",\"vector\":[-0.020391019,0.023987928,-0.0135684125,-0.012320374,-0.028468065,0.0110403355,-0.03325541,-0.011494749,-0.007078615,-0.037274733,0.0010240311,-0.005129756,0.0032208979,-0.00460814,-0.0010728326,-0.0048833485,0.008646663,-0.008448257,0.015834082,-0.01939259,0.013542811,0.012857991,0.0012336374,-0.008070645,0.0050433534,-0.025536776,0.0027904848,-0.0070338137,0.016499702,-0.016358897,0.004960151,-0.0103555145,-0.015309266,-0.00919708,-0.011622753,0.01577008,0.006217789,-0.005334562,0.0013208402,-0.018534964,0.007533029,0.00082882517,0.009600292,-0.024589548,-0.05063834,-0.0034721056,-0.019840604,-0.009510689,-0.013683616,0.026804015,0.0010928332,-0.006384194,-0.022976698,-0.026240798,-0.005555369,-0.010624323,-0.0073154224,0.007923441,-0.003260899,0.016870912,0.000493615,0.004672142,-0.013939624,-0.005340962,-0.006352193,-0.0017376528,0.012633984,-0.012998795,-0.012320374,-0.012877191,0.05294241,0.011737957,-0.0074818274,-0.016563704,0.021197444,-0.0038433168,-0.009965103,0.007501028,0.0016976516,-0.0049889516,0.034074634,-0.0039713206,-0.025907988,0.02698322,0.038017157,0.0030608932,0.032359384,0.0035649084,-0.013722017,0.0009736296,0.021747861,0.01740853,-0.0001087033,0.006809807,-0.009517089,0.010329914,-0.00788504,0.018035749,0.0034177038,-0.030823337,-0.0066306014,-0.022080671,-0.007072215,-0.009773097,-0.021927066,0.011021135,-0.00196966,-0.007181018,-0.011334744,0.0032720994,-0.008691465,-0.015987687,0.016896514,-0.020467822,0.012281973,0.011565152,-0.0029296891,-0.01673011,-0.018112551,-0.013017995,0.019763801,-0.00072202197,-0.005654572,0.00093602843,0.014042027,-0.0021488653,-0.045518182,-0.0100227045,0.0197254,0.01118754,0.022503084,0.023783123,0.00789784,0.014093229,-0.023219906,0.015962085,-0.017894944,0.014349236,-0.025063163,-0.013453209,0.008659463,0.039297193,-0.0004740144,-0.015629275,0.018560564,0.02269509,0.0005720174,-0.019341389,0.008102646,0.0035585081,-0.0011040336,0.012307574,-0.0010392315,-0.02339911,0.013875621,0.022029469,-0.011309144,0.0016608505,0.003884918,-0.007929841,0.00559697,0.018982977,0.028468065,0.007923441,0.01774134,0.022144673,0.008825868,-0.013466009,-0.011821159,-0.022682289,-0.017510932,0.019315787,-0.040218823,0.013850021,-0.0038209162,0.007699434,-0.019251786,0.00013960425,-0.03223138,0.015706077,-0.052840006,-0.008429056,0.007302622,0.019853404,-0.0008808268,-0.012224372,0.032052174,-0.006384194,0.006204989,-0.03379303,0.0128963925,0.002139265,0.022183074,-0.015155661,-0.64677805,-0.010144308,-0.007072215,-0.0022160674,-0.004150526,0.021696659,0.006848208,-0.005664172,-0.027700042,0.008928271,-0.01382442,0.0050561535,-0.002828886,0.007833838,-0.015987687,-0.0060385833,0.0019568596,-0.0063905944,0.00080842455,-0.0028112854,-0.0021984668,0.015309266,-0.0059041795,-0.017664537,-0.00919708,-0.021568656,0.017843742,0.006739405,-0.032948203,0.010585922,-0.02700882,0.0058081765,-0.012589183,-0.0017248525,0.04866708,0.012678785,-0.029440895,0.009952302,-0.0013792419,0.02534477,-0.010733127,0.004249729,0.022119073,-0.00063361926,0.01152035,-0.028493667,-0.00071882183,-0.009587492,-0.0033345013,-0.012429178,0.02729043,-0.014989256,-0.013926824,0.011629154,-0.0052065584,0.0062657907,0.029364092,-0.013376406,0.0030608932,0.00852506,-0.01347881,0.036276303,-0.02759764,-0.028340062,0.012915593,-0.010720326,0.013581213,0.0032416985,0.012281973,-0.006649802,0.007853039,0.011283543,0.0060289833,0.013683616,-0.0064033945,0.044545352,0.012262773,-0.006473797,-0.033972234,0.0014288435,0.0073794243,-0.008806667,0.00592018,-0.021875866,0.041268453,-0.024205536,-0.034740254,0.0025856786,-0.005129756,-0.0028400864,0.016525302,-0.0028736873,0.014106029,-0.006313792,-0.007923441,0.0107011255,-0.0007456227,0.024947958,0.0039073187,-0.0017504533,-0.0011320345,-0.012960394,0.004966551,0.0012472379,0.015360467,0.019661399,-0.009952302,-0.005993782,0.03148896,-0.0071234168,0.0048833485,-0.020032609,-0.0030832938,-0.014285235,-0.009465888,-0.029645702,0.0070594144,-0.006220989,0.0012920393,-0.014733247,0.008051445,-0.0074178255,0.0046689417,-0.020160614,0.016858112,0.0028800876,0.024256738,-0.006092985,-0.02992731,-0.008659463,0.008166648,-0.015245263,0.013914023,-0.0072130193,0.018266154,0.030669732,0.020352619,-0.021453451,0.032052174,-0.019341389,-0.00037601142,-0.009062676,-0.010899532,-0.011782758,-0.0037441137,-0.038657174,-0.013299604,0.008633862,-0.005523368,0.041012447,-0.017293327,0.011488349,-0.002436874,0.009049875,-0.0050113522,-0.006752205,-0.0014352436,0.010246712,-0.0066946037,0.011257942,0.01217957,0.008755466,-0.005033753,0.00026100792,-0.00029480897,0.0023264708,-0.03386983,0.029159287,-0.007769836,-0.028672872,-0.003059293,-0.0078402385,-0.02437194,-0.014541242,0.008301052,-0.0074114255,-0.013094798,0.0061697876,0.011232342,0.0011424348,0.007174618,-0.005360163,-0.014618045,-0.020455021,0.015360467,0.016038887,0.015667677,0.03223138,-0.016320497,0.01742133,0.0013392407,0.023757523,-0.025447173,-0.029005682,0.0067714057,-0.027418433,-0.008704265,0.028135255,-0.011398747,0.026240798,0.022989498,0.007174618,0.03258979,0.0077506355,-0.0032272981,-0.041754868,0.00017330526,-0.008032245,-0.00071882183,-0.0074178255,0.0039009186,-0.02759764,-0.016474102,-0.013184401,0.009587492,0.020032609,-0.021607056,-0.0038977184,0.002998491,0.0059105796,0.006220989,0.00008695264,-0.009920302,-0.0117059555,-0.0018784571,0.0005240159,0.024307938,0.035585083,0.0014760449,-0.020736631,-0.028340062,0.022080671,0.018125352,0.017818142,0.0016560503,0.019174984,0.021107841,-0.014707647,0.024602348,0.009139478,-0.004745744,0.003590509,0.02204227,0.007981042,-0.0036065097,0.0015184461,0.02798165,-0.009805098,-0.04910229,0.02995291,-0.017216524,0.0015664477,-0.0066178013,0.0043937336,0.013542811,-0.025101563,0.014054827,0.0074498267,0.032436185,0.040935643,-0.00084162556,0.01875257,0.004857748,-0.0093506845,0.016307695,-0.0069954125,-0.02204227,0.016538102,0.0041217254,0.03154016,-0.032768995,-0.028007252,0.02405193,-0.022259876,0.017664537,-0.033972234,-0.009593892,-0.011680355,0.0039265193,-0.029671302,-0.022195876,-0.037658744,-0.0041249255,-0.005356963,-0.010477118,-0.021888666,-0.0046817423,0.00789784,-0.0036321103,0.020045409,-0.0015216463,-0.0032480988,0.030132117,0.0012912393,-0.0016168491,-0.022861496,0.0041185254,-0.0057057734,-0.0019248585,0.0010848329,0.008237051,-0.0026416804,0.020301417,0.0020896636,0.012979595,0.011661154,-0.0038913183,-0.0033601022,-0.0012584382,-0.010886731,-0.011264343,0.0033665022,0.009555491,-0.0263432,-0.025715983,-0.013427609,-0.008704265,-0.004083324,0.042830102,0.013440409,-0.008902671,-0.021491854,-0.0044545354,0.00885787,0.09021714,0.0017744539,0.008742666,0.034586653,0.0071618175,0.001445644,-0.008928271,-0.024832755,0.006854608,0.0014952455,-0.011091537,-0.025613578,0.006374594,0.02662481,0.019379789,-0.010118708,0.03911799,0.00036221102,-0.021607056,-0.0074562267,-0.02373192,-0.008934672,0.0016360497,0.0018944576,0.008953872,0.010073906,0.018266154,-0.01151395,0.020109411,-0.013075598,-0.01381162,0.031719364,0.0025472774,0.016538102,-0.0131716,0.032666594,-0.028800875,0.0019056579,0.0015240463,0.0068162074,-0.0037569143,0.025575178,-0.0005824177,-0.019494992,0.00060361833,0.0025520776,-0.0029152886,-0.0012264373,-0.022810293,-0.021901466,0.035943493,0.0041857273,-0.025267968,-0.013530011,0.017216524,0.0130627975,-0.0035745087,0.01381162,-0.012749188,-0.015898082,-0.009568291,0.003092894,-0.005232159,-0.007129817,0.011456348,-0.030311322,-0.020787831,-0.0016512502,-0.005168157,-0.002891288,0.025549578,-0.0093570845,-0.010425917,0.015859682,0.0049153497,0.00723222,-0.005564969,0.0067010038,-0.0027808845,0.042906903,-0.0060737845,-0.023578316,0.0037057127,-0.005334562,-0.015091659,-0.02438474,-0.0032768997,0.009875501,-0.0032929,0.027213627,0.02695762,0.027111225,0.014093229,0.011437148,0.0012976395,0.008717065,0.018458162,0.029824907,-0.0014248433,0.0230663,0.010093107,-0.022106271,-0.02762324,0.0030896938,-0.0059585813,0.022439081,0.022106271,0.011878761,-0.009261082,-0.00559377,0.008147447,-0.017306127,0.009241881,-0.021299848,0.0131716,0.016640507,0.020647028,0.011168339,0.008192249,-0.041319657,0.021095041,-0.033665024,0.019930206,0.00080562447,0.032436185,0.013542811,-0.00025900788,-0.043930937,-0.00887067,0.0017488531,-0.028186457,0.0072834212,-0.018970177,-0.03878518,-0.030848937,-0.009645093,-0.013658015,0.0074178255,-0.001713652,-0.022259876,-0.03392103,-0.0230151,0.0067714057,-0.009606692,-0.024922358,-0.022183074,0.004697743,-0.03253859,0.010342714,0.010950733,-0.018790971,0.010125108,-0.018637367,0.0032688994,-0.0077890367,-0.02990171,-0.03584109,0.01908538,0.013414808,0.0360971,0.022669489,-0.0072642206,-0.009158678,-0.007136217,0.00819865,-0.022810293,0.011251542,-0.033050604,-0.026420003,0.020570226,0.023834325,-0.0029824907,0.028109655,-0.0036865121,0.010592322,0.004441735,0.0016216493,-0.0012112368,-0.0093506845,0.0013200401,-0.00078362384,0.0001940059,-0.035687484,0.0077442355,-0.012141169,-0.0071234168,-0.009293082,0.026471205,0.006048184,-0.004531338,0.021991068,-0.014490041,0.025165565,0.002209667,0.005129756,-0.020032609,-0.023155903,-0.007494628,0.0130563965,0.0048321467,0.0013256402,0.016563704,-0.033716224,0.02828886,-0.016166892,0.017894944,0.0020976637,0.0027904848,-0.010304313,-0.0029280891,-0.010387516,-0.023527116,-0.02438474,-0.021914266,-0.0011072337,0.012582783,-0.02373192,-0.00077162345,0.0022224674,-0.019533394,-0.02505036,-0.008064245,0.02695762,-0.0032416985,0.03476586,0.02238788,-0.022528686,-0.019904604,0.011577952,-0.0069826124,0.008493058,0.015501271,0.015603675,0.023463113,0.0071426174,0.00459854,0.017549334,-0.007981042,-0.016806912,0.01283879,-0.0032865,0.006854608,-0.012038766,-0.022528686,-0.010406717,0.019661399,-0.033690624,0.015629275,-0.016909314,-0.003488106,-0.008473857,0.040244423,-0.042062078,0.013594014,-0.011379546,0.0015864483,0.0048897485,-0.007270621,-0.013389207,0.0131588,0.007398625,0.031770565,0.009094677,-0.008717065,-0.0029456895,0.016960515,-0.013363606,-0.0023088702,-0.0029184888,0.021799063,-0.020327019,-0.009651493,0.0075138286,-0.0031360954,0.027444035,-0.0073794243,-0.00081722485,0.0019856603,-0.029645702,-0.028877677,0.0142468335,0.018765371,-0.004540938,0.0009392286,-0.009939502,-0.0044577355,-0.018150952,-0.029748105,0.020467822,-0.022848696,-0.0039009186,-0.018458162,0.00887707,0.030413724,0.031181747,-0.0032352984,0.008301052,0.009939502,-0.015872482,0.024602348,0.0023136702,0.02831446,-0.008973073,-0.00021780662,-0.0014304435,-0.0052161585,0.010278712,-0.027239228,-0.025472775,-0.01250598,0.008768267,-0.0076226317,0.027546437,-0.020211814,0.036429908,0.032948203,-0.008717065,-0.028724073,-0.025754383,0.022349479,-0.020967036,0.007437026,0.001512846,-0.0056065703,-0.00689941,-0.01252518,0.011328344,0.013952424,-0.0062017883,-0.012205171,0.008064245,-0.005075354,0.004672142,-0.029389694,-0.04408454,-0.021645458,-0.023936728,0.0061953883,0.0032752997,0.01086113,0.0015296465,0.0131588,-0.010515519,0.014899653,-0.016896514,-0.005500967,-0.021863064,-0.023565516,-0.011001934,-0.011936363,-0.013101199,0.009913902,0.021031039,-0.027700042,-0.017152522,-0.01447724,-0.041294057,-0.020224614,0.012115568,0.012243573,0.030336922,0.0040033218,-0.0061985883,0.04969111,0.008563461,0.017818142,0.009574691,0.010150708,0.011936363,0.023258308,-0.013606814,0.004470536,-0.0013320405,-0.025293568,-0.00164645,0.0023760723,0.008147447,0.025549578,0.0069826124,0.008019444,-0.0007788237,-0.0073154224,-0.0033985034,0.015232463,0.010611523,-0.019904604,0.011821159,0.014989256,0.004208128,-0.011744357,0.020685429,0.009702695,0.005286561,0.007865839,-0.008166648,-0.016192492,0.0073090224,-0.03678832,0.02793045,-0.012787589,-0.03223138,0.0067650056,-0.009907501,0.0023856724,-0.00067842065,0.006345793,-0.011680355,0.0008920271,-0.007974642,-0.043393318,-0.009254681,0.015270865,0.021133443,-0.040295623,0.012397177,-0.0135684125,-0.023232706,-0.020890236,-0.0049249497,0.0013104398,-0.012627584,-0.00042201282,-0.012275573,-0.011353945,-0.005564969,0.021850264,0.006944211,-0.012467579,0.008109046,0.033741824,0.010336314,-0.04178047,0.038631573,0.022848696,0.0045953398,0.033613823,0.23511755,-0.00033701025,0.0018304556,0.041524462,0.004304131,-0.0036353106,-0.0061921882,0.006204989,-0.0072578206,0.013709216,0.004841747,-0.03381863,-0.014080428,-0.00020760631,0.013542811,-0.024615148,-0.01577008,-0.0030736935,-0.023552716,-0.012147569,0.0105219195,-0.014656446,0.0030896938,-0.019008579,0.03486826,-0.0023616718,-0.026163995,-0.0118851615,-0.00094642874,-0.0034401047,0.01606449,0.0096898945,0.008921871,0.02371912,0.0039969217,-0.011571552,-0.0014904453,-0.0050401534,0.016474102,0.02890328,0.0063873944,0.009510689,0.008096246,-0.011065937,-0.008480257,0.011488349,0.0048769484,-0.00042281285,0.012806789,0.016845312,-0.025267968,0.0035393075,0.042830102,0.01940539,-0.023655118,-0.02535757,0.0076354323,0.004483336,0.020851834,0.012352375,-0.0012736387,0.028519267,-0.009293082,0.03520107,-0.01216677,0.023501514,-0.009517089,0.0055777696,0.001052832,-0.008953872,0.0052609597,0.013850021,0.0076482324,-0.008985873,-0.020531824,0.0036801118,-0.0005000152,0.037863553,0.038196363,0.014272434,0.0014936454,0.0112067405,-0.004896149,-0.010086707,0.008064245,-0.024947958,0.022029469,0.010144308,0.012608383,-0.009555491,0.0035137068,0.0072002187,-0.0050785546,0.00020660629,0.006425795,0.012262773,-0.014106029,0.02831446,0.0038337165,0.008723465,-0.014221232,0.0017472531,0.024627948,-0.01119394,-0.007757036,-0.005033753,0.009408286,0.005033753,-0.0032800997,-0.020250216,0.00011100338,-0.006380994,0.019379789,0.0069506112,0.022515884,0.01152035,-0.0023824724,-0.006185788,-0.02990171,0.01052832,-0.02204227,-0.009747496,0.00021600656,-0.0017616536,0.0054145646,-0.019418191,-0.027188027,-0.00012480379,0.0008584261,-0.044033337,0.005753775,-0.016973317,0.0024976758,0.0001809055,-0.028800875,0.0065858,0.0145796435,-0.019226184,0.0040257224,0.026804015,-0.019034179,0.0066306014,-0.0018576565,-0.025831185,-0.018010147,-0.01743413,0.020365419,0.010784328,-0.032333784,0.007814637,-0.039373998,-0.0038273165,0.0036897121,-0.0019568596,0.052097585,-0.017510932,-0.043290917,-0.032359384,0.021082241,0.012992395,-0.016486902,0.0073858243,0.014298035,-0.00073882245,-0.012537981,-0.018150952,-0.16138731,0.02734163,-0.014682046,-0.018906174,0.001676851,0.007129817,0.006051384,0.0057729753,-0.013440409,0.020045409,0.013722017,-0.008966672,-0.029364092,0.0056929733,0.023642318,-0.010221111,-0.01774134,-0.0019168583,0.018291757,0.009312283,-0.0052545597,-0.0007328223,0.03379303,-0.00626259,0.021402251,0.020211814,-0.0035169069,0.01873977,0.014285235,-0.004176127,-0.007462627,-0.006057784,0.042036477,0.012781189,0.021159044,-0.018022947,-0.009587492,0.009145878,-0.0057345745,0.020800631,0.04211328,0.025075963,0.009792298,0.01738293,-0.00788504,0.011597153,0.04677262,-0.0100227045,0.00008740266,-0.021799063,-0.0009400286,-0.020263016,-0.007277021,-0.018573364,0.03194977,0.02339911,-0.00090002734,0.0053185616,-0.0069826124,0.005824177,-0.002692882,-0.022605488,-0.0016096489,-0.019904604,-0.007405025,0.011142739,-0.01349161,-0.0014040427,-0.011629154,0.01705012,-0.0095234895,-0.031104947,0.009433887,0.0130563965,-0.017818142,-0.013376406,-0.02170946,0.008390655,-0.0013712416,-0.015283665,0.0050913547,0.026522405,-0.007795437,0.006156987,0.008109046,0.015565273,-0.00039281195,0.009997104,-0.034740254,-0.011814759,0.005491367,-0.036276303,-0.004771345,-0.024960758,0.021696659,0.018778171,0.016333297,0.014016426,-0.0081730485,0.0054433653,-0.011225942,0.0059361802,-0.041294057,0.027444035,0.030311322,0.01479725,-0.018522164,0.0020224615,0.0072642206,-0.0002734083,-0.0029360892,0.0066178013,0.031668164,0.024781553,-0.005075354,0.0025744783,0.007341023,0.018342957,0.043034907,-0.0150788585,0.029210487,-0.00887707,-0.037018724,0.022234276,-0.018624566,-0.025549578,-0.09149718,-0.019469392,0.00855706,0.002534477,-0.01382442,0.040270023,0.0042881304,0.021338249,-0.008179449,0.0070274137,-0.008096246,-0.04311171,-0.0140676275,-0.020237416,0.025869586,-0.0060001826,0.031412154,-0.010957133,-0.00080762454,-0.0072898217,-0.02570318,-0.023155903,-0.005462566,0.010323514,-0.012691586,-0.0028176857,-0.019520594,-0.017152522,0.012595583,0.014554042,0.0053185616,-0.01679411,-0.003156896,-0.03453545,-0.0088514695,-0.019943006,-0.009747496,0.018944576,0.038017157,-0.015258064,-0.008377855,-0.02926169,-0.0004010122,-0.06057144,-0.02567758,0.0016736509,-0.010483518,0.044366147,-0.015360467,-0.01777974,-0.012998795,0.013632415,-0.003160096,-0.047156632,0.029492097,-0.013376406,0.013107599,0.021491854,-0.0361995,0.021453451,-0.0061377864,-0.025472775,-0.012998795,0.023578316,0.020224614,0.026420003,-0.010361915,-0.0054113646,0.020147812,-0.029850507,0.019482192,0.010707526,-0.012864391,-0.0017664537,-0.027239228,-0.0077442355,-0.019354189,-0.006419395,0.011609953,0.013286804,0.0038753178,0.0061665876,-0.012608383,0.007725035,0.004480136,-0.0024832755,0.014950855,0.019622996,0.014310835,-0.022183074,0.04907669,0.039297193,-0.003552108,-0.0083394535,-0.013338005,0.0018272556,-0.0022544686,-0.016947715,0.007699434,0.013952424,-0.0055169677,-0.015846882,-0.06267071,0.018880574,-0.0055329683,-0.005628971,-0.013747618,-0.021555856,-0.014630845,-0.032717794,-0.013747618,0.024743153,-0.016870912,0.02170946,0.004630541,0.022170274,-0.01575728,-0.004243329,0.03353702,-0.0068674088,0.0038593174,-0.0056481715,-0.009549091,-0.037377138,-0.0010408317,0.002998491,-0.018355759,0.037044328,0.004153726,0.004969751,-0.019162182,-0.005980982,0.009901101,-0.025792785,-0.0035329075,0.03020892,-0.0050177528,-0.008813068,-0.007014613,0.04646541,0.012569983,0.022170274,-0.014822851,-0.030618532,0.0038337165,-0.020826234,-0.0070978156,0.009248281,-0.02995291,-0.017370127,0.006220989,-0.012025965,0.02826326,0.0110403355,-0.032436185,0.01514286,-0.0076226317,-0.013862821,0.021031039,-0.017894944,0.004691343,-0.01807415,0.008761866,0.02535757,0.034253843,-0.0028064854,0.0328458,0.021005439,-0.0020800633,0.0035425078,-0.013926824,0.0014696447,0.027751243,0.008825868,0.023117503,0.005721774,0.029517697,0.020301417,-0.02072383,0.020813433,-0.005027353,-0.016307695,-0.004304131,0.010566722,-0.028032852,0.021351049,0.0030864938,0.023795923,-0.022003869,-0.010758727,-0.004041723,-0.0012912393,-0.06016183,0.014093229,0.01577008,0.019558994,0.002598479,0.0011640354,-0.011955564,0.027418433,-0.0107011255,0.03184737,-0.006182588,0.013978025,-0.018803772,-0.0078018373,-0.025715983,0.019482192,-0.0077442355,-0.011501149,-0.015091659,0.021747861,-0.02667601,0.022285478,0.013338005,0.025869586,-0.019610196,-0.0027200826,0.011315544,-0.01447724,-0.033332214,0.012627584,0.018278956,0.00013120398,0.0069506112,0.0024544746,0.027188027,0.0058561782,0.0230151,-0.01118114,0.009734696,-0.0064609963,-0.014336436,-0.002272069,-0.0040289224,-0.012665985,-0.006976212,-0.0013736418,-0.018970177,0.03415144,-0.0040033218,0.052737605,0.0064993976,-0.011603553,0.005283361,-0.0085122585,0.012960394,-0.01281959,0.002865687,0.0008108246,-0.0147460485,0.0034401047,-0.0072066193,0.010803528,-0.012646784,-0.0075202286,-0.014682046,-0.0068866094,-0.00427213,0.0003488106,0.007955442,0.024103133,0.0025712783,0.021863064,-0.0025168764,-0.008109046,-0.013274004,0.015603675,-0.011968364,-0.010137908,-0.038733978,-0.0013112399,0.0031488957,0.0050497535,-0.0009984303,0.017472532,0.010515519,0.0053185616,0.014669246,0.014323635,0.024192736,-0.006220989,0.034586653,-0.006188988,-0.018227754,-0.020941436,-0.020864634,0.0065665995,0.0021696659,-0.01804855]},{\"id\":\"0db6e30b-05a3-46e3-81ca-2d5f93dfeafa\",\"text\":\"Thank you so much I've posted them :)\",\"vector\":[-0.017325085,0.0069798897,-0.028916687,-0.028567692,-0.0023058564,0.04581799,-0.0025676023,-0.0083509395,0.0045120004,-0.013909924,0.00050946965,-0.006967426,-0.023245526,-0.017549437,0.025850521,-0.0036550942,0.025925305,0.003081746,-0.008830807,-0.003067724,-0.015380686,0.01701348,-0.014458343,-0.0058331937,0.00390126,-0.016303029,0.018147714,-0.005970299,-0.008905591,-0.008544133,-0.00923589,-0.0023074145,-0.042053837,-0.025651095,-0.02859262,-0.007690343,-0.012102631,0.018509172,-0.0139473155,-0.003954232,-0.0040975693,0.020141969,0.006013923,-0.004402939,0.003371536,0.030038456,0.0053065857,-0.023719162,0.0053439783,-0.011959294,0.017200442,-0.012389304,-0.03023788,-0.029863957,-0.006303713,-0.004608597,0.0037984313,0.017960751,-0.02121388,-0.009566189,0.0076217903,-0.0107004205,0.00091922656,0.012476553,-0.009404155,-0.008176442,0.01033273,-0.0016374697,-0.004935779,0.019007735,0.024965571,0.003919956,0.02983903,-0.005714785,0.020989526,-0.009142409,0.017898431,0.014682697,-0.014034565,0.0109434705,0.0011872045,-0.032182276,0.011130432,0.009310675,0.021026919,0.0041162656,-0.0014294753,0.0051507847,-0.027745062,-0.02953989,0.004041481,0.035522655,0.006581039,-0.01920716,-0.022385504,0.021388376,-0.0133490395,0.03106051,-0.0039573484,-0.023719162,-0.0014902377,0.0069238013,-0.01984283,-0.013698034,-0.022659713,-0.014096885,-0.0069051054,-0.01929441,-0.0038202433,-0.001961536,-0.017362475,0.020977061,-0.0020269726,-0.03143443,-0.012476553,-0.0033060997,0.013610785,-0.009304442,-0.011510586,-0.0069736578,0.016801592,0.008668774,0.0028558343,-0.014084421,0.028916687,0.0079957135,-0.004365547,-0.027520709,-0.02270957,-0.013062365,0.023083493,0.020578211,-0.00038969752,0.0008833923,0.00035600553,0.028293483,-0.009827934,0.015978962,-0.005315934,-0.007977017,-0.011155359,0.061373174,-0.008082962,0.004910851,-0.006241393,0.0150441555,0.021961724,0.014034565,0.01368557,-0.0028854366,0.013934852,0.0013531327,0.0065249507,-0.013997172,0.002520862,0.0017776907,0.025314566,-0.0026719891,-0.016390277,-0.022771891,-0.0006738398,0.0131496135,0.013573393,-0.0061697243,0.0050884644,0.024666432,0.028094057,-0.027420996,-0.023270454,-0.011329857,0.01786104,0.0020674807,-0.030262807,0.010557083,-0.009790542,0.010918542,-0.0053751385,-0.010220553,-0.004343735,-0.013810211,-0.012333216,0.010825061,0.0068988735,0.013037438,0.0043094587,-0.003477481,0.025127603,-0.034550454,-0.008556597,-0.0064688623,-0.01764915,0.015019228,0.029863957,-0.036694277,-0.6517223,-0.03584672,0.031733572,-0.0012456299,0.024192797,0.037641548,-0.009466476,-0.0015182819,-0.009852862,0.007104531,-0.013959779,0.0137478905,-0.005752177,0.0075283097,0.027121859,-0.013897459,0.021388376,-0.025152532,-0.012414233,0.015929107,-0.030013526,-0.0069487295,0.011117968,0.008980376,0.007509614,0.01362325,0.02914104,-0.000694873,-0.030163096,0.052648313,-0.048759516,0.024479471,-0.0026688732,0.0019475139,0.046166986,-0.015355757,-0.034002036,0.008089194,0.00089040335,0.034924377,-0.027121859,0.010058519,-0.0024756796,-0.011304929,-0.010064752,0.012962652,0.015268509,0.0057490612,0.024491934,0.003757923,-0.005864354,-0.013423824,-0.0033310277,0.010893614,-0.01170378,-0.011977989,0.028891759,0.004169238,0.0049326634,-0.0024725636,-0.015467934,-0.009441547,-0.03534816,-0.01767408,0.007509614,-0.0063348734,0.0019381659,-0.014109349,0.022323184,-0.00478621,0.022933925,-0.0006052873,-0.0028527183,0.006419006,0.018708598,0.026922433,0.017985681,0.000012537121,0.0091486415,0.020652996,-0.0012113537,-0.007004818,-0.021799691,-0.020827493,0.00049272104,0.018384531,-0.023295382,0.008512973,-0.013286719,0.010918542,-0.0018524752,0.015692288,0.018633813,-0.008400796,-0.018222498,0.018434389,0.0230461,-0.0076093264,0.048485305,-0.0013437846,0.003517989,0.017561901,0.023071028,0.00223263,0.011791028,-0.0031284865,-0.012694675,-0.011666387,-0.013997172,-0.010070984,0.02429251,0.0019194697,-0.014283846,0.0046397573,-0.0012440719,-0.024005836,-0.0011038509,0.015492863,0.005325282,-0.010557083,0.015617504,0.024840929,-0.00031822379,-0.021375913,0.0077775917,0.026997216,-0.00975315,-0.010563316,0.008562829,-0.001955304,0.005911094,0.0043624314,-0.007958321,-0.029465107,-0.035996288,-0.027545637,0.020191824,-0.029814102,0.003938652,-0.030586874,0.004359315,0.01807293,-0.019456442,-0.0034868289,-0.0033871161,-0.014558056,0.0018602653,-0.013673105,-0.021749835,0.019917615,-0.004870343,-0.0064937905,-0.020304002,0.02197419,0.010687957,-0.0029820334,-0.0059516025,-0.016938698,0.0029493151,-0.0029711272,0.03472495,0.0061260997,-0.013760354,-0.012264663,-0.0030147515,-0.019693261,0.01868367,0.02173737,-0.028792046,-0.032082565,0.014869658,-0.010002431,0.0014442763,-0.0028760885,0.012252199,0.011005791,0.00755947,-0.018446852,-0.0044247517,0.010432443,0.01362325,-0.0021921217,-0.01155421,-0.0032905196,0.0040040887,0.0005281658,0.0031845747,-0.0014341492,-0.0082512265,-0.02722157,-0.007927161,-0.006892641,-0.011068111,0.0011607183,0.024890786,0.015679823,0.009927647,0.0075033815,0.0062289285,0.007578166,0.027321283,-0.031658787,0.046316557,-0.008257459,0.010631868,-0.020528356,-0.0004479282,-0.0082948515,0.010719117,0.015405614,0.01697609,0.00923589,-0.032880265,0.0036956023,0.0006543647,0.005755293,0.0059360224,-0.01362325,-0.01944398,0.003910608,-0.0013578067,-0.008132818,0.027096929,-0.012046542,0.0012705581,0.01088115,0.0035398013,0.016278101,-0.010413746,0.00091766857,-0.01572968,0.014221526,0.02587545,0.021575337,0.008095426,-0.0027109394,0.012638587,-0.010264178,0.03517366,-0.00065085915,0.010127072,0.0069113374,-0.0010500995,-0.0042409063,0.012875404,0.020316465,0.027919559,-0.016165923,-0.0074597574,0.00066760776,-0.00015112708,0.005197525,-0.016652023,0.020889813,0.00530347,-0.008126586,0.012252199,0.012270896,0.025850521,0.017088266,0.025651095,0.008307315,-0.0028667406,0.004231558,-0.01697609,0.024118012,-0.026025018,-0.023719162,-0.0066620554,-0.021350985,-0.012258432,-0.009142409,0.0015424311,-0.006711912,0.0010454254,-0.006256973,0.012221039,-0.018783383,0.00016738882,0.017175514,-0.017624222,-0.02859262,-0.015168796,0.029240754,0.005462387,-0.004920199,-0.023731625,0.01792336,-0.027620422,0.024766145,0.026473725,0.0095101,-0.008058034,-0.012700907,-0.0042564864,-0.0042782985,0.04621684,-0.026648222,0.030262807,0.024978034,0.02557631,0.0034432046,-0.00059477077,-0.016352884,-0.00020409946,-0.008818343,0.004508884,-0.018309746,-0.006443934,0.014520664,-0.0018633814,-0.0076280227,-0.005979647,0.01560504,0.031584002,-0.011149128,0.00061385636,-0.0028153262,0.020802565,-0.0069424976,-0.011005791,-0.03270577,-0.011435802,0.0027062653,0.082362704,-0.002366619,0.005481083,-0.0037454588,-0.0075345417,-0.0023401328,-0.022759426,0.010874918,-0.02776999,-0.002950873,0.03913724,0.012414233,0.011653923,-0.00070928456,0.02983903,-0.0005293343,0.005153901,-0.0110992715,0.018272355,-0.034799736,-0.0032531272,0.03731748,-0.018023074,0.033752754,0.037666477,0.0008226299,0.0054343427,0.005717901,-0.0058550057,0.019680796,-0.0060575474,0.027670277,-0.009535028,0.0060575474,-0.022136223,0.008338476,0.009285746,-0.000005045278,-0.00036204283,-0.005004332,0.017138122,-0.00040079837,0.02557631,-0.022260863,-0.0058923983,0.0046864976,0.0013430056,0.05733481,0.006886409,-0.008581526,0.02737114,-0.002519304,0.01362325,-0.032481417,0.0046989615,0.014620377,-0.0056742765,-0.024155404,-0.009884022,0.021026919,-0.014994299,-0.007565702,-0.0068739452,-0.034226388,-0.03532323,0.004066409,-0.043424886,-0.00932937,-0.027670277,0.008612686,-0.027096929,0.0129501885,-0.016814057,-0.0038856799,0.05309702,0.004727006,0.02216115,-0.00085846416,-0.000058181977,0.021774763,-0.013423824,-0.026498653,0.027869703,0.0098466305,0.0016935581,-0.005440575,-0.018334676,0.009965039,-0.029589748,0.012700907,0.033478543,0.0014840056,-0.0077588954,0.005742829,-0.001260431,0.01313715,0.004078873,0.017823648,-0.013074829,-0.016178388,0.021475626,-0.010120841,-0.0044372156,-0.027146786,-0.017723935,0.02764535,0.0075283097,0.03794069,-0.014944443,-0.009024001,0.0052785417,-0.0018836354,0.0015665801,-0.015717216,-0.006291249,0.054991562,0.001260431,0.0072291717,0.018110322,-0.00043040057,-0.0141467415,0.013735427,0.012838012,-0.020540819,-0.017636687,0.017973216,0.0061229835,-0.015231117,-0.021363448,0.009136178,0.0065311827,0.012875404,0.0074659893,0.0015634642,-0.0047145416,-0.0052224533,0.0063130613,0.02252261,-0.004197282,-0.0088682,0.0024959338,-0.011105503,-0.031384576,-0.029041328,-0.0071730833,-0.037541837,0.0004603923,0.025750808,0.013062365,0.02416787,0.0063691493,0.006581039,-0.017449725,0.0045712045,-0.0025800664,-0.047238898,-0.006581039,0.00067500834,0.008276155,0.034101747,0.0048111384,-0.004652221,0.04063293,0.0095474925,-0.00478621,-0.009198498,0.003091094,-0.009522564,-0.018858166,0.00282,0.007509614,0.028692333,0.004711426,0.018334676,0.00960358,0.013673105,-0.035622366,-0.0051040445,-0.028642477,-0.019606013,-0.0048267185,-0.007029746,0.008494277,0.010525923,0.004727006,0.007035978,0.006587271,-0.035198588,0.025700951,-0.021313593,0.048784446,0.004156774,0.011616531,-0.005571448,0.009416619,-0.0053813704,-0.012270896,-0.020765172,-0.0057708733,-0.012613658,0.0067617684,0.010719117,0.0070920666,-0.007684111,-0.0069175693,-0.01539315,-0.029988598,-0.01847178,-0.0063598016,-0.010189393,-0.004490188,-0.008195139,-0.025464134,-0.019394122,-0.007441061,0.006855249,-0.039286807,0.0077962875,-0.022198543,-0.022323184,-0.018758453,0.0052349176,0.032381702,0.0019366079,0.00047207737,0.011784797,0.012432929,-0.012476553,0.020017328,-0.017536974,0.0060887076,0.008114122,0.04868473,-0.010476067,-0.017337548,-0.010176929,0.011304929,-0.0042627184,-0.025825592,0.023881195,0.0073600444,-0.012083935,-0.012102631,-0.006272553,-0.057683803,-0.009940111,-0.021513017,-0.010164465,-0.008874431,0.016527383,-0.010525923,0.01758683,0.0026797792,0.022397969,0.002093967,0.000019584686,-0.024678897,-0.025626168,-0.018770918,-0.010787669,-0.020864885,0.003935536,-0.019369194,-0.016053747,0.022659713,-0.00947894,-0.009865327,-0.013099758,-0.00040936744,0.019556155,-0.0032531272,0.015617504,-0.035123803,-0.00046662433,0.0010586686,-0.0003577583,-0.012576266,-0.0060513155,0.0066745197,-0.018234963,0.012613658,-0.011984222,-0.013299183,0.00018413745,-0.0039573484,0.003919956,0.0032780555,-0.020628067,0.0043780115,-0.01783611,0.0033933483,-0.0045431606,-0.014383559,0.018185105,0.0014154532,0.005904862,0.022672178,0.0272465,0.007578166,0.024379758,0.0014419393,-0.003919956,-0.028218698,0.007141923,-0.00019669891,-0.031658787,-0.009865327,-0.00052699726,-0.016415205,0.0031113483,0.0055776797,-0.0071606194,0.0017184863,0.016751736,0.02456672,-0.0046709175,0.011890741,-0.015916642,-0.03801547,0.022734499,-0.012115095,0.033403758,0.021251272,-0.014408487,-0.0086500775,-0.0027420996,0.007733967,0.018272355,-0.008774718,-0.00089040335,-0.004621061,0.01319947,-0.022472752,-0.02722157,-0.025850521,-0.018496709,-0.027321283,0.026922433,-0.013997172,-0.005010564,0.02456672,0.034276243,0.033403758,0.02511514,-0.0144458795,-0.008014409,-0.013174542,-0.003483713,-0.0064688623,-0.002358829,-0.0061260997,0.000031038504,0.0004085884,-0.032456487,0.006144796,-0.008132818,-0.01457052,-0.008369636,-0.011859581,0.013423824,0.0027327514,-0.023195669,0.016514918,0.0007198011,0.0026283648,0.012732067,-0.006880177,-0.036893703,-0.008182675,0.022734499,0.0011147569,0.01207147,-0.055938832,-0.016178388,0.009042697,-0.014620377,0.0018384531,0.019917615,-0.008731094,0.011267536,-0.013498608,0.003203271,0.019032665,0.022397969,0.0280442,-0.02819377,-0.02167505,0.012320752,-0.022048974,-0.00097453594,-0.006986122,0.026374012,0.008338476,0.030337593,-0.0143461665,0.010731581,-0.004608597,0.0101457685,0.014769945,-0.017237835,-0.011903205,0.0290164,0.017237835,0.018770918,0.01990515,0.037541837,-0.014221526,-0.008799647,0.0013780609,0.0001730366,0.0013726078,0.011722476,-0.0053907186,-0.029564818,0.009896487,-0.011840885,-0.0020721548,0.0038514035,-0.006954962,0.012052774,-0.02270957,-0.010862454,0.005580796,0.025401814,-0.0056649284,-0.003355956,-0.0135484645,-0.016751736,0.0030163096,0.010594476,0.0077651273,-0.019182233,0.0030381216,-0.01929441,-0.0010539945,-0.013087293,0.2157783,-0.03091094,0.003960464,0.03258113,0.021513017,0.0093480665,-0.0107004205,0.009260818,-0.0060980557,0.015617504,0.00057958014,0.013835139,-0.001254199,-0.00004530404,-0.005178829,0.0012144697,-0.0059827627,-0.008170211,-0.023606984,-0.012140023,0.0017667846,-0.014433415,0.008008177,-0.005281658,0.051950324,-0.0074659893,-0.013037438,-0.017524509,0.0047083097,0.0006598177,-0.0049170833,-0.030711515,0.0030614918,-0.013398896,-0.015854321,-0.021164022,0.028966542,-0.011759868,0.012432929,0.008637614,-0.011111735,0.008020641,-0.013099758,-0.02133852,-0.011205216,0.0077775917,-0.005596376,-0.030063383,-0.0092483545,0.025327029,-0.010937238,-0.01695116,-0.009372995,0.01895788,0.0076280227,-0.0074971495,0.019618476,-0.010451139,-0.019955007,0.009908951,0.011572907,0.04596756,-0.028343339,-0.002347923,-0.019468907,0.0029944973,0.0060793594,-0.008344708,0.035198588,-0.0064003095,-0.00969083,-0.017300155,0.0004775304,0.02167505,0.0024118011,0.000041530733,0.016278101,0.014869658,0.042951252,0.015280973,0.009304442,-0.005213105,0.006010807,-0.011678851,-0.021425769,-0.057534236,0.0014442763,0.021064311,-0.00078679563,-0.015081548,-0.013573393,0.0038264752,-0.008805878,-0.012682211,-0.024379758,0.01423399,-0.004471492,0.027470853,0.00030653868,0.015804466,0.004381127,-0.021263735,0.008020641,0.02612473,-0.0044091716,0.00047051936,-0.0015463261,0.017985681,-0.016041283,-0.010725348,0.011036951,-0.018297283,0.009871558,0.01142957,0.0047986745,0.018309746,-0.0001894931,-0.05145176,0.0018742874,-0.006718144,0.012825548,-0.020889813,-0.0065000225,-0.0007969227,0.01594157,0.0074535254,-0.0101457685,0.015380686,0.014096885,-0.021837084,0.018895559,-0.005440575,-0.011036951,-0.023644377,-0.021114167,0.00062047795,0.015106476,-0.0051133926,-0.007939625,0.021188952,-0.010631868,0.0190202,0.005605724,0.016602166,0.008064265,-0.028642477,0.015929107,-0.0072354036,-0.029390322,0.010974631,-0.009192266,0.0018026188,-0.011361017,-0.023519736,0.041231208,0.005175713,-0.02469136,-0.04584292,-0.023170741,0.00016193578,-0.03557251,0.011753636,0.035049018,-0.017823648,-0.003209503,-0.008301083,-0.15495355,0.030487161,-0.001821315,-0.001977116,-0.011174056,-0.010800133,0.033378832,-0.007547006,-0.013187006,-0.013324111,0.03395218,0.012052774,-0.0031253702,0.017624222,0.01313715,-0.010239249,-0.021774763,0.028841902,0.011473194,0.037541837,0.028991472,-0.033628114,0.010388819,-0.017337548,0.0028184422,0.01783611,0.0076778787,0.01956862,-0.0007127901,-0.030935869,-0.0027452155,-0.008818343,0.057384666,0.023582056,0.029091183,0.00017839228,0.019219626,-0.028617548,0.005605724,-0.02032893,0.017574366,-0.006630895,-0.0033964643,0.022796819,0.016988553,-0.0040975693,0.022186078,-0.012570034,-0.009535028,-0.009965039,-0.014009636,-0.017200442,0.009809238,-0.011273769,-0.000020108082,0.0055683316,-0.009821702,0.039760444,-0.018633813,-0.0047020777,0.02642387,0.0010649007,-0.0113984095,-0.017699007,0.0033247957,-0.022809284,-0.0052099894,-0.011404642,-0.034700025,0.0092483545,-0.020478498,-0.022535073,0.010906078,-0.000006749353,0.015305901,0.008463116,-0.03886303,0.022422897,0.017063338,-0.0010610056,-0.003218851,0.05693596,-0.002681337,0.027096929,-0.01737494,0.012732067,-0.011074343,0.0167642,0.01560504,0.004913967,0.014258917,-0.0144458795,-0.027196642,0.0042751827,0.023582056,0.01718798,-0.0121961115,0.0013601438,0.0008140608,-0.0317585,-0.0013881879,-0.00014752417,-0.017487116,0.031135295,0.019755581,0.01566736,-0.0074909176,0.02155041,0.020578211,0.010089681,-0.0075719343,0.046491053,-0.00022182183,0.020416178,0.03584672,0.012707138,0.022198543,-0.015430543,0.020042256,-0.005477967,0.034251317,-0.013860067,-0.02155041,0.022385504,-0.0038264752,-0.0017979449,-0.09552478,-0.03843925,0.017761327,0.02996367,-0.01545547,-0.015792001,0.008407028,0.01033273,-0.008992841,0.012339449,-0.0005628315,-0.0059391386,0.00393242,0.003496177,0.018820774,0.0015167239,-0.017337548,-0.032880265,-0.0080518015,0.005297238,0.004296995,0.0045525087,-0.01511894,-0.01313715,-0.001832221,-0.010257945,-0.019705724,0.03654471,0.022123758,0.018608885,-0.0011755194,0.0002747942,0.0014746576,-0.028418124,-0.015368222,-0.0024367294,-0.013511073,-0.005191293,0.014919515,-0.01792336,-0.0014403813,-0.016290564,0.03023788,0.0009893371,-0.0017138122,0.0038545195,-0.015530255,-0.004761282,0.023021173,-0.0037174146,-0.031733572,0.0017138122,-0.0038015472,-0.009304442,0.027022146,-0.008425724,0.009958807,0.02941525,-0.030836156,0.004209746,0.01648999,-0.0073226523,-0.027869703,0.032182276,0.005506011,-0.010195625,0.0013118454,-0.019880222,0.0068303207,-0.0031549726,-0.021475626,0.034924377,-0.035248443,-0.0040383646,0.009291979,0.03307969,-0.021301128,-0.027869703,0.010208089,-0.022048974,0.0038140113,-0.01429631,-0.017898431,-0.0024180333,0.01963094,0.012339449,0.011959294,-0.0057646413,0.009871558,-0.026673151,-0.00008690781,0.010619404,-0.0004755829,-0.039361592,-0.009616044,-0.0017044642,-0.0010282873,0.024342366,0.013423824,-0.004596133,-0.03828968,-0.0047955583,-0.04651598,0.017574366,0.0024289393,-0.012732067,0.0014357072,-0.02914104,-0.0069175693,-0.020827493,-0.016876377,-0.02490325,-0.016091138,0.0028823207,0.015829394,0.027819848,-0.018334676,-0.01807293,0.01731262,0.030711515,0.013785282,-0.0046553374,-0.03133472,-0.014794874,0.008519205,-0.013024973,-0.0049856356,0.029789172,0.0007552459,0.010233017,-0.034276243,-0.009740686,-0.012638587,-0.000005854714,0.0049170833,0.04148049,-0.037292555,-0.025227316,-0.0009620719,0.01572968,0.0070671383,-0.023095958,-0.018858166,-0.028517835,0.002249768,-0.009933879,-0.006699448,0.003346608,-0.016178388,0.0022606743,0.013760354,0.01648999,0.02734621,0.025775736,0.011423337,-0.042751826,-0.009659669,-0.010887382,0.022609858,-0.020428643,0.026374012,-0.029265681,0.010183161,0.0043468513,0.00871863,0.000978431,0.0014349283,0.01545547,-0.020740245,0.0012744531,0.019830367,-0.028393194,-0.010270409,0.025501527,0.021288665,0.026997216,0.025775736,0.015654895,-0.04574321,-0.0031643207,-0.0059765307,0.0035616134,0.017163051,-0.0028496024,-0.02475368,0.030935869,0.02002979,0.011136663,-0.017611757,0.015916642,-0.020353857,0.012432929,-0.06072504,0.0035740775,0.028692333,-0.003505525,0.0053689065,0.024329903,0.002941525,-0.001406884,-0.0071917796,-0.012358144,0.001539315,-0.0054717353,0.00841326,-0.008855735,-0.015642432,0.00530347,-0.028617548,-0.017212907,-0.005590144,0.013934852,0.005181945,0.004381127,0.022971315,0.005294122,-0.014470807,0.0030131936,0.0131496135,-0.01036389,-0.028816974,0.029315537,-0.006886409,-0.020316465,-0.0024928178,-0.0048422986,0.015692288,0.0061074034,-0.009385459,-0.0066371276,0.01758683,-0.008675006,-0.012383073,-0.010675493,-0.028841902,-0.011678851,-0.002670431,-0.003483713,-0.04868473,0.01539315,0.0053657903,0.071843006,0.004889039,-0.00728526,0.0075033815,-0.0018493593,0.0063473373,0.0068303207,0.011485658,-0.000083889165,-0.014396023,0.00841326,-0.018721063,-0.012302056,-0.007434829,-0.012451625,-0.017424796,0.0056898566,-0.008537901,-0.005876818,0.0041349614,0.030138167,0.0031160223,0.016465062,0.028642477,-0.011323625,-0.027047073,0.016016355,-0.025476597,-0.017624222,-0.040707715,0.008207602,0.024068156,-0.034575384,-0.0013733868,0.029490035,0.005926674,0.003499293,0.008488045,-0.009647205,0.026149658,-0.0053221663,0.0035429173,-0.029066255,0.0070422105,0.023756554,0.004758166,-0.009803006,-0.0067991605,-0.024504399]},{\"id\":\"784e3ce6-ee49-4592-9ed5-6901e7e76e63\",\"text\":\"I bought a whole box of the wrong creamer and do not like it at all. I repurchased the regular oat cinnamon one but have all this new coconut almond. Can i send those back and get a credit to get more of the ones we love? \",\"vector\":[-0.011751656,-0.024648517,0.013662549,-0.007190815,-0.010859462,0.016552191,0.0011560235,-0.034063157,0.0005667761,0.011918111,0.020081017,0.009354718,-0.014208518,-0.024861578,-0.0006678969,0.026925609,0.022784231,0.0058059175,0.00004873983,-0.008828723,-0.046127748,0.016405711,-0.009827447,-0.014488161,0.005416415,-0.005995675,0.011804922,-0.009141657,0.007310662,0.020227497,0.011105815,0.018815966,-0.01673862,-0.010300177,-0.017151427,0.00013618023,-0.014261783,0.007224106,0.0015596745,-0.027458262,0.0047406117,0.010972652,0.024808312,-0.024954792,-0.006837933,0.021612395,-0.0030411156,-0.00048396518,-0.01709816,0.004930369,0.01629918,0.037844993,-0.007836657,-0.0050635324,-0.0013291356,0.002416913,0.0017377804,0.014687906,0.010080458,0.008489157,0.008595687,0.019614946,-0.009174948,-0.0004369419,0.008269438,0.0006828778,-0.01604617,-0.032198872,-0.025367599,-0.026459537,0.0068312744,0.0070709684,-0.018922497,-0.028630098,0.0020373976,-0.00648505,-0.0091283405,0.018496376,0.0022221617,-0.018309947,0.021878721,-0.024555303,-0.019574998,0.021838773,0.00978084,0.024901526,0.01920214,0.012304284,0.012637192,-0.0021872064,0.0032991194,0.008309387,0.022637751,-0.010752932,-0.011804922,0.019614946,-0.006734731,0.038670607,-0.012583926,-0.0030860582,0.012557294,0.010386733,-0.0049137236,-0.01739112,-0.010826171,0.008762142,-0.0010186988,-0.025261067,0.033637036,-0.0012375859,-0.0069511216,0.030893873,0.00007916971,-0.025380915,-0.0091150245,-0.006198749,0.00369528,-0.02105311,-0.017630814,-0.011179054,-0.012350891,-0.0011318875,0.010167014,-0.025114588,0.005489655,0.01289686,-0.022904078,0.0020007777,-0.0017793939,0.00031730306,0.03086724,0.02934918,0.0065116826,-0.006478392,-0.022304844,-0.0018160137,-0.041307237,0.02945571,0.002260446,0.00854908,0.011079182,0.03209234,0.009301453,0.03195918,-0.039656013,0.03448928,0.00086306426,0.027804486,0.015659997,-0.026459537,0.009614387,-0.013496095,0.007756759,-0.027511526,0.01322311,0.019029027,-0.00771681,-0.0007731791,-0.042878564,-0.0040914407,-0.005080178,-0.022251578,-0.0021472573,0.005576211,0.012597243,0.026859026,0.027804486,-0.012990074,0.016365763,-0.0015621713,-0.0008355994,0.009687626,-0.009953952,0.0155801,0.013289692,-0.007943188,0.011012601,0.007650228,-0.016578823,-0.0013233097,-0.011511963,0.008542422,0.0064084814,0.02434224,-0.009514513,-0.04913724,0.004064808,0.0014190208,0.020706885,-0.014647957,-0.004680688,-0.0033790173,-0.018483058,-0.0070709684,-0.64387095,-0.038271118,0.013143213,-0.010972652,0.017297905,0.030813975,0.010420023,0.025314333,-0.01858959,-0.0018060266,-0.0050735194,0.021452598,-0.000911336,-0.000042497802,0.022198314,-0.034995303,0.023569895,-0.0043377928,-0.016112752,0.0048105223,-0.039762545,0.01528714,-0.009860738,-0.007350611,0.02343673,0.013342957,-0.0026682585,-0.012104539,-0.013156529,-0.011618493,-0.009321427,0.0077767335,0.009221555,-0.0072041317,0.06333244,0.012543977,-0.018855916,-0.014754487,0.0009354718,-0.008955228,-0.034755606,0.0016262562,0.015673313,-0.016259233,-0.013662549,-0.0035787623,0.011731682,0.02590025,-0.0062586726,-0.0034089792,0.009521172,0.02547413,-0.030547649,-0.009807473,0.020041069,0.002315376,0.053797953,0.0043544383,-0.012051274,0.031426527,-0.011944743,0.0048604584,-0.029695403,-0.019907905,-0.01387561,0.011918111,-0.029748669,0.0117649725,0.017564232,-0.013522727,0.0046207644,0.0064650755,-0.024288977,0.026832394,0.02391612,0.0049137236,0.017657446,-0.0026566067,0.0024751718,0.00960107,0.004437665,-0.009840764,0.007956504,-0.015367039,0.0076568867,0.0028680034,-0.0122310445,0.00041925616,-0.0020423913,0.015899692,-0.004261224,0.015034131,0.028390404,-0.023423415,0.010226937,0.0060655857,-0.02408923,0.015313773,-0.0038717214,-0.02046719,0.012870228,-0.005043558,-0.013715814,0.0030244703,0.01768408,0.0050069382,-0.023276934,0.009867396,0.0298552,-0.022131732,0.013249743,-0.003260835,0.009141657,-0.02166566,0.00042945147,-0.030547649,0.014647957,0.02195862,-0.017803926,-0.015473569,0.011425407,0.008076351,0.008455866,0.011545253,0.010952677,0.023543261,-0.00079856336,-0.0017227995,0.005576211,0.00739056,0.019401886,-0.005939081,-0.016538875,-0.009581096,-0.02615326,0.028683363,0.020626986,-0.020120967,0.015699947,-0.036832955,0.0059690424,-0.012211069,0.011205687,-0.012044615,0.031826016,0.012777014,0.01206459,0.0091283405,-0.021212906,0.011372142,-0.00088553556,-0.013063314,-0.023090506,0.018669486,0.0035488005,0.0032325378,0.009920661,-0.03155969,-0.017457701,-0.012870228,0.02644622,0.033663668,-0.037072647,-0.0001321229,0.0006895359,-0.008515789,0.013689182,0.0005459693,-0.019228773,-0.024488721,-0.019042345,-0.012131171,-0.0029578886,0.007104259,-0.009487881,0.0047539277,-0.02206515,-0.014101988,-0.02764469,0.017004946,0.02162571,0.03395663,0.00041842388,0.027618056,0.025234435,0.009740891,0.013329641,0.027911017,-0.045861423,0.034995303,0.008835381,-0.01739112,0.01217112,0.0031493108,0.005239974,-0.039789177,0.00006777801,-0.0018576273,0.0042978437,-0.02242469,0.010673034,-0.012783672,0.01992122,0.022810863,0.020054385,-0.030148158,0.0040847827,-0.00945459,0.044023767,0.031799383,-0.018869232,0.0052366448,0.0035021934,-0.02615326,-0.004510905,0.00796982,-0.017883824,0.030201424,0.015713263,0.0013033353,-0.024475405,0.0056128306,0.005050216,0.010746274,-0.012603901,0.019761426,-0.00013971738,0.00764357,0.01249737,-0.0015854749,0.005369808,0.008362652,-0.01018033,0.03177275,0.025154537,-0.0015946298,0.02775122,0.012630533,0.029242648,-0.0064584175,-0.0035854203,0.025207803,-0.00082103466,-0.0069644377,0.01981469,-0.015233875,-0.0018176783,0.023849538,0.027325097,-0.011998008,-0.00040885276,-0.01376908,-0.042718768,-0.0239827,0.0062220525,-0.003402321,-0.004594132,-0.0012117855,0.023556579,0.027351731,-0.016099436,0.002217168,0.023503313,-0.01597959,0.0046174354,0.022491273,0.022105098,-0.024608567,0.008888647,0.021838773,-0.008382626,-0.0052000247,-0.00008385123,-0.015060763,0.014608008,-0.0043577673,0.015034131,-0.020959895,-0.004830497,0.0074904324,-0.01709816,-0.023236986,0.024195762,0.0117649725,0.0055495785,0.009035126,-0.010746274,0.009095049,-0.0074238507,0.032225505,0.0024518683,0.01568663,0.009081733,0.005080178,-0.01713811,-0.0039183283,0.020440558,0.004224604,0.03025469,0.019907905,0.0021805482,-0.0010228602,0.0008705547,-0.007963162,0.027724588,0.01257061,-0.02764469,-0.016805202,-0.025527393,-0.026113313,0.0076235957,0.002796428,0.00836931,-0.0069710957,0.032225505,0.018602906,-0.014847701,-0.022384742,0.014408263,0.008828723,0.0052100117,-0.00075861433,-0.022584487,0.013376248,0.0726006,0.04210622,-0.014821069,0.022344792,0.006844591,0.0034156372,-0.008702218,-0.013163187,0.011571886,-0.014248467,-0.015646681,-0.0030011667,0.01829663,0.00967431,0.004887091,-0.018203415,-0.0019608287,-0.002974534,-0.025860302,-0.017124793,-0.018056937,-0.0070709684,-0.0162326,0.014328365,0.013289692,0.03169285,0.042212747,0.0055995146,0.01829663,-0.024062598,0.0010295183,-0.003398992,-0.011072524,0.02242469,0.0007157524,0.026552752,0.003652002,0.01597959,-0.0037418872,-0.02105311,0.0058491956,0.006321925,0.0023553248,-0.011192371,0.009148315,0.005686071,-0.011298901,0.015926324,0.010659718,-0.0091083655,0.013862294,-0.009035126,-0.025753772,-0.022131732,0.019321987,0.005532933,-0.022504589,-0.010779564,-0.00022450491,0.013635917,-0.030414484,0.0040980987,-0.016285865,-0.005739336,-0.013635917,-0.007903239,-0.033823464,-0.003239196,0.0036819638,-0.01985464,-0.008216172,-0.010206963,-0.024102548,-0.00024843268,0.010107091,0.021785507,-0.0011843207,-0.016179334,0.008029744,0.026685914,0.037232444,-0.018483058,-0.02608668,-0.0055628945,0.0043045017,0.01992122,0.030893873,0.002416913,-0.010173672,0.013715814,-0.0022338135,0.021585763,0.012017983,-0.018456426,-0.0034356117,-0.005865841,0.026219843,0.02775122,-0.014048723,-0.01583311,-0.0052033537,0.026526118,-0.007750101,-0.023743007,0.015739895,0.007889923,0.0016670374,-0.003177608,-0.004873775,-0.0018210073,0.023103824,0.0022071807,-0.0038051398,-0.0042978437,0.009401325,-0.0064650755,-0.020373976,0.008981861,0.0047539277,0.0055961856,-0.001373246,-0.042372543,0.028923057,-0.007011045,-0.020214181,0.013609284,0.0069111725,-0.025074638,0.0018925826,-0.011531937,-0.019841323,0.010047167,-0.023822904,-0.009654336,-0.03329081,-0.01695168,-0.012097881,0.0059290933,0.00036911186,-0.011605177,-0.02844367,-0.022850813,-0.013030023,-0.011725023,-0.017018262,-0.030973772,-0.011671758,0.009494539,0.007044336,0.03739224,0.009814131,-0.016205966,-0.034622442,-0.013715814,-0.012397498,-0.0044543105,-0.023396783,0.011605177,0.033210915,0.024701782,0.03627367,-0.00713755,0.016725304,-0.009181606,-0.0017061541,-0.013289692,-0.007350611,-0.01159186,-0.0117982635,0.0040980987,0.010326809,0.012164462,0.010712983,-0.000147832,-0.017697396,0.009407983,-0.014168569,-0.031506423,-0.008888647,-0.014647957,0.010313493,-0.012983416,-0.020387292,0.012750381,0.014235151,-0.0007319817,0.023170404,0.029722037,-0.0009770853,-0.009401325,0.025061322,-0.022224946,0.0041147443,0.008142932,0.0058625117,-0.013649233,-0.039682645,-0.012384182,-0.023423415,0.002491817,0.006491708,0.013902243,0.002641626,0.010839488,-0.0066581625,0.0033840109,-0.027724588,0.009234871,-0.01858959,-0.019361936,-0.03057428,-0.01934862,-0.023743007,0.016565507,-0.00713755,0.01090607,-0.0298552,0.017071528,-0.038750503,-0.021239538,-0.029136118,-0.009461248,0.018429793,-0.0037385582,0.0014914284,0.03600734,-0.024488721,0.0135893095,0.01199135,-0.0072440803,-0.023250302,0.023236986,0.02996173,0.0026216514,-0.014581376,-0.0020823402,0.008342678,-0.027045455,-0.027884383,-0.0075769885,0.0009812467,0.0055096294,-0.016392395,-0.010852804,-0.023290252,0.010053825,-0.013209794,0.005702716,0.007383902,-0.02518117,-0.054064278,0.03206571,0.012184437,0.0100138765,0.025807036,-0.00405815,-0.02402265,-0.0038284434,-0.015566783,0.006198749,0.012370866,0.021492548,-0.013456146,0.009447932,0.019694844,-0.021226222,-0.016126068,0.0067879963,-0.012084564,0.020800099,-0.019175507,0.019934537,0.033104382,-0.012783672,0.032624993,-0.005576211,-0.015793161,-0.011019259,-0.015114028,-0.0019175507,0.019135559,0.009048442,-0.013482778,0.0029479014,-0.008036402,-0.005423073,-0.029295914,-0.0024368875,0.015300456,-0.011725023,-0.0144348955,-0.020666936,-0.011911452,0.013755763,0.029748669,0.004470956,0.017990354,0.013995457,-0.010599794,0.012577268,-0.0062719886,0.0005659438,-0.038137954,0.018523008,-0.0042079585,-0.027804486,0.01572658,-0.012264335,-0.048125196,-0.030627547,0.0062686596,-0.008083009,-0.0035388132,0.009354718,0.028310506,0.029881831,0.012410815,-0.0144615285,-0.036433462,-0.004068137,-0.02663265,0.014940916,-0.0104399985,-0.024541985,-0.027511526,-0.008209514,0.0068778815,0.008755484,-0.008848698,0.0014531439,0.017910456,0.028017547,-0.0048138513,-0.029508974,-0.017657446,0.003691951,-0.012743723,0.021172956,0.0021539156,-0.008615662,0.010047167,0.024794996,0.019535048,0.027591424,0.007763417,0.008569055,-0.037259076,-0.01340288,-0.013456146,-0.022398058,-0.025607292,0.022850813,-0.014554743,-0.018536324,-0.033237547,-0.013835661,-0.01398214,-0.024315609,-0.018203415,0.0058458666,0.017630814,-0.012550636,-0.01956168,0.05275928,0.0037185836,0.008422575,-0.0028596807,-0.0074571418,0.0035388132,-0.011818238,-0.01050658,-0.026512802,-0.02221163,0.011844871,0.03536816,0.0324652,0.017510967,0.013902243,-0.0020740177,0.013283034,-0.0009837435,0.011705049,0.015300456,0.007397218,0.009061758,-0.0027564792,-0.026219843,-0.015673313,0.0060189785,0.0070376773,-0.01945515,0.022371424,0.011858187,0.025327649,-0.009008493,-0.0070776264,-0.018243365,0.015207242,0.0025550697,0.010233595,0.0058558537,-0.0077767335,0.007949846,-0.019788058,-0.0015064093,-0.005343175,0.005636134,-0.016392395,0.008395943,-0.021838773,-0.012723748,0.0068246163,0.014315049,0.0013815686,-0.0027315111,-0.004580816,0.0109193865,-0.020999843,0.020600354,0.012737065,-0.036326934,0.0074504837,-0.002811409,-0.0034089792,0.0041946424,-0.038058054,-0.00048105224,-0.037418872,0.00027090398,0.014195202,-0.026765812,-0.06903183,0.006278647,-0.01597959,-0.0035920786,0.010719641,0.2155114,0.012384182,-0.01699163,0.03350387,0.005825892,0.0017843875,0.015913008,0.010699667,-0.023809588,-0.00215558,0.013269718,0.019135559,-0.024541985,-0.006478392,-0.010739616,-0.007869948,-0.042665504,-0.027697954,0.02227821,0.007383902,0.0033740238,-0.0020307396,-0.009194922,0.0035388132,0.03155969,0.006278647,0.0091083655,-0.016245916,0.010246912,0.0026033414,-0.03046775,-0.0074904324,0.012477396,-0.013888926,-0.008216172,0.0012309278,0.008835381,-0.0011169068,0.0044443235,0.024728414,0.0131232375,-0.009714259,0.017830558,-0.013928875,-0.033157647,0.032411933,-0.009820789,-0.0015913008,0.0104666315,0.0057160323,-0.021039793,-0.0066714785,0.019401886,0.029935097,0.007177499,0.00074737874,0.0074105347,-0.012104539,-0.030148158,0.022224946,-0.023689741,0.026219843,0.008269438,0.037871625,-0.02753816,-0.0022487943,-0.020373976,-0.03576765,0.011019259,-0.023103824,0.011711707,0.0076702028,0.004930369,0.021252854,0.009028468,-0.013362932,0.007430509,0.024715098,0.00016541372,0.01452811,0.007823341,-0.0004889588,-0.011285585,-0.02366311,-0.02366311,-0.041307237,0.037152544,0.002919604,-0.000033056735,-0.005666096,0.0017544257,-0.0062253815,-0.009188264,0.016925048,0.025221119,0.010886095,0.00793653,0.006897856,0.0027664665,-0.0020257458,-0.009827447,0.002115631,0.0056161596,0.013522727,0.001086945,-0.0024269002,0.0044043744,-0.0009254846,0.015273824,-0.012943467,-0.010120407,-0.014821069,-0.0090551,0.0039915685,-0.032811422,0.01398214,-0.0082028555,0.004184655,0.000073759955,0.0014681248,0.019162191,-0.034942035,-0.0126837995,0.028070811,-0.006897856,-0.010573162,0.004427678,-0.014568059,0.010539871,-0.037924893,0.01206459,-0.012956784,0.028124077,-0.045408666,-0.012836937,-0.015739895,0.016006222,-0.022145048,0.009407983,0.01768408,-0.009068417,0.027378364,0.01173834,-0.029748669,-0.0053598206,-0.026259791,-0.010479948,-0.008495815,-0.015819794,-0.0001773776,0.01065306,-0.018642854,-0.007989795,0.018736068,0.023303568,0.030228056,-0.040854484,-0.026166577,0.005939081,0.007829999,-0.023197038,-0.02934918,0.0246352,0.0067879963,-0.018243365,0.014594692,-0.16863793,0.024861578,-0.006038953,-0.014994182,0.01173834,-0.002793099,0.028976321,0.0003578762,-0.011511963,0.005213341,0.03749877,0.007823341,-0.0135560185,-0.021559129,0.014448212,-0.043997135,-0.019135559,-0.00018570031,0.011725023,0.001887589,0.024288977,0.010965994,-0.0005734342,-0.02253122,0.012956784,-0.011245636,-0.013729131,0.022917394,-0.019481782,0.0032192215,0.01307663,-0.017497651,0.027325097,0.0086822435,0.03390336,-0.007763417,-0.008056376,0.004976976,0.0063851774,-0.0075636725,-0.009534488,0.0030744064,0.0113788,0.033024486,-0.00335072,0.015007498,0.01398214,-0.009680968,0.018736068,-0.01286357,0.003988239,-0.032305405,-0.0034089792,0.0013649233,0.002583367,0.022651069,0.004877104,0.037978157,-0.010067142,-0.025021374,0.016898416,-0.029881831,0.0043377928,0.00021951129,0.007397218,-0.0005509629,0.0011377134,0.01148533,-0.03214561,0.018176783,-0.0044609685,0.013209794,0.00033020324,0.008881988,0.036167137,0.015766528,-0.027671322,0.001284193,0.016445661,0.009248188,-0.02391612,0.027937649,-0.01629918,0.022224946,-0.008076351,0.027404996,0.016325815,-0.010386733,0.0076835193,-0.007290688,0.0035587878,-0.013702498,0.0024119192,-0.022224946,0.013496095,0.023689741,0.0006903682,0.014621324,0.020959895,0.010320151,0.000057946818,0.018123517,-0.029748669,0.041333873,0.04101428,-0.008189539,-0.028257241,-0.019335303,0.007097601,-0.036619894,-0.0063019507,0.022664385,0.011951401,0.03126673,0.0022820851,-0.01199135,-0.0016154366,-0.023370149,0.026606016,-0.0026149931,0.022797547,0.007337295,-0.015526834,0.02101316,0.0018676145,0.011039233,-0.11814243,-0.029695403,-0.017883824,-0.010566504,-0.03568775,-0.00945459,0.012017983,0.018176783,0.003264164,0.029029587,0.006072244,-0.014980865,-0.0049004075,0.025261067,0.02166566,-0.0074171927,-0.016831834,-0.013103263,-0.00496366,0.007889923,-0.0052266573,-0.013582651,-0.011938085,0.00398491,0.0028230608,-0.01568663,0.0023170405,0.005782614,0.026725864,0.0063352413,0.014568059,0.005173392,0.010586478,-0.02101316,-0.01901571,0.018523008,-0.018016987,0.012577268,0.028630098,-0.04474285,0.014874334,0.014994182,0.00009878008,-0.027018823,-0.0031293363,0.016765252,-0.019401886,0.0233302,-0.018922497,0.00054139184,0.0022254908,0.009914003,-0.01633913,-0.014980865,0.009894029,-0.00043860642,0.020959895,0.018176783,-0.021838773,-0.035634484,-0.005839208,0.0207202,-0.022011884,0.009407983,0.0073173204,-0.005696058,0.00007703702,-0.004970318,-0.020493824,-0.0064284555,0.011858187,0.0025916896,-0.03286469,0.0006687292,-0.026938925,0.016099436,0.00054180797,-0.013888926,-0.0031343298,0.009694284,-0.015819794,0.0054064277,-0.014687906,-0.035714384,0.009940636,0.0053598206,0.018935813,0.01768408,-0.0207202,-0.020427242,-0.01583311,0.015992906,0.0072307643,-0.020440558,-0.03057428,0.01724464,-0.014208518,0.0027215239,0.031639587,-0.013942191,0.00083310256,0.0050735194,-0.046687033,0.03781836,0.012816963,-0.008169565,0.008023085,-0.027884383,0.015966274,-0.027911017,-0.01075959,0.0050202543,-0.018922497,0.028923057,-0.014687906,0.0061687874,-0.008349336,-0.0017627485,0.016831834,0.0037851653,0.0069644377,-0.009095049,0.004224604,-0.014261783,0.02086668,0.0046007903,-0.018602906,0.010413365,-0.015633365,0.034542546,-0.010633085,0.006242027,0.015380355,0.0053531625,0.018389843,0.037631933,-0.012131171,-0.01633913,-0.01775066,0.024315609,0.0074504837,-0.042079587,-0.02366311,-0.027325097,0.019521732,0.005586198,-0.022784231,0.0021356056,-0.025527393,0.0046507264,0.025820354,-0.0034089792,0.021346068,0.017577548,0.009507855,-0.035341524,-0.00010673866,-0.025633926,0.025527393,-0.009461248,-0.0071308916,-0.013309666,0.02514122,-0.0028047508,0.03337071,-0.030787343,0.017604182,0.02126617,-0.0009779176,0.0010112084,0.016019538,-0.040454995,0.020054385,-0.016605457,-0.00521667,-0.008435892,0.012950125,-0.017670762,-0.015633365,-0.027404996,-0.0056095016,0.0017494322,0.0030560964,-0.00467403,-0.034089793,0.02086668,-0.008336019,0.030307954,0.001992455,0.006734731,0.0032724869,0.0149142835,-0.020280762,0.00074529805,-0.008016427,0.00029503982,0.029775301,0.016379079,-0.0010819513,0.0034988644,-0.01648561,0.028470302,0.012730407,0.020547088,0.019095609,-0.019255405,-0.010699667,0.021585763,-0.023969384,-0.009194922,-0.0029512304,0.009534488,-0.005539591,-0.023969384,0.041946422,0.015300456,-0.01724464,-0.027138669,0.00074113667,0.0113788,-0.021492548,-0.009467906,-0.00246352,-0.0122177275,0.005140101,0.0036719765,0.0010286861,0.02253122,0.012770355,0.0038916958,0.025807036,0.025926884,-0.00040427528,-0.015313773,0.012264335,-0.018070253,-0.006401823,0.0058591827,-0.018469742,0.03278479,-0.012883544,0.058858152,-0.009774182,-0.010147039,-0.007304004,0.025527393,0.012310942,0.02543418,-0.011139105,-0.012057932,-0.0017993683,-0.028417036,-0.010120407,0.0047838897,-0.011205687,-0.003858405,0.0100738,0.0007627757,0.01402209,0.0061654584,-0.010546529,0.004720637,0.0027331756,0.018016987,-0.004171339,-0.0033207585,-0.022464639,-0.00764357,-0.017417753,-0.036326934,-0.02253122,0.008182881,0.010539871,-0.033823464,0.006651504,-0.0025667215,-0.04010877,-0.019122241,0.030174792,-0.0013524392,0.0045342087,-0.007044336,0.03539479,-0.015060763,-0.0077767335,0.00796982,-0.027351731,0.00019391898,-0.00016822263,-0.027618056]},{\"id\":\"6b0de6f1-9bae-45a8-b151-6c5203594c6f\",\"text\":\"Do not send me this product anymore!!!\",\"vector\":[-0.023983758,-0.0115610715,-0.013245721,-0.0007969134,-0.01505897,0.009458474,-0.00673217,-0.015290448,0.0047453116,-0.014994671,0.014981811,0.011258863,0.0023597958,-0.018093912,-0.00056704227,0.0068414793,0.020627318,-0.0036039934,0.00092350325,-0.0071501173,-0.01516185,0.009728532,-0.0018871938,-0.017309457,-0.01676934,-0.013014242,0.017862434,-0.020653037,-0.017901013,-0.0018502214,0.0038161823,0.0004267887,-0.0010087002,-0.0086547285,-0.004677797,0.011252433,0.0070022284,-0.007600215,-0.0034818242,-0.010339378,-0.0059637893,-0.0015359571,0.017270878,-0.013232861,-0.031558253,0.035930626,0.011065964,-0.01850543,-0.024613893,0.009452044,0.023096422,0.005372233,-0.015251869,-0.03191833,0.008217491,0.039582845,0.0067836097,-0.01168967,0.027983192,-0.025269749,0.0020077555,-0.009445614,-0.021630391,0.00073181,-0.014313094,0.0006855947,-0.01002431,-0.0062563526,-0.012647735,0.0040830257,-0.008088891,0.021064555,0.011149554,0.0005324812,0.018711189,0.006899349,-0.004330579,0.033075724,0.013490059,-0.014531713,0.03737094,-0.019225586,-0.027957473,0.034078795,0.026800081,0.018081052,0.014338815,0.022607746,-0.012924223,-0.026337123,-0.015547647,0.01675648,-0.0077738236,0.013027103,-0.0062531377,0.03888841,0.01660216,0.04894487,-0.01342576,0.002520545,0.0028082859,-0.02529547,0.00069122086,-0.014801771,-0.04066308,0.01183756,-0.007503765,-0.032818526,0.0054365327,-0.024446715,-0.017309457,0.047761757,0.006063454,-0.013007812,-0.0024417778,-0.0041151755,0.011291013,-0.011959729,-0.024060916,-0.027365917,-0.0024289181,0.005571562,0.038039654,-0.005719451,0.01853115,0.008815478,-0.024292395,-0.0049446407,-0.006478186,0.01170253,0.004343439,0.012962802,0.01342576,0.009149835,-0.025076851,0.038142532,-0.030246539,0.008770468,-0.00080495083,-0.016164923,0.0128727835,0.029860742,-0.0014427226,0.003132999,-0.0019354185,0.020627318,0.0089440765,0.023096422,-0.017965313,0.0010263827,0.006892919,-0.013618659,0.03194405,-0.017116558,0.017566655,0.0018373616,-0.022774924,0.009497053,-0.020858796,0.015496207,0.018261092,-0.004523478,-0.006208128,-0.025977045,0.015277589,0.028703349,0.0038322571,0.002596097,-0.0034464595,-0.021913309,-0.0120947575,0.01682078,-0.0027841735,0.02033154,-0.0015439945,0.013528639,0.010133619,0.014043036,-0.012904933,-0.016190644,-0.009091966,0.010783046,0.017322317,0.014840351,-0.029140586,-0.026697202,0.0007205576,-0.015431908,0.016473562,-0.00022705802,0.0066485805,0.013644379,0.003915847,-0.007555205,-0.65554744,-0.022980683,0.01670504,-0.0010979159,0.033281483,0.004886771,0.020421559,0.00089376466,-0.004677797,0.02687724,-0.018029613,0.02157895,-0.025977045,-0.0039479965,-0.004362729,-0.010918075,-0.009754252,-0.009580643,0.012165488,0.008114612,-0.006401027,0.0134129,-0.0039319214,-0.0011549819,0.0024112356,0.0093105845,0.020524438,-0.0031844385,-0.02361082,0.022003328,0.009207705,0.027057279,-0.014055897,0.004848191,0.053600162,-0.04907347,0.006388167,0.009220565,0.01833825,0.0010930935,-0.022800645,0.001545602,-0.019868582,-0.027828874,-0.022106208,0.011117403,0.022093348,-0.012165488,-0.0076580844,-0.0062627825,0.0137729775,0.0028629405,-0.00844254,0.025642687,0.009407034,-0.015599087,0.024678193,0.00015693126,-0.0012803661,0.016229223,-0.01174111,0.017077979,-0.013232861,-0.0059862942,-0.0103329485,-0.013297161,-0.025874166,0.0078381235,0.021206014,-0.030709498,0.016910799,-0.01660216,-0.02340506,0.0335644,0.015470488,0.018119631,0.001940241,0.010918075,0.010005021,0.0010770186,0.015920585,0.004851406,-0.0064685415,-0.01511041,0.01985572,0.009008376,-0.000066359215,-0.024035197,-0.022890663,0.0011236358,-0.0040862407,0.01345148,0.019006968,-0.024009477,0.011342453,0.0068607694,-0.0137729775,0.023276461,-0.005921995,-0.005967004,0.00023469361,0.0018437916,-0.00052243436,-0.014724612,0.027237318,0.009040526,-0.021386053,-0.0040926705,0.027648835,-0.0049092756,0.032638486,0.01015291,0.008545419,-0.013837278,-0.0051182494,-0.02188759,0.0059798644,-0.0049349954,-0.019264165,-0.022324827,-0.0011991878,-0.00020796907,0.010255788,0.0022311967,-0.016396401,0.012152628,-0.0034818242,0.020511577,-0.044135258,-0.00035103573,0.012114048,0.008892637,0.0036264984,-0.014596013,-0.0134772,0.0026571816,0.0131171215,-0.00024474043,0.029937902,-0.029706422,-0.010506557,0.014737472,-0.018826928,-0.013194282,0.021566091,-0.017463775,-0.00664215,0.0083911,0.024883952,0.0167822,-0.008789757,-0.014557433,0.007998873,-0.0059091346,0.006015229,-0.0049349954,0.0047871065,-0.0047581717,-0.0071372576,-0.004713162,-0.0013494882,0.048404753,-0.0047646016,0.004664937,-0.030812377,-0.020421559,0.011451762,0.02182329,0.006053809,-0.024382414,0.002432133,-0.02169469,-0.018736908,0.0015496208,-0.02196475,0.007844553,-0.0012032066,-0.0052982885,-0.011200993,0.0068093296,0.0051632593,0.026028484,-0.014351674,0.037628137,0.033050004,0.0234565,0.00095726055,0.036573622,-0.04061164,0.033873037,-0.0069379285,0.03181545,-0.02196475,-0.0016959024,-0.010821626,-0.031326775,0.0060956036,0.005378663,0.037808176,-0.017335176,0.039608564,-0.007040808,0.020460138,0.01985572,0.006413887,-0.022492006,0.0009926254,-0.01869833,0.030555177,0.019714262,0.009265575,-0.007928142,-0.00035746567,-0.016216364,-0.023649398,0.008365381,-0.0153676085,-0.007214417,0.002936885,-0.017708115,-0.03703658,-0.02692868,-0.000653043,-0.00037534902,-0.014647453,0.00838467,0.0013157309,0.008211061,0.021128854,-0.031146735,0.00848755,-0.015650528,0.012956372,0.015431908,0.015972026,0.0019772132,0.010345808,-0.02004862,0.03202121,-0.004330579,0.00023529641,-0.003378945,0.01674362,0.030658057,0.004915706,-0.0040862407,0.025745567,0.008905497,0.00055699545,0.011258863,-0.0070279483,-0.00021942244,-0.014248795,-0.011143124,0.023739418,-0.02677436,0.015753407,0.01010147,0.02025438,0.0032905329,0.009201275,-0.027134439,0.040020082,-0.0062917173,-0.003845117,0.010281509,0.004147325,-0.0086161485,-0.006269213,0.011393893,0.0058384053,-0.019907162,0.026414283,-0.024922531,0.027160158,0.0047806767,0.031172454,0.009214135,-0.0008431287,0.003113709,-0.006217773,-0.012943513,0.003681153,0.01705226,0.012506275,-0.017630955,-0.03647074,0.017438056,-0.015714826,0.029346345,0.0010673737,0.032407008,-0.011323162,0.027700275,-0.0059734345,0.008455399,0.005642291,-0.00835895,0.021733271,0.0071436875,-0.00006123534,0.0020238305,0.009869991,-0.01346434,-0.00020656252,0.002375871,0.01842827,0.0064878315,-0.010242929,-0.018762628,0.009625653,-0.017785273,-0.018724049,-0.012937083,-0.0029304551,0.019238446,-0.0049414258,-0.018852647,0.029757863,0.013708678,-0.0026314617,-0.0071372576,0.0021524297,-0.014518853,0.09351736,0.022839224,-0.028137513,0.02175899,-0.0052918587,0.0085325595,-0.012319807,-0.013631519,0.006519981,-0.02183615,0.0011815055,-0.012396966,-0.0007089033,0.0038258273,-0.0019048762,-0.002596097,0.0233922,0.00670645,-0.006880059,-0.015393328,-0.009169125,0.018119631,-0.014994671,0.00019741991,0.019379904,-0.00018717216,0.03047802,0.02674864,0.018762628,0.021476071,-0.008545419,0.0037197329,-0.016293524,0.021476071,-0.0066100005,0.019585663,0.00415054,-0.014043036,0.01649928,-0.00586734,0.024073776,0.0056776563,0.0043016444,-0.011586791,-0.0050025103,-0.018659748,-0.029732144,-0.0001649687,0.015779126,-0.0012924223,0.027880315,-0.012647735,0.007220847,-0.0050893147,0.0024112356,0.013824417,-0.022684906,-0.0011686456,-0.017978173,-0.0059444997,-0.009535633,-0.012416256,0.02024152,-0.010982375,-0.015984885,-0.031532533,-0.01337432,-0.011445331,-0.022479147,-0.03163541,0.033024285,0.010268649,-0.009329874,0.008924787,0.014518853,0.0046102824,-0.008551849,-0.020537298,0.006564991,0.025565527,-0.0067964694,-0.01868547,0.016422123,0.0043209344,-0.00043924677,-0.021013115,0.008699738,-0.01012719,0.0013736006,0.004893201,0.005012155,0.009226995,0.029269185,-0.006925069,-0.017720975,-0.017823854,0.011310303,0.01696224,-0.017695254,0.021077415,-0.024369555,0.001851829,-0.0060923886,-0.009471334,0.018248232,0.032329846,0.010005021,0.016409263,-0.0042502047,0.025526948,0.015406189,0.0047485265,-0.02685152,-0.004330579,0.02013864,0.0013543107,-0.0010488875,0.007175837,0.004735667,0.0048385463,-0.0108666355,-0.022324827,0.016126344,-0.0050925296,-0.01342576,0.029552104,-0.014338815,-0.029114867,0.0030735217,-0.008320371,-0.026980119,-0.008648299,-0.022839224,-0.019585663,-0.06198483,0.004500973,-0.014544574,0.018826928,-0.006076314,-0.03410452,-0.03855405,-0.009947151,-0.016473562,0.00672574,-0.011252433,-0.024305256,-0.02529547,0.0113167325,-0.010500127,0.00668716,-0.015316169,0.0049800053,-0.017155137,-0.012454836,-0.0062885024,-0.03333292,-0.021990469,0.00415054,0.032304127,0.028420432,0.029577823,-0.014866072,0.022170508,-0.0050989594,-0.024150936,-0.0019595309,0.0049285656,0.005664796,-0.017013678,0.01333574,0.024986831,-0.0068350495,0.039660003,0.0018084267,0.008031022,-0.002690939,-0.0071179676,-0.018042473,0.0017650245,0.011303873,0.020010041,-0.011265293,0.0060730986,0.018749768,-0.009252715,-0.017065119,0.008956936,0.025256889,0.008551849,-0.005182549,0.02033154,-0.012480556,-0.0033275052,-0.0071629775,0.013760118,0.0018100343,0.0010247751,-0.00847469,-0.03508187,0.01511041,-0.011901859,0.008262501,-0.024575314,-0.0056230016,-0.00088653096,0.004687442,-0.02204191,0.0053015035,0.0014194141,-0.025578387,-0.010763756,-0.022556305,-0.027623115,-0.0201515,-0.0047774618,0.010384388,-0.017142277,0.00030642786,-0.0106608765,-0.030452298,-0.01833825,-0.017322317,0.0053979526,0.012634874,0.010750896,0.042540625,-0.023122143,0.007973152,0.0078381235,0.0046713674,-0.012255507,-0.0031410363,0.010512987,-0.017913872,-0.010197919,0.008989086,0.0035589838,0.0007366325,-0.034567475,0.01177326,0.013207141,0.02179757,-0.027082998,-0.008911927,-0.0137729775,0.024691053,-0.010828055,-0.0025800222,0.012249077,-0.009503484,-0.0439295,0.015251869,-0.01694938,0.0076259347,0.008866917,-0.012827774,-0.020665897,-0.03011794,0.005356158,-0.012429116,0.006918639,0.036496464,-0.0048578363,-0.015740545,0.0054172426,0.003694013,0.0023163937,-0.0077931136,-0.004851406,0.008493979,0.0048353313,-0.026465721,-0.0049028457,-0.0074266056,0.008108182,-0.012686314,-0.024253815,-0.0123005165,0.0044816835,-0.0066550104,-0.0027568461,0.013695818,-0.00012297301,0.01676934,-0.027288757,0.0053207935,-0.0013197496,0.01003074,0.011065964,-0.0026571816,-0.0038515471,-0.015637666,-0.0035461239,0.006336727,0.012204067,0.002444993,0.013084972,0.015431908,0.00007309058,-0.0073365862,0.0044913283,0.010892355,-0.025334049,0.0012948335,0.037962493,0.00830108,0.006854339,0.0049478556,-0.036187824,-0.020460138,-0.0072915764,0.0016894725,0.0047806767,-0.0118889995,0.05735526,0.010300798,0.013046392,-0.020743057,-0.015020391,0.011143124,-0.0056101414,0.009336304,-0.010140049,-0.017708115,-0.018196791,-0.030066501,-0.024588173,0.0030895965,-0.007388026,-0.011979018,0.009722102,0.023945177,-0.000965298,-0.026542882,-0.031275332,-0.002199047,-0.005713021,0.024498153,0.01012076,-0.00023127768,-0.03533907,0.0023774784,-0.0081660515,0.004918921,-0.00837181,0.0020415129,-0.023636539,-0.0028436505,-0.023122143,-0.024575314,0.019109847,0.017180858,0.0047903215,-0.020678757,-0.005915565,0.0017425197,-0.011599651,-0.0048128264,-0.022684906,-0.0054140277,0.010789475,0.021913309,-0.017425196,0.024549594,0.017592376,0.032689925,-0.001643659,-0.008731888,0.012609155,0.018968387,0.018544009,-0.0061856234,-0.03647074,-0.017888153,0.016306384,0.03338436,0.004687442,0.0129113635,-0.025256889,-0.017540935,0.005526552,0.007195127,0.006240278,-0.003523619,0.002281029,-0.041254636,0.00088572723,-0.01840255,0.010635156,0.018904088,0.0065617757,0.034567475,-0.00044808796,0.0003636947,-0.0035364788,-0.007407316,0.0074458956,-0.0017135848,-0.0011107759,0.030966695,-0.013914437,0.012686314,0.010815196,-0.020434419,0.01346434,-0.00046737783,-0.005549057,-0.013605799,-0.0019370259,-0.017206578,-0.026722921,-0.015624807,-0.021566091,-0.008950506,-0.0042502047,0.008545419,0.006246708,-0.0539088,0.0063110073,-0.004864266,-0.0069765085,-0.010905215,0.00031908686,0.014043036,0.0007936984,-0.029526385,-0.003087989,-0.03166113,0.0044173836,-0.0022922812,-0.027314477,-0.041048877,0.019328466,0.017733835,-0.00501537,0.021347472,0.24588174,-0.013502919,0.0016910799,0.022684906,0.010365098,0.014583153,-0.005542627,0.004693872,-0.017335176,0.041023154,0.021373192,0.0019643533,-0.022093348,-0.007394456,0.0062917173,-0.02006148,-0.031558253,-0.028883388,0.0024723203,-0.016537862,0.011117403,0.0033178602,0.017077979,-0.008892637,0.055143353,-0.0076387944,-0.01682078,0.023250742,-0.0036522183,0.024009477,-0.010397248,-0.008629008,0.017219437,-0.008146762,0.0069507887,-0.0027198738,-0.011998309,0.016344963,0.012776334,0.0089440765,-0.012686314,0.007053668,0.006880059,-0.0006393793,-0.0034078797,0.020665897,-0.009046956,0.009169125,-0.017399477,0.0017827068,-0.016987959,-0.015560507,0.015663387,0.031069575,-0.004263065,0.0076773744,0.0074008857,-0.006381737,-0.016344963,-0.009407034,-0.02019008,0.01661502,-0.0021090275,-0.011085254,-0.020485858,0.027160158,-0.035879187,-0.01822251,0.020730196,-0.0061020334,0.0013422545,0.0004460786,-0.007728814,0.022273388,-0.005227559,-0.014145915,-0.0042855693,0.03886269,0.024318116,0.0078124036,-0.0065842806,0.019624243,0.0002728715,-0.03677938,-0.02004862,-0.039737165,0.042489186,0.008667588,-0.0035943487,-0.008063172,0.007831694,-0.01841541,-0.01171539,-0.0134129,-0.0003192878,0.022131927,0.0051568295,0.0046102824,0.00675789,0.017399477,-0.011477482,0.006372092,0.00031948872,0.004237345,-0.017065119,0.010403678,0.008043882,0.030915257,-0.0060730986,-0.0051150345,-0.014505994,-0.01841541,-0.0026893315,-0.024035197,0.002494825,-0.0013711894,0.023135003,-0.01842827,0.02829183,-0.03186689,0.02331504,0.0120947575,0.0009435969,0.0030944191,-0.005915565,0.0043916637,0.015984885,0.0028902679,0.030349419,-0.01505897,0.004362729,-0.0017023324,0.019392764,-0.028960548,-0.0105387075,-0.0058094705,0.0041280356,0.019238446,-0.0043691588,0.032432728,-0.010667306,0.0060023693,0.024395274,-0.012949943,0.012261937,-0.013914437,0.0017682394,0.006031304,-0.007670944,-0.024781073,-0.0167179,-0.005478327,-0.013785838,-0.009664233,0.030863816,-0.00013673716,-0.042823546,-0.043106463,-0.013554359,-0.006265998,-0.031018136,-0.022247668,0.028446151,0.002877408,-0.0125448555,-0.0063238675,-0.16234367,0.030812377,0.0032760655,-0.020280099,0.015920585,0.0013020672,-0.0024755353,0.0036393583,-0.0010729999,-0.00090823206,0.039505683,0.02341792,-0.008146762,-0.008493979,0.021900449,-0.024832511,-0.020292958,0.02505113,0.03528763,0.009336304,-0.00087045605,0.0006293325,0.00418912,-0.014968951,-0.0002662406,0.0027745285,-0.021553231,0.016576441,-0.012036888,-0.01666646,-0.0117668295,-0.012982093,0.021617532,0.017939594,0.037988212,0.0027970334,0.007670944,-0.013136412,-0.0024771427,0.006388167,0.0023935533,-0.0046231425,0.019469924,0.04369802,0.0015182747,0.03011794,0.013785838,-0.0168465,-0.0055587017,-0.023237882,-0.006044164,-0.017540935,0.0015745369,0.0049221357,0.008686878,0.022826364,0.0064942613,0.014043036,-0.0061470433,0.004198765,0.0112781525,-0.020627318,0.008320371,-0.014068756,-0.012396966,-0.018904088,0.0133228805,0.012647735,-0.016730761,0.015560507,-0.014994671,0.002713444,-0.004343439,-0.008911927,0.019135566,-0.0017923518,-0.018544009,0.0016508927,0.005590852,-0.017901013,0.00015733312,0.0068028993,-0.024601033,0.0023678334,-0.0036297133,0.0034882543,0.02003576,-0.0133228805,0.0029915397,0.0075166253,0.02196475,-0.02024152,0.004404524,-0.019341325,0.01513613,0.02505113,-0.014403114,-0.0018309316,-0.0011501594,-0.004015511,0.0064685415,-0.011336022,-0.027263038,0.01858259,0.03238129,-0.0063270824,-0.011303873,0.007818833,0.0265686,-0.027391637,0.007034378,0.020691616,0.01859545,0.025912745,0.018891228,0.008519699,0.006172763,-0.011406752,0.008661158,0.0033146453,0.021501793,-0.0054493924,0.011117403,0.020498717,-0.026465721,-0.020884516,-0.111727014,-0.046244286,0.0047967513,0.007394456,-0.011226713,0.014968951,-0.0061181085,0.026105644,0.016460702,0.02514115,0.015264729,-0.020472998,-0.019084126,-0.022594886,0.022607746,-0.013039962,0.005844835,-0.006368877,-0.01694938,0.014274515,-0.012879213,-0.034001637,0.0029802872,-0.006429962,0.00024654885,-0.019006968,-0.016434982,-0.020678757,0.010262219,-0.00044406924,-0.0017875293,-0.012802054,0.017039398,-0.0048192563,0.00671931,0.005227559,-0.032149807,0.009355594,0.042694945,-0.04050876,0.005343298,-0.0057676756,-0.0037679574,-0.024973972,0.017103698,0.007105108,-0.009079106,0.026157085,-0.018634029,-0.022311967,-0.039042726,-0.0022183368,-0.0126284445,-0.010493698,0.020627318,0.0031313912,-0.0018646889,0.02175899,-0.019984322,-0.004018726,-0.0067643197,-0.0012803661,-0.018955527,0.00587377,-0.00168465,0.009336304,0.00668716,0.009124116,0.0042534196,-0.012776334,0.016344963,0.0049317805,-0.026298543,0.0062370626,-0.019624243,0.010236499,-0.020884516,-0.012622015,0.00035123667,0.019547084,-0.020563018,-0.009175556,-0.0071308273,-0.0078767035,0.022389127,0.011220283,-0.0014467414,0.0131171215,-0.0011067572,-0.010860206,-0.0011807018,0.010352238,0.0058802,0.0047935364,-0.012171918,0.0017039399,-0.020370118,-0.0066164304,0.03701086,-0.009792832,-0.03688226,-0.021334613,-0.056532223,0.022234807,-0.0025687697,-0.02182329,0.0063335123,-0.02181043,0.025771286,0.0034014496,-0.00097333547,-0.01513613,-0.0017585945,0.0042694947,-0.010480838,-0.008050312,0.002281029,-0.012853493,0.029397786,0.011226713,0.027108718,-0.02687724,0.015521928,-0.013862997,0.018081052,-0.016126344,0.0052500637,0.023816578,-0.022157649,0.024163796,-0.005031445,-0.024202377,0.0022874589,-0.017348036,-0.00090421335,0.00011945663,-0.013682959,-0.024678193,-0.024459574,0.02530833,-0.0034014496,-0.014981811,-0.013554359,-0.022363408,0.022389127,-0.017682394,-0.025745567,0.0015431908,-0.0039029866,0.007895993,0.026722921,0.01505897,0.012634874,0.032792803,-0.01696224,-0.02341792,-0.017450916,-0.03994292,0.022607746,-0.025797006,0.018634029,-0.028034633,0.022774924,0.0129113635,0.038142532,-0.008802618,0.00087849353,0.029089147,-0.01868547,-0.0016798275,-0.0013430583,-0.0077030943,-0.015483348,-0.002343721,0.03551911,-0.024523875,0.023970896,-0.0009331482,-0.020421559,-0.00009710247,-0.031249614,0.021900449,-0.009426324,-0.022144789,-0.029886462,0.017798133,0.0047838916,0.021476071,-0.002776136,-0.0009821766,-0.0054461774,-0.0015777518,-0.03166113,0.0153290285,0.012062608,-0.0009580643,-0.0037454527,0.022183368,0.0057612457,-0.0062917173,-0.007548775,0.008783327,0.03713946,0.0064267465,-0.011811839,0.003113709,-0.0019354185,0.032432728,-0.024922531,-0.008268931,-0.022749204,0.029449224,0.010287939,-0.012814914,0.01689794,0.013220001,-0.015830565,-0.0028291831,-0.016280662,-0.008680448,-0.023983758,0.034207396,0.012647735,0.0000564631,0.0021090275,-0.008899067,0.035030432,-0.011046674,0.019804282,-0.02667148,0.023700839,0.010435828,-0.01846685,0.014364534,-0.029732144,-0.011143124,0.0037422378,0.0055779917,-0.013207141,0.010435828,-0.0061341836,0.05033374,-0.028240392,-0.011168843,-0.0067386,0.021707552,0.017579515,0.021373192,0.018994106,-0.021617532,-0.014403114,0.042257708,0.01504611,0.008680448,0.0037743875,0.014480274,0.008751178,-0.009336304,0.018788349,-0.027725995,0.016280662,0.017759554,0.0028195381,0.029706422,0.0011493557,-0.0077931136,0.011908289,0.022607746,0.009085536,-0.0070922477,-0.039402805,0.002346936,0.00829465,-0.0038065373,0.014287375,-0.0073558763,-0.007593785,-0.017077979,0.012866354,-0.010898785,-0.002084915,-0.012615585,0.0504109,-0.030503739,-0.015740545,0.017155137,-0.014377395,-0.0027520235,0.006217773,-0.036393583]},{\"id\":\"c7e0c69b-a149-4dc2-a7be-40c4b38f0a71\",\"text\":\"I have not received my payment in over a month and a half. I would like it in my bank account asap. \",\"vector\":[-0.057041585,-0.0029510749,-0.0074998657,-0.010125132,-0.023107355,0.005714183,-0.033257548,-0.007274306,-0.012744132,-0.013884463,0.03192925,-0.008145218,0.0055575445,-0.0019579849,0.024260217,-0.008176546,0.0061747013,0.0043576914,0.0017010974,0.0026330983,-0.017355578,-0.005037504,-0.0279193,-0.0037561983,-0.015814252,-0.0032330249,0.01953599,-0.0106577035,0.010720359,-0.006434722,-0.027718801,-0.024260217,-0.008132687,-0.016428277,-0.022305366,-0.0033520702,0.011378243,0.0050563,-0.00053570466,-0.018596157,0.022581048,0.012531104,0.0031265104,-0.018934498,-0.016954584,0.016979646,-0.025024615,-0.056239594,-0.037468,0.02882154,0.017869353,-0.008477292,-0.037593313,-0.037392814,-0.0018295412,0.0056014033,0.010407082,0.009667747,-0.0031954315,-0.008364512,-0.008120155,0.008684055,-0.021240221,-0.024360465,-0.011271728,-5.858658e-7,-0.0021804122,-0.01431052,-0.028245108,0.016077407,0.02894685,-0.00010935346,0.0013463105,-0.0031562718,0.023934409,-0.007456007,0.0072617745,0.021052254,0.013972181,0.0047994126,0.011873221,-0.0047054295,0.0085775405,-0.0011497288,0.010645173,0.018195163,-0.014899482,-0.008370778,-0.0073494925,-0.009724136,0.017806698,0.020551011,0.016716493,0.010131397,0.015074918,0.038295053,0.018007196,0.05232989,-0.0014214971,-0.027392993,0.0059334775,0.011528616,-0.011177745,-0.0071364637,-0.024310341,0.005692254,-0.004414081,-0.016328027,0.018007196,-0.016215248,-0.008552479,0.025588514,0.031001952,-0.017067363,0.0038470489,-0.013495998,-0.0057361126,-0.029598467,-0.020525947,-0.02984909,-0.0043294965,0.013157659,0.010024883,0.021979555,0.006585095,-0.015739067,-0.023332916,-0.01919765,0.0058520255,0.013044879,-0.004529994,0.022330428,0.012869444,-0.0015468082,-0.012982223,0.012499776,-0.047618195,-0.004266841,-0.00595854,-0.017205205,0.017932009,0.02520005,-0.011284259,0.00003769121,-0.008640196,0.013596248,0.020839226,-0.022568518,0.012574962,-0.015663879,0.024949428,0.006829452,0.018307943,-0.032204937,-0.010563721,0.0072367126,-0.012750398,-0.0021443851,-0.002188244,-0.040951647,-0.010200319,0.018007196,0.021879308,0.0125373695,-0.002103659,0.024886772,-0.008138952,-0.023608599,-0.016641306,-0.011754176,-0.0044579403,0.0059773363,-0.0003154314,0.009880776,-0.01794454,0.014435831,0.008940943,-0.0013572752,-0.0049027945,-0.0017590537,0.026415566,0.015801722,0.0015483745,0.033808917,-0.0034429207,-0.0054197023,0.030475644,-0.022067273,0.015475913,-0.0076251766,0.0020049766,0.0025250174,0.0006649317,-0.03907198,-0.66485023,0.015914502,0.008746711,0.020363044,-0.0037092068,0.0352124,-0.0060211956,0.014912014,-0.028069673,0.036766257,-0.02067632,-0.0050844955,-0.005131487,-0.0046928986,0.0009006731,-0.017756574,-0.0071364637,-0.005071964,-0.021979555,0.005087628,-0.019235244,0.012618821,-0.03248062,0.012224092,0.020826694,-0.009435921,0.022656236,0.0016885663,0.000031303283,0.045086913,0.01567641,0.0021161903,-0.0015068653,0.0029479421,0.039573226,0.003424124,0.015876908,-0.013345625,-0.0030434919,0.027267681,-0.016440809,0.012098781,-0.006572564,-0.033432987,0.007763019,0.018195163,0.0076001147,-0.011854424,0.014912014,0.0093419375,0.0052755945,0.0026064697,-0.030550832,-0.01418521,0.015513507,0.011898283,0.0147992335,0.013082473,-0.017355578,0.0057674404,-0.0267915,-0.0026659924,-0.014686454,-0.022280302,-0.033257548,0.0020159413,-0.01884678,0.005930345,0.03363348,0.0049873795,0.015726535,0.017794168,-0.004921591,0.005748644,0.002833596,-0.00485267,-0.0009774261,0.0008528982,-0.0063689337,0.017054832,0.0075123967,-0.016353091,0.008364512,-0.019761551,0.034786344,0.023646193,0.006237357,-0.0054729595,0.022393083,0.010425879,0.0110336365,0.036816385,0.025124863,-0.013896994,-0.021703871,0.020137483,-0.014122554,0.0151876975,0.00573298,-0.020601135,0.008884553,-0.006472315,-0.0066916095,-0.0041164677,0.037518125,0.0033677341,-0.0053319847,-0.006265552,0.016440809,-0.022831671,0.0042605754,-0.034485597,0.02929772,-0.0054197023,-0.024811586,-0.032204937,0.006534971,-0.010137663,-0.0062718173,-0.002717683,0.005316321,0.005369578,0.017280392,0.00003534163,-0.014398239,0.014536081,0.0044078156,-0.011910814,0.018533502,0.015313009,-0.0030748197,-0.0061621703,0.012011063,-0.015576162,0.0072680404,-0.011259196,0.010488534,-0.013207783,0.019247776,-0.038746174,0.012242888,0.0074058822,-0.0102755055,-0.0049685827,0.02939797,-0.024210092,0.018282881,0.018307943,-0.014749109,0.027217558,-0.022543456,-0.005632731,-0.009598825,-0.013558654,0.009160236,-0.00635327,-0.0016133796,-0.011046168,-0.0176062,-0.01464886,0.002769374,0.004645907,-0.005927212,-0.008809366,-0.016415747,-0.01770645,0.00058347953,0.013608779,-0.037868995,-0.019009685,-0.0020644993,-0.0073494925,-0.02939797,-0.010363223,-0.0038470489,0.0067855925,-0.008915881,0.005335117,-0.018546034,0.008145218,0.0050938935,0.0055575445,-0.0044798697,0.005466694,0.03734269,0.00766277,-0.008840694,0.041452892,-0.032981865,0.03280643,-0.0027552764,-0.0015405426,-0.008389574,0.0013298634,-0.019059809,0.008922146,-0.002070765,0.009793058,0.029899213,0.0044548074,0.03087664,0.023069762,0.015012262,0.01771898,-0.0117855035,-0.022856733,0.014736578,-0.019911924,0.045813717,0.035813894,-0.005463561,-0.022092337,0.01487442,-0.029698716,0.0026424965,0.0011599103,-0.01521276,-0.018195163,0.004564455,0.030751329,-0.00777555,-0.011835627,0.01174791,-0.024811586,0.011904549,0.012405793,0.010244178,0.019147526,-0.010081273,-0.019235244,-0.032831494,0.0112404,-0.039222356,0.018345537,0.0029354112,0.012462183,0.018145038,-0.0011967204,0.0005035937,0.008151483,-0.00008654294,0.0044955336,0.017167613,-0.00081060576,0.019623708,0.007274306,0.0110336365,0.011516084,-0.0048025455,0.0025124864,0.021202628,0.011190276,-0.027067184,-0.012487245,0.0036434184,-0.04187895,-0.019097403,0.00034832553,0.029723778,0.025450671,0.02644063,0.0038125883,0.017079895,-0.024886772,0.030149836,0.030074649,0.012123843,-0.00947978,0.002062933,0.015613755,-0.002426335,-0.02894685,0.025738887,-0.023119887,0.03528759,0.0040068203,0.0017809832,-0.002774073,0.0036528169,-0.020688852,-0.020450762,-0.018320473,-0.0011567775,0.016328027,-0.0014003508,0.0012468449,-0.010206584,0.026390504,0.012881975,0.0019673833,-0.0052755945,-0.017117487,-0.0072116503,0.004138397,-0.020713914,-0.018909436,0.017205205,0.015150105,0.009385797,0.00032933307,0.03177888,0.0013416113,-0.0043576914,-0.002659727,0.0082392,0.02837042,-0.00414153,-0.025187518,0.013232846,-0.019924454,0.02598951,-0.004316965,0.0006993922,0.022292834,-0.0003281583,0.03077639,-0.011171479,-0.018721469,0.06155278,0.016766617,-0.0015859678,-0.010908326,-0.04531247,0.009962227,0.07709135,0.018207693,-0.00018953295,0.009454718,-0.00408514,-0.0037499329,-0.00850862,-0.024799054,0.013120065,-0.0044955336,0.02882154,-0.019147526,-0.0058238306,0.019911924,0.0063282074,-0.0009257353,0.0075750523,-0.01805732,0.016353091,-0.027944362,-0.019485867,0.0051095574,0.0011176178,0.019911924,0.025049677,0.02101466,0.024310341,-0.012587494,0.030149836,-0.016841803,-0.0013995677,-0.005842627,-0.010356957,0.0064660497,-0.0013196819,0.027317807,-0.0036465512,0.0040287497,0.009135175,0.0256637,-0.0047868816,0.021340469,-0.014761641,-0.019598646,0.018708939,-0.03042552,0.0009774261,-0.0007432511,-0.010018618,-0.0067918585,0.02929772,-0.016403215,-0.0132955015,-0.0040945383,0.0036434184,0.029072162,-0.016302966,0.0052912585,0.0026424965,0.007186588,-0.016365621,-0.0121677015,-0.0077567534,-0.015576162,-0.00046404244,-0.030124774,-0.016942052,0.0019125597,0.015801722,0.009009863,-0.0022305364,-0.0045550563,-0.005551279,0.0031875996,0.026916811,-0.031327758,-0.0012264817,0.0022227045,0.011735379,0.03596427,-0.027793989,-0.0192979,0.011704051,-0.0029244462,-0.023583537,0.0031233777,0.018132508,-0.015651349,-0.00022536407,0.025688764,0.016202718,-0.00942339,0.027944362,-0.024586026,-0.0067417338,0.010331895,0.020287856,0.035112154,-0.016841803,0.020187609,0.012506042,0.007963517,-0.028420543,-0.006534971,0.0011097859,0.0011512951,0.021829182,0.01634056,-0.014749109,-0.0067855925,-0.0037248705,0.012618821,0.010883263,0.00026491538,0.0005525434,0.01509998,0.01362131,0.011553678,0.009699075,0.029473156,0.0021099246,-0.013972181,0.025300298,0.016415747,0.0031359086,-0.0031969978,0.025525859,-0.032906678,-0.019786613,-0.006503643,-0.0019673833,-0.0002339792,-0.0074873343,-0.0031515725,-0.03087664,-0.017205205,-0.02496196,-0.008182811,-0.010569986,-0.013445875,-0.015588693,-0.005817565,-0.03756825,-0.0043702223,0.0013204651,-0.029322783,-0.016365621,0.0025375485,-0.011885752,0.0077818152,-0.0032706182,0.0089534735,-0.004182256,-0.002034738,0.010394551,-0.002405972,-0.009116378,-0.017643794,0.016302966,0.018483378,0.028320294,-0.0022634307,0.025362954,-0.0040318826,0.014385707,-0.0050437693,0.005046902,-0.01908487,-0.0029667388,0.030400459,0.024498308,0.0075437245,0.02474893,-0.01908487,-0.0052066734,0.017731512,-0.0022618643,0.00743721,-0.025738887,-0.015338071,0.008264263,0.0015146972,-0.0032267591,0.0067354683,-0.0016031981,-0.04473604,0.017104957,-0.0014496921,0.026641127,0.011058699,0.008978535,-0.013069942,0.022743953,-0.00036712218,0.015977157,0.0028007017,-0.021340469,-0.018734,-0.0034617174,0.0042135837,0.019360555,0.020926943,-0.006140241,-0.015350603,-0.01624031,0.029874152,-0.0076815668,-0.006121444,-0.015901972,-0.001663504,-0.019310432,-0.0010408649,-0.009498577,-0.0012766062,0.028570917,0.024047188,-0.008721649,0.01509998,-0.027518304,-0.013746621,-0.0048182094,-0.02487424,-0.0016400082,0.0123494025,0.019435743,0.014511018,0.012330607,-0.022518393,0.0024529635,0.0011035203,-0.0032048298,0.002183545,0.03197938,-0.02837042,-0.030500706,0.016954584,0.0023025903,-0.023884283,-0.0224808,0.03313224,0.013358157,-0.0019203917,-0.017167613,-0.006422191,-0.0040068203,0.027944362,-0.009059988,-0.007368289,-0.009617622,0.0027521437,-0.0027787723,0.0017982133,0.00056115846,0.032079626,0.022505863,-0.011685254,-0.015864378,-0.0007734041,-0.01657865,0.020062298,-0.021753997,0.039773725,-0.013934587,0.020525947,-0.043332558,0.008840694,-0.0011834061,-0.032530747,0.004486135,0.0123494025,-0.022104867,-0.03165357,-0.0071928534,0.0010400816,-0.018734,0.020952005,-0.015175167,-0.010206584,0.016353091,0.016891928,-0.0035463024,0.0009641118,-0.0136714345,-0.012844382,-0.010739156,-0.0016321762,-0.0061997636,-0.0003522415,0.011497288,0.0041321316,-0.0039378996,-0.006434722,-0.011879486,-0.0140473675,0.007850736,0.020363044,0.017230269,0.016829273,-0.0047022966,0.029122286,0.003677879,0.013195252,-0.03596427,-0.0021945096,-0.003900306,-0.022418145,0.022969514,0.003298813,-0.02917241,0.010425879,0.017831761,-0.016378153,0.0008160881,-0.00743721,0.015313009,0.018333005,0.016440809,-0.012424589,-0.025124863,0.024473246,-0.009435921,-0.019849269,-0.0039911564,-0.009016129,-0.008164014,-0.028846601,0.009204096,-0.008872022,0.0014622231,-0.02634038,0.0075437245,0.0110273715,-0.024235155,-0.023909345,-0.0071239327,-0.014586205,-0.010839405,0.031077137,-0.033458047,-0.006666547,0.002083296,0.040224843,0.015262884,-0.007850736,0.01395965,0.018245287,-0.0055450136,-0.010964716,0.0008434999,-0.017681388,-0.021979555,0.0022430676,-0.0020049766,-0.03543796,-0.017881885,-0.014636329,-0.020262795,-0.013746621,-0.013145128,0.032981865,0.033783857,0.009580029,0.0077066286,0.011478491,0.008640196,0.04902168,-0.016553588,0.006209162,0.021829182,-0.017180143,-0.014122554,-0.0115975365,-0.021628685,-0.0046678362,0.026315318,0.028696228,0.026215069,0.018646283,-0.016515994,0.006948497,0.020926943,-0.0146112675,-0.00022223129,-0.011766707,-0.006534971,-0.031327758,-0.020388106,0.0025939385,0.004379621,-0.022042211,0.0005568509,0.022831671,0.0017997798,-0.013558654,-0.025563452,0.0023245197,-0.011102558,-0.041653387,0.01622778,0.021064786,0.010939654,-0.009273017,-0.004269974,-0.0044924007,0.0064660497,-0.008445964,-0.0037060739,-0.0045268615,0.0035431697,-0.01714255,0.0027944362,0.005914681,0.009291814,0.005761175,0.0010306833,-0.0071677915,-0.014348114,-0.017493421,0.00811389,0.0035118419,-0.03473622,0.0020973934,0.0037311362,0.0025610444,0.017969603,-0.028420543,-0.017881885,-0.015087449,-0.027518304,0.01794454,0.0071991193,-0.04345787,0.0068983724,-0.004865201,0.010783015,0.0089597395,0.21292852,0.019435743,0.00045307772,0.018132508,0.015162636,0.013157659,-0.00016593923,-0.0043545584,-0.016440809,0.0004934122,-0.004389019,0.0032361576,-0.009855713,-0.010638908,-0.014623798,-0.032656055,-0.02225524,-0.009573763,-0.018546034,0.002579841,0.00008032633,0.018107446,-0.016879397,-0.0023856089,0.019586116,-0.01624031,-0.009354469,0.016165124,0.0031672365,0.009116378,-0.007857002,-0.0026894882,0.02315748,-0.02894685,-0.02293192,-0.0010855069,0.009116378,-0.027443117,0.011102558,0.01680421,-0.0153631335,-0.0020535346,0.0035838957,-0.023307852,0.013533592,0.021879308,-0.0025829738,-0.013458406,-0.010883263,0.01963624,-0.025400547,-0.019774081,0.013784214,0.014435831,-0.00462711,-0.0138719315,0.020601135,0.0013212482,-0.030600956,-0.002362113,0.0030622885,0.014385707,-0.0015726535,0.011741645,-0.01726786,0.025262706,0.00060188456,0.008220404,0.038896546,0.00066884764,-0.0068043894,-0.006729203,0.012092515,0.014297989,-0.031854067,-0.022430675,0.007950986,0.038645923,0.002539115,0.015400726,0.0076001147,0.032229997,-0.008778038,-0.024197562,-0.012192764,-0.013608779,0.004363957,0.0027208158,-0.016829273,-0.010626376,0.00947978,0.0018342403,-0.014761641,-0.021277815,-0.008696586,-0.004517463,0.021841714,0.040575713,-0.0151876975,0.00897227,0.014160147,0.021879308,-0.008815631,-0.0020691985,-0.0018029126,-0.025149925,0.0074748034,0.028671166,-0.011108823,-0.015500976,0.0093419375,-0.030701205,-0.00062224764,-0.020463293,-0.007048746,0.0005094677,0.0148117645,-0.018859312,-0.0055732084,0.0037624638,0.03303199,-0.032179873,-0.022581048,0.0032455558,-0.00036555578,-0.03087664,0.007355758,-0.010645173,-0.011547412,-0.0363402,0.0041008038,0.014836827,0.01373409,-0.03959829,-0.02624013,0.025337892,0.028520793,0.02451084,0.00075147464,0.0050688316,-0.0047743507,0.0016133796,0.0058520255,-0.022530925,0.0031954315,-0.02837042,0.039548162,0.005369578,-0.021553498,0.009009863,-0.010262974,-0.025237642,-0.007969782,-0.016666368,0.042204756,-0.00036144402,-0.02929772,-0.035262525,0.0072116503,0.013746621,-0.028595978,-0.027944362,0.033257548,-0.009191564,-0.02236802,0.004420347,-0.15658867,0.014034837,-0.020074828,0.014335583,0.0027960024,0.0192979,0.0025814073,-0.022443207,-0.007224181,0.012694008,0.00024553132,-0.009059988,0.008828162,-0.0044078156,-0.008157749,-0.0018420722,-0.03849555,0.022806609,-0.0071928534,0.000020130534,0.0052943914,0.005617067,0.004865201,-0.017643794,0.036816385,0.016854335,-0.034209915,0.03328261,-0.0062436224,-0.031478133,-0.01805732,0.0140473675,0.007568787,0.0057517765,0.017330516,0.021365533,0.0033771326,-0.0009844749,0.009354469,0.018633751,0.0077254255,-0.00479628,-0.016779147,0.010576252,-0.011503553,0.030275147,0.009103847,-0.0004918458,-0.0032894148,-0.02894685,0.0021569163,-0.019360555,0.005131487,0.0036998084,0.021165034,0.023871753,0.008909615,0.008207873,-0.019999642,0.010062477,0.002963606,-0.004940388,0.009661481,-0.007938454,0.0025124864,-0.01759367,-0.0013815542,-0.017794168,-0.029548343,0.017631263,-0.021728935,-0.013521061,0.0029886682,0.0063000126,0.0015734368,-0.011547412,-0.025814073,0.015262884,0.0010142362,0.006628954,-0.010137663,0.04882118,-0.009937165,0.012079984,-0.0018953294,-0.005842627,0.022806609,-0.005438499,0.024886772,-0.026490754,0.017305454,-0.014360645,-0.011397039,-0.0012507607,0.011923346,0.00817028,0.008057499,-0.008076296,0.026716314,0.0019517194,0.03122751,0.008909615,-0.027994486,0.0181701,0.005300657,0.005037504,0.0016682032,0.0063250745,0.020463293,-0.016277904,-0.022756485,0.01283185,0.013333094,0.026014572,0.022906858,0.006112046,0.009605091,-0.023608599,0.012781726,-0.017042302,0.050375037,-0.013696496,-0.028921787,0.014385707,-0.00053061394,0.017618733,-0.09037432,-0.032731242,0.003173502,0.018708939,-0.0005106425,-0.00024181114,0.0155511,0.03942285,-0.011879486,0.01849591,-0.00009187844,-0.029874152,-0.0042104507,-0.010250443,0.016039813,-0.0025015215,0.018470846,0.0024529635,0.023972,0.018771594,-0.026039634,-0.015450851,-0.007161526,-0.0091414405,-0.00032894147,-0.004279372,-0.014373176,-0.0019423211,-0.0006664981,0.0075875833,0.008778038,-0.008445964,0.010632642,-0.021528436,0.00766277,-0.008684055,-0.03506203,-0.002462362,0.036841445,-0.032781366,-0.0041791233,0.00912891,0.01600222,-0.019034747,-0.009053723,-0.015049855,-0.009498577,-0.005566943,0.027994486,-0.019222714,-0.002272829,-0.008796835,-0.017355578,-0.008082562,0.029097224,0.00023143382,0.006910904,0.03165357,-0.01004368,-0.011779238,-0.0022289702,0.014435831,-0.016027281,0.023671255,-0.0021099246,0.001953286,0.008890818,-0.012919568,0.016428277,-0.0044924007,-0.016202718,0.019824207,-0.022067273,0.01746836,-0.03576377,0.009749198,-0.012593759,-0.02634038,-0.022468269,-0.0061496394,-0.031302698,-0.029197471,-0.027267681,-0.011453429,0.01701724,-0.013784214,0.020851757,0.0023715114,-0.016114999,-0.022606112,0.001215517,0.0028978176,0.0060149296,-0.004316965,-0.004000555,0.008840694,-0.020713914,-0.005858291,0.01221156,-0.039698537,-0.027317807,-0.011315587,-0.04052559,0.014110023,-0.012374465,-0.028445605,0.0073933513,-0.011277993,0.0061747013,-0.01714255,-0.01963624,-0.0013306466,-0.007506131,0.02724262,-0.0012460616,-0.007900861,-0.013596248,-0.017242799,0.024886772,0.0006907771,0.023683786,0.0077943467,0.010939654,-0.012531104,-0.0027020192,0.008608868,0.029824028,0.027267681,0.000839584,0.015313009,-0.0075750523,-0.004448542,0.009022395,-0.039999284,0.019222714,0.011447163,0.029523281,-0.031603444,0.021378063,0.018884374,-0.0055857394,0.0054228352,0.0015146972,-0.017856823,0.0071991193,-0.0125499,-0.010494799,-0.0080136405,0.006628954,0.024335403,0.015814252,-0.008991067,0.04303181,0.041051894,-0.0021365532,-0.010444675,-0.013245377,-0.020738976,0.016265374,-0.010388285,0.017631263,-0.008934677,0.03280643,0.005203541,0.009486046,-0.0067730616,0.029423032,0.010363223,-0.029924275,-0.0024983888,0.019435743,-0.035513148,0.002651895,-0.007863267,-0.005319454,-0.0055418806,0.032530747,0.01350853,0.011447163,-0.016829273,0.006390863,-0.0071803224,0.014686454,-0.0028022681,-0.012593759,0.012042391,0.019348023,0.018458316,0.00077810325,0.022393083,-0.005999266,-0.00023300022,-0.024911834,-0.010613845,-0.014974669,-0.008032437,0.01919765,0.025250174,0.008590071,-0.001824842,-0.009059988,0.022267772,0.013633841,-0.0026158679,-0.00020382623,-0.006779327,-0.0027991354,-0.0027270815,-0.044911478,-0.013909525,-0.029899213,0.0064911116,0.018621221,0.0104760025,0.015726535,0.023433164,-0.002183545,-0.00473989,-0.000036442994,-0.038896546,-0.018145038,0.02964859,0.0019344891,0.00007543137,-0.008514885,-0.018896904,0.033859044,-0.0021553498,0.0034053274,0.014385707,-0.001275823,0.016616244,-0.020588603,-0.0030873506,-0.016716493,-0.02849573,0.0021631818,-0.026666189,-0.012173967,0.0027364797,0.007299368,0.05232989,0.004924724,-0.021127442,-0.012919568,0.025049677,-0.0014175811,0.029047098,-0.0030325272,0.0093356725,-0.006829452,-0.006654016,0.016891928,0.016741555,-0.03200444,-0.0098995725,-0.0117855035,-0.002879021,0.013583717,-0.02598951,-0.016553588,0.0022430676,0.0057110507,0.00638773,0.00087874365,-0.02087682,-0.008514885,-0.004263708,0.0023104222,0.00833945,-0.048771057,0.024322873,-0.00451433,0.009861979,0.008677789,0.016302966,-0.031177387,-0.004542525,0.013408281,0.037643436,0.013922056,-0.020124953,0.038470488,-0.0061151786,0.010970982,-0.02669125,-0.011735379,-0.01850844,0.030250086,-0.02624013]},{\"id\":\"11c49732-651d-4dcb-a2d1-f49b16e0939e\",\"text\":\"Blendjets  are very good and I love the new lids and cords!\",\"vector\":[-0.019871539,-0.012086602,-0.0017281069,-0.032492466,0.011721366,0.0010897894,0.0073114815,-0.012539766,0.014582381,-0.025363604,0.0061143194,0.019952701,-0.036090717,-0.026405202,-0.007034173,0.010558022,0.010598605,0.011471112,0.005191084,-0.02720331,-0.021900626,0.0060940282,0.007866099,-0.02276637,0.0017619249,0.0018836702,-0.0027747783,-0.004944212,0.0064220643,0.014230672,0.025038948,0.025985857,-0.033682864,-0.008217808,0.0005279857,-0.0036455952,-0.015583398,-0.01487998,0.010882677,-0.0026564146,0.015136998,-0.0057321745,0.002345288,-0.0006484628,-0.032492466,0.01896521,-0.0069733,0.008758898,0.00033310865,0.0057490836,0.023429206,0.016814377,-0.007940499,-0.0055157384,0.01347991,-0.021860044,-0.007257372,-0.0018599975,0.030463379,-0.00421374,0.002397706,0.007940499,-0.033791084,0.011816057,0.006445737,-0.0031163413,-0.027095092,-0.0074940994,0.014988199,0.0061143194,0.010923258,-0.0036827952,0.023767387,-0.004697339,-0.009225588,-0.007879626,-0.027013928,-0.013006455,-0.004298285,0.008941515,0.021346008,-0.013791037,-0.022779897,0.02873189,0.0049239206,-0.00004391074,0.0012030803,0.013973654,-0.013831618,-0.007061227,-0.0065438095,0.024579022,0.007859335,0.0034071773,-0.02740622,0.036036607,0.0014288164,0.0016816069,0.0134122735,-0.029841125,-0.012749438,0.0073317722,-0.012573583,-0.016692633,-0.024551967,-0.014866454,0.008684497,0.0023013242,0.041826274,0.010206314,-0.010977368,0.0034798863,0.0077105355,-0.034223955,0.012424784,-0.01057155,-0.0107947495,0.008468062,-0.0061481376,-0.019993283,0.01745016,0.025106585,0.037632823,-0.009773442,0.016570887,0.014135982,-0.028353127,-0.011572567,-0.00559352,0.013385219,0.027974363,0.042637907,-0.0014017618,-0.009651696,-0.011464349,0.02035852,-0.0054514837,0.00015218162,-0.01601627,0.010727113,0.0043185763,0.027636182,-0.0151775805,0.014650017,-0.010828568,0.013736928,0.0070138816,0.01793714,0.012242165,-0.01279002,0.0021626698,-0.031572614,0.01592158,0.0048698117,0.0035001773,0.017125504,0.02030441,0.015366961,-0.014528272,0.0020967245,-0.018505285,-0.02444375,0.027703818,0.00064804003,0.013851909,0.021251317,0.0056374837,-0.0120189665,-0.002578633,0.010821804,0.022482298,0.0077781714,-0.030192833,0.020520845,-0.008637153,0.030733922,0.015853943,0.0033513773,-0.024416694,-0.013588128,0.012505948,0.004974648,0.009773442,0.013682818,-0.013026747,-0.027582074,0.02153539,-0.010064278,0.0033074138,-0.010294241,0.007061227,0.019587465,-0.028028473,-0.016029797,-0.6471439,-0.034088682,0.03611777,-0.008461298,0.029787015,0.029110653,0.018464703,0.0011422076,-0.018207686,0.0025887785,-0.008738607,0.013216129,0.0113087855,0.018735249,0.0047818846,-0.012722383,0.008772424,-0.004663521,0.0027020692,-0.0049103936,-0.04150162,0.013094383,-0.010666241,-0.006652028,0.00019445429,-0.011423767,0.053216223,-0.0017365613,0.0027105238,0.0026276694,-0.012505948,0.023821495,-0.014893508,-0.013906018,0.04361187,0.005461629,-0.01571867,0.035495516,0.012708856,0.028271964,-0.040527657,-0.018126521,0.0027460328,0.013446092,0.0014093709,0.013391983,0.026689274,0.014203617,0.0102266045,-0.011058531,0.011701075,-0.005884356,0.0028085962,0.010314532,0.009103843,-0.00065776275,0.028190799,0.0007283581,0.015840415,0.021427171,-0.0117619485,0.013047038,-0.034710936,-0.006445737,-0.00005347493,0.009009152,-0.048075866,-0.027609127,0.027189782,-0.03887733,-0.00137048,-0.00026124512,-0.013689582,-0.0009917169,0.00926617,0.015421071,0.036929406,0.007074754,0.009699042,0.010828568,0.025566513,-0.017964195,0.010003405,-0.012959111,0.029354144,-0.0034257774,0.0003016155,-0.005079484,0.004443703,-0.015651034,0.017274305,0.034656826,0.022360552,-0.013094383,-0.0021271608,-0.0027105238,-0.017801868,-0.005049048,0.019776847,-0.019519828,-0.00005590561,-0.012012202,0.0040886127,0.0066486457,-0.010023696,0.014027763,0.004301667,0.007534681,-0.010835331,-0.011619912,0.0072167907,0.00081248075,-0.0045248666,-0.029056543,-0.0010923259,-0.028704835,0.01814005,0.015366961,0.0030081233,-0.02897538,-0.0011827893,-0.0077240625,-0.010713586,-0.00032275185,-0.026892183,0.01808594,0.017815394,-0.013243183,-0.027419746,-0.013101147,0.01872172,0.029218871,-0.0003189473,0.010855623,-0.0045519215,0.014771762,0.0005068493,-0.02897538,0.02474135,-0.037172895,-0.0073791174,0.023253351,-0.020439683,-0.020372046,0.003233014,-0.01502878,-0.023266878,-0.0040547946,-0.021697717,-0.012350384,0.0017906703,0.0043490124,-0.01769365,0.0035441408,0.034521554,0.003628686,-0.02231997,-0.015989216,-0.017707177,-0.0049847933,-0.0014507981,0.019046376,-0.004321958,-0.016083905,0.00023862923,-0.002049379,-0.0031433958,-0.010923258,-0.024579022,-0.04234031,-0.011403476,0.0008145944,0.0007976853,0.011619912,0.0007423081,-0.011843111,-0.008069008,0.0012047711,0.026405202,-0.0007524536,0.016882014,-0.008589807,-0.010984131,0.0022184697,0.033385266,0.00046415394,0.015502234,0.017558377,-0.023280406,0.022455243,-0.0063442825,0.01448769,-0.005366938,-0.016462669,-0.015651034,-0.012235402,0.003102814,0.018829938,0.018126521,-0.002250597,0.03222192,-0.036929406,0.024903676,-0.0073452992,0.011971621,-0.025052477,0.0100845685,-0.006046683,-0.0099695865,0.04085231,0.019776847,-0.01226922,-0.017774813,-0.00040159037,0.023929713,-0.0045891213,0.016300343,0.012986165,-0.02119721,-0.021508336,-0.024037933,0.0055055926,0.0027257418,-0.0011041622,-0.018126521,0.012235402,0.013310819,0.008880643,0.000971426,-0.013290528,-0.0030605413,0.02444375,0.008116353,0.008799479,0.00894828,-0.0027899963,0.029300034,-0.01739605,0.040879365,0.006334137,0.020223247,-0.0007435763,-0.0134393275,0.0037639588,0.022888115,-0.00468043,0.038200967,-0.004281376,-0.00040814266,-0.0033395411,-0.008792716,-0.021941207,-0.0031281777,0.00497803,0.014582381,-0.040798202,0.00033543364,0.01318231,0.0047717392,0.011166749,-0.004179922,0.018829938,0.011606385,0.0030419414,0.006499846,0.023875605,-0.02399735,-0.03370992,0.0038789404,0.015691616,-0.011606385,-0.0064930823,0.0064322096,-0.03725406,0.02213059,0.0022590517,0.0049340664,0.007913444,-0.014271254,0.019682156,0.0041427216,-0.025918221,0.0074196993,0.0050591934,-0.0022387607,-0.004994939,-0.0149205625,-0.008332789,-0.018640557,0.055407636,0.026729856,0.003848504,-0.0138113275,-0.0029252688,0.03814686,-0.009327042,0.020953719,-0.02897538,0.01892463,-0.003956722,0.0015311162,-0.0045654485,-0.047480665,-0.039986566,0.024037933,0.01005075,-0.0029996687,-0.017111978,-0.015461653,-0.03346643,0.009861369,-0.022685207,-0.014149508,-0.027812036,0.0071288636,-0.010287478,-0.010990894,-0.0284884,0.011207331,0.000485713,-0.01784245,-0.0018498522,-0.031951375,0.024808986,0.095231876,0.019276338,0.0040784674,0.0142442,0.007791699,-0.014731181,-0.017260777,-0.0028390326,-0.003358141,-0.0021356153,0.0019327066,0.0070476998,-0.008082535,-0.012593875,0.0064558825,0.0043997397,-0.018410593,-0.009124134,-0.01005075,-0.033818137,0.009617878,-0.0031822866,0.018464703,0.0057085017,0.026986873,0.015015253,0.028217854,0.024010878,0.020561427,-0.0029371053,-0.0076767174,-0.005011848,-0.016151542,0.004562067,-0.03173494,-0.0067129005,0.024944259,-0.026161712,0.00926617,0.014812344,0.02582353,0.03138323,0.012194821,-0.014474163,0.0009105533,-0.0063206097,-0.021427171,0.015109944,0.010016932,-0.020317936,0.013134965,-0.009448787,0.0057795197,0.00743999,0.019046376,0.025782948,-0.030869195,-0.021603025,-0.00014087367,-0.016435616,-0.01271562,-0.023388624,-0.0013028438,-0.0032448503,-0.009239115,-0.028217854,-0.013466382,-0.013162019,-0.024754876,-0.02163008,-0.016286815,-0.012181293,-0.002145761,-0.00048740392,0.027812036,0.022455243,0.020710228,0.0043185763,0.036361262,0.025647676,0.014974671,0.006939482,0.009536715,-0.01739605,0.0028627054,-0.010551259,0.018356485,0.025011895,0.009225588,0.011937803,0.027284473,0.0058370107,0.012472129,-0.013919545,-0.009895187,0.00872508,0.019154593,0.017166087,-0.026770437,0.0027105238,0.0012588801,-0.011011185,0.014568853,0.010882677,0.015421071,0.012458602,-0.005793047,0.009577297,-0.019262811,0.031410284,0.02049379,-0.002416306,-0.010280713,0.0062157735,-0.005214757,0.030382214,-0.0013214437,-0.019398084,-0.015935106,-0.009076788,-0.022035899,-0.02192768,0.03262774,-0.007717299,-0.016056852,0.00508963,0.015759252,-0.022698734,-0.024646658,0.023564478,-0.008096062,0.02843429,0.0032363958,-0.00023482469,-0.02453844,-0.018153576,-0.011694312,0.03251952,-0.015150526,0.0012445075,-0.04234031,-0.009110606,0.015853943,-0.009049733,-0.03178905,-0.022252334,-0.022157643,0.022482298,-0.007933735,0.033033557,-0.0017230341,0.0071221,-0.02079139,-0.02079139,-0.012411256,-0.02192768,-0.026797492,-0.013906018,0.020669645,0.021805935,0.031870212,-0.009090316,0.0038620313,-0.018221213,-0.0045992667,-0.0005685674,-0.014325363,-0.0027849237,-0.015556343,0.0072911903,0.0014212072,-0.018586447,-0.0057254108,0.00624621,-0.015231689,-0.0068549365,-0.0060737375,-0.018045358,0.008907697,-0.043395434,0.023320988,-0.0123300925,0.0011016259,-0.010869149,-0.0026851601,0.0039499584,-0.009739623,0.0013019983,-0.011200567,0.0030892869,0.026743382,-0.008265153,0.0025279059,-0.009225588,-0.001670616,0.012979401,-0.012350384,-0.027338583,-0.020534374,0.010470095,0.030923305,0.021400118,-0.0146635445,-0.002396015,0.00881977,0.004173158,-0.0013028438,-0.026946291,0.012255693,-0.024511386,0.016922597,-0.023970297,-0.05562407,-0.015759252,-0.0124180205,0.0021170154,-0.0025870875,0.004944212,0.0015226617,-0.01616507,-0.001778834,0.01310791,0.024673713,-0.0047886483,0.0035001773,0.032357194,0.0009824169,0.001642716,-0.014135982,0.008170462,-0.013473146,0.003341232,0.045072813,-0.021413645,0.004863048,0.001353571,0.010280713,-0.009895187,-0.009820787,-0.0017839067,-0.0024737967,0.009665224,-0.023916187,-0.019573938,-0.018694667,0.022049425,0.0065099914,0.0056408653,-0.0027730872,0.0034004138,0.008468062,0.04085231,-0.007318245,0.005647629,-0.00009072772,0.01003046,0.00010045044,-0.006466028,-0.006100792,-0.01970921,-0.0037267588,0.031410284,0.009448787,0.001144744,0.022671679,-0.0016308797,-0.00919177,-0.0019631428,0.005847156,0.024795458,-0.016476197,-0.015623979,0.00628341,-0.0015801524,0.019682156,-0.03833624,-0.019898592,-0.0044234125,0.019871539,-0.0143794725,-0.001998652,0.001107544,-0.0060027195,-0.015610452,-0.015745725,-0.0042779944,-0.02612113,-0.007575263,0.0083192615,-0.025417712,-0.023118079,-0.01916812,-0.013391983,0.008508643,0.018762304,-0.010984131,0.007406172,0.027703818,-0.0062495917,0.0077240625,-0.004281376,0.01566456,-0.019343974,0.00036882906,0.0008509489,-0.024511386,0.007027409,0.00035255408,-0.023929713,-0.020047393,0.00043244942,0.011072058,0.009929005,0.0061278464,0.027379164,-0.003177214,0.01487998,-0.032465413,-0.03095036,0.023645641,-0.023767387,0.036253043,0.024092041,-0.022103535,-0.005826865,0.017964195,-0.00011720098,-0.0071964995,-0.026161712,-0.0092864605,-0.014677072,0.0050050844,-0.0013620255,-0.011234385,0.014217145,-0.0062867915,-0.009171478,-0.0051403567,0.020480264,0.00341225,0.011822821,0.022090007,0.010064278,0.02552593,-0.0123030385,-0.012167766,-0.0137978,-0.009198533,-0.00008480955,0.00042949035,0.021156628,0.0362801,0.008555989,0.0005525038,-0.017368995,-0.026053494,-0.018451177,0.012093366,-0.030977413,0.01901932,0.0069597727,0.0039668675,-0.0016359524,0.011525221,0.009408206,0.010645949,0.0029015963,-0.018911103,0.007115336,0.0119039845,0.0057795197,-0.028948326,-0.046452593,-0.013337874,0.020439683,0.01502878,0.023550952,-0.0026496511,-0.023780914,-0.009705805,-0.020507319,0.009063261,0.019235756,0.0133514,-0.0076293717,-0.021657135,-0.037389334,0.013304056,0.009915478,-0.0016875251,-0.017125504,0.014149508,0.010253659,-0.00958406,-0.01118704,-0.004031122,0.012472129,0.00008819136,-0.004430176,-0.014825871,-0.0017855976,0.030733922,0.017314887,-0.0059283194,-0.0017179614,0.0058403923,-0.007257372,-0.02360506,0.019533357,-0.026581056,-0.011741658,-0.0149205625,0.012992929,-0.030301051,-0.017977722,-0.010530968,-0.007642899,-0.016882014,-0.0018971976,-0.0060940282,-0.025417712,0.0030537779,-0.0031518503,0.015448125,0.010355114,-0.0033327774,0.017328413,-0.049780298,0.007426463,0.021373063,-0.011268203,-0.032438356,0.011592858,0.012573583,0.008238099,-0.0039905403,0.22022371,-0.009279697,0.0014110617,0.051782332,0.0023824878,-0.0012132257,0.01793714,-0.0050050844,0.015055835,0.016990231,0.0068786093,0.011498167,-0.016489724,-0.002396015,0.011180276,-0.00059562194,-0.038958494,-0.018302375,-0.00040433812,0.008907697,-0.0149476165,0.004301667,0.02163008,-0.0045891213,0.007994608,0.00004462409,-0.006662173,0.025755893,0.018613502,0.010612131,-0.019587465,-0.0051133023,0.00896857,-0.017098451,0.025593566,-0.014609436,0.0017703795,0.0018447794,0.015055835,-0.012634456,-0.019898592,0.00083277165,0.013087619,-0.009644933,0.0146905985,0.011849876,-0.02231997,-0.001208153,0.031112686,0.024281424,-0.012289511,0.0024619603,0.009340569,0.009949296,0.01017926,-0.0152046345,0.0035238499,-0.018126521,-0.008698025,-0.023835024,0.005079484,0.029705852,-0.016652051,0.00872508,-0.009820787,0.00012850892,0.00827868,-0.016841432,0.022157643,-0.004575594,0.015799833,-0.010639186,-0.026635164,0.029137706,-0.026202293,-0.022752844,0.027812036,0.012668274,0.018829938,0.031653777,0.010131914,0.007697008,-0.0067061367,-0.005461629,-0.0062225373,-0.04326016,0.004920539,-0.0023334515,0.010287478,0.0022675062,0.019830955,0.004010831,0.0005313675,0.0005787129,0.02636462,-0.00021622471,-0.01027395,0.012776492,-0.010267187,0.023172189,-0.032194868,0.00089110795,0.024673713,0.0044166488,-0.0026242875,0.009665224,-0.016138015,0.018505285,-0.0018633794,0.000053369247,-0.019303393,-0.021264846,0.018464703,0.016638523,-0.015853943,0.014203617,-0.0015835343,-0.0035509043,0.013114674,-0.0131552555,0.029705852,0.0032482322,0.022793425,-0.005431193,-0.004683812,0.0036050135,-0.0063611916,0.009929005,-0.005688211,-0.030490432,0.0060805012,0.007385881,0.017139032,-0.054866545,-0.006445737,0.00064000825,-0.0033682864,-0.001288471,0.0014288164,-0.011220858,-0.028840108,0.010321296,0.018194158,-0.0018312521,0.017666595,-0.017612485,0.01674674,-0.019005794,-0.024524914,-0.018681139,-0.006804209,0.029056543,-0.013865436,-0.002289488,0.029922288,-0.016922597,-0.033033557,-0.01571867,-0.012147475,0.015272271,-0.043395434,0.003178905,0.027473856,-0.0030453233,-0.01749074,-0.02227939,-0.17358173,0.025444767,-0.0011650348,-0.013364928,-0.00014351572,-0.019141065,-0.00065269007,0.011227622,-0.01916812,0.008190753,0.024308477,0.01094355,-0.03503559,-0.020629063,0.017855976,-0.027379164,0.00563072,0.008366607,0.024186732,0.007135627,0.030165778,-0.021034881,0.024416694,-0.0051640295,0.008062244,-0.0034071773,0.004575594,-0.0019208702,-0.0026800875,-0.007372354,-0.0037808677,-0.026337566,0.03701057,0.0064930823,0.033736974,0.0035847225,0.005975665,0.0029878325,0.025945274,0.02414615,0.013919545,0.0027578692,0.012289511,0.0026953055,-0.0026800875,0.020886082,0.009739623,-0.0034967954,-0.006425446,-0.012817075,0.014893508,-0.031545557,-0.019885065,-0.00279676,0.0057085017,-0.0024010877,-0.009726096,0.017477214,0.002105179,-0.018559394,0.027974363,-0.036442425,-0.0028931417,-0.0039262855,-0.015461653,-0.013919545,-0.008217808,-0.01249242,-0.010537731,0.0054920656,0.00087842613,0.002906669,0.018843466,-0.0011954712,0.015745725,0.013649,-0.03533319,0.016435616,0.014988199,-0.021805935,-0.020669645,0.031464394,-0.004433558,0.0005313675,-0.022658153,0.013391983,-0.027162729,-0.0054683927,-0.011200567,-0.0023351423,0.01847823,-0.033439375,0.0032921957,0.007385881,-0.0055123563,0.023713278,0.017815394,0.010145442,0.0019411611,-0.0051335935,-0.0041258126,0.008102826,-0.022103535,0.03178905,0.03349348,-0.0062394463,0.004210358,0.02291517,0.017801868,-0.006723046,-0.029624688,0.02567473,0.030977413,0.021129573,0.012032493,0.021454226,0.006340901,-0.03130207,0.04163689,-0.017964195,0.018491758,0.023794442,-0.0021897245,0.0037504314,-0.015299326,0.0008412262,-0.09885718,-0.037416387,0.027027456,0.019952701,-0.01793714,-0.0034021046,0.0001984702,0.03143734,0.0015750797,0.032925338,0.02449786,-0.018437648,-0.028353127,0.016043324,0.037362278,-0.016584415,-0.013121437,-0.030598652,-0.018586447,0.0013070711,-0.0020730519,0.004308431,-0.030490432,0.010558022,0.0012656437,-0.019425139,-0.027243892,0.017517796,0.023821495,-0.01012515,0.004883339,0.0077240625,-0.0070071183,-0.025701784,-0.024267895,0.0075955535,-0.004298285,0.010639186,0.032059595,-0.038119804,-0.0062022465,0.0012419712,0.0038586494,-0.032248978,-0.018397067,0.009895187,0.010970604,-0.007954026,0.026378147,0.00475483,-0.03370992,-0.0047987937,-0.013391983,-0.017287832,0.030328106,-0.028136691,0.009523188,-0.0033006503,-0.026188767,-0.0056983563,-0.011207331,0.0018684521,-0.030815087,0.018897574,-0.019235756,-0.007115336,-0.019871539,-0.029787015,0.022347026,-0.039986566,0.00096466235,-0.0040175947,-0.02365917,0.020507319,-0.026554001,0.0039296676,-0.0064964644,-0.009178243,-0.002959087,-0.015218162,-0.0068177367,-0.013608418,-0.005664538,-0.028299017,0.047020737,0.016043324,0.0012833984,-0.011254676,-0.010016932,-0.0049408297,0.0023199243,0.0021170154,0.029597634,-0.008907697,-0.03222192,0.01057155,-0.0041122856,-0.0033598319,0.048454627,0.013973654,-0.030598652,-0.007115336,-0.0623877,0.026378147,0.005214757,-0.007839045,0.032140758,-0.021102518,-0.0006028083,-0.026932765,0.01970921,-0.0013806254,0.00820428,-0.007372354,-0.009475842,-0.022793425,-0.009753151,-0.015637508,0.036198933,0.016773796,0.020426154,-0.017774813,0.008589807,0.005759229,0.0033124865,0.019966228,-0.01872172,-0.0017204977,-0.010740641,0.019736266,-0.006445737,-0.01059184,0.015691616,-0.026256401,0.029300034,0.025593566,-0.02119721,-0.03473799,-0.0033141775,0.0135746,0.0048427572,-0.07228965,-0.010605368,-0.018004777,0.013087619,-0.0028559417,-0.010253659,-0.025241857,-0.015705142,-0.002615833,0.010470095,0.025404185,0.012654747,0.003520468,-0.004230649,-0.029489417,0.0031738323,-0.0063138464,0.028001418,-0.0020476882,-0.0017991249,-0.031707887,0.028244909,0.0062090103,0.0037876314,-0.028704835,0.021467753,-0.0027291237,-0.02075081,-0.0043321033,0.017341942,-0.00820428,-0.0066486457,0.00092661695,0.014812344,0.020439683,0.0026919236,-0.022996334,0.004704103,-0.015164053,-0.013906018,0.015380489,-0.0070544635,-0.013425801,-0.015136998,-0.0062800283,0.0032820501,0.00894828,-0.02582353,0.005414284,-0.002248906,0.010470095,-0.03606366,-0.012032493,0.005958756,0.011559039,0.0012791711,0.035360243,-0.021454226,0.011288494,-0.0073791174,0.009638169,-0.0039601037,0.008799479,-0.012215111,-0.014149508,-0.0015429525,0.020290883,-0.008704789,-0.022401134,0.006229301,0.008339553,0.030788032,-0.001070344,0.008941515,0.02252288,0.0027713964,-0.008657443,-0.011525221,-0.015732197,-0.0058031925,0.020412628,0.03490032,0.005431193,0.02843429,-0.010294241,0.0152046345,0.021954736,0.009874896,-0.0026090692,0.013878964,0.025350075,0.015042308,-0.019628046,-0.014514744,-0.0076158447,-0.0014727799,-0.020033864,-0.014798817,0.040284164,-0.02094019,0.06411919,-0.018545866,-0.029408252,0.0089753335,-0.017977722,0.04155573,0.00850188,0.0057457015,-0.0021474517,-0.012850892,-0.0018211066,-0.0011210713,-0.016327396,0.004825848,-0.015975688,-0.020182664,-0.00007212775,0.0016832978,-0.022062954,0.011254676,0.026175238,-0.0066554095,0.01165373,0.007074754,-0.01838354,-0.012722383,0.025160694,-0.021332482,0.0012039257,-0.0089753335,0.024511386,-0.0072844266,-0.047237173,-0.007967553,0.019641574,0.0040717036,-0.010314532,0.0026767056,-0.0036219226,0.025336549,0.007825517,0.015799833,-0.026811019,-0.015015253,0.044775214,0.005143739,-0.020196192,-0.023794442,-0.027582074]},{\"id\":\"ee82697b-da17-4074-bf8c-4e1f71ee914d\",\"text\":\"I haven’t even gotten the full size product yet. PLEASE stop harassing me about posting about it! Give me a dang minute \",\"vector\":[-0.016565567,0.0020090777,0.008834105,-0.0136987,0.005792111,0.015761288,-0.00877573,0.0009510283,-0.010838318,-0.034635916,0.026696898,-0.005072151,-0.011538819,-0.02257172,0.005062422,-0.0032803586,0.026528258,0.009677301,0.010585358,-0.012135543,0.005516451,-0.00065915263,-0.009696759,-0.0060937162,-0.015709398,-0.0047932477,0.0273974,-0.026489342,-0.0035641266,0.009138953,-0.0062883,0.0103324,-0.004660282,-0.017525515,-0.0035706128,-0.001966918,0.011499902,0.0026787703,0.0005926698,-0.015086731,0.0012899284,-0.0056040133,0.008010366,-0.018978406,-0.029836183,0.01165557,-0.013173323,-0.029550793,-0.014892147,0.00024971587,0.015073759,-0.003479807,-0.0422636,-0.019847548,-0.0044202954,-0.007647143,0.027086064,0.009048147,0.016799068,0.004757574,-0.00017917925,0.009677301,-0.016747179,-0.015333204,0.0010864262,0.007154198,-0.019030295,0.003431161,-0.0013385743,0.0050105327,0.012518224,0.016189372,0.0098653985,-0.0034635917,0.021482052,-0.004760817,0.012537682,0.023350056,0.019289741,-0.019471353,0.030692352,0.004864595,0.0032398202,0.0034538624,0.030199407,0.036944978,0.011331263,0.00067820563,-0.004251656,-0.024011642,0.014515951,0.008639521,-0.021845276,0.022117691,-0.009683787,0.0008071174,0.008853563,0.033079248,-0.012913878,-0.0018209801,-0.00029086226,0.007264462,-0.025010504,-0.00929462,-0.039824817,0.0012907392,-0.0033241399,-0.016098566,0.0023106826,-0.013530061,-0.026852565,0.010312942,0.008717354,-0.000844818,0.016228288,-0.0112988325,0.009080578,-0.0025506692,-0.009644871,-0.04874973,0.011778806,0.009164897,0.024686199,0.011908528,0.01749957,-0.01629315,-0.026748786,-0.014061922,0.020444272,0.0065412587,0.01188907,0.031911742,0.015696427,-0.013238184,-0.013361421,0.017253097,-0.033520304,0.015398065,0.019938353,-0.020068076,0.0040213987,0.045454774,-0.008263325,0.0014674861,-0.015605621,0.00961244,0.017603347,0.026281785,-0.015268343,-0.019432435,0.013711671,0.006752058,0.018238988,0.0072450037,-0.0034052166,0.014087867,-0.018238988,0.034817528,-0.0029479447,-0.011934473,0.009476231,0.0038203285,-0.010202677,-0.009424342,0.003129556,0.033364635,0.051058788,-0.0115582775,-0.017707126,-0.008185492,-0.024932671,0.025529394,0.0059704795,0.0080882,-0.0083671035,0.015735343,0.009586495,-0.010267539,0.010436178,-0.018680045,-0.022493888,-0.011577737,0.016552595,-0.0006619903,0.0031668514,-0.019756742,0.043093827,-0.0032479279,0.01364681,-0.015449954,0.00400194,0.024673225,0.023376001,-0.0017301743,-0.6326308,-0.021572858,0.012563627,0.012589572,-0.010948582,0.021520969,0.0048905397,0.027189843,-0.015229425,0.0512404,-0.00624614,0.0033468413,-0.0024501344,-0.02371328,-0.0017220667,0.0062007373,0.010779942,-0.019834576,-0.0042776004,0.00028295728,-0.026722843,0.0069401558,-0.010189705,-0.0032495495,-0.003933836,-0.022727387,0.024945643,0.01945838,-0.003933836,0.010702109,-0.00082292734,0.023285195,-0.01813521,0.008834105,0.071243614,-0.026748786,0.015462926,0.014269479,0.011454499,0.0045370455,-0.048879452,-0.0023398702,0.008133603,-0.027086064,-0.012472821,0.00035511542,0.03154852,-0.009858913,0.004673254,0.009190842,0.009443801,0.0055586104,0.0018907059,0.007154198,0.0029803752,-0.01714932,0.030095628,0.024102448,-0.011752862,0.014632702,-0.021118829,0.015592649,-0.0074460735,-0.014269479,-0.01714932,0.03160041,-0.0029025418,-0.0033533275,0.015955871,0.018524379,0.007763894,0.02309061,-0.016072622,0.021443134,0.03045885,0.022844138,0.011623139,0.006862322,0.019912409,0.009884857,0.009573523,-0.020989105,-0.018200072,-0.0051953876,0.033883527,-0.0072060865,-0.00488081,-0.010773457,0.004459212,-0.0061585773,0.008581146,0.03972104,0.0012299317,-0.0036127726,-0.005795354,0.006797461,0.011208027,0.01905624,0.0067325993,-0.012849017,0.0022328491,-0.0068558357,-0.010773457,0.0017804417,0.024491614,-0.00017958463,-0.013672755,0.014087867,0.015164564,-0.0012720916,0.018822739,0.0060580424,-0.014697563,-0.0054937494,0.007679574,-0.026619064,0.010689137,-0.010728054,-0.02619098,-0.0005630769,0.023350056,0.021884192,0.029135682,0.014412173,0.0012404717,0.0059218337,-0.0054645617,-0.0072968923,-0.018459516,0.012148515,0.008795188,-0.013971117,0.002433919,-0.017512541,-0.00033667052,0.037853036,0.015151592,-0.017771987,-0.0066417935,-0.052070625,-0.017875765,-0.005954264,-0.012239321,0.013711671,0.0011464229,-0.032145243,-0.011350722,0.006385592,-0.019665936,-0.010040524,0.019445408,-0.033520304,-0.02163772,0.00040457214,0.010501039,-0.005211603,-0.018926518,-0.039176203,-0.011227486,-0.003053344,-0.003531696,0.02376517,-0.043041937,-0.01986052,-0.0055391523,-0.018965434,0.018991379,0.009586495,-0.0028247081,-0.025944507,-0.005840757,-0.0029755107,-0.026216924,-0.0073552676,-0.007673088,-0.006051556,-0.012745239,-0.019406492,-0.0006579365,-0.0038624885,0.0065769325,0.011149651,-0.0028587603,0.019484324,0.055365577,0.0061715497,-0.009839454,0.04184849,-0.046155278,0.020158881,0.024245141,-0.012719294,-0.017071486,0.011091277,-0.01761632,-0.012200404,0.00708285,0.026437452,0.019341629,0.0077963243,0.011681514,0.010604817,0.012673891,-0.014775396,-0.0043716496,-0.031133408,-0.00075847143,0.005415916,0.036685534,0.007335809,0.027112009,-0.0067650303,-0.015955871,-0.0070504197,-0.0044202954,-0.0006198305,-0.024271086,0.014995925,-0.0061391187,0.011850153,-0.0080882,-0.008581146,-0.0048418934,-0.043145716,0.0081725195,0.0011399367,0.00276309,0.03193769,0.033598136,-0.03367597,-0.018251961,0.013231698,-0.0027955207,0.0062883,-0.0074655316,-0.014074895,0.016098566,-0.02054805,0.022480914,-0.008788702,-0.0028733541,0.013322504,0.016422873,0.013594922,0.0052505196,-0.013997061,0.011065332,-0.0047835186,-0.008626549,-0.011525847,-0.004906755,0.002811736,-0.015203481,0.019082185,0.017292013,-0.034039192,0.0047219004,0.011506389,0.02942107,0.020677771,0.0049391855,0.028409235,0.028642735,-0.014373257,0.019160017,0.0043392186,-0.009035175,-0.02009402,0.0014091111,-0.0024290544,0.017733071,-0.0030728024,0.027371455,-0.037801147,0.010689137,-0.003635474,0.03598503,-0.023376001,0.0129268505,0.009080578,0.012258779,-0.03424675,-0.011104248,0.009203814,0.0067780023,-0.015683454,0.019652965,-0.0019588103,-0.014399202,0.0155537315,-0.008749785,0.028616792,0.016215317,0.013971117,-0.010773457,0.014606757,0.013465199,0.008509798,0.008516285,0.003330626,0.020586966,0.010630761,-0.009340023,-0.000678611,0.0011893935,0.026567174,-0.009463259,-0.02158583,-0.013763561,-0.013919228,0.0024241898,-0.011499902,0.00716717,0.018290877,0.003940322,0.010488067,-0.009664329,-0.018926518,0.036659587,0.017707126,-0.011013443,-0.0012323641,0.0010021066,0.0021939324,0.09978257,0.033935416,0.0048905397,0.0071866284,-0.024219196,0.00009845738,0.006554231,0.0050494494,0.025010504,0.01646179,0.008224409,-0.011006957,0.000009754526,0.011642598,0.029239459,-0.00043051667,0.027760623,-0.01028051,-0.010299969,-0.023583557,0.009774593,0.00314415,-0.025049422,0.007154198,0.012135543,-0.0007803621,-0.0006628011,0.040447485,0.006252626,0.0067844884,-0.01269335,-0.015436982,-0.027942235,0.005065665,-0.008652493,0.023648418,0.018861657,-0.0023528424,-0.011649083,0.020314548,0.026385562,0.01081886,0.008075228,-0.012466336,-0.016228288,0.0020350222,-0.010092413,0.0077509214,0.0038754607,0.013906255,0.018796796,-0.0026074229,-0.009391911,0.009781079,-0.0039078915,0.016370984,-0.025399672,-0.029550793,0.0072839204,-0.018770851,-0.024530532,-0.013478171,-0.005072151,-0.01900435,-0.035362363,-0.04000643,-0.03362408,-0.0047932477,-0.0018015216,-0.017123375,0.003269008,-0.0036030433,0.0004653796,0.00085779023,0.0069271834,0.00556834,0.008918424,0.008568173,0.011448014,0.014321367,0.018355738,-0.034609973,0.008613576,-0.020055104,-0.005130526,0.006816919,0.008179006,0.0047510876,-0.0035187236,-0.0072904066,0.009100036,0.016773123,0.040032376,-0.03655581,-0.019990243,0.0051499847,0.0038657314,0.020924244,-0.017227152,0.008159547,0.014528924,-0.0049002687,0.0036776338,-0.0006988802,-0.0033890011,0.0147494525,0.016500706,0.003693849,0.0008375211,-0.0043684063,0.02205283,-0.010196191,-0.035466142,-0.013069545,0.008185492,-0.016358012,0.008801674,0.02233822,-0.0046894695,0.0062753274,-0.029161626,-0.014593785,0.030848019,-0.008769243,-0.015631566,0.027838456,0.0036679045,-0.021832302,0.006025612,0.019185962,-0.0069336696,0.0050851232,-0.025762895,-0.024906727,-0.015047814,-0.022558749,0.005104582,0.008555201,-0.0015007276,-0.021196662,-0.015748316,-0.031418797,-0.017759016,-0.009884857,-0.00072725693,-0.032093354,-0.03310519,-0.001817737,0.0058667017,0.016241262,-0.022441998,0.013802477,-0.004310031,0.0046894695,-0.008016853,-0.019652965,-0.0069271834,-0.00006232762,0.008503312,0.007102309,0.019639991,-0.01525537,0.012777669,0.013919228,-0.0068882667,-0.00072968926,0.015903983,-0.02993996,-0.0236095,0.0283314,0.020963162,0.0037619534,0.028590847,-0.008159547,0.0064699114,0.00909355,-0.013620866,-0.015748316,0.004407323,-0.009515148,0.018238988,-0.01755146,-0.022454971,0.013257643,0.008153061,-0.008282783,0.011467472,0.01605965,0.011577737,-0.0035187236,0.02175447,-0.014567841,0.011454499,-0.015813177,0.018615184,-0.0047381157,-0.0037165505,0.0025004018,0.006599634,0.015618593,0.016280178,0.0076990323,-0.018472489,-0.004825678,-0.004455969,0.0046764975,0.0016118025,-0.013984089,-0.021404218,-0.014282451,-0.016474761,-0.01364681,-0.03320897,-0.013322504,-0.00869141,0.0060158824,-0.03489536,0.009580009,-0.0064309947,-0.015411037,-0.014360284,-0.0067390855,-0.0027241732,0.012738753,0.009592981,0.058011916,-0.008509798,-0.0104296915,0.025594255,-0.010377803,-0.014347312,0.003930593,0.006025612,-0.015047814,0.02049616,0.022467943,0.008697896,-0.030692352,-0.0604507,-0.010189705,0.0148791745,0.01669529,-0.033831637,-0.018303849,-0.03909837,0.014905119,-0.003223605,0.008042797,0.0029414585,-0.046310946,-0.025373727,0.0072839204,-0.014762424,0.029369181,0.020119965,0.0035706128,-0.040655043,-0.009651356,-0.021144774,-0.017110402,-0.007848213,0.025568312,0.01061779,0.0026366105,0.00716717,0.0058602155,-0.009722704,-0.0040635583,-0.031159353,0.009560551,-0.025814785,-0.031237187,-0.039876707,0.011713944,0.0048872964,-0.0062883,-0.014515951,-0.015086731,0.009061119,0.0022441999,0.011791779,-0.006920697,-0.010410233,-0.006096959,-0.022454971,-0.0008496826,-0.01808332,-0.011616653,0.0012072304,-0.012356072,-0.012563627,-0.01629315,-0.011350722,0.005114311,-0.0028960556,0.005821299,0.014554868,0.0096059535,0.006797461,0.017460654,0.014048951,0.004342462,-0.021962024,0.0031798235,0.016941763,-0.042445213,-0.0009753513,0.0060126395,-0.033079248,-0.024971588,0.015683454,0.0036160157,-0.006421265,-0.0066742245,0.033650026,0.018991379,0.0022620368,-0.027501177,-0.01969188,-0.008230895,0.019302713,0.002253929,0.007063392,-0.01137018,0.0009785944,-0.029083792,0.022597665,0.004352191,-0.00644721,0.01133775,0.0063369456,0.033079248,-0.0016109917,-0.0016993652,-0.045610443,-0.013063059,-0.019808631,0.03811248,-0.03183391,0.0024225684,-0.024841866,0.02947296,-0.013452226,0.031418797,0.0037554672,0.024660254,-0.010144302,0.0032592786,-0.01473648,-0.03263819,-0.023285195,0.01893949,0.018744906,-0.03315708,-0.016020732,-0.017006624,-0.011876098,-0.01969188,-0.016358012,0.013724644,0.02205283,0.0022863597,-0.01485323,0.038320035,-0.01116911,0.009534606,-0.021949053,-0.004193281,0.009852426,-0.0020415084,-0.00972919,-0.0039532944,-0.043612715,-0.02123558,0.010286997,0.026502313,-0.010981012,0.030718297,-0.0029657814,0.013659783,0.0020706959,-0.013452226,0.016033705,0.016072622,0.016435845,-0.010150788,-0.033234913,-0.0032446848,0.03588125,-0.0052602487,-0.0063985637,0.017707126,0.013478171,0.008600604,0.015281314,0.003680877,-0.025542367,0.0072968923,0.025231034,-0.0037814118,-0.019717826,0.022545777,0.00200097,-0.021832302,0.007264462,0.010539955,-0.020625884,-0.020768577,0.0013807343,-0.0276309,-0.010319428,0.003590071,-0.0020139422,-0.008412506,-0.005749951,0.011662056,-0.028876236,-0.015579676,0.03409108,0.014593785,-0.00492297,-0.012219863,0.0021128557,0.0017561188,0.025762895,-0.023012778,0.014178673,-0.05059179,-0.00089022086,0.010040524,-0.012823072,-0.04939834,0.009249217,-0.005516451,0.0021858248,0.00076049834,0.22457565,0.012939823,0.0033192753,0.04859406,-0.0006506396,-0.009132466,0.035595864,0.013283587,0.003933836,-0.002973889,0.024102448,0.011143166,-0.015540759,-0.01185664,0.01185664,-0.03806059,-0.033520304,-0.020016188,-0.0015274829,-0.023038723,-0.0026982287,0.004692713,0.0076990323,-0.010468609,0.036763366,-0.008393048,-0.004968373,-0.0087368125,0.0063628904,-0.010475094,-0.013543032,-0.03723037,0.029083792,-0.015787233,-0.014256506,-0.00055375305,-0.0028182222,-0.004614879,0.004961887,0.028513012,0.003881947,-0.012070682,-0.005419159,0.006868808,0.009573523,-0.016189372,-0.023440862,-0.007984422,0.00069847476,0.0060937162,-0.01755146,-0.002870111,0.013465199,0.028746514,-0.004011669,-0.0051013385,0.012472821,0.021962024,-0.03811248,-0.0040084263,0.0116880005,0.02526995,0.0016799069,-0.0012793884,-0.042782493,0.008516285,-0.024167309,-0.012972253,0.010416719,0.0042743576,0.0027614685,0.0069012386,-0.004251656,0.003891676,-0.027475232,-0.015424009,0.026372591,0.03385758,0.024517559,0.0027339023,0.019951325,0.005775896,0.0041154474,-0.011811237,0.0120577095,-0.030121572,0.018407628,0.017512541,0.017071486,0.000035673696,-0.0038851898,-0.0052083596,-0.0005128094,-0.012887933,0.017356874,0.0033468413,0.008879508,0.02428406,-0.014230562,-0.008179006,0.0004653796,-0.013270616,0.00961244,0.009755135,-0.0208983,0.0064439666,-0.0066482797,0.03806059,0.012887933,-0.0036289878,-0.00003737124,-0.028616792,0.008185492,-0.015722372,-0.020431299,-0.0012007442,-0.0005022694,-0.0236095,0.026800675,-0.026385562,0.011058846,0.011292347,0.0155537315,0.018641127,0.0030030767,0.003586828,0.013789506,0.016941763,0.025775867,-0.0101702465,0.0057888683,0.015605621,0.024089474,0.0046764975,-0.010812373,0.008853563,0.0022052831,0.028564902,0.00025478317,0.0048224353,-0.033598136,-0.0006526665,0.031911742,0.005535909,0.027734678,-0.011201541,0.00009268067,-0.0007280677,0.00044754273,-0.0047154143,-0.035569917,-0.0063272165,-0.009372453,-0.011019929,0.019419463,-0.00028052498,-0.01749957,-0.0325863,-0.001634504,0.008626549,-0.014360284,-0.004300302,0.025244005,0.004342462,-0.013763561,0.005597527,-0.16220506,0.023116555,0.01646179,-0.014840258,-0.00077468675,-0.009443801,-0.007199601,0.010293483,-0.02371328,-0.010468609,0.039357815,0.011117221,0.0065412587,-0.0015542381,-0.0025701276,-0.022493888,-0.031911742,0.00079373975,0.028980015,-0.0073293233,0.010319428,-0.021845276,0.01704554,0.012570114,0.0029414585,0.016448818,0.006106688,0.040577207,-0.02526995,-0.027527122,-0.024478642,-0.017771987,0.023596529,0.008548715,0.03920215,0.0044365106,0.008879508,0.0062785707,-0.0014310017,0.0041219336,0.0009518391,0.0074071568,0.017681181,0.022805221,0.009975662,0.018446544,-0.0014155972,-0.015968844,0.0032754939,-0.0368412,0.006499099,-0.05349757,0.010637248,0.016876902,-0.013906255,0.032404687,0.0040246416,0.03406514,-0.027189843,-0.008600604,0.015540759,0.0052018734,0.0013312775,-0.003632231,-0.00384303,-0.02590559,0.0004061937,0.0021112342,-0.009586495,0.009346508,-0.020483188,-0.015916955,0.02021077,-0.013277101,0.01232364,0.003126313,-0.0019782686,-0.0017755772,0.00976162,0.009625412,-0.010624276,0.032482523,-0.020638855,0.027319565,-0.020872356,0.0146845905,-0.012745239,-0.0060320976,-0.004815949,-0.006803947,0.015333204,-0.0045889346,-0.008036311,-0.018161155,0.0057629235,0.032949522,0.009268675,-0.01209014,-0.016280178,-0.025581283,0.0027257947,0.019471353,-0.011739889,0.016085595,0.014347312,0.013607894,-0.0072125727,0.0030517227,0.018680045,-0.0107994005,0.004134906,0.027890345,0.012771184,-0.00078360515,0.019717826,0.02866868,-0.008509798,-0.02423217,0.024335947,-0.024504587,0.015618593,-0.010034038,-0.010312942,0.017201208,0.002143665,-0.030069683,-0.11633517,-0.053964574,-0.0059866947,-0.010222136,0.0032900877,0.0141657,0.009949719,0.042107936,-0.009554065,0.048723783,0.0077963243,-0.01185664,0.008159547,-0.0020723175,0.025853701,-0.0041738227,0.017253097,-0.024569448,-0.015579676,0.014606757,-0.016435845,-0.010299969,-0.0043132743,-0.004760817,-0.0030419934,-0.021897163,-0.02210472,-0.0012850638,0.021832302,0.009022202,-0.011220999,-0.023440862,-0.006252626,-0.014580813,-0.02026266,0.017136347,-0.047115225,-0.0055910414,0.029498905,-0.049242675,-0.019938353,0.0022004184,-0.011966904,-0.009177869,-0.022429027,-0.0023285195,-0.013335477,0.019095156,0.018524379,-0.005175929,-0.037386034,0.0077963243,0.0034635917,-0.02130044,0.029732404,-0.0098653985,0.0054224017,-0.006547745,-0.027734678,0.030147517,-0.02429703,0.0032852232,-0.010656706,0.018848684,-0.019951325,0.0021647448,0.016617456,-0.0016255855,0.006194251,-0.0028814618,0.003233334,0.010805887,-0.005587798,0.01013133,-0.043872163,-0.00011056819,-0.012881448,0.0010045388,0.0013685727,-0.012394988,-0.013672755,-0.016850958,0.0009372453,-0.032145243,0.04529911,0.0072385175,-0.0009777836,0.0009672436,-0.006259112,-0.01808332,-0.023868946,0.014957008,0.019769713,0.009437314,-0.026022341,0.031081518,-0.018783823,-0.0022733875,0.03829409,0.016734207,-0.028201679,-0.01537212,-0.03834598,0.02526995,0.028772458,-0.023505723,0.0030452365,-0.015073759,-0.00092913763,-0.005882917,-0.012226349,-0.004864595,0.0037100646,0.015903983,-0.042938158,-0.0077120047,-0.009333536,-0.028071957,-0.0006932048,-0.0010993985,0.018498434,-0.036348253,0.022234442,-0.027241733,0.009651356,0.009794051,0.010312942,0.034376472,-0.023077639,0.016306123,-0.0006384781,-0.03302736,0.008250353,-0.034480248,0.005720764,0.024206225,0.01065022,-0.0323528,0.011973389,0.0045694765,-0.023518695,-0.018641127,-0.0016863929,-0.032716025,0.0019004351,-0.022403082,-0.023363028,0.002046373,-0.012849017,0.0070439335,0.035569917,-0.0009858912,0.033650026,0.005487263,0.0025571554,-0.02918757,-0.012803614,-0.017784959,0.022727387,-0.012362557,0.009975662,-0.04018804,0.018978406,0.014606757,0.008600604,-0.033883527,0.036815256,0.021884192,-0.015981816,0.0105594145,0.02383003,0.010072955,-0.008101172,-0.0208983,0.02890218,-0.038994595,0.028123844,-0.008885994,-0.020197798,-0.021689607,-0.034791585,0.00736824,-0.0041803084,-0.017421735,0.0015234291,0.018174127,-0.0007661737,0.025762895,-0.009644871,0.019302713,0.00072968926,-0.00096481136,-0.044780217,-0.007108795,-0.0016580161,0.017771987,0.019250823,0.027215788,0.0036030433,0.030381018,0.016254233,0.014010034,0.017836848,-0.0022944673,0.003995454,0.0073487815,-0.024452697,-0.0009088685,0.007783352,-0.01232364,-0.0019393519,0.034039192,0.0043748925,-0.026281785,0.016993651,0.01165557,-0.04311977,-0.0036030433,-0.017914683,-0.00081968424,-0.030822074,0.032456577,0.018667072,0.0058440003,-0.0005432131,-0.024673225,0.021456107,-0.013004684,0.023791112,-0.008684924,0.020197798,0.023505723,-0.008055769,0.0007402292,-0.007919561,-0.012518224,0.0014585677,0.0066936826,-0.03621853,0.025594255,0.0023155473,0.05567691,-0.02423217,-0.013426282,-0.011091277,0.017006624,0.030303184,0.033987302,-0.00029755107,-0.0050948523,-0.0061747925,0.02620395,0.005231061,-0.000026653926,-0.0041770656,-0.02578884,-0.00076576835,-0.015385092,0.011895556,-0.013309532,-0.004254899,0.022247415,-0.008230895,0.00276309,-0.0011658813,-0.029057847,-0.0020528592,0.007523907,0.01629315,-0.008652493,-0.050228566,-0.0034506193,0.00684935,0.008308728,0.007737949,-0.004040857,0.0029528092,-0.00073455385,0.037853036,0.006862322,-0.009450287,-0.0023885162,0.017759016,-0.01738282,0.0033695428,-0.0023755438,0.0011918257,-0.017123375,0.0018339523,-0.03442836]},{\"id\":\"1150c10b-cd68-40b4-a16b-10a7e4787ebd\",\"text\":\"Posted my video but never earned any cash.\",\"vector\":[-0.031002467,-0.01749809,-0.003708904,-0.029671231,-0.0030448854,0.011097911,-0.013888389,-0.025063101,-0.008307433,-0.031335276,-0.0023504659,0.020250168,-0.00090482534,-0.01713968,0.0024096675,-0.011238715,0.019354142,-0.008192229,0.021261396,0.002790478,-0.034458566,0.01574444,-0.02467909,0.0033472937,0.016998876,-0.013350774,0.011110711,-0.0073730065,0.018970132,-0.017766897,0.011123511,0.0012336345,-0.024730293,-0.025216706,-0.035713,-0.019520547,0.0038881088,0.016691668,0.008032225,-0.004892937,0.01180193,0.021735009,-0.018765325,-0.01968695,-0.029620029,0.021658206,-0.029876037,-0.004307321,-0.016742868,0.023667863,-0.008358634,-0.02895441,-0.045569275,-0.017101279,-0.0023088646,0.023283852,0.006969795,0.016755668,-0.00824343,-0.0051585445,-0.010297888,0.012454749,-0.009913878,-0.00250247,-0.013427576,-0.015411631,-0.011149112,0.0049793394,-0.019827755,0.0067713894,0.0061889733,0.0050401413,0.0007320205,0.0059361663,0.029748034,0.003112087,0.011763529,-0.0023696662,0.010931506,0.0044481247,0.008281832,0.0052225464,-0.013542779,0.0022064617,0.013081966,-0.011251515,0.006976195,0.010233887,-0.0055233547,-0.02716236,0.030106442,0.014758813,0.023335053,0.012467549,-0.016141253,0.022067819,-0.00999708,0.024205478,-0.010253087,0.0033056925,-0.010867504,-0.008870648,-0.022733437,-0.017037276,-0.008614642,0.015104423,0.0025952726,-0.0040193126,0.036122613,-0.013453176,-0.0029152816,0.010899506,0.014797214,-0.021018188,0.012582752,0.0011720328,-0.008768246,0.0012552352,-0.0135043785,0.00085202383,0.029184816,0.00571216,0.025767121,0.0178437,0.012307544,-0.000050576415,-0.0070081963,-0.0142852,0.021837411,0.024141476,-0.001820851,0.015219626,0.015578036,0.0052001458,-0.009600269,0.034919377,-0.03433056,-0.012736357,-0.02535751,-0.019456545,-0.0007976223,0.032052096,-0.0063681784,0.013849988,0.0023696662,-0.0073858066,-0.0020240566,-0.017229283,0.018470917,-0.0011832331,0.013965191,-0.0069953958,0.022093419,0.00067721895,-0.01931574,0.011648326,0.003894509,0.011961935,-0.0067969905,-0.025536714,0.0029424825,0.04044913,-0.00965787,-0.029594429,-0.0049889395,0.016742868,0.025101503,-0.028007185,-0.021312596,-0.0007812219,-0.0048353355,0.010585897,-0.010278688,0.033152927,-0.030592857,0.01923894,-0.009395463,-0.0027440768,0.01534763,-0.018637322,0.0030880864,0.008256231,0.01642286,0.03256411,-0.0037697055,-0.03325533,0.007033797,-0.014221198,-0.0047297324,-0.012953963,-0.015194026,-0.0059137656,0.008659443,0.0050465413,-0.63776505,-0.0073346053,0.034791373,0.030592857,-0.005081742,0.018112507,-0.023437457,-0.0050401413,-0.035482593,-0.0067393887,-0.0130115645,-0.004361722,0.0035392991,0.023091847,0.025331909,-0.0029024812,0.051329438,-0.032026496,-0.025587916,0.009229058,-0.014067594,0.008697843,0.014041993,0.035815403,0.009549067,-0.014438804,-0.003820907,-0.013862788,-0.01285796,0.012768357,-0.007821019,0.019802155,0.0030240847,0.03174489,0.06333617,-0.01923894,0.00392011,-0.00084402366,-0.013235571,0.035303388,-0.029927239,0.0020528575,-0.01322277,-0.012429148,-0.011718729,-0.016896473,0.009683471,-0.02033977,0.0046273298,0.016858073,0.0058017625,-0.0032304905,-0.021261396,0.008601841,0.002001656,-0.005635358,0.015834043,-0.0006988196,0.014067594,0.007417808,-0.009709072,-0.011283516,-0.015552435,-0.016627666,-0.010029081,0.010873904,0.004707332,0.001678447,0.023834268,0.0073730065,-0.0019712553,-0.000018113007,-0.015654838,0.021184593,-0.004755333,0.022912642,0.008301033,-0.014758813,-0.00785302,-0.013453176,-0.013747585,-0.0008176229,-0.01216674,0.008857848,0.013696384,0.01858612,-0.013824387,-0.014233999,-0.015322029,0.0027232761,-0.0026384739,0.028647203,-0.00081562286,-0.0010064282,-0.0045185266,0.020685378,0.003897709,0.014515607,0.014054794,-0.004508926,-0.01895733,0.013312372,0.0025168704,0.0017568492,0.034458566,-0.020634178,0.0019008532,-0.014362002,0.035738602,-0.015424432,0.0064513804,-0.0112195145,0.008281832,-0.0010264288,-0.028467998,-0.03499618,0.012736357,-0.021735009,0.022951042,-0.008563439,-0.0055585555,-0.0062401746,0.022707837,0.011161912,0.0030576857,0.018432517,0.008160229,-0.010701099,0.00071362,0.012557152,-0.00824343,-0.012953963,0.032026496,-0.0033792946,-0.020288568,-0.026599145,0.0051521445,0.0054081515,-0.014426004,-0.012525151,-0.009005052,0.0058657643,-0.008320233,0.033844147,-0.006326577,-0.0031552883,-0.0059841676,0.0095746685,-0.00020030561,0.031565685,0.0030592857,-0.020890186,0.0015816443,-0.015936445,-0.024973499,-0.01929014,-0.012563552,0.0040161125,-0.017728496,-0.01888053,0.0058433637,0.014298,-0.01607725,0.012921962,-0.02003256,0.0017088478,-0.033101726,0.0015832443,-0.0013280372,-0.0058465637,-0.000018800527,-0.006006568,-0.014682011,0.0056033568,0.005536155,0.011328317,0.022400627,0.006643386,0.012000336,0.017536491,0.0012736357,0.0000320509,-0.016384458,-0.0073794066,0.030080842,-0.0014336401,-0.02245183,0.050126202,-0.025408711,-0.0021888614,0.00063081767,-0.01678127,-0.0023744665,0.014182797,-0.007398607,0.0016672467,0.022170221,0.021325396,-0.0018672523,0.005776162,-0.011008308,0.010547495,0.0059073656,-0.0003254091,0.010931506,-0.031207275,-0.004928138,-0.031181673,0.021261396,0.028135188,0.010675499,0.004825735,0.016141253,-0.002428868,0.005462553,0.021837411,-0.00321449,-0.0075202105,-0.0118659325,0.028621601,-0.03886189,-0.027239162,-0.01216674,-0.032052096,0.03427936,0.010080283,0.0030496854,-0.0005116143,0.01996856,-0.024013473,-0.02677835,0.02606153,0.005750561,0.014605209,0.028032785,0.0050913426,0.0095746685,0.006848192,0.015181225,0.004112115,-0.0040897145,0.015770042,0.018803727,-0.009126656,0.016742868,0.0011488321,0.015667638,-0.023347855,-0.02393667,0.03246171,0.004489726,0.029901637,-0.03102807,-0.014938018,0.007398607,-0.02570312,-0.007219402,-0.005331349,0.020774981,0.028160788,0.01889333,0.014707612,-0.0040513133,-0.015923645,0.008153828,0.01533483,-0.006403379,-0.010278688,0.008505838,-0.01176993,0.00030260847,-0.035610598,0.011117111,-0.024781493,0.032666516,0.0027744777,0.028032785,0.0024368681,0.014784414,-0.00025160704,0.0037793058,-0.015552435,0.021453401,0.0043489216,0.0032112899,-0.021952614,-0.016128452,-0.0035905004,-0.0142852,0.008454637,-0.013517179,-0.0069889957,-0.001892853,-0.010265888,0.012281944,-0.0009320261,0.051995058,0.004812935,0.0025120704,-0.011245115,0.003712104,-0.0064769816,-0.001998456,-0.015181225,0.004758533,0.00053001486,-0.017766897,-0.016166853,-0.012121939,0.0032800918,0.019942958,0.005465753,-0.003100887,0.008109027,0.00929306,-0.012608353,0.004611329,-0.005427352,0.01683247,0.013785986,-0.03855468,0.014528407,-0.03855468,0.020122163,0.104092516,-0.02037817,-0.011283516,0.009849876,-0.002315265,0.0019184537,-0.025754321,-0.022643834,0.00090642535,0.00023440656,0.030285647,-0.008448237,0.0100738825,0.0026752749,0.026266335,-0.01106591,-0.0045313267,-0.015962048,0.025933526,-0.023731865,-0.005824163,0.000499214,-0.0061761728,0.016512463,0.017587692,0.026343137,0.021466201,0.0044065234,0.0027952783,0.0002930082,-0.0045281267,-0.012185941,0.008531439,0.031693686,0.013517179,0.029261619,0.0024848697,0.022029417,0.023130247,0.01392679,0.015654838,0.0070657977,0.007987424,-0.019366942,0.011520322,-0.019930158,0.010214686,0.010617897,0.027699975,-0.0044865254,0.019507747,0.004361722,0.00038441076,0.0047009317,-0.0014864416,0.012205142,-0.013273972,-0.023808667,0.0042273183,-0.0021600605,-0.0112067135,-0.033716146,-0.012448348,-0.009107455,-0.034740172,-0.016653266,-0.024807096,-0.02287424,-0.0053601502,-0.00015770442,0.0014152396,0.024819896,-0.045953285,-0.028775206,-0.00050161406,-0.015616437,0.02790478,-0.016384458,0.01356838,-0.01216034,-0.0151300235,-0.022285424,-0.030260047,0.015552435,-0.004108915,0.02245183,0.0029616829,-0.002428868,-0.021235794,-0.0063041765,0.006281776,0.017254883,0.037018638,-0.018061306,0.012992363,-0.0033856947,-0.007923421,0.010701099,0.021658206,0.017318886,-0.0030784863,-0.018650122,-0.027930383,0.007040197,-0.007616213,0.018598922,0.016371658,0.042010777,-0.02109499,-0.022055017,0.011929934,0.00961947,0.011168312,0.005078542,0.014784414,0.032743316,0.0033152928,0.020800583,0.0024896697,0.020915786,-0.025664719,-0.016346058,0.013363575,-0.00072042015,-0.01392679,-0.0033120927,0.009171457,-0.042701997,-0.014566808,0.011590725,0.0029184818,0.019034132,-0.019917358,-0.028826406,-0.049742192,-0.0118659325,0.010675499,0.013773185,0.0054177516,-0.017779699,-0.015283628,-0.014362002,-0.022003816,-0.035431392,0.015258027,-0.02785358,-0.023501458,0.0018816526,-0.009926678,0.019571748,0.004035313,0.017664494,-0.02249023,-0.014733212,0.0075842123,-0.026176732,-0.005081742,-0.004032113,0.016691668,0.020954186,0.021581404,-0.016154053,0.03174489,0.019533347,0.011193913,-0.014797214,0.014784414,-0.015910845,-0.02964563,0.023847068,0.009171457,0.011469121,0.033434536,-0.002358466,-0.003395295,0.00055921567,-0.0034112956,0.0072642034,-0.028391195,-0.016026048,0.009126656,-0.010438692,0.0030544854,-0.00926746,0.008064226,-0.007961823,0.014067594,-0.01036189,-0.0020640579,0.01500202,0.016730068,-0.020595776,0.015424432,0.0009368262,0.012019536,-0.006355378,-0.015859645,-0.011885133,0.014925218,0.009107455,0.0028768806,0.02284864,-0.00089202495,0.009024253,-0.043418817,0.025754321,-0.008077026,-0.032999326,-0.0027632774,-0.029056814,-0.0037313045,-0.03819627,0.0019760553,-0.0020896585,-0.010950707,0.0023264652,0.00285608,0.0079426225,-0.010886705,-0.024026273,-0.004387323,-0.01318437,0.0039137094,0.01856052,0.02106939,0.022912642,0.013478777,-0.014438804,0.03709544,0.008813047,0.011161912,0.024922298,0.035252187,-0.021863012,-0.015078822,0.00892185,-0.01676847,-0.03363934,-0.011993936,0.02787918,0.021325396,-0.028672803,-0.025549516,-0.022413427,-0.009005052,0.017536491,-0.02069818,-0.0011904333,-0.010534695,-0.005324949,-0.004956939,0.017101279,0.01931574,0.011392319,0.006636986,0.003072086,-0.025459914,-0.0066689868,-0.007539411,0.046567705,0.00928666,0.009766674,-0.018765325,0.00928666,0.001969655,-0.0044513247,-0.018368514,-0.030464852,-0.019213337,0.014490006,-0.008480238,-0.0041345158,0.01142432,0.00033880948,-0.02359106,0.015014821,-0.008685043,-0.05391511,0.0078082187,-0.015104423,0.017459689,-0.0026272736,0.01035549,0.0041537164,-0.015475634,0.0028080787,0.0046017286,-0.0054241517,0.01643566,-0.016717268,0.013606781,-0.016614866,0.024525486,0.030848864,0.012653154,0.034407362,0.018317312,-0.0057953624,-0.011961935,0.0016120451,-0.008998652,-0.0071938015,-0.0022080617,0.0020448572,-0.00020940586,-0.021479001,0.025498314,-0.02393667,-0.01107231,-0.038733885,-0.0025296707,-0.00892825,-0.0038689084,-0.0010240286,0.014093194,0.028698403,-0.0011800331,-0.024743093,0.010701099,0.015654838,0.006464181,-0.016563663,0.017523691,-0.012838759,-0.0029840835,-0.023757465,0.018509319,-0.014758813,0.0020512575,0.0030528854,0.013069166,0.027571972,-0.011929934,-0.041908372,-0.0032016896,0.0031712889,-0.007929822,0.032256905,-0.024730293,-0.00038181068,-0.0017840499,0.014669211,-0.00787862,0.020429373,-0.007955423,-0.015603637,-0.004492926,-0.0042753196,0.0016576464,-0.0046209292,-0.013849988,0.023514258,0.007149,-0.023667863,-0.00857624,-0.010681899,-0.05396631,-0.020224566,0.0009032253,0.016141253,0.012589153,-0.010438692,-0.00750101,0.032384906,0.0068865926,0.0022960643,-0.0032256902,-0.00026140732,0.0047937343,0.008128228,-0.034970578,-0.012563552,-0.01964855,-0.0018816526,-0.0035456992,0.038452275,0.0178437,-0.005507354,0.008870648,-0.013049966,0.017651694,0.0015584436,0.015923645,-0.003750505,0.030976867,-0.04779654,-0.00024880696,-0.008403435,0.0079362225,-0.0082690315,0.0027376767,0.0047041317,-0.014874017,0.007110599,-0.014618009,-0.0035040982,-0.021747809,-0.022643834,0.021171793,0.019136535,-0.014848416,0.024115875,0.01895733,-0.02749517,-0.024141476,0.010233887,-0.018445317,-0.0041601164,0.010112283,-0.018445317,-0.007462609,0.0004824135,0.015770042,-0.0009112255,-0.025229506,0.00066161854,-0.00820503,-0.004243319,0.020429373,-0.0067585893,-0.0047201323,0.0014584408,0.004176117,-0.026240734,0.006102571,-0.00858264,-0.009209858,-0.019405343,-0.010086683,0.0075650117,0.026125532,-0.052174263,0.017357286,-0.0285704,-0.009766674,0.0037313045,0.24576688,-0.0031312876,-0.022183022,0.03993712,0.021696607,0.021850212,0.004860936,0.0059361663,-0.00053441495,0.0056545585,0.009894677,0.008736244,-0.0022000617,-0.012889961,-0.0026928755,-0.015078822,0.016896473,-0.00572176,-0.0048449356,-0.015117223,0.028621601,0.021274196,0.0012656355,-0.015488434,0.031949695,-0.016269255,-0.012230743,-0.011968335,0.016627666,0.0014816414,-0.020966986,-0.0075266105,0.0058593643,-0.0078018187,-0.023258252,0.004857736,-0.008038625,-0.030797662,0.018163709,0.060776103,0.026624745,0.008288232,0.0064225798,-0.025767121,0.014848416,0.014093194,-0.0069889957,-0.006521783,-0.014387603,-0.008800247,-0.015667638,-0.023322253,0.024141476,0.014093194,-0.039834715,0.0030240847,0.0016416459,-0.005584156,-0.026112732,-0.008134628,0.00044361243,0.02361666,0.0133379735,0.012217942,-0.028749606,0.0029008812,-0.004460925,-0.011033909,0.007347406,-0.0015984448,0.013465977,-0.022055017,-0.027776778,-0.0002574072,-0.029466424,-0.017626094,0.011225915,0.014566808,0.02434628,0.0025920726,0.0045121266,-0.0017024477,-0.023808667,-0.032359306,-0.003606501,-0.043086007,0.00500174,-0.0013704384,0.0059777675,-0.025267908,-0.0058017625,0.004675331,-0.03891309,-0.019341342,-0.0041921176,-0.023437457,-0.003110487,0.012531551,0.0018320513,-0.00006295176,0.0034016953,0.018304512,0.017434089,-0.015667638,-0.008480238,0.002574472,0.012435548,0.008371434,0.023885468,-0.02641994,0.021581404,-0.023770265,0.012313945,-0.016986076,0.01001628,0.008838647,0.0031840892,-0.01641006,0.02213182,0.002244863,-0.02754637,-0.012288344,0.00607377,-0.006291376,0.01926454,-0.016294856,-0.023501458,-0.000007768967,-0.012928362,-0.040269926,0.0068737925,0.00679059,-0.013120367,-0.008672243,-0.013005164,0.022298224,0.019866155,0.01571884,-0.013414776,0.03256411,-0.00786582,0.011872333,0.032768916,-0.011705928,0.02466629,-0.034228157,0.03072086,0.0064449804,-0.01536043,0.01749809,-0.0071361996,-0.010733101,-0.0065089823,0.010176285,0.036941834,-0.005468953,-0.018150909,-0.022567032,-0.01929014,-0.0035713,-0.015974848,0.0034176956,0.026829552,-0.017126879,-0.020992588,-0.008877048,-0.15974848,0.0032832918,0.0076866155,0.017088478,0.00067601894,-0.008345834,0.018803727,0.0037441049,-0.029952839,0.008326633,0.009440265,0.0066177854,0.0039585107,-0.017485289,-0.0029744832,-0.0036897033,-0.02071098,0.0079426225,0.008128228,0.014067594,0.04006512,-0.0069377944,-0.02036537,-0.02355266,0.008077026,0.0033376934,-0.014016393,0.0392203,-0.0030080841,-0.036173813,-0.010099483,-0.0095682675,0.020186165,0.00998428,0.01967415,0.022669435,0.0020752582,-0.027955983,0.012909162,0.0009080254,0.010598697,0.019853355,-0.00608017,-0.0012752357,-0.00858264,0.012729957,0.016653266,0.014118795,0.014720412,0.006499382,0.028135188,-0.020301368,-0.0015888445,0.0072642034,0.008627442,0.0073730065,0.002286464,0.007347406,-0.02073658,-0.007225802,-0.023002245,-0.028083986,-0.039860316,-0.022029417,-0.012070738,-0.0025264707,-0.0061857733,-0.00607377,-0.013094767,0.012422748,-0.024589488,-0.0015192425,-0.0016224454,0.020467773,-0.001464041,-0.0042337184,-0.017651694,0.015962048,-0.00321449,0.013824387,0.003000084,0.03292252,-0.021376599,0.0178565,0.008697843,0.006521783,0.018278912,0.036481023,0.0043009203,-0.030183244,0.0035873004,-0.010797102,-0.026522342,-0.0062369746,0.018330114,0.03107927,0.0009528267,0.013049966,0.0071169995,-0.02672715,0.010605097,0.00926106,-0.032640915,0.039783515,0.037018638,0.016358858,-0.006963395,0.033818547,0.03891309,-0.021658206,-0.01105951,0.01356838,0.004886537,0.03998832,0.015808443,0.010125084,-0.009913878,-0.025933526,0.020864584,-0.031949695,0.03822187,-0.016576463,-0.030823262,0.005142544,-0.008985852,-0.009913878,-0.09671951,-0.0393483,0.018419717,-0.016563663,0.002184061,0.019456545,0.004176117,0.022016617,-0.010208285,0.019763753,-0.010029081,-0.019123735,0.0063809785,-0.0012536352,0.007680215,-0.014413203,0.008672243,0.017779699,-0.020134963,0.033152927,-0.0011680328,-0.012761957,0.0034912978,-0.03328093,-0.008544239,-0.008870648,-0.022938242,0.01647406,0.011891533,0.002000056,0.016934874,-0.005395351,0.005584156,-0.030900065,0.0010992307,-0.0143108005,-0.015578036,-0.017408488,0.031898495,-0.021210194,0.020275768,-0.010547495,0.008838647,-0.010726701,-0.0037057037,0.02073658,0.0017360486,0.013120367,0.019021332,-0.027623173,-0.0019520547,0.014080394,-0.0066945874,0.0073730065,0.03182169,-0.012947562,0.007712216,0.04213878,-0.009305861,-0.004003312,-0.009312261,-0.01034909,-0.018368514,0.010470693,-0.0035969007,-0.02396227,0.007539411,-0.009689871,0.000059801674,0.006323377,-0.02282304,0.024909498,-0.012742757,0.018394114,-0.0037665055,-0.006643386,-0.025907926,-0.033434536,0.017101279,-0.0022992643,-0.027955983,-0.0043745227,0.0018944531,-0.014707612,0.028800806,-0.025933526,0.0009864277,0.034893777,-0.0067585893,-0.03174489,-0.012365147,0.007251403,0.0034400963,0.00042001175,0.0054913536,-0.012275544,-0.035969008,-0.014912417,0.00027440768,-0.013721984,0.0004392123,-0.00285608,-0.04600449,0.015821243,0.01533483,-0.003824107,0.0024864697,-0.015309229,-0.007744217,-0.013593981,-0.016666066,-0.02752077,-0.014221198,0.013273972,0.0011664326,-0.0024368681,-0.0059361663,-0.016166853,0.014400403,0.007366606,-0.0019440544,-0.0011464321,-0.0024848697,-0.00393291,0.0011992336,-0.007181001,0.023706263,0.014413203,0.01536043,0.010598697,-0.0017264483,-0.018048506,0.0024768694,-0.02964563,-0.0010216286,0.021184593,0.045927685,-0.0073730065,0.01856052,0.0051617445,-0.0063809785,0.011187513,0.00012210342,-0.015552435,-0.0079426225,-0.0022320624,-0.013440376,-0.0102274865,-0.0051969457,-0.01393959,0.02396227,0.008659443,0.020992588,0.01680687,-0.006022569,-0.028314393,0.0017664494,-0.009049853,0.011859532,-0.003862508,0.004707332,-0.0679443,0.036993034,0.009101055,0.007097799,-0.017510891,0.012877161,0.007795418,-0.019034132,0.0100738825,0.015219626,-0.03258971,0.024807096,-0.008384235,0.009299461,0.0060449694,0.018995732,0.02247743,0.02752077,-0.0041537164,0.0015472433,-0.00012700356,0.005788962,0.023347855,-0.016192453,0.019072535,0.030055242,0.046951715,0.0041249157,0.018406915,-0.0016144452,-0.00500494,-0.032308105,0.0040833144,0.0006288176,0.023360655,0.015117223,0.035815403,-0.010182685,-0.0038305072,-0.009165057,0.01609005,0.043034803,0.013075566,-0.012493149,0.0017536491,0.002817679,0.026650347,-0.03246171,-0.025152704,0.0039425106,0.014886817,0.019034132,-0.0023824668,-0.03399775,0.022912642,0.013593981,-0.004713732,0.021939814,-0.042471588,-0.019891758,0.041729167,0.0032832918,0.011904334,0.016755668,-0.03847788,0.056219175,0.004118515,-0.023527058,-0.006720188,0.010310689,-0.017574891,-0.01681967,0.0062433747,-0.007744217,0.0016640465,0.0054433523,-0.023642262,-0.029543227,0.003750505,0.009440265,0.04185717,-0.008333033,0.007641814,0.002033657,0.002747277,0.0028816806,0.035252187,0.018048506,0.0038081065,-0.0072066016,-0.028672803,-0.013235571,0.011763529,-0.01464361,-0.0028128787,0.0050913426,0.011520322,0.02323265,-0.026240734,-0.0005860164,0.019597348,-0.01715248,0.030900065,0.0038657081,-0.0012352346,0.007033797,-0.0010072282,0.012640354,-0.0046977317,-0.048359755,0.030848864,-0.01568044,-0.01000348,-0.009043453,-0.0036353017,-0.0038401075,0.007955423,0.025114303,0.0054241517,-0.009235458,0.008704244,0.01603885,-0.024256678,-0.009165057,-0.0006748189,-0.009177857,-0.035303388,0.010093083,-0.058830447]},{\"id\":\"67509424-67c9-471a-8c00-151cc5aba415\",\"text\":\"Ideas for content and more examples as of how to start posting \",\"vector\":[0.006196325,0.01982824,-0.0032419171,-0.016972974,-0.005036373,0.0114937695,-0.019299487,-0.015135556,-0.007845374,-0.015003368,-0.011685443,0.017620696,-0.03302063,-0.019735709,0.00614345,0.004296119,0.026807781,0.015690748,0.018559232,-0.015584997,-0.021943253,-0.006278943,-0.0008575714,0.0071249474,-0.006457397,-0.004527448,0.030165363,-0.007911468,0.0082749855,-0.012868527,0.023833545,-0.011731708,0.003142776,-0.02490427,0.0019663004,0.0005812153,-0.00065350573,-0.009643134,0.0037772798,-0.00845344,0.010257809,0.016787909,0.007270355,-0.019497769,-0.015360276,-0.0024421783,-0.019986866,-0.037329968,-0.0017680181,0.014302771,0.019352362,-0.0035426456,-0.054144315,0.016642503,0.012597541,0.022154754,-0.0031014672,0.03167231,-0.008625285,-0.006070746,-0.025221521,0.011183128,-0.003516208,-0.0070125875,-0.0038235455,-0.01970927,-0.021559907,0.0066325464,-0.000074459174,-0.0010732035,0.022234065,0.006715164,-0.0017415804,-0.01836095,0.019008672,-0.015280964,0.005822893,0.0053437105,0.009140818,0.00092366553,0.0071051195,0.004474573,-0.019656396,0.03841391,0.020119054,0.018413825,0.0301918,0.0193788,-0.015492464,-0.02626581,0.0035327314,0.008499705,0.008724426,0.012868527,-0.016761472,0.013046982,0.0010822915,0.0038433739,0.006321904,-0.016007999,0.019193737,0.020343775,-0.051764924,-0.014104488,-0.004441526,-0.0022042394,0.008083313,-0.018955797,0.027733099,-0.00018372103,-0.015677528,0.02489105,-0.00012795412,-0.023741012,-0.014487834,0.001959691,-0.0012012608,-0.0045604953,-0.0033608866,-0.03109068,0.018043699,0.005598173,0.011837459,-0.0020356993,0.0004168061,-0.011315316,0.00042052392,-0.003750842,-0.010442873,-0.023357667,0.035003453,0.030271113,-0.011480551,0.0019349058,-0.018612107,0.017263787,-0.006206239,-0.0007344711,-0.011817631,-0.011354972,0.018308075,0.0407933,-0.014501053,0.010218153,0.0042828997,0.0038037174,0.0048017385,-0.014091269,0.006668898,0.00833447,-0.001964648,-0.010647764,0.0076669194,-0.0031675613,0.011064158,0.00038169362,0.016920097,0.009425024,-0.000110707675,-0.010826219,0.021559907,0.016021218,0.021969689,0.0096894,-0.0034996844,0.020356992,0.045419887,0.012723121,-0.0010029784,0.004461354,-0.010786562,-0.005214827,-0.013265093,0.018083354,0.00029081418,0.016113749,0.009980214,-0.004335775,0.0011260788,-0.029900987,0.018241981,-0.008565799,0.020766776,0.049967166,-0.013212217,-0.029266482,0.024468048,-0.025274396,-0.015836155,-0.0043853456,-0.012405869,0.019788584,0.0047158166,0.011156689,-0.6713049,-0.00046596365,0.027891723,-0.015955124,0.00049033586,-0.006407826,-0.02140128,-0.00219763,-0.016444221,0.003329492,0.0060971836,-0.020713901,0.019894334,0.005528774,0.00529414,-0.020661026,0.020000085,-0.0326505,-0.0148976175,0.010218153,-0.0043126424,-0.01598156,-0.0017267092,0.0007352972,-0.015333839,0.0029395365,-0.00879052,0.00631199,0.011916772,0.0563122,-0.01623272,0.0077991076,0.017871853,0.014302771,0.044309508,0.0122208055,-0.01936558,0.018876484,-0.015161994,0.022709943,-0.024983583,-0.007977562,0.008836785,0.003671529,-0.005621306,-0.007481856,0.007230698,0.016259156,-0.0007328187,0.005532079,0.019748926,0.0108658755,0.003671529,-0.0069795405,0.0010979888,0.001926644,0.015109119,0.011744928,-0.0030700725,0.020251242,-0.0140516125,0.001706881,-0.051738486,-0.036219586,-0.034897704,0.0013623653,-0.0050958577,-0.0042895093,0.034051698,-0.024124358,0.010409826,0.010614717,-0.033840194,0.003661615,-0.00090714195,0.023397323,0.0126107605,0.0020588322,-0.0074554184,0.018004041,0.001959691,-0.0071844324,-0.01104433,-0.016840786,0.030297551,0.01904833,-0.024401953,-0.004028437,0.03460689,0.02894923,0.028208977,0.011295487,-0.012009304,-0.014302771,0.004025133,0.005191694,0.010409826,0.014263114,0.028922793,0.017792542,-0.015069462,-0.014963712,-0.025366928,0.022141535,0.05530757,-0.019788584,-0.013430328,0.011176518,0.005869159,-0.02376745,0.011414457,-0.0055023367,-0.018281637,-0.007065463,-0.019233393,-0.03378732,0.017951166,0.0094778985,0.018783953,-0.0058856825,0.024256546,0.012458744,-0.0038169362,-0.011896944,-0.0010575061,0.021480594,0.0049074893,0.0012987497,-0.0011004673,-0.018281637,0.00013900423,-0.014434959,0.019616738,-0.0007662789,0.0063979123,0.0010062832,0.009669572,-0.0058096745,0.02421689,-0.016140187,-0.011473942,-0.005925339,0.013456766,-0.012022523,-0.015783278,-0.022551319,-0.021216217,0.017277006,-0.011751537,0.01657641,-0.020132273,-0.0129676685,-0.0020224804,-0.0021811065,-0.01970927,0.005700619,-0.0021877158,-0.036378212,-0.0038433739,-0.012914794,-0.000013386643,-0.00054114574,-0.016272375,-0.00040276113,-0.036193147,0.005532079,-0.013436938,0.014659679,-0.0045241434,-0.010502358,-0.0071778228,0.015955124,-0.009881073,0.004372127,-0.0058955965,0.0125777135,-0.023146166,-0.020766776,0.018043699,-0.0045571905,0.0018275027,-0.0065036626,-0.007032416,-0.0043192515,-0.00631199,0.012703292,-0.0027990865,0.025327273,-0.011923382,0.00405818,0.0071381666,0.002838743,0.0011285574,0.02343698,0.007409152,0.013304749,-0.00935232,0.0076867477,0.0051355143,-0.0012979235,0.0060542226,-0.013747579,0.010839438,-0.04010592,-0.0062029343,-0.046054393,0.008010609,-0.023503074,0.016470658,0.0041738446,0.021493813,-0.028869918,-0.000636156,-0.012934621,-0.01159952,0.0119366,0.010277637,-0.0063252086,-0.026397998,0.00031828455,0.0002614849,0.00058286765,0.008076703,0.0043886504,0.008440221,0.020872528,-0.007343058,0.018215543,0.013430328,-0.03661615,-0.017700009,0.013734361,0.012538057,0.013866549,0.018109793,0.0070720725,0.008962365,0.0066424604,0.013774018,-0.0028304812,-0.009259788,0.016364908,-0.004596847,0.012518229,0.037885156,0.009894292,0.031487245,0.0004952929,-0.013906206,-0.020991497,0.0019101205,-0.0005692357,-0.0059649954,0.00026499617,0.0060112616,-0.004461354,-0.0028090007,-0.001065768,0.0023083375,0.0064276545,0.024719207,-0.016735034,0.012095226,0.0010781606,0.010442873,-0.0016936621,-0.008565799,-0.029927423,0.0008212196,-0.02150703,-0.016166626,-0.019894334,0.015505684,-0.0058989013,-0.0011368191,0.015003368,-0.007296792,-0.0028139576,0.007567778,0.03534714,-0.028790604,-0.026781343,0.008869832,0.00077371445,-0.015518903,-0.002080313,-0.022286942,0.007739623,-0.011963038,-0.00006258288,0.017118381,0.002080313,0.00021397976,-0.01914086,0.020793214,0.0070588533,0.028420478,0.0039755623,0.011427675,0.0037376233,0.01869142,0.0069068368,-0.025472678,-0.019669615,0.021890378,0.0006411131,0.01093197,-0.02150703,-0.008506315,0.006351646,0.0012078703,-0.00743559,-0.0066655935,0.012564494,0.029768797,-0.0044216975,0.0032534837,0.0016986192,0.023119727,0.010826219,-0.009788541,0.0050760293,-0.02310651,0.027653785,0.08719138,0.015148776,0.011916772,0.02288179,-0.02770666,-0.0045671044,-0.030720552,-0.0066722026,0.003783889,0.005697314,0.020013304,0.0046695503,0.020608151,0.008255158,0.03450114,-0.009504336,-0.010271029,-0.03119643,0.0009451461,-0.026186496,0.023516292,-0.0071447757,0.021824284,0.023846764,0.04293475,0.0112227835,0.035796583,0.029795235,-0.0063483417,-0.0011492118,-0.0036318726,0.005532079,0.011236003,0.014091269,-0.007851983,0.022300161,-0.0091209905,0.018294856,0.00732323,-0.0023397324,-0.009966996,0.016404564,-0.0023182516,-0.0076669194,0.0052346555,-0.00020117401,-0.020317337,0.022022566,-0.0007654527,-0.01475221,0.023912858,0.013410499,-0.01329153,-0.0002778019,0.026794562,0.005594868,-0.011335144,0.008215501,-0.010376779,-0.029028542,-0.025618086,-0.01701263,-0.016470658,0.009986823,-0.023066852,-0.026067527,-0.010740297,0.0044877916,-0.03529427,0.0120357415,-0.026543403,-0.023978952,-0.009048287,-0.0006526796,0.020105835,0.015624653,0.030614803,-0.007032416,0.0020175234,0.0020191758,-0.023225479,-0.018202323,-0.0011896944,-0.049306225,0.013800455,-0.010634546,-0.010112402,0.0044679632,-0.02760091,0.021784626,0.0029064894,0.0025826283,0.027058939,-0.04018523,-0.0001316719,0.017382758,0.004990107,0.004035047,0.008731035,-0.021890378,-0.010819609,-0.016245939,-0.012088617,-0.008374127,-0.01870464,0.03391951,0.0013004021,0.021374842,-0.0016606151,-0.0012739644,0.041533552,-0.014448177,0.0026536793,0.01587581,-0.015611434,0.027336534,0.017131599,-0.005994738,0.005224741,-0.019180518,-0.0031411236,-0.030614803,0.024692768,0.006827524,-0.02084609,0.012200977,-0.008823567,-0.020674245,-0.014884398,0.0017415804,-0.008202282,0.011619349,-0.021123685,-0.022353036,-0.031249305,-0.005049592,0.012372822,0.017739665,0.0062326766,-0.005185085,0.00025404932,-0.013906206,-0.0016350036,-0.03458045,0.008988802,-0.041242737,-0.005423024,0.012994107,-0.016021218,0.016774692,0.012438916,0.000072651914,-0.031487245,-0.0249968,0.0039160773,-0.020343775,-0.013099858,0.01454071,0.0279446,-0.0047488636,0.0074752467,-0.015003368,0.02884348,0.004990107,0.0021084028,0.0005531253,0.0049934117,-0.005601478,-0.013218827,-0.0022819,0.0016217848,0.011388019,0.0034269807,0.017739665,0.021031152,0.02421689,-0.018268418,-0.009543993,-0.017501727,-0.05171205,-0.017977605,0.031355057,-0.019312706,0.027653785,-0.029557297,-0.0040185233,0.015479246,0.019696051,0.016629284,-0.004672855,0.01024459,-0.002286857,0.0108328285,0.0019134252,0.010046308,-0.019021891,0.0023397324,-0.039894417,-0.0020836175,0.018572452,0.035003453,0.007937905,0.010416435,0.009828198,-0.01699941,-0.0023909553,-0.014712554,-0.006242591,-0.004223415,-0.019920772,-0.016602846,-0.011573083,0.0077264044,0.0040383516,0.028764166,0.0043886504,-0.015624653,0.023423761,-0.014064832,-0.030456176,-0.0040614847,-0.025763493,0.02736297,0.031619433,0.0029312747,0.019986866,0.014382083,0.0038698115,0.0270325,-0.011625958,0.0008534405,0.009973604,0.037726533,-0.019497769,-0.003876421,0.015955124,0.03077343,-0.026794562,-0.00777267,0.023172604,0.030958492,0.016060874,-0.017316664,0.0050066304,-0.032306813,0.008896271,0.007957733,0.0049934117,0.003469942,0.0065400144,-0.008605456,-0.0014086312,-0.0051619518,0.008017219,-0.0031394714,0.0051883897,-0.014805086,-0.012260462,-0.029028542,0.012478572,0.0008385693,0.0031212955,-0.015360276,0.015161994,0.044124443,0.01160613,-0.0142366765,-0.017210912,-0.00844683,0.025168646,-0.008711207,0.0057402756,-0.015175213,-0.018982235,-0.0014119359,-0.0205024,-0.0017746275,-0.004596847,-0.01836095,-0.027177908,0.022789257,0.007924686,-0.005290835,-0.009715837,0.017171256,0.0076603102,0.0036219584,-0.010575062,0.010482529,-0.016378127,-0.017144818,-0.0138136735,-0.014130926,0.017369539,0.01590225,-0.007243917,0.021692095,0.02039665,-0.025499117,0.0055750404,-0.004705902,-0.01892936,-0.016007999,-0.007785889,-0.009603477,-0.02592212,0.0074223713,-0.007574388,-0.0068803993,-0.018638546,0.01904833,0.008050266,-0.0075876066,0.014448177,0.025076114,0.013436938,-0.0074620275,0.0059451675,-0.025300834,0.013489813,-0.012319947,-0.020872528,0.013826893,0.0057766275,-0.001397891,-0.02568418,0.019312706,0.0066391556,-0.013066811,-0.012095226,-0.0034236761,0.020965058,-0.015082682,-0.007574388,-0.008215501,-0.009795151,-0.02319904,0.012379431,-0.014963712,-0.0051619518,-0.014553928,0.027918162,0.0038169362,0.012260462,-0.0022372864,0.004266376,-0.028975667,-0.0037574514,0.0122869,0.009035068,-0.001239265,0.0365104,0.007746232,-0.043463502,-0.0060773557,-0.0010252852,-0.043357752,-0.0058063697,0.0020538752,0.0032567885,-0.00664907,0.00032179581,0.0018787257,0.027098594,-0.002080313,-0.006668898,-0.0092069125,0.0058559403,-0.019087985,-0.004223415,-0.0066953357,0.0045604953,-0.026080744,-0.015717184,0.016483877,0.0103239035,-0.010515576,0.0011987824,0.0051090764,-0.005657658,-0.003502989,-0.02364848,0.006209544,-0.0059914333,0.024097921,-0.030218238,-0.026768124,0.0069795405,-0.014210239,-0.006678812,-0.0035294266,0.0024124358,0.013331187,0.0064276545,-0.015228088,0.0021943252,-0.017713228,-0.0040086093,-0.0012747906,-0.018836828,-0.004798434,0.017382758,0.01657641,0.016206281,-0.005429633,0.037250653,-0.028817043,-0.018294856,0.01521487,-0.024758862,-0.0075876066,-0.011189736,0.014593584,-0.031540122,-0.0054329378,0.012148102,-0.015201651,0.0096894,0.009107771,0.016774692,-0.030244675,-0.013489813,0.0055122506,-0.005561821,-0.0150959,-0.02950442,-0.02017193,-0.0012706597,0.007085291,0.0032204366,-0.00613684,0.0012029132,0.0001524296,0.02894923,-0.021229435,0.009940557,0.22017278,-0.0109517975,0.018096574,0.024798518,-0.006781258,0.0059451675,0.017620696,0.011143471,-0.000078848236,0.007005978,0.00013342753,-0.010508968,-0.026173277,-0.013536079,0.007924686,-0.017171256,-0.018955797,-0.023727793,-0.028658416,-0.021004716,-0.011242612,-0.009101162,-0.010760125,-0.0044481354,0.025538772,-0.00090301107,-0.0102512,0.008070094,0.017263787,0.019907553,-0.0150959,-0.0034170668,0.013529469,-0.0015928686,-0.011249222,0.004461354,0.01813623,0.0066655935,0.029002106,0.022458786,0.010694031,-0.009867854,0.011216175,-0.017091943,0.008063484,0.004368822,0.003985476,-0.013668267,0.009993433,0.013126295,-0.014395302,-0.015016587,0.0010508967,-0.011619349,0.011242612,0.0018142839,-0.0025661048,0.018453483,0.008631893,0.012452135,0.012742949,0.045922205,-0.0020456135,0.030799866,-0.018889703,-0.009834807,0.008096531,-0.012366212,0.018162668,-0.0136947045,0.011890335,-0.001103772,-0.012452135,-0.0064607016,-0.00608066,-0.021480594,0.022300161,0.02535371,0.0452877,0.028314726,-0.011559864,-0.011176518,0.006140145,-0.02658306,0.0025363623,-0.02399217,0.023132946,-0.01870464,-0.01194321,0.0009831502,-0.021242654,-0.0023413848,-0.0048182625,-0.009107771,-0.00020664744,0.005046287,0.0065730615,0.031513683,-0.017871853,-0.00088813994,-0.007904858,0.05937897,0.029768797,0.012108445,-0.016272375,0.007970952,-0.0071513853,-0.0005485813,-0.007957733,-0.002660289,0.014130926,-0.03185737,0.012207586,0.0024587018,-0.011758146,0.0122869,0.0042465483,-0.032835566,0.011771365,-0.008017219,-0.020264462,-0.018215543,-0.0029031849,-0.009755494,-0.0054792035,-0.0153206205,0.014553928,0.0060905744,-0.011467332,-0.03368157,0.033866633,0.0025809759,-0.005905511,0.009966996,-0.0004453092,-0.010872485,0.009213522,-0.012458744,-0.003873116,0.015333839,-0.0029643218,0.00029535816,0.010522186,-0.005228046,0.020951841,-0.033628695,-0.003245222,-0.011586302,-0.002460354,0.014659679,-0.031592995,0.025789931,-0.009537383,-0.0071513853,0.011150081,-0.0070588533,0.0014929012,-0.017660351,-0.0058427216,-0.0072373077,-0.018004041,0.008704597,0.0114078475,-0.018664984,-0.01881039,-0.016007999,-0.16888373,0.011156689,0.016444221,-0.027574472,-0.0108658755,-0.0021827586,0.034051698,-0.0038103268,0.0024768775,0.0068407427,0.006219458,-0.016206281,-0.028975667,-0.015175213,-0.016946536,-0.0034996844,0.010171887,0.03460689,0.025512336,-0.00093936286,0.037329968,-0.009187085,0.0040846174,-0.011963038,-0.01837417,-0.005664267,-0.009563821,0.025274396,-0.0074620275,-0.019444894,0.011275659,-0.005353625,0.019735709,-0.005257788,-0.017885072,-0.00069564075,-0.0112558305,-0.02984811,-0.0074488088,0.00946468,0.02174497,0.034078136,-0.0071579944,-0.0143556455,0.006715164,0.0019663004,0.0027148165,-0.004415088,-0.007131557,-0.02873773,0.0017795846,-0.028023912,0.01058828,0.003773975,-0.009603477,0.0067878673,-0.0013417109,0.0073628863,0.01656319,-0.009841416,0.019854678,-0.014448177,-0.007937905,-0.0016143492,-0.0015697357,-0.021731751,-0.036325336,0.014064832,-0.01904833,0.010852656,-0.0029725838,-0.014659679,0.00329314,-0.006130231,0.010310684,-0.01104433,-0.022022566,-0.003380715,0.0050859437,0.031487245,-0.0039590388,0.029980298,-0.017409194,0.024296204,-0.025869243,-0.0015069463,-0.020290898,0.018387388,-0.049544163,-0.0008236981,0.026450872,0.002557843,-0.013840112,-0.007230698,0.010389998,0.023939295,-0.0029263177,0.015399933,0.020224804,-0.015241307,-0.0019877811,0.032227498,-0.025155427,0.0010261114,0.030376863,-0.015056243,-0.015109119,0.027058939,0.041427802,0.000054321117,-0.034263197,0.014659679,-0.0018539404,0.009048287,0.0057964553,0.042432435,-0.014514271,-0.006513577,-0.0021778017,-0.0019018587,0.029002106,-0.00867816,0.00164657,-0.0041176644,-0.025935337,-0.02984811,-0.1074955,-0.0193788,0.026768124,-0.0052379603,-0.0029709314,0.014937274,0.018519577,0.020661026,0.0016432654,0.020290898,-0.007752842,-0.018506357,0.006341732,0.0036186539,0.01566431,-0.0014301118,-0.026635936,0.010621327,0.007343058,0.01982824,-0.0044514397,0.0066292416,-0.021692095,-0.02084609,-0.006321904,0.0021711923,-0.0077330135,0.016431002,0.01656319,-0.01689366,-0.017951166,-0.0033542772,-0.007065463,-0.029663047,0.00092283933,-0.0008997064,-0.017105162,-0.02894923,0.008552581,-0.023225479,-0.0047554728,0.0040185233,-0.010687421,-0.018400606,-0.003840069,-0.005925339,-0.019246612,0.024705987,0.012782605,-0.0070786816,-0.008460049,0.008169235,-0.041982993,-0.029980298,0.038572535,-0.017514946,0.0027809106,0.0062359814,-0.0147786485,0.0051685614,0.0026123705,0.0070125875,-0.00026313728,0.02873773,0.024401953,0.018228762,-0.01657641,-0.000080655496,0.020185148,-0.011011283,-0.018850047,0.01792473,-0.0031130337,0.022908226,-0.016378127,0.0105618425,-0.012557886,-0.008089921,0.02005296,0.0049174037,-0.0034666373,-0.024851395,0.0057072286,-0.021321967,0.02950442,0.006444178,0.0073827147,0.009372148,-0.015056243,-0.0344747,0.0032055655,0.039392103,-0.0063020755,0.012134883,-0.0024537446,0.0010062832,-0.0022108487,0.0062690284,0.01295445,0.036589712,-0.03198956,-0.0017366234,-0.050786734,0.019973647,0.0037012715,-0.0039392104,-0.015135556,0.010958407,-0.0115268165,-0.011592911,-0.027521597,0.005214827,-0.015479246,0.015399933,-0.013919424,-0.008129578,0.006083965,-0.029213607,0.005822893,-0.0011657353,-0.01002648,-0.028711291,0.0030419824,0.0034368949,-0.008407174,-0.0053106635,0.0012425696,0.036959838,-0.0048017385,0.020370211,-0.01960352,-0.021573124,0.012868527,-0.030905617,0.008374127,0.032941315,0.019616738,-0.010753515,-0.017990824,0.027971037,-0.0116788335,0.02208866,-0.002010914,-0.012333165,0.005902206,-0.03177806,-0.021877158,0.005152038,-0.023952514,0.0022885094,0.0076867477,0.0047554728,0.04716477,0.0027528207,-0.00935232,-0.020634588,0.015347058,-0.030323988,-0.00934571,0.0117978025,0.008380736,-0.028526228,0.035400018,0.007197651,0.02005296,-0.0050297636,0.025974995,0.01915408,0.0040846174,0.017805759,0.02556521,-0.037938032,-0.008413783,-0.000044845903,0.011216175,0.0058394168,0.01758104,0.00991412,-0.0041077505,0.009722447,-0.002081965,0.010343731,0.0014127621,0.035585083,-0.018070135,0.035981648,0.03738284,0.017369539,-0.0046365033,-0.00078362855,-0.013489813,-0.0024421783,-0.0012458744,-0.02186394,0.0064838342,0.0061236215,0.016867222,0.0065334053,0.0068803993,-0.004368822,-0.003390629,0.0026454176,0.018334512,0.008136188,0.009200303,-0.02039665,-0.031381495,0.010000043,-0.009160647,-0.03878404,0.01159952,0.039709356,-0.022987539,0.0011136861,-0.011566473,0.0099009015,-0.021612782,0.017118381,0.013370843,-0.021533469,-0.027971037,0.028975667,0.007647091,-0.0140516125,0.013165952,-0.019087985,0.0006167409,-0.0046596364,0.0035327314,-0.02027768,0.007243917,-0.00040854435,-0.021533469,-0.01228029,0.008030437,-0.005588259,0.008955755,-0.017858636,-0.032253936,0.020806434,0.017025849,0.068685025,0.020938622,-0.013959081,0.0117647555,-0.022339817,0.0104759205,0.013562516,-0.003175823,0.023159385,0.0022885094,-0.004428307,0.00641774,0.013430328,-0.031725183,-0.0006989455,0.003684748,-0.0059187296,0.014606804,-0.0064012166,-0.0072835735,0.02276282,-0.01182424,0.036378212,0.01632525,-0.026807781,-0.015135556,0.019881114,-0.03336432,-0.026530186,-0.02905498,-0.011870506,-0.0025875852,-0.006354951,-0.025023239,-0.020674245,0.016034437,0.0074488088,0.0037904985,0.000991412,0.007739623,0.023450198,0.0016804433,-0.022472005,-0.025869243,-0.042194493,0.01834773,-0.00028916184,0.0014515924,-0.04898897]},{\"id\":\"91ac982f-3670-4d36-8702-c79c999df9ae\",\"text\":\"I couldn’t connect my insta, tried 3 different accounts and all said they couldn’t be found. \",\"vector\":[-0.04571509,-0.004207952,0.0027848592,-0.008560572,-0.00869266,0.0047174348,-0.008566862,-0.02971355,0.0202661,-0.01817785,-0.01018966,-0.0063811173,0.0018036326,-0.038896825,0.009013446,0.015598985,0.010202239,0.0026449086,0.005384166,-0.026015082,-0.008308975,0.0013358203,-0.02963807,-0.0007760181,-0.017989151,-0.008220917,-0.013862969,-0.0027282499,0.02895876,-0.010554475,0.01090042,-0.011680369,-0.02981419,-0.027323384,-0.03177664,-0.0067868163,0.0020206347,-0.033135265,0.0001094838,0.0043651997,0.003547511,0.007466127,-0.0043023005,-0.015510926,-0.039500654,0.018668463,-0.026795032,0.0029672666,-0.028505888,0.037412405,-0.009862584,-0.018832,-0.021423444,-0.030845735,0.011258945,-0.018077211,0.0067742364,0.012579827,0.011957125,-0.00024452037,-0.022719167,0.007459837,-0.016479572,-0.0059534027,-0.00869266,-0.010994769,0.0043777796,-0.0059219534,0.009774526,-0.012919482,0.0188949,-0.0014844196,0.0020111997,-0.0081076985,0.0105418945,0.0027534096,0.0072648497,-0.0054848045,-0.0004717435,0.014215204,0.01664311,-0.02614088,-0.015410287,0.01958679,0.01163005,0.0020630916,0.008837328,0.0045098676,0.010850101,-0.01524675,0.013271717,0.01961195,-0.026417635,0.0037802379,-0.009271332,0.0039060363,-0.014781296,0.02827945,-0.02256821,0.0007005391,-0.007139052,0.0036418599,0.0031999934,-0.004575912,-0.009076345,-0.0021904623,0.0065603796,-0.012504348,0.027273064,-0.026291838,-0.010315458,0.013196238,0.0017140014,-0.023662655,-0.019800646,-0.006673598,-0.0094348695,-0.033437178,-0.007849812,-0.00012058943,-0.015749943,0.014894514,-0.0005397532,-0.016064439,-0.0064157117,-0.009315361,-0.031701162,-0.013561053,0.005736401,0.002577292,0.04568993,0.009221013,0.009189564,-0.0022502164,-0.0152341705,0.013397516,-0.017888514,-0.0062867682,0.005884214,-0.0032204357,0.008661211,0.009793395,0.0015803407,-0.00800706,0.018668463,0.026618913,-0.006447161,-0.0074095177,-0.015598985,0.0046702605,0.0010386219,0.010567054,-0.02103347,-0.04498546,-0.005739546,0.01888232,0.013171079,0.03695953,-0.021926638,-0.032204356,-0.030795416,0.032908827,-0.0261912,-0.023033662,0.027096946,0.009642437,-0.01601412,-0.021410866,-0.025964763,-0.0005566573,-0.023964569,-0.009158114,-0.0189578,0.003918616,0.0073843584,0.007195661,0.00939713,0.008900227,-0.0041010235,-0.019247135,0.0009733641,0.008283816,0.009894034,0.004792914,-0.02250531,-0.013284297,-0.003560091,0.00546279,0.017813034,-0.020744134,-0.0026826481,-0.019410672,0.0117621375,-0.015146111,-0.65173566,-0.006900035,0.019460991,0.024379704,-0.0094726095,0.051325694,-0.01157344,0.012498057,-0.031726323,0.017574018,-0.0422179,0.0036638745,-0.013322037,-0.010107891,0.0072900094,-0.025599947,0.026971148,-0.012454028,-0.0034437275,0.013196238,-0.02757498,-0.019184235,-0.014114565,-0.0071327616,-0.021121528,-0.021197008,0.017813034,-0.015573826,-0.016366355,0.022731747,-0.023650074,0.020027084,0.038091715,0.0008389172,0.052583676,-0.01595122,-0.0069314847,0.036506657,-0.015460607,0.021700202,-0.024153268,-0.017951412,0.01447938,0.0019089887,0.004711145,0.019750327,-0.0011880074,-0.011202335,0.00797561,0.008428484,0.025172234,-0.030317383,-0.009346811,0.0009749366,0.029612912,0.005726966,-0.0120955035,0.010309168,0.018819422,0.005884214,-0.017234363,0.0018979814,-0.00871153,-0.021511504,-0.0126867555,0.030116105,-0.0051262793,0.018467186,0.011692949,-0.01601412,0.01086897,0.004550752,-0.012994961,0.011227495,-0.0135358935,0.018743942,0.038821343,0.025147073,0.00044029392,0.0071327616,-0.0061735497,-0.016454414,-0.0035663808,-0.023008503,0.0334875,0.017599177,-0.029612912,0.006686178,-0.01817785,-0.016479572,0.034317765,-0.005808735,0.004443824,0.0009513494,0.016429253,0.015058053,-0.0061389552,0.0051262793,-0.005947113,-0.0036733095,0.016240556,-0.009378261,-0.007566766,0.004594782,-0.0010622091,0.013661692,0.0040318347,0.02767562,0.043878436,-0.015624145,-0.014932254,-0.0006187702,0.013636532,-0.019272294,-0.006025737,-0.025046434,0.019813227,0.0020190622,-0.0067679468,-0.0073088794,0.033311382,-0.01591348,0.010221109,-0.007925291,-0.011258945,0.04201662,-0.006327653,0.0008106126,0.0015308077,-0.0032896246,-0.0057804305,0.0038179774,0.02320978,-0.016781488,-0.01163634,0.027801417,0.027323384,-0.0055382685,0.0151964305,-0.030292222,-0.0054816594,-0.024178427,-0.0069880937,0.018517505,0.018681042,-0.02322236,0.014252944,0.011718108,-0.008491383,0.0071453415,-0.004566477,0.0013601937,0.0021904623,0.01675633,-0.019813227,-0.016995346,-0.0034185678,-0.02689567,-0.024354544,-0.01374975,0.0007893841,0.03487128,0.0026873655,-0.027876895,-0.0012218157,-0.022756906,-0.008447354,0.020681234,-0.015120951,-0.0015701196,-0.01015192,-0.034569364,-0.01670601,-0.0053338464,0.0076485346,0.015498347,-0.0056451974,0.0007445685,-0.0007013253,0.0032487402,-0.006698758,0.005135714,-0.016202817,0.0004316453,0.02173794,0.022958184,0.0056860815,0.039626453,-0.041739866,0.024077788,-0.013007541,-0.008875067,0.0026653507,-0.012711915,0.0053904555,0.0134604145,0.028707163,0.005459645,-0.026644073,0.010497865,0.011397323,0.012548377,0.0069440645,0.0008428484,0.013435255,-0.008252366,-0.0021417155,-0.018467186,0.025499308,-0.0037393535,0.02898392,-0.008415904,-0.010623664,-0.020102562,-0.008768139,0.050973456,0.009837424,-0.00065768906,-0.017687237,0.03902262,-0.009139244,0.010963319,0.015838,-0.013158498,-0.010265139,-0.005802445,0.038016237,0.005736401,0.013586213,-0.02256821,-0.0051136995,0.017687237,-0.000736313,0.032380473,0.007711434,-0.012516928,0.008472513,-0.015146111,0.031701162,-0.010409807,0.013586213,0.01527191,0.032984305,-0.0129823815,0.023172041,0.006893745,0.01601412,-0.020001924,-0.009265042,0.014844195,0.008642341,0.006918905,-0.019221975,0.0019734602,0.0064188563,-0.016039278,-0.006377972,0.013485574,0.017574018,0.03834331,0.018077211,-0.012856583,0.0030144409,0.017989151,0.015737362,-0.00040491318,0.00939713,-0.000568844,0.019272294,-0.016227975,-0.02024094,-0.0014183754,0.030996693,-0.015762523,0.009686466,-0.006164115,-0.00087980164,-0.0014388177,0.014164885,-0.004843233,-0.011001058,-0.029663231,0.013951028,-0.005638907,0.0048054936,0.009755655,-0.0140139265,0.027172426,0.004446969,0.025725745,-0.006466031,-0.0065478,0.00087822916,-0.008271236,0.00653522,0.003695324,0.032883666,-0.019247135,0.024518082,0.0074409675,0.019259715,-0.013573633,-0.01374975,0.015737362,0.02840525,0.018416867,-0.013372356,-0.018718783,-0.008252366,-0.018731361,0.00032334085,-0.0016212252,-0.02100831,0.028203972,0.00870524,0.016529892,-0.011743268,-0.0147183975,0.015737362,0.0032550301,-0.009327942,-0.020568017,-0.03255659,-0.008856198,0.09002124,0.02185116,-0.009541798,0.016039278,0.014730977,0.008466223,-0.0018366547,-0.035902824,-0.011315554,-0.011793587,-0.02539867,-0.008478804,0.01009531,0.022706587,0.008151728,-0.001377491,-0.00508225,-0.014554859,-0.023448797,-0.012296781,-0.0117998775,-0.0020237796,-0.021423444,0.040658,0.015988959,-0.018806841,0.0061861295,0.009283912,0.00873669,-0.010724302,0.016781488,0.024027469,-0.013472994,0.01664311,0.0062741884,0.0006120872,0.01083123,0.005868489,0.02754982,0.010384647,0.023763293,0.016404094,-0.0010276146,-0.012170983,0.002679503,-0.02461872,-0.02042964,0.02036674,0.0019671703,-0.009214723,0.019825807,0.00020245659,-0.013712011,-0.013196238,0.025813805,-0.0024640735,-0.009912903,-0.0070006736,-0.013171079,-0.04370232,-0.0038368471,0.0015103654,0.00035420075,-0.010302878,-0.029537434,-0.037060168,-0.002357145,-0.011365874,-0.00510741,0.012705625,-0.0001896802,-0.01742306,-0.014793877,0.019347774,0.007761753,0.014869355,0.016139917,0.0065603796,0.000996165,0.040683158,-0.000052481464,-0.043802958,0.017901093,-0.00432746,-0.0033556689,0.012120663,-0.004079009,0.008466223,-0.01890748,0.015749943,0.025298031,0.01970001,0.009749366,-0.018806841,0.03970193,0.008044799,-0.003008151,0.040003847,-0.002284811,0.0037299185,0.029461954,-0.000940342,-0.03628022,-0.004503578,-0.00040884435,0.006019447,-0.0017894803,0.028002694,-0.029411634,0.002465646,0.021259908,0.0035380763,0.011409903,-0.008994576,-0.015561245,0.016957607,0.007868681,0.0103217475,0.008837328,-0.025864124,-0.022844965,-0.00508854,0.006299348,0.007742883,-0.01811495,0.015020313,-0.005802445,-0.040431563,0.007050993,0.017498538,-0.018504925,0.01092558,-0.016806649,-0.015422868,-0.018026892,-0.010013542,-0.0012509065,0.018995538,0.011925676,-0.008868778,-0.023348158,-0.023763293,-0.007466127,-0.037311766,-0.010007252,-0.022882704,-0.0074535473,-0.0067868163,0.0039469204,0.036833733,-0.00723969,0.019259715,-0.025109334,-0.0030757675,-0.025537048,-0.02900908,-0.010397227,0.027273064,0.022102755,0.022618528,0.007170501,-0.009743076,0.022291454,0.004198517,0.015624145,-0.009365681,0.0009804403,-0.002074099,-0.016529892,0.0008609319,0.01163005,-0.0002399995,0.042419177,-0.015787682,0.0029908537,0.008384454,-0.022329193,0.0007760181,-0.004204807,-0.011145727,-0.014315843,-0.0065603796,0.023511697,0.017460799,0.005343281,0.010032412,-0.005211193,0.0050413655,-0.0005295321,0.007403228,0.022933023,-0.03177664,0.027474342,0.009831134,-0.01811495,-0.004767754,-0.0040286896,-0.0083278455,-0.0022549338,-0.0007032909,0.012397419,0.029411634,-0.027826576,0.01018337,-0.021197008,0.019939026,0.01730984,-0.005503674,0.007679984,-0.04282173,0.018618144,-0.012661596,-0.01822817,0.016190236,0.0021684477,-0.0036764543,-0.008868778,-0.0052332077,-0.014164885,-0.005947113,-0.020756714,-0.00062466704,0.00796932,0.034368087,0.046872433,0.028254291,0.025688006,-0.008019639,0.013007541,-0.021536663,-0.0067931064,0.02323494,0.0509483,-0.008302686,-0.011183466,0.006906325,-0.0011101697,-0.02320978,-0.024845157,0.0039815153,0.020454798,0.0042362567,-0.022631109,-0.0041607777,-0.044784185,0.010202239,-0.026644073,0.022907864,0.00034751772,0.005066525,-0.0070824423,0.01742306,0.004991046,0.032330155,0.013284297,0.009485189,-0.007937871,0.0054690796,0.0086234715,-0.0061924197,-0.0067176274,0.02903424,0.0019247135,0.005739546,0.016265716,-0.009931773,-0.041261833,-0.026518274,0.0035506561,0.015598985,-0.028455568,-0.011164596,-0.027222745,-0.00723969,-0.002610314,-0.0018004876,0.011793587,-0.015146111,0.0014396039,0.0047363047,0.024040049,0.005491094,0.016378934,-0.01957421,-0.012743364,0.0013177368,-0.022392092,-0.008944257,0.0009788678,-0.038267832,-0.023398478,-0.022643687,-0.0039374856,0.01085639,-0.00722711,0.011384743,0.013963607,0.00036363563,-0.042293377,0.002396457,-0.0023618625,0.0016259426,-0.01087526,0.021574402,-0.00725227,-0.044608064,0.0041827923,0.0020457944,-0.034670003,-0.024518082,0.037840117,0.014114565,0.0030993547,0.014756137,0.037840117,0.017574018,-0.018668463,-0.027147265,-0.011586021,0.022920445,-0.0011085973,0.020756714,0.0043840697,0.043148804,0.0016935591,-0.02903424,0.03265723,0.005164019,-0.011881647,-0.001071644,-0.010019832,0.043274604,-0.011202335,-0.02256821,0.0077051437,-0.02981419,-0.0005173454,0.0073088794,0.007522736,0.017938834,0.007610795,0.020882512,0.023448797,0.009743076,0.009095214,-0.011900516,-0.020668656,-0.031021852,-0.005314977,0.012089213,0.008516543,0.0023728698,0.0134604145,-0.011931965,-0.036934372,0.0054187602,-0.025889283,0.016970186,-0.03137409,0.005648342,0.02822913,0.013171079,-0.016831808,0.02687051,0.0056294724,0.009994673,-0.017586598,-0.008422194,0.0076548243,0.0022392091,0.00037601887,-0.019335194,-0.020152882,0.024857737,0.004638811,0.0076548243,0.0014773434,0.0047017103,-0.0120577635,0.0061263754,0.019221975,-0.014101986,0.0006521854,0.001666827,0.0362299,-0.049539357,0.0053055417,0.013850389,0.012183562,-0.0071642115,0.01304528,-0.012680465,-0.0057018064,0.018542664,-0.032883666,-0.008648631,-0.008208337,-0.019674849,0.034795802,-0.0015370976,-0.0072900094,0.022933023,-0.0054219053,-0.0112086255,0.009787105,0.015397708,0.0012792111,0.013171079,0.034368087,-0.034317765,-0.008258657,-0.009812265,0.013359776,-0.011277814,-0.005154584,0.005035076,-0.035324153,-0.0051797437,-0.0046859854,-0.01675633,0.017158883,0.009233593,0.00016117904,-0.017586598,0.025587367,-0.020530278,-0.023536855,-0.022668848,-0.015775103,0.030040625,0.008164307,-0.049967073,-0.0062049995,0.016945027,0.022882704,0.0066924677,0.23489052,-0.0025521324,-0.02466904,0.03260691,-0.0120577635,-0.0012485478,0.010328038,0.018001731,0.0016416673,0.006459741,-0.02386393,-0.021976957,-0.008485093,-0.014152305,0.013233977,-0.014957414,-0.0037582233,-0.008409614,-0.018064631,-0.00724598,-0.004047559,0.0018759667,-0.006459741,-0.010579634,0.018001731,0.011913096,0.003912326,0.016819227,-0.008132858,0.0022046147,-0.019750327,0.015523506,0.008415904,-0.020957991,0.0057018064,-0.008478804,0.001739161,-0.01600154,0.027122106,0.025637686,-0.020442218,0.009843715,0.011674079,-0.010724302,0.010573344,-0.006374827,-0.0062741884,0.004223677,0.0040255445,0.01730984,-0.008164307,-0.028128492,0.02175052,0.014164885,-0.011007348,0.0027235325,0.021272486,-0.0024341964,-0.006667308,0.013951028,-0.003258175,0.0072837197,0.0018932639,0.010422386,-0.022077596,0.01377491,0.021134108,-0.01092558,0.021599563,-0.012384839,0.0072648497,0.012957222,-0.014668078,0.025838964,-0.03846911,-0.030317383,0.022253713,0.0025694296,0.023511697,0.014076826,0.011372163,0.01811495,0.0017548858,-0.008963127,-0.016945027,-0.042721093,0.02973871,0.00803851,-0.016253136,-0.023826191,-0.015435447,-0.003839992,-0.011749558,-0.016139917,0.015649304,0.0054533547,0.018995538,0.0065037706,-0.007491287,-0.0068685855,-0.01888232,0.03280819,0.022190815,0.012259041,0.0067302072,0.0123911295,0.009057475,0.0062867682,0.0072900094,-0.0018979814,0.0017438785,-0.03394037,-0.006079201,0.004075864,0.009831134,0.036833733,0.007566766,-0.016856968,-0.03245595,0.009894034,0.02968839,-0.008397034,0.003412278,-0.018618144,-0.009629858,-0.0363557,-0.00234771,0.014227784,0.024316804,-0.031399246,0.027927214,0.028883282,0.030392861,-0.010648823,-0.01674375,-0.0027927216,0.01738532,-0.007019543,0.010944449,0.0046859854,-0.010749462,-0.006318218,-0.016127339,-0.015435447,0.0011400467,-0.010428676,0.007635955,-0.016089598,-0.03127345,-0.007327749,0.012793683,0.02178826,-0.008843618,0.015649304,0.043802958,0.0031622539,-0.044633225,-0.016102178,-0.00163695,0.01524675,-0.0035758158,-0.018278489,0.035726707,-0.01378749,-0.026342157,-0.012139533,-0.15669432,0.02387651,0.013623952,0.012932062,-0.00019911506,-0.006110651,0.011321844,-0.027876895,0.014567439,-0.003931196,0.011718108,0.00073985104,-0.0075164465,-0.0061766948,-0.0023980294,-0.001015821,0.0068622953,0.0036009753,0.0333617,-0.0023225504,0.03122313,-0.025071595,0.0140139265,-0.026618913,0.010390936,-0.009227303,-0.021335386,0.009900323,0.020001924,-0.006604409,-0.0066358587,0.017259521,0.021385705,0.009868874,0.019322613,0.011328134,0.017775295,-0.010629954,0.010944449,0.0027015177,-0.012787393,-0.003481467,0.01013305,-0.0027486922,-0.012170983,0.0045413175,0.005827605,0.0064157117,0.018328808,-0.021285066,-0.0041544875,0.00873669,-0.017901093,0.011963415,-0.0077932025,0.019964185,-0.0022250568,0.009038606,-0.004632521,-0.031399246,-0.012259041,-0.019360352,0.0082901055,-0.016051859,-0.014089406,0.007937871,-0.017649496,-0.0049658865,-0.024492923,0.026266677,-0.019775487,-0.016215397,0.0030568978,-0.009315361,-0.0058527645,-0.011850197,-0.012957222,-0.0024452037,0.010850101,-0.0072648497,0.013183658,0.03489644,-0.012787393,0.008956837,-0.020329,0.014315843,0.017045666,0.01378749,-0.022631109,-0.026568593,0.037412405,0.0009812264,-0.0036072652,-0.007403228,0.009906613,0.008491383,0.020039665,0.012705625,0.012076634,-0.009460029,-0.0012005873,-0.00510741,-0.025549628,0.007447257,0.021976957,-0.0054973844,-0.029512273,0.015397708,0.015926061,-0.0036764543,-0.022593368,-0.0061169406,0.021939218,0.048734248,-0.004475273,0.008755559,0.003912326,-0.011793587,0.026593754,0.0010661402,0.052533355,0.0017863354,-0.03248111,0.008843618,-0.022278873,-0.013925868,-0.1113063,-0.038921982,0.015070632,-0.0048935525,-0.012699335,0.0147183975,0.017259521,-0.00044933567,-0.020228362,0.043400403,-0.010963319,-0.0067868163,-0.020127723,-0.009787105,0.014793877,-0.009824845,0.014341002,0.006874875,0.004503578,0.018278489,-0.015611565,0.018504925,0.008610891,-0.0047551743,-0.0217631,-0.0029138024,-0.0015402426,0.002037932,0.009736786,0.019435832,-0.015108372,0.0042928657,-0.0094789,-0.025838964,-0.00020226002,0.0134604145,-0.041790184,-0.019221975,0.031701162,-0.0014922819,-0.0065100603,-0.0035066267,-0.000013710045,-0.034997076,-0.012101794,0.014064246,0.0063528125,0.027977534,-0.013284297,-0.00012923806,0.01092558,0.018001731,0.004651391,0.0068560056,0.009416,0.0006726276,0.022429831,0.023297839,0.0035789607,0.017095985,0.021159269,-0.013171079,-0.0067050476,0.012120663,-0.00034496243,-0.007843522,-0.010711722,-0.007887552,0.016907288,0.009114085,0.008397034,-0.0028367508,-0.022719167,0.015875742,-0.031298608,0.013384935,-0.016957607,-0.0035758158,0.008573152,-0.026945988,-0.015485766,-0.013573633,0.004494143,-0.010787201,0.0025489873,-0.0047017103,0.0034846119,0.013938447,-0.017913673,-0.013724591,-0.0013719874,0.0008074676,0.008044799,-0.01664311,-0.030770255,0.016655691,-0.012271621,-0.005211193,-0.020555437,-0.014177465,-0.009548089,-0.0068811653,-0.03756336,0.011416193,0.0067176274,-0.0029955711,0.011831327,-0.01805205,-0.01087526,-0.017611757,-0.034342926,0.0055256886,0.0052646575,0.008566862,-0.0055539934,0.015988959,-0.010378357,-0.004060139,0.030644458,-0.007541606,0.012227591,-0.022366932,-0.0053369915,-0.017674657,0.0031433841,0.025813805,-0.013699431,0.0038871665,-0.019888707,0.016592791,-0.015171271,-0.011586021,0.0072145304,-0.036582135,-0.009126664,0.017712396,-0.013271717,-0.057011776,-0.0026669232,0.04646988,-0.009988382,0.0120955035,-0.00041120307,-0.013724591,0.016165078,-0.009868874,-0.008208337,-0.028832963,-0.01163005,0.0049753212,0.0120955035,0.0117998775,0.02093283,0.0070887324,-0.017083405,-0.0067679468,-0.0028430407,-0.045991845,0.021335386,-0.008346715,0.0077994927,-0.025084175,0.02971355,0.00055311923,0.0070761526,-0.00016353774,0.021285066,-0.002508103,-0.027348543,0.0034405827,0.013221398,-0.038997464,0.014278104,-0.0046828403,0.006604409,0.019888707,0.028883282,0.017146304,0.0114665115,0.023725552,-0.0126867555,0.010334328,-0.004994191,0.021649882,-0.015297069,0.01091929,0.019071016,0.019297455,-0.0075793457,0.03245595,-0.0039028912,-0.00018388168,-0.030065786,0.016831808,-0.0027093801,-0.008944257,0.00794416,0.022002116,-0.014101986,0.020656075,0.008258657,0.01015192,0.003201566,-0.003339944,0.0013161644,-0.029336156,-0.013145919,0.015158691,-0.007176791,-0.04704855,-0.0069440645,0.014403901,-0.024430024,-0.010560764,0.007768043,0.009566958,-0.013686852,-0.009925483,0.020643495,-0.03539963,-0.030971533,0.007887552,0.010629954,0.018366547,-0.010032412,-0.016492153,0.02256821,0.015674464,0.01160489,-0.009082635,0.011554571,-0.0021291357,0.0064251465,-0.009221013,-0.0008074676,-0.0051986133,-0.0030883474,0.007340329,-0.02107121,0.02465646,-0.02903424,0.05157729,0.0010865825,-0.0020127723,-0.023021083,0.019108757,0.04133731,0.027776258,-0.015787682,-0.0032864797,0.007711434,-0.010478996,0.005236353,0.0032896246,-0.032078557,0.0017753281,0.024757098,-0.014328423,0.0011361156,-0.015120951,-0.0049973363,0.026719552,-0.014353582,0.032430794,0.0020662365,-0.0040821536,-0.0064062765,-0.0140516665,-0.018253328,-0.0054942393,-0.030644458,0.020039665,-0.0054061804,-0.03195276,-0.0067302072,0.034267448,-0.003399698,-0.0055539934,0.0028068738,0.02024094,0.010296588,-0.0014946406,0.008749269,-0.0021825999,-0.022731747,0.009384551,0.01009531,-0.014932254,0.005022496,-0.014466801]},{\"id\":\"6aada053-aaf2-49df-aaad-4002f0f18573\",\"text\":\"I received my rings but they were the wrong size waiting to get the new ones can’t wait 😛 \",\"vector\":[-0.014730088,0.0010442374,-0.019918367,-0.040966853,-0.0014471638,0.028972171,0.0039618416,-0.020059632,-0.004501217,-0.015423572,0.0069219857,0.0014961249,-0.0059877103,-0.032208424,-0.0049539073,0.0007380294,0.017260017,0.02242261,0.010941617,-0.03698575,-0.022576718,-0.0044049,-0.006941249,-0.0020660008,-0.006857774,-0.031386517,0.023347255,-0.018698351,-0.016361058,-0.003083751,-0.002276293,-0.0017882867,-0.018711194,-0.028073212,-0.019212043,-0.0064981906,0.0073843077,-0.01146173,0.017696654,-0.029254701,0.007987894,-0.0029842234,0.022499664,-0.016335372,-0.024554428,0.022679456,-0.016964644,0.0028830906,-0.0027289833,-0.005396966,0.009888551,0.008180529,-0.032362532,-0.0012818195,-0.005660232,-0.012123107,0.0156033635,0.00790442,-0.007287991,0.014601666,0.008167686,-0.010870985,-0.0049956446,0.0013901761,0.029306069,-0.0020242634,0.004376005,-0.018775405,-0.0062413453,-0.0053038592,0.020907223,-0.0032330425,0.0011084488,0.0072687273,-0.0010779484,-0.0044081104,-0.009740865,-0.009875709,0.02558181,-0.019276254,0.018030552,-0.019866997,0.024682852,0.020175213,0.003788471,0.051086567,0.0063055567,-0.00011929269,0.022653772,-0.029511547,0.006469296,0.023758207,-0.021703443,-0.0046456927,-0.020997118,0.016373899,-0.011384676,0.014884196,-0.011545205,-0.021074172,0.027482467,0.01632253,-0.0069219857,-0.0131183835,-0.012097422,-0.0095996,-0.027302675,-0.03279917,0.015141041,-0.034597088,-0.030590298,0.013394492,0.024438849,-0.021266807,-0.0034706246,-0.0021382386,-0.015834523,-0.019905524,-0.008829064,-0.0055253883,0.0096317055,0.021151226,0.032953277,-0.010010553,0.023167463,-0.0064050844,-0.0121038435,-0.016219793,0.007865893,0.012007526,-0.00796221,0.023629785,0.011224148,0.0408898,-0.00089976186,0.008341057,0.0015177963,0.0009679864,-0.015795996,-0.0060262373,0.017349912,0.045923974,0.0038494717,-0.0011943314,-0.011924052,0.016720641,0.0024817695,-0.0022666615,-0.003929736,-0.038321346,0.033569705,-0.0060390793,0.029049225,-0.031078303,0.0018219977,0.008206213,0.0022281345,0.03382655,-0.018480033,-0.033004645,0.01061414,-0.0022040552,0.011699311,-0.023873787,0.015885893,0.0073265173,0.026262451,-0.009747286,-0.011134252,-0.015128199,-0.024156317,0.011705733,-0.003913683,-0.00013243595,-0.011968999,0.01733707,0.009227174,-0.00711462,0.017131593,-0.01027382,-0.010691193,-0.019687206,0.01439619,0.021485126,-0.01474293,-0.031078303,0.011025093,0.0036183107,0.035829946,-0.0028317214,0.020033948,0.010402242,0.024824116,-0.028997855,-0.6501273,-0.021241121,0.013754075,0.024079263,0.0030564612,0.035341937,0.008315372,0.023655469,-0.020765956,0.020239424,-0.013111962,0.019070778,0.017439809,-0.0059267096,-0.0052428585,-0.018788246,0.021883234,-0.0095674945,0.011667206,-0.014858511,-0.015500625,0.0049442756,-0.0016919696,-0.012572587,-0.002231345,-0.023128936,0.006250977,0.0245159,-0.0029553284,0.007018303,-0.008694219,0.025556125,-0.013227543,-0.009169384,0.068629116,-0.017208647,-0.0045622177,0.013728391,0.009291385,0.004327846,-0.04140349,0.009272122,0.004828695,-0.0188653,-0.0042668455,0.0025796918,0.0080713695,-0.0011903183,-0.005396966,-0.011050777,0.006600929,-0.006488559,-0.016450953,-0.002359768,0.0110764615,-0.008681377,0.03981105,0.036677536,0.023591258,-0.00026467125,-0.03143789,-0.011795629,-0.009464756,-0.0067486153,0.0007789642,0.03338991,0.010004132,-0.00007278961,-0.00012350656,-0.0032908327,0.0132147,0.01733707,-0.0317461,0.029511547,0.025877183,0.016592218,-0.0018300241,0.016849063,0.01140394,0.013715548,-0.0052428585,-0.00036881407,-0.006941249,-0.018813932,0.031925894,0.0056955484,-0.029177647,-0.0052075423,-0.0037146278,0.0058079185,0.03048756,0.00053817156,-0.009875709,-0.005990921,0.018146133,0.03184884,0.02061185,0.0188653,0.04235382,0.0039265254,0.0014608087,0.0121038435,-0.027174253,0.017927814,0.023103252,-0.0030468295,-0.0072173583,-0.0005353623,0.0050405925,-0.0015290333,0.041146647,0.016720641,-0.01004908,0.015436414,-0.026788983,-0.027533837,0.03133515,0.019584468,-0.029511547,0.0033357807,0.022435453,0.0066201924,0.023051882,-0.015564837,0.015436414,0.010588455,-0.01524378,-0.0027321938,0.0146273505,-0.021767655,0.005400176,-0.018980881,-0.000046477995,-0.013843971,-0.017645285,-0.001987342,0.0076090475,-0.015500625,-0.0101004485,-0.029280385,-0.008000737,0.019622995,-0.019507414,-0.016502323,0.020226581,-0.030513244,-0.034288872,0.0000056498484,-0.0040292637,-0.01141036,0.018454349,-0.02083017,-0.03552173,0.0025219016,-0.0027626941,0.0000073742744,0.004581481,-0.0055928105,-0.011326886,-0.01908362,0.013574284,0.031155357,-0.023758207,-0.03416045,0.007897998,-0.00864285,0.0029151964,0.004623219,-0.007069672,-0.017658127,0.0060583428,-0.0062798723,-0.0027289833,-0.025273595,0.0008572218,-0.0035990474,-0.00095755205,-0.011846998,0.0080200005,0.010646245,-0.0015121778,-0.01806908,-0.04140349,0.017144436,0.023334412,0.018017711,-0.0068256687,0.030538928,-0.02907491,0.014524613,-0.013818287,-0.025337808,-0.012039632,0.009310649,0.004504428,-0.011192042,0.001538665,0.0023228463,0.01214237,-0.0021494757,0.013471546,-0.0031800682,0.02157502,0.024978224,-0.0038751562,-0.019738575,0.0105435075,0.0054708086,0.0042154766,0.022217134,0.0072687273,0.0026567455,-0.03382655,-0.011320464,-0.0045557967,0.037011433,-0.011018671,0.03338991,0.009105172,0.0026294556,-0.03500804,0.0060615535,0.012180897,-0.0195331,-0.025003908,0.010434348,0.013561442,0.0002833327,0.008270425,0.012219424,-0.014781457,0.019070778,-0.0026920617,0.008861169,0.010312346,-0.0021671338,0.031155357,-0.02174197,0.021690601,0.012315741,0.032054316,0.018890986,-0.019468887,-0.0012103843,0.018338768,-0.013715548,0.035650153,0.004250793,0.015937263,0.00023477283,0.007165989,-0.0042154766,-0.053577967,0.00095835474,-0.012701009,-0.038449768,0.012039632,0.007814524,0.020727431,0.020650377,-0.008186949,0.031925894,-0.0012866353,0.003422466,0.031412203,0.041352123,0.010312346,-0.038475454,-0.018081922,-0.0006232516,0.01858277,-0.009952762,-0.019944051,-0.022358399,0.0067743,-0.0020194475,0.0091244355,-0.023925157,0.014087975,0.01688759,0.017825076,-0.02185755,0.028227318,-0.00128503,0.013304596,-0.015731785,-0.0023196358,0.024477374,0.010119712,0.027148567,0.019327622,0.009355597,-0.0058464454,0.00090538035,0.004337478,0.019520257,0.031771787,0.009118015,0.026943091,0.0073457807,0.025658865,-0.0006565613,-0.020599008,-0.015975788,0.03467414,0.027585205,0.0023388993,0.0047741155,-0.031540625,-0.014601666,0.000544994,0.0023565574,-0.030179344,0.022987671,0.005714812,-0.012245108,-0.029229017,-0.023501363,0.017426966,0.0020355005,-0.014691561,-0.0024239793,-0.009959184,0.002722562,0.09169384,0.025350649,0.0038366294,-0.0067486153,-0.0023758207,0.0032330425,0.0042604245,-0.018120449,0.011468151,0.0146530345,-0.004793379,0.011782787,0.0072815693,0.023873787,0.009342754,0.020599008,0.004841537,-0.0070568295,-0.006459664,-0.01056277,0.005149752,0.0062702405,-0.00988213,0.012213003,0.029717023,0.012328583,0.016284004,0.006392242,-0.0068641957,-0.013766918,-0.011500256,-0.0021976342,-0.010504981,0.020521954,-0.011487414,0.016951801,-0.003371097,-0.01519241,0.02907491,0.013921025,0.013067014,0.012951434,0.023642628,-0.024798432,0.005291017,0.0061803446,0.003987526,0.014010921,0.0039168936,0.004883275,0.024682852,0.0014006105,-0.016528007,-0.022255661,0.017799392,0.028895117,-0.020881537,-0.034776878,0.0034417296,0.0021157647,0.0042604245,-0.008848327,-0.004841537,-0.0091115935,-0.031206727,-0.01858277,-0.044511322,0.004732378,-0.009471177,-0.018878143,-0.014665877,-0.0015210068,0.0016967854,0.007994316,0.010980144,0.00089093274,0.0072623063,0.008109896,0.007775997,0.034879617,0.013433019,0.0025732706,-0.004247582,0.0023934788,-0.017195806,0.01655369,0.012553323,-0.01507683,-0.021202594,-0.015179568,0.016617903,0.018480033,-0.0048575904,-0.011281938,0.014319136,0.0023421098,-0.009850024,0.020971434,-0.025158016,-0.007975052,-0.0015033487,0.009972026,0.007968632,-0.0017609969,0.004501217,0.015051145,0.0095674945,0.012675324,-0.012437742,-0.013766918,0.0030050923,-0.011192042,-0.0003222608,-0.0023292676,-0.02845848,0.019558784,0.004613587,0.019404676,0.0135999685,0.005618495,-0.009169384,-0.016065685,0.016528007,-0.02874101,-0.02817595,0.025158016,0.027148567,-0.032054316,-0.0052557006,-0.0015025461,-0.014524613,0.014691561,-0.004369584,-0.007063251,-0.0056955484,-0.0046328506,0.010177502,0.013792602,0.010504981,0.005746918,-0.02348852,-0.009522546,0.0059941313,-0.005262122,-0.024233371,-0.023501363,-0.008508007,-0.005098383,-0.026095502,0.044511322,-0.014845669,0.003563731,-0.045718495,-0.0041191597,-0.0001263158,-0.026121186,0.0033100962,-0.014203555,0.002523507,0.038475454,0.0027771418,-0.0002999875,0.007461361,-0.0059780786,-0.0136513375,-0.022602402,0.000058091224,-0.01552631,-0.025247911,0.019507414,0.0033004645,-0.0040132105,0.008334636,0.002489796,-0.015179568,-0.0054740193,-0.0027851681,-0.016450953,0.0013492415,-0.013368808,0.0026214293,-0.010158239,0.015898736,-0.008508007,0.00925928,-0.008090633,-0.0026262451,-0.004003579,0.0058913934,-0.014537455,0.027867734,-0.025170857,0.007358623,-0.01880109,0.0046489034,-0.01016466,-0.020521954,-0.01750402,0.0024432426,0.008777695,0.021870393,-0.0031640152,-0.009143699,-0.0022682666,0.017773708,-0.013741233,-0.010928775,-0.0028333268,0.019263411,-0.018158976,0.015821682,-0.019494573,-0.017593917,-0.0025267175,-0.01377976,0.003473835,-0.028381426,0.0046071657,-0.0054515456,-0.029639969,-0.013240385,0.003428887,0.014254924,-0.003128699,0.006475717,0.0010233687,-0.013831129,-0.023963684,0.0067229304,0.008122738,-0.017054541,0.018813932,0.021266807,-0.003348623,-0.00075528625,0.010016974,0.0024657166,-0.018004868,-0.04325278,0.015051145,-0.028201634,0.007949368,0.00660735,0.007949368,-0.04009358,0.018544244,-0.030975565,-0.017491177,-0.0012192134,-0.018826773,-0.030615982,0.0068064053,-0.019276254,0.028330056,0.012110265,-0.0058592875,-0.014331978,-0.022615245,-0.026005605,-0.009105172,0.001767418,0.032362532,0.001744944,0.0036889433,0.015539152,-0.012457006,-0.007756734,-0.015166726,-0.022910617,0.02089438,-0.04805579,-0.005448335,-0.01693896,0.0132147,-0.007718207,0.012058895,-0.0120910015,-0.0034353083,0.0033004645,0.003948999,0.008000737,-0.007865893,-0.027431097,-0.022063026,-0.022409769,-0.0034706246,-0.024644325,-0.012046053,0.024156317,-0.016707798,-0.007930105,-0.03387792,-0.0029858288,0.033030327,-0.00084437954,0.012508375,0.0040132105,0.004793379,0.006128975,0.0037403123,0.01434482,0.0052878065,-0.018146133,0.010216029,-0.012283635,-0.029948184,0.011795629,0.007711786,-0.015218095,-0.0044530584,0.02874101,-0.019494573,-0.00029657627,-0.0033839392,0.037807655,0.006857774,-0.0125597445,-0.038989145,-0.052088264,0.0038045237,0.013856814,0.013407335,-0.020740272,-0.013843971,-0.00009601607,0.015590521,0.013291754,0.013355965,-0.0060326583,-0.019045092,0.011564468,0.033980656,-0.041865814,-0.020393532,-0.019289095,0.015680417,-0.013959552,0.027199937,-0.017247174,0.011108567,0.004793379,0.013831129,0.025247911,0.03760218,-0.020945748,0.01665643,0.002563639,-0.017105909,-0.025735917,-0.0116351005,-0.028047526,-0.007018303,0.0023902683,-0.018569928,-0.013869656,-0.02987113,-0.0020242634,-0.0036728904,0.00030540532,0.016142739,0.025196541,0.01858277,-0.006376189,0.022974828,0.0066330344,0.0009238411,-0.018608455,0.001682338,-0.0036600481,0.013317439,-0.013176173,-0.0030981987,-0.05342386,0.0023677943,0.028047526,0.014678719,-0.002857406,0.005002066,-0.007287991,-0.0023854524,0.009561073,-0.007885156,0.01931478,0.004934644,0.028509848,-0.016078528,-0.019982578,-0.0021542916,0.022782193,-0.024708536,-0.020650377,0.030795773,0.017979184,0.00570518,0.004591113,0.0013058988,-0.00739715,-0.0067036673,0.050418768,-0.023539888,-0.009207911,0.0044081104,0.016386742,-0.0048672217,0.0066587194,0.012392795,0.009740865,-0.010138975,0.011564468,0.0045236913,-0.018890986,0.0018380505,0.003252306,-0.008341057,-0.0054290714,-0.001406229,-0.015218095,-0.017825076,0.0059202886,0.003061277,-0.0039329464,-0.0011566073,0.010248135,-0.016720641,0.03043619,-0.033800866,0.0018781826,-0.01682338,-0.033800866,0.011185621,0.0047837473,-0.028201634,-0.014113659,0.0030949882,0.000099627956,-0.0080842115,0.24554428,-0.0074742036,-0.0018460769,0.031771787,-0.008456637,-0.004128791,0.019712891,-0.010228871,0.008103475,0.0033165172,-0.0065238755,0.01123699,-0.020521954,-0.009817919,-0.008373163,0.0023405044,-0.014961249,0.0008427742,0.005127278,0.003218595,-0.0071467254,0.018685509,-0.011795629,-0.015153884,0.025658865,-0.024194844,-0.0021125542,0.0058913934,0.001549902,-0.0012882407,-0.021382386,-0.024824116,-0.0028140633,-0.009464756,-0.00812916,0.0067999843,0.01858277,0.016386742,0.0017016013,0.028253004,0.0034866775,-0.012880801,0.0053744917,-0.023783892,0.003743523,0.009978447,-0.026403716,-0.024182003,-0.0023019777,0.00008969526,-0.011763523,-0.016926117,0.021253964,0.01750402,-0.0063633467,0.0014367294,0.02190892,0.0015177963,-0.026532138,-0.002619824,0.0063505047,-0.0031640152,-0.004613587,0.0075127305,-0.029691339,0.0131440675,-0.0013973999,-0.01778655,0.0020290792,-0.0110893035,0.003990737,-0.00191992,0.042662036,0.020136686,-0.03264506,-0.024027895,0.008321794,-0.013304596,0.01806908,0.01891667,0.0006481335,-0.0042251083,0.0053359647,-0.0131183835,0.00033309648,-0.01185984,0.014665877,0.027020145,0.030872827,0.0006268635,0.0016341794,0.024644325,-0.009156542,0.015950104,0.034314558,0.014357663,-0.017247174,0.037473757,-0.01225795,0.0035733627,0.0023501362,-0.03161768,0.0091115935,-0.001493717,-0.019109303,-0.018942354,-0.03105262,0.02586434,0.016797695,-0.022653772,0.017375598,-0.008283267,0.0030275662,0.011211305,0.008264003,-0.005432282,-0.020419216,-0.027020145,-0.0016871538,0.011269095,0.016926117,-0.007127462,0.01745265,0.02580013,0.013510073,-0.0037627863,-0.021369545,0.0032940432,0.016027158,-0.017914973,0.028535534,0.018775405,0.040067896,-0.025723075,-0.020483427,-0.010575613,0.015462098,-0.0005851261,0.012431322,0.006742194,-0.016476639,0.011602995,0.013407335,0.017593917,-0.016669272,-0.033698127,0.017799392,0.00007660216,-0.010967302,0.013933867,-0.018120449,0.000015187494,0.005393755,-0.009606021,0.019969737,0.008026421,-0.044074684,-0.016682114,0.033415597,0.03924599,-0.008174107,-0.019224884,0.029357439,-0.019635838,-0.0136641795,-0.008488744,-0.16150445,0.025723075,0.02383526,-0.017863603,0.010819616,-0.022910617,0.009246438,0.009201489,-0.02179334,-0.0014439533,0.040735696,0.022859247,-0.007538415,-0.008816221,-0.010228871,-0.032568008,-0.032259792,0.017054541,0.028278688,0.008861169,-0.013728391,-0.015551994,0.017157279,0.0006838511,-0.00059194857,0.008970329,0.0005277372,-0.0015266254,0.0060583428,-0.013355965,-0.016309688,-0.009946342,0.04276477,-0.003602258,0.0077503123,0.0058014975,0.0009928683,0.015821682,0.012912907,0.0040934747,0.0018075501,-0.0033678864,0.0001263158,-0.0015490993,-0.007994316,0.022229977,0.0018910249,-0.01174426,0.004324636,-0.028895117,-0.0017802602,-0.02907491,-0.0066651404,-0.017632442,0.030256398,0.004324636,0.006594508,0.033158753,-0.036035422,-0.02456727,0.021947447,-0.0017658127,0.007499888,0.00005934535,-0.0015145857,0.0017321018,-0.0026583509,-0.012315741,-0.026403716,0.025761602,-0.004199424,-0.01028024,0.0007725431,0.013766918,0.014165028,0.013471546,-0.0267633,-0.010408663,0.0021815812,-0.025093803,-0.0067165093,0.055992316,-0.0014816774,0.020714588,-0.0015161909,0.029100593,-0.0057726023,0.0022891355,-0.0030709088,0.018120449,0.016129896,-0.027225621,-0.004061369,-0.01439619,0.0014415453,0.025479073,0.012482691,-0.016810536,0.023000512,-0.017491177,-0.004664956,0.009638127,-0.020997118,0.049828023,-0.0070568295,0.005149752,0.0146273505,-0.00807779,0.031181041,-0.0037852603,-0.009445493,0.0049506966,-0.0045622177,0.031489257,0.012206581,0.007352202,0.003990737,-0.027276991,0.038937774,-0.00875201,0.02987113,0.003579784,-0.032850537,0.026788983,0.006337662,0.009066646,-0.09457051,-0.02371968,0.00018159779,-0.011891946,-0.0053809127,-0.015179568,0.019854156,0.023334412,-0.00745494,0.032157056,-0.014678719,-0.008000737,-0.0038269977,0.010845301,0.0068770377,-0.023976525,0.007416413,-0.012007526,-0.018942354,-0.004732378,-0.0095931785,-0.0051080147,-0.026185397,-0.006003763,-0.02382242,-0.03698575,-0.037011433,0.0016422059,0.004732378,0.0069091436,0.011288359,0.0023469257,0.0015370597,-0.020200897,-0.022165766,0.009220753,-0.019944051,-0.004754852,0.017131593,-0.010235293,-0.0044305846,0.025286438,-0.010883828,0.002722562,0.010511401,0.010697614,-0.015063988,0.025093803,0.0052107526,-0.00858506,-0.029383123,0.017876446,-0.031129673,-0.015449256,0.025671706,-0.012604692,0.018775405,0.012778062,-0.005917078,0.015128199,-0.0056056525,0.013355965,-0.038244292,0.03919462,-0.008180529,0.0033839392,-0.008090633,0.0055992315,-0.004806221,-0.0061931866,0.00711462,0.01823603,-0.025710233,0.007165989,-0.021896077,0.030744404,-0.008456637,-0.029254701,0.0014455585,-0.017041698,-0.010318767,-0.0013765313,0.021202594,-0.038989145,0.029511547,0.0011429624,0.0032683588,0.0072302003,-0.0059844996,-0.0042315293,-0.037088487,-0.015051145,0.018480033,0.0068770377,-0.021343859,0.015063988,-0.016476639,-0.0028814853,0.018261714,-0.025260754,-0.02478559,-0.014434717,-0.04273909,0.033569705,0.008546533,-0.030872827,-0.004465901,-0.017581074,0.00977297,-0.02258956,-0.009137278,0.0046328506,-0.0060904487,-0.0248498,-0.024297582,-0.003281201,-0.023424309,-0.017735181,0.00004065884,0.020932907,0.025877183,-0.02258956,-0.007442098,-0.027867734,0.0034609928,-0.015038303,-0.0090859085,0.017298544,-0.008109896,0.011179199,0.0039329464,-0.0064949803,0.01552631,-0.010549928,0.0032555165,0.03354402,0.019571627,-0.056146424,-0.004681009,0.028715326,-0.00745494,-0.052447848,0.008308952,-0.019725733,0.010819616,0.009573915,-0.011699311,-0.0009655785,0.0008957486,-0.0016903643,0.01981563,0.015102514,-0.00053094776,0.021343859,0.010338031,-0.020355005,-0.03387792,-0.016592218,0.008829064,-0.010736141,0.0009695917,-0.01625832,0.0443829,-0.012829432,-0.018107606,-0.016463796,0.030821458,-0.0076539954,-0.03264506,-0.021318175,0.011994684,-0.0054162294,-0.013985236,0.0044016894,0.0036375741,0.011147094,0.00875201,0.006645877,0.003913683,-0.020534797,-0.0054708086,-0.0065367175,-0.008610745,0.0061514494,-0.021934604,0.012155212,-0.010723299,0.003958631,0.0023934788,0.01293217,-0.0015852182,0.016001474,-0.025055276,0.017683811,-0.010228871,-0.0038366294,0.010870985,0.02490117,0.014216398,0.025902867,0.023809576,0.02106133,0.012508375,0.004578271,0.005663443,0.006562402,-0.018313084,0.007461361,-0.012392795,-0.006941249,0.0131312255,-0.0010145396,0.023013355,-0.013715548,0.009972026,0.019687206,-0.00231482,-0.0019070777,0.0064917696,-0.010382978,-0.016065685,0.01665643,0.013150489,0.004674588,0.007885156,-0.011808471,0.021279648,0.021382386,-0.00124249,0.005191489,-0.008880433,0.014152186,0.013176173,-0.011853419,-0.019404676,-0.016438112,0.0063729784,0.00086203765,-0.0055061253,0.01993121,-0.007506309,0.05093246,-0.0069990396,0.023064725,0.0028622218,-0.008193371,0.035444677,0.03336423,0.009175805,0.00018029349,-0.02049627,0.015564837,-0.0146401925,-0.023334412,-0.009740865,-0.04602671,0.0026230344,0.0018557087,0.010883828,-0.011172779,-0.014935565,0.023180304,-0.016425269,0.0039265254,0.01806908,-0.0056345477,-0.026249608,0.007461361,-0.0028590113,-0.009413387,-0.026005605,0.0061065014,-0.009284964,-0.018826773,-0.005441914,0.020868696,-0.011391097,-0.0060294475,0.017581074,0.0016807326,0.005968447,-0.00063368597,0.017966341,-0.019301938,-0.003884788,0.010023395,-0.006562402,-0.0055446518,0.014486086,-0.04428016]},{\"id\":\"4ef4fdf9-b460-4e60-b4a7-704b16645eee\",\"text\":\"I post it on instagram and facebook \",\"vector\":[-0.02467279,0.008537707,-0.0062304707,0.0041754427,0.010829374,0.008942485,-0.013064995,-0.037214685,0.026852364,-0.016726682,-0.0011684078,0.003477979,-0.0040259864,-0.020101909,0.016041672,-0.026653089,0.029019484,-0.0073669637,-0.0086933905,-0.026354175,-0.0045895623,-0.0065885438,-0.005919103,0.013650367,-0.012404895,0.010567825,0.03228262,-0.0073295995,0.039879996,-0.0053960048,0.011807069,-0.0053025945,-0.011595339,-0.008942485,-0.021409653,-0.0037800057,-0.002151552,-0.009932634,-0.0069497307,-0.00044875892,0.014173465,0.010661235,-0.010287594,-0.008986076,-0.02742528,0.017847605,0.015144932,-0.006420405,-0.02617981,0.02530798,0.005520552,-0.010511779,-0.037712876,-0.009129305,0.00817652,-0.0015848624,0.022742309,-0.0012696024,-0.00030008078,0.010057182,0.0024675902,-0.010518006,-0.024759972,-0.0046206987,-0.012267893,-0.011819524,-0.010493097,0.013127269,0.016103946,0.013862097,0.046879545,0.0046051308,-0.01067369,-0.01416101,0.014422559,0.007248644,0.0016253402,-0.0037239594,0.006389268,0.013774914,0.025980534,-0.026379084,-0.009359717,0.014846019,0.034773562,0.017399237,-0.007871379,0.01133379,-0.015705395,-0.0032133162,-0.015394026,0.022941584,-0.00003709656,-0.002450465,-0.021359835,0.008245021,-0.009627494,0.028770389,-0.012554352,-0.015543483,-0.0021826886,0.016465133,-0.018669616,-0.013862097,-0.029368216,-0.023813413,0.014522197,0.003574503,0.021833114,-0.017810242,-0.027151277,0.05485056,0.01703805,-0.041274924,-0.013388818,-0.0044743563,0.024149692,-0.04797556,-0.0035309114,-0.0213972,0.023913052,0.010804465,0.002246519,-0.0048199743,0.0022636442,0.008400705,-0.010904103,-0.021235287,-0.008438068,-0.005115774,0.026055261,0.006899912,-0.027350552,0.008444296,-0.00264507,-0.006663272,-0.003932576,0.0024489083,-0.015431391,-0.01526948,0.018146519,0.027375462,-0.028072925,0.003973054,-0.0037239594,0.005168706,0.0015817487,0.0131770875,0.006389268,-0.012081073,0.00090530206,-0.02000227,0.0031230196,-0.0066009983,-0.019342171,-0.003730187,0.027051639,0.020326093,-0.0064390874,-0.04002945,-0.008101791,0.036841046,-0.007933653,0.016676862,0.004754587,0.025731439,0.013837188,-0.02617981,-0.02177084,-0.008992304,-0.0019818563,0.03260644,-0.018308429,0.0045771073,-0.00375821,0.036392674,0.004611358,-0.00231502,-0.012292803,-0.027973289,-0.002557887,0.01350091,0.013251816,-0.009067032,-0.022132028,0.0039637126,0.031684794,-0.01394928,0.008911348,-0.010661235,-0.008008381,0.030489141,0.016726682,-0.01592958,-0.6600002,-0.01788497,0.02961731,-0.002693332,0.011352472,0.03826088,-0.009733359,0.000063246596,-0.030389503,0.0021344267,-0.01828352,0.01698823,0.01630322,-0.006744228,0.02226903,-0.02964222,0.02964222,-0.032955173,-0.02163384,-0.00718637,-0.0152196605,0.0045615393,0.0031510426,0.014173465,0.0012174483,0.013650367,0.0043934006,-0.012790992,-0.0082325665,0.06531252,-0.017735513,0.039431624,0.023925506,0.009403309,0.066358715,-0.022866854,-0.0067006364,0.023502046,0.00091619993,0.013239361,-0.04090128,-0.036865953,-0.0005857608,0.004243944,-0.010181729,0.00035924066,0.024423694,0.0036336628,0.03704032,-0.011819524,-0.0017452168,-0.00056591106,-0.0012913982,-0.0014782189,0.021970116,-0.016876137,0.027051639,0.012492078,0.0032973855,0.0107671,-0.00850657,-0.012224302,-0.0014027122,0.0014976794,-0.0140115535,-0.002721355,0.0167765,0.00035885145,0.0144723775,-0.010729737,-0.0012672672,0.0068625477,-0.0067940466,0.008992304,0.006719318,0.005610849,0.027524918,0.00037870117,-0.018171428,0.0059284437,-0.010997512,0.004106942,-0.02660327,-0.017237324,0.02348959,0.031261332,-0.014522197,0.0029066189,0.0011396063,0.001686057,0.025731439,0.03400137,0.0060498775,-0.0006032752,0.018208792,0.00088428473,-0.0046238126,0.010231548,0.007198825,0.023688866,-0.003244453,-0.017112777,0.011090923,0.00947181,0.020114364,0.004667404,-0.004318672,0.01960372,-0.006800274,-0.026428904,-0.0026310585,-0.005548575,-0.012242984,0.009739586,0.007902516,-0.024099872,0.010231548,-0.0013715754,0.023215588,0.0067255455,0.02523325,-0.009789405,0.027848741,0.013451091,0.008164065,0.03014041,-0.004387173,-0.0070369137,-0.013600548,-0.006451542,0.009172897,-0.011732341,0.021384744,-0.017361872,-0.013413727,0.0019164692,0.023302771,0.009478037,-0.002304122,-0.019703358,-0.016514951,0.0072984626,-0.009253853,0.006476451,0.0028427886,-0.0035153432,-0.0083508855,0.0011652942,-0.014024008,0.016739136,0.011364927,-0.015381572,-0.024311602,0.016764045,-0.00697464,-0.0049507488,-0.024311602,-0.012386213,-0.0152196605,-0.006270949,-0.0074541466,0.030115498,-0.0021188583,-0.020550279,-0.025245706,-0.0055174385,-0.027774014,0.027076548,0.0074416916,-0.022293938,0.002654411,0.0034842063,-0.012043709,0.009534083,0.0020877214,0.01762342,0.009253853,0.0025360913,0.0066009983,-0.013750005,0.00022029276,-0.024560696,-0.00815161,-0.006713091,0.0023554978,-0.008855302,-0.016502496,0.03312954,-0.013326544,0.017349416,-0.0016362381,-0.006538725,-0.0031557132,0.011022422,-0.012074846,0.020251365,0.02203239,0.010773328,-0.015555938,0.02163384,0.007865152,-0.00007142,0.02700182,-0.012529442,0.009615039,-0.025208341,0.007995927,-0.0018386272,0.045036245,0.017561147,0.017959697,-0.004433878,-0.009795633,-0.018059336,0.01154552,0.02045064,-0.0036025262,-0.015057749,-0.015680484,0.025345344,-0.015942033,-0.016514951,0.004271967,-0.009054577,0.022144482,0.02436142,0.019541446,0.009621266,0.022530578,-0.008892666,-0.019217623,0.020014726,-0.000973803,0.019304806,-0.007790424,-0.013164633,-0.013687731,-0.009035896,0.020998647,0.0032475668,0.007447919,0.016290767,0.030588778,0.010007363,0.009347263,0.013413727,0.022841945,-0.019877724,-0.0074230097,-0.0086933905,-0.0023181336,0.007466601,-0.022792127,0.016664408,0.0026590815,-0.012965358,-0.00041178399,-0.004433878,0.018345794,0.009889043,0.011047332,0.0029175167,0.000120752346,0.013152178,-0.010611417,-0.015605757,0.0027073435,-0.020786919,-0.002984461,-0.026354175,-0.008051973,-0.008145384,0.015879761,-0.0026092627,0.017262233,-0.0017452168,0.017760422,-0.0024364535,0.024348967,0.02031364,-0.0044307644,-0.026453814,-0.00040633505,0.025955625,-0.00056435424,-0.022331303,0.00078620383,0.031884067,-0.013961734,0.015917124,0.002392862,0.021048468,0.0014867815,-0.0048947027,-0.005315049,0.015468755,0.043417133,-0.022256574,0.029966043,0.011340017,0.011146969,-0.0067940466,0.00049702096,-0.010212866,0.023140859,0.0010127239,0.006781592,-0.015281934,-0.022617761,0.0032973855,0.01981545,0.007914971,-0.0020129932,0.014335376,0.012485851,0.006006286,0.0005460614,-0.013588093,0.010019817,-0.018906256,-0.02874548,0.008400705,-0.047352824,-0.016290767,0.09824278,0.012815901,-0.010069637,0.022680035,-0.0072922353,0.012130892,-0.0015358219,-0.01482111,-0.032581534,0.014733927,0.021783296,-0.009820542,-0.0034375011,0.0052154115,-0.00059120974,-0.023863232,0.020039635,-0.013675276,0.008730754,-0.017511329,0.0070369137,-0.024348967,0.010237775,0.021870479,0.028097834,-0.013613002,0.024548242,0.028048016,0.0010267355,-0.006323881,0.008867756,0.008712073,0.0063519045,-0.0022932242,0.009341036,0.0010399687,0.018644707,0.03691577,0.027126368,0.0105615975,0.020375913,0.005551689,0.019192714,-0.018956074,0.015306843,-0.0064577693,-0.018383158,0.035122294,-0.0010127239,-0.022767218,0.013363908,-0.0027244687,-0.029467855,-0.02464788,0.009328581,0.011576657,-0.0131770875,-0.014808655,-0.02116056,-0.01154552,0.0064390874,-0.0025718985,-0.0016782727,-0.010057182,-0.027151277,-0.026428904,-0.017847605,-0.0027524917,-0.004153647,0.0012439146,-0.015643122,-0.033702455,-0.03631795,-0.009054577,0.0128034465,-0.006364359,0.038634524,0.0013497797,-0.007815333,0.029368216,-0.012734945,-0.009733359,0.00053555274,-0.047626827,-0.004103828,0.023539409,0.01331409,-0.0035807304,-0.01616622,0.023389954,0.040129088,-0.00926008,0.02485961,0.00838825,0.0055143246,-0.0034810926,0.009982454,0.021123195,-0.00039855085,-0.007958562,0.020550279,0.008867756,-0.019329717,-0.022505669,0.0034032506,0.017511329,0.012037481,0.039481442,-0.01722487,0.0035589347,0.023053676,-0.004816861,0.019018348,0.01828352,-0.0072984626,0.039531264,-0.017810242,-0.0021079604,0.004533516,-0.0046206987,-0.00174366,-0.0066757267,0.016390404,0.0064266324,-0.020338548,0.01034364,-0.020039635,-0.007061823,-0.012342622,0.021173013,0.008076882,0.014547106,-0.028645843,-0.00697464,-0.031086966,-0.009845451,0.018868892,-0.008656027,0.012753627,-0.009652403,-0.0122865755,0.002131313,-0.009913952,-0.031759523,-0.015954489,-0.039481442,-0.008892666,0.0022916675,0.0061744247,0.045932986,-0.009222716,-0.008301067,-0.015182297,0.007703241,0.01825861,-0.01849525,-0.023128405,0.014783746,0.011115832,0.0008126701,0.018831529,0.0047421325,0.029318398,-0.002478488,-0.018644707,0.0013419954,-0.010960149,-0.011800841,-0.015057749,0.021036012,0.025532164,0.019329717,0.014808655,0.0010633213,-0.006336336,0.0034561832,-0.030439321,-0.023850778,-0.0061744247,0.0009426662,-0.0042968765,0.0035962986,-0.0054520513,0.028122745,-0.0036928228,0.011090923,0.008419387,0.0072984626,0.03888362,0.00850657,0.00025940835,-0.038559794,0.0018090472,0.0027447077,0.01741169,0.0016191128,-0.020151727,-0.011719886,-0.02745019,0.014422559,0.020375913,0.011196788,-0.014983022,-0.0001782581,-0.027973289,0.0051593655,0.008014608,-0.024735063,0.0013591207,-0.0047514737,0.0013116371,-0.021409653,-0.014086282,-0.012672672,0.012566807,0.008954939,-0.044363692,0.016876137,0.01566803,-0.01849525,-0.02480979,0.017336963,0.014484833,0.021310017,0.018532615,0.03014041,0.0075600115,-0.025083795,0.033254087,-0.012485851,-0.016103946,0.013787368,0.03218298,-0.01218071,-0.01849525,0.014447468,0.017972153,-0.0033814549,-0.020400822,0.011059786,0.014659199,-0.029891314,-0.0228544,-0.01804688,-0.023626592,-0.003954372,-0.0066757267,0.008182747,-0.0077156955,-0.01437274,-0.0141361,0.0064328597,0.0013544501,0.0067878193,0.02921876,-0.021920297,-0.01724978,-0.017685695,-0.0019740723,-0.0035527071,-0.012741173,-0.000268944,-0.0066881813,0.00086871634,0.028172564,-0.009160442,-0.017125232,-0.01962863,-0.014447468,0.018271066,-0.030439321,0.0017732399,-0.023190677,0.01812161,0.002778958,-0.021011103,0.009004759,-0.0029050622,-0.010486869,-0.009104396,0.015045295,0.00540846,-0.015829941,0.0018837756,-0.020276275,-0.00718637,0.0022356212,0.0027151278,-0.0016969548,-0.02026382,0.00020978409,-0.024025144,0.011184334,0.0066196807,0.013152178,0.004368491,0.016527405,0.017610965,-0.0082637025,-0.0021531088,0.0069621853,-0.02116056,-0.0037083912,0.0057198275,0.021783296,-0.028371839,0.0135507295,0.011290198,-0.028944755,-0.036442492,-0.0009084157,0.013027631,-0.0021717907,-0.00916667,0.013488456,-0.007497738,0.0036305492,-0.02226903,-0.0141361,0.010138137,-0.0064951335,0.015007931,0.020375913,0.00029930234,0.008051973,-0.040677097,0.016527405,-0.0066881813,-0.013102359,-0.007466601,0.000808778,0.046904452,-0.0030342797,-0.037762694,-0.021359835,0.00064453145,-0.008363341,0.032456987,-0.014870929,-0.023813413,-0.008992304,0.027749103,0.013513365,0.020886555,-0.0024068735,0.0026186036,-0.014621834,-0.023639048,-0.0048075197,0.0016393517,0.0037675512,0.017449055,0.006006286,-0.012815901,-0.024921883,0.0067940466,-0.028122745,-0.011676295,-0.014870929,0.00012853654,0.00078698224,-0.013363908,-0.012411123,0.02031364,0.008313522,0.008014608,0.00091464305,-0.0151324775,-0.02700182,-0.0008998531,0.006286517,-0.01764833,-0.03497284,-0.02348959,0.005433369,0.007865152,0.0040508956,0.0035215705,-0.007690786,0.010443278,-0.009876588,0.0068438654,0.017872514,0.008431842,0.028297111,-0.025806168,-0.030190228,0.01397419,0.0045304024,0.0071925973,0.01272249,-0.0025329776,0.010443278,0.01680141,0.002364839,0.011614021,-0.026379084,0.010985058,0.01717505,0.0047919513,-0.015730305,0.008157838,0.014733927,-0.020164182,0.0011318221,0.03659195,-0.016788954,-0.013438636,0.015555938,-0.0147962,0.012778536,0.0035994125,0.004225262,-0.031510428,-0.0071240966,0.030165318,-0.01918026,0.016079037,0.004670518,0.017997062,-0.012454715,-0.02568162,-0.02398778,0.009932634,-0.015319299,0.0008251248,-0.003062303,-0.011109605,0.011464564,0.014895838,0.000593545,-0.021060921,-0.000012430389,0.01331409,0.010163046,0.012305258,0.23494573,-0.010785783,-0.0031557132,-0.0012719377,0.008736982,0.019055713,0.010306276,0.0049943402,0.0107671,-0.001879105,-0.015705395,-0.0032288847,-0.023315225,-0.006800274,0.01178216,-0.0021453246,-0.0033098403,-0.0052060704,-0.013114814,-0.02966713,-0.00091853517,-0.014459923,0.019292353,-0.0050535,0.020724645,0.0020301184,-0.013363908,-0.007796651,0.025395162,0.0076845586,0.002441124,-0.0026902182,0.01724978,-0.032058433,-0.007902516,-0.008114247,0.004524175,-0.0029984724,0.013625457,0.013774914,0.014061373,-0.0317097,0.003991736,-0.009322354,-0.0133514535,0.0060467636,-0.011028649,-0.009216488,-0.0009193136,0.0127162635,-0.009235171,-0.021272652,-0.009322354,0.020301184,-0.0099886805,-0.012622853,0.0047670417,0.011751023,-0.015493665,-0.012678899,0.019765632,0.04052764,0.0044120825,0.007223734,-0.027250914,0.0128034465,0.018744346,0.0144723775,0.025880896,-0.010107,0.003312954,-0.012068618,-0.00992018,0.019653538,-0.014746382,-0.024610516,0.010785783,0.0040913736,0.049495034,0.03706523,0.0131770875,0.0027478214,0.012903084,-0.0066881813,-0.027226005,-0.025245706,0.015294389,-0.01656477,-0.012186938,-0.023813413,-0.0066757267,0.019317262,-0.006781592,0.001830843,-0.0042875353,-0.03180934,-0.005617076,0.0035620483,-0.023701321,0.0047701555,-0.018819073,0.024373876,0.0024613629,0.011620249,0.0044027413,0.0023944187,-0.004904044,0.024946792,-0.0004643273,-0.02028873,0.017000685,-0.034698833,-0.005735396,0.014808655,-0.015792578,0.023252951,0.0058973073,-0.035471026,-0.007248644,-0.005240321,-0.007553784,-0.014646744,-0.0032755898,0.006171311,0.015655575,-0.014310467,0.00664459,0.014447468,-0.0012073289,-0.03397646,0.013002722,0.04062728,0.020649916,-0.012000117,-0.022057299,0.002780515,0.0016969548,-0.0067006364,-0.006003172,0.0028334474,-0.033328816,0.0059222165,0.012622853,-0.0011894252,0.0061681974,-0.02163384,0.0133514535,-0.018233702,-0.0042346027,0.015319299,-0.026080173,0.015257025,-0.010711054,-0.013388818,0.040328365,-0.007491511,-0.008855302,-0.044513147,-0.011838206,-0.021272652,0.002847459,0.004349809,0.0287953,-0.015543483,-0.027250914,-0.005754078,-0.15593302,0.008238793,0.010860511,0.004956976,-0.0042470577,-0.0033970233,0.03146061,-0.02287931,0.007485283,-0.0070867324,0.032930266,0.009540311,-0.0049196123,-0.020014726,-0.020375913,0.010100774,0.0052745715,0.019591266,0.015593302,0.033553,0.021957662,-0.04134965,0.018370703,-0.012081073,-0.016153764,0.023003858,0.007815333,0.0322328,-0.034125917,-0.026976911,0.0019429354,0.005694918,0.042769488,0.019217623,0.009353491,-0.0011100264,-0.004549084,-0.02332768,-0.004997454,0.018183883,0.013189542,0.027524918,-0.008886439,0.010281366,-0.01166384,0.0033658866,0.0153317535,-0.0094469,-0.0031152354,-0.0040820325,-0.004125624,0.010125683,0.01482111,0.0009426662,-0.0073482813,0.01439765,0.014621834,0.014584471,-0.004486811,-0.012697581,-0.0006375257,-0.0071240966,0.0013700186,-0.006383041,-0.0065262704,-0.033702455,-0.025880896,0.013114814,-0.015966944,0.018819073,-0.018781709,-0.026702907,0.025370253,0.0034125918,-0.009409537,0.0007791981,-0.011900479,0.026852364,0.0030529618,-0.009397082,0.010810692,0.041723292,-0.036841046,0.01187557,-0.0073171444,-0.004153647,0.017922334,0.0054551647,-0.029243669,-0.014173465,0.01124038,-0.0072922353,-0.018931165,-0.002557887,-0.0143851945,0.024610516,0.014235739,0.02094883,-0.00072782236,-0.038460158,-0.00071225397,0.005822579,-0.031012239,-0.00980186,0.02226903,0.007547557,-0.011800841,0.019304806,0.01232394,-0.014883383,-0.02657836,0.015207206,0.015580848,0.0050441595,0.025855986,0.008687163,0.024984157,-0.012666444,-0.005134456,0.0025127386,0.041698385,-0.0004312445,0.002257417,-0.0021344267,-0.008637344,-0.036542132,-0.08907612,-0.0147588365,0.021833114,0.0151324775,-0.017685695,0.01124038,0.0043466953,0.011564203,-0.005557916,0.024324058,-0.0152196605,-0.010107,-0.009764496,0.003235112,0.020413276,-0.0038298247,-0.006663272,-0.02660327,0.0008726084,-0.0015436062,-0.023688866,-0.014273102,-0.008363341,-0.007759287,-0.0155061195,-0.011831978,-0.019080622,0.030190228,0.009926408,-0.0071925973,-0.027325643,-0.002567228,-0.016627043,-0.014198374,-0.0057758735,-0.0067629097,-0.01590467,0.00904835,0.020600097,-0.029517673,-0.013426182,-0.015543483,-0.019753177,-0.008942485,-0.0031417017,0.018682072,0.012162029,-0.0023959756,0.016627043,-0.033453364,-0.010623871,0.012865719,0.0050036814,-0.03529666,0.04187275,-0.0065324977,0.008562616,0.037164867,-0.015144932,0.029567491,0.0064951335,-0.009409537,-0.017287143,0.005978263,0.0018059335,0.009067032,-0.008288613,-0.019890178,0.015705395,0.0100447275,-0.014771291,0.02372623,-0.005800783,0.012940448,-0.03569521,-0.0089238025,-0.016054127,-0.0057976693,0.006383041,-0.025507255,-0.024747517,-0.026354175,-0.015294389,-0.024473513,0.022493213,0.011501929,0.012523215,-0.0060000587,-0.04022873,-0.024037598,-0.0058661704,0.0029657788,0.006124606,-0.026777636,-0.04493661,0.006955958,-0.015356663,0.0063425633,-0.007391873,0.022132028,-0.024635425,-0.004156761,-0.04757701,0.014870929,0.0128906295,0.010910329,-0.009994908,-0.02544498,-0.0174366,-0.026005443,0.0015015715,-0.003459297,-0.005134456,0.034051187,0.006987095,0.018806618,-0.014783746,-0.017274689,0.01632813,0.0049196123,-0.012927993,-0.027226005,-0.021011103,-0.0027151278,-0.014995476,-0.010250229,-0.010082091,0.019230079,-0.00817652,0.021932751,-0.026752725,-0.011302653,0.0040602367,-0.054501828,0.0050317044,0.032631353,-0.0051562516,-0.045011338,-0.0063020852,0.037189778,-0.021546656,-0.0133514535,-0.017723057,-0.011477019,0.03746378,-0.00381737,0.009116851,0.004138079,-0.0013661265,0.0066383625,-0.0037270733,0.011557975,0.03838543,0.024797335,-0.0120873,-0.009864134,0.00020725423,-0.026702907,0.0077655143,0.0076845586,0.0094469,-0.016627043,0.021148104,-0.009428219,-0.008500342,-0.001283614,0.026952002,0.018582433,-0.016714226,-0.009409537,0.026653089,-0.015443846,-0.008051973,0.022119572,0.021459473,0.016490042,0.015755214,0.02047555,-0.008425614,0.013201997,-0.009017213,0.029841496,0.016863683,0.016813865,-0.0030560754,0.027176186,0.016577225,0.041175283,-0.010953921,0.02134738,-0.0027415939,0.009135533,-0.026653089,0.0077530597,-0.0032942719,0.017312054,0.016851228,0.019292353,-0.01272249,0.006781592,-0.019254988,0.012616625,0.0075351023,-0.015344208,-0.005617076,-0.0030669733,-0.012753627,0.013239361,0.00039446415,-0.022443395,-0.00017173884,0.017723057,0.006470224,-0.026403993,0.011383609,0.007136551,-0.017324507,-0.0053928914,0.0016206697,-0.024000235,-0.037812512,0.04271967,0.014061373,-0.026403993,-0.0048199743,-0.021858023,0.006414178,-0.005084637,0.014684108,-0.020351004,-0.013251816,0.0050317044,0.0017654557,-0.005523666,-0.0075226473,-0.015257025,-0.021745931,-0.0016767159,-0.015481209,0.011564203,0.0066757267,0.07363227,-0.00020024845,-0.020326093,-0.00025979755,-0.004312445,0.003409478,0.024523333,0.011209243,-0.013413727,0.009123079,0.0081204735,0.01253567,0.010262685,-0.020064544,-0.017511329,0.009534083,-0.013650367,0.009615039,-0.029243669,-0.013338999,0.014696563,0.006264721,0.006414178,0.018183883,-0.016527405,-0.013338999,0.014223284,-0.003920121,-0.04002945,-0.032357346,-0.006065446,0.0078900615,-0.02612999,-0.00916667,0.016664408,-0.0038422793,-0.0034624105,-0.0026995593,-0.0074167824,0.025357798,-0.01944181,0.0006017184,-0.021173013,-0.020101909,0.010518006,0.0038142563,-0.0134635465,0.0055641434,-0.058288064]},{\"id\":\"b4e25601-07ed-4d70-9c98-71a6bac9855f\",\"text\":\"evreything looks good to me \",\"vector\":[-0.00263782,-0.008748744,-0.013531905,-0.0411751,-0.016879475,0.0145233,0.008407549,-0.047432482,-0.017149854,-0.0290466,0.005105043,0.0091607515,-0.015218564,-0.013879537,0.006370038,-0.00301925,0.019724907,-0.004178024,0.009450445,-0.013171397,-0.01109848,0.018553259,-0.010886038,-0.04295189,0.0010646236,0.016312962,0.016763596,-0.023638988,0.008085667,-0.0012432679,0.013699283,-0.004178024,-0.0026635707,-0.025608905,-0.021836452,0.0054108305,-0.008491238,-0.024926515,0.0193644,0.007120022,-0.009952581,0.0026973684,-0.011298046,-0.005298172,-0.020175543,0.0050986055,-0.016390214,-0.003878674,-0.012534072,0.02012404,0.011497613,0.0025734438,-0.013325901,-0.030720385,0.010570593,0.033501443,0.008941872,0.017046852,-0.007268088,-0.013222898,0.0047413167,-0.0054977387,-0.0411236,-0.007474092,-0.009244441,-0.009212253,0.007197274,-0.001104054,0.02951011,0.03002512,0.037647277,0.014703554,-0.012379568,-0.005037448,0.040376835,-0.009733701,-0.014446049,-0.015772201,0.0042713694,-0.004470936,0.029072352,-0.04416216,-0.013686408,0.0053142663,0.018476008,0.0075899693,-0.011304484,0.0017671303,-0.0063636005,-0.013956789,-0.0078088487,0.010467592,-0.0006570409,0.0031721438,-0.02706381,0.023329983,-0.00039832856,0.03955282,0.016222835,-0.0140855415,-0.0008320641,0.008381798,-0.0060835634,-0.0020552145,-0.025544528,-0.034917723,-0.007898976,-0.020162666,0.010737972,-0.009283067,-0.003910862,0.013828036,0.0056200535,-0.014819431,-0.0056715547,0.020136917,0.018038249,-0.01838588,-0.039012056,-0.011420361,-0.0022853597,0.00023738772,-0.0015788295,-0.0046705026,0.026780553,0.015849452,-0.006225191,0.0026233355,0.0027504787,-0.012334505,0.045990452,0.016081208,0.017561862,-0.010866725,-0.014188543,0.015604823,-0.019699158,0.009476196,-0.016300088,-0.0078088487,0.014433173,0.036797512,-0.016235711,-0.008497676,0.0066951383,0.01833438,0.0032123788,0.007512718,-0.01547607,-0.009540572,-0.0042874636,-0.016312962,0.02752732,0.01743311,0.009733701,0.018862264,-0.034479965,-0.0055653336,-0.00954701,-0.0029934994,-0.023626113,-0.022827847,0.009707951,-0.017458862,-0.008735868,0.02616254,0.041664362,-0.009733701,0.0004558649,-0.0010984212,0.00094874616,0.032033663,-0.038368292,0.0067981407,-0.02385787,0.024244126,0.025390025,0.009611386,-0.010242274,-0.004129742,-0.025119644,0.019158397,0.03574174,0.0067659523,-0.0027343847,0.004960196,0.013892412,-0.00799554,0.0040138643,-0.017523237,0.015064062,0.0040267394,-0.025493028,-0.011664991,-0.6835221,-0.033990704,0.031853408,0.007113585,0.033089433,0.030540131,0.026368545,-0.0014001852,-0.025956538,-0.007113585,-0.027244063,0.002515505,0.010847412,-0.0024736605,-0.012431069,-0.021308566,0.019840784,-0.024978016,0.0067466395,0.0032783647,-0.039398316,0.023252731,-0.010641407,-0.011433236,0.0056940867,0.00029733818,-0.0059161847,-0.02029142,-0.0023384702,-0.0031962849,-0.016261462,0.032291166,-0.017098354,0.013261524,0.0629343,-0.012894579,0.0011354375,0.028608842,0.0010646236,0.03733827,-0.035587236,0.00096805906,0.01270145,0.009238004,-0.0009471368,0.017381608,0.032213915,0.007963352,-0.003168925,-0.007422591,0.002668399,-0.0088131195,-0.0010058802,0.006933331,-0.0033121621,-0.001626307,0.028711844,-0.00003432566,-0.009740139,0.010821661,-0.009585636,-0.0058035264,-0.012083437,-0.012308755,-0.03131265,0.021681948,-0.010982602,-0.01169718,0.009315255,-0.0008401111,-0.0075513436,0.029664613,-0.012984706,0.009959019,0.0075899693,0.041664362,0.02298235,-0.008336735,-0.008368923,0.012128501,0.016647719,-0.018836515,-0.006199441,0.0057970886,0.013712158,0.0066243242,-0.0084654875,-0.012527634,-0.008639304,-0.0009970284,0.0076607834,0.0145233,0.0054333624,-0.0057262746,0.021012435,0.002077746,-0.017033977,0.0025766627,0.011684304,0.00052426476,0.008716555,-0.0044612796,0.008632866,0.008574927,0.0060095307,0.0125533845,-0.012244378,0.011471862,0.013403152,-0.0009769108,-0.007023458,-0.00085057225,-0.0078088487,0.0025203333,-0.019493153,-0.03726102,0.0045546256,0.009373194,0.021578947,-0.020677678,0.016596219,0.0023223762,0.018373005,-0.019493153,0.0000763966,0.014729304,-0.016557593,-0.014137043,-0.012527634,-0.010197211,0.027501568,0.0027488694,0.020870807,-0.014690679,-0.00017582785,-0.008986936,0.011053416,-0.00041321557,0.0011265858,-0.023729116,0.003914081,-0.019300025,-0.010956852,0.0010050755,0.025853535,-0.0022692657,0.0037434837,-0.007609282,-0.015862327,-0.009154314,-0.017046852,0.005999874,-0.021141186,0.017162729,0.00091736275,-0.000054770175,0.0036758885,-0.020445922,0.008665054,-0.0029387795,-0.0045159995,0.01781937,-0.02858309,-0.010222961,0.00036734744,-0.0040814593,-0.012662824,0.02154032,0.00688183,-0.040788844,0.02902085,-0.00075078895,-0.0054398,0.012752951,-0.01667347,-0.013029769,-0.003476322,0.0011933763,-0.007583532,-0.014690679,0.01765199,0.007210149,-0.016287211,0.004110429,0.013750784,-0.010808786,0.0034183832,0.015540446,0.00079464534,0.017639115,0.0043293084,0.011336672,-0.010512655,0.005346454,0.006492353,-0.019132646,-0.016364463,0.02178495,0.002550912,0.025274148,0.028377086,-0.01620996,0.012598448,-0.024089623,-0.025505902,-0.033243936,0.0030144218,-0.01427867,-0.012540509,0.015978206,0.016544716,0.0032848022,-0.0026909306,0.0048185685,0.016544716,0.02611104,0.015759327,0.0023030632,-0.01316496,0.007120022,-0.001188548,-0.017059729,0.003666232,-0.00916719,-0.0023320327,0.0020745273,0.028171083,0.01547607,0.0069590816,-0.013622032,-0.032162417,0.004792818,0.011664991,0.00039309796,0.0021887952,0.0029162478,0.019763533,-0.009604949,0.00003701639,0.015875204,0.011858121,0.018154126,0.01405979,-0.00737109,0.010274462,0.00093908975,0.020111166,-0.0050342293,-0.020188417,-0.001210275,0.0073067136,-0.016415965,-0.021630447,0.00053593295,0.011549114,-0.026201166,0.012315192,-0.003894768,0.036900513,0.02417975,0.0013108631,0.0042552757,0.024553133,0.0031286897,0.012585573,-0.00019705192,0.0063056615,-0.02369049,0.012109187,0.003457009,-0.008388236,-0.02132144,0.008665054,0.025274148,0.016132709,0.001188548,-0.0021710917,0.00048282248,0.004103991,-0.0001738161,-0.008748744,-0.0074161533,0.018888015,0.01718848,-0.0005379447,-0.0072423373,-0.006389351,-0.021038186,0.008336735,0.020742053,0.01574645,0.028840596,0.0014693898,-0.00033596397,-0.010074896,-0.02173345,0.04058284,-0.013750784,0.029072352,-0.01740736,-0.009070625,-0.020742053,0.0063442877,-0.012315192,0.012669262,-0.01476793,0.0084654875,-0.02178495,0.00845905,0.014536176,0.01354478,0.00060674694,-0.013325901,-0.0126757,-0.010049146,-0.0069011427,-0.053303603,-0.014330171,0.033115186,-0.004316433,-0.022505965,-0.016441716,-0.020098291,-0.013235774,0.0679299,0.01887514,0.01330015,0.027836327,0.010828099,-0.01713698,-0.01405979,-0.016763596,0.012089875,0.009476196,0.01591383,-0.007757348,0.01109848,0.009746577,0.018669136,-0.016930975,-0.011381735,-0.021012435,-0.0031995038,-0.020252794,-0.0069011427,-0.0077187223,0.03231692,0.021810701,0.038986307,0.013866662,0.0033765386,0.007776661,0.0037982035,-0.012006186,-0.03241992,0.024050998,-0.00047718955,0.014111292,-0.0289951,0.015385943,-0.004190899,0.0030256875,0.0077122846,0.005420487,0.015321567,0.014896683,0.012147814,-0.0014911168,-0.005121137,-0.003252614,-0.0314929,0.0045932513,-0.009901079,-0.000074233954,0.02099956,0.016815098,-0.014909558,-0.0065663857,-0.003421602,0.0024720512,-0.030128123,-0.0028840597,-0.03334694,-0.0030868452,0.010132834,-0.011877433,0.0062702545,0.015334442,-0.021772075,-0.02132144,-0.012849515,-0.0027182905,-0.011465425,0.009360319,-0.012817328,0.000007858439,-0.009096376,-0.021385817,-0.0023803147,0.015347318,0.0006570409,-0.013029769,0.011800181,0.025827784,-0.00046431427,-0.009959019,0.004277807,0.0053754235,-0.02513252,-0.019750658,-0.0022515622,-0.021282814,0.002344908,0.014433173,0.029844867,0.018463131,0.01620996,-0.035484232,0.00050937774,0.0020069322,-0.0081178555,0.014175668,-0.011510488,-0.008993373,0.009392506,0.017780744,-0.012637074,0.011883871,0.00056812115,0.025248397,-0.01052553,0.022866473,-0.00905775,-0.012508322,0.015115563,-0.014935309,-0.0062348475,0.0053979554,0.007776661,0.020149792,0.011330234,0.015566197,-0.0053561106,0.0015281332,0.002396409,-0.03682326,0.011645678,-0.00448703,0.027012309,0.025724782,0.016686345,-0.016750721,-0.0039881137,0.01642884,-0.014755055,0.0075513436,0.00073348783,-0.009611386,-0.027862076,-0.008272358,-0.0037499212,0.020870807,-0.026226917,-0.020394422,-0.019480279,-0.01593958,0.0015522743,-0.0087680565,-0.014639177,-0.035664488,0.0009141439,0.008652179,-0.03231692,0.022145458,-0.0009769108,-0.008607116,-0.026072415,-0.011085604,0.005105043,-0.03249717,-0.013673533,-0.0030755792,0.022016706,0.012263691,0.010686471,-0.012521196,0.011343109,-0.0016609094,-0.0052434523,0.003910862,-0.007351777,-0.01841163,-0.03471172,0.010467592,0.02031717,0.0075770942,0.0012328067,0.0053239227,-0.0010477247,0.01520569,0.0137379095,-0.0014629521,-0.033501443,-0.037132267,0.013673533,0.0034988536,0.0010074896,0.0018781795,0.015089812,-0.008452612,0.013995415,0.0071007092,0.024900764,-0.007828162,0.012682137,-0.038522795,0.017806493,-0.03682326,-0.009630699,-0.010969726,0.0021533882,-0.0205618,-0.037467025,-0.007383965,0.008864621,0.02385787,-0.00930238,0.020471673,-0.006682263,0.019737784,0.02298235,0.000036312274,0.011027666,-0.015051186,0.003933394,-0.012064124,-0.019377276,-0.016338713,0.0090835,0.005420487,-0.018321503,0.011491175,-0.009978332,-0.012984706,0.0083946735,0.00012372326,0.02007254,-0.016789347,0.03244567,0.027012309,0.012752951,-0.009064187,0.00701702,-0.00018588666,-0.0027842764,-0.007892538,-0.0015627354,0.004860413,-0.000028064056,0.010821661,0.01006202,-0.024321377,-0.032188166,0.02132144,0.004136179,0.008928997,-0.01860476,-0.0056264913,-0.013119896,0.006862517,-0.006353944,-0.01650609,0.009598511,-0.022827847,-0.005774557,0.04246263,-0.031853408,0.018373005,-0.0072552124,-0.015579072,0.0031190333,-0.013074833,-0.004277807,-0.0021228094,0.00867793,0.03283193,-0.016660595,-0.0032848022,-0.0037080767,-0.0058711213,-0.009283067,-0.016776472,0.009643574,0.023136854,-0.022042455,-0.0065921363,0.013712158,0.0020053226,0.037518527,0.004686597,-0.015630573,-0.025724782,-0.020613302,-0.008240171,-0.016776472,0.024166875,-0.0054880823,-0.003315381,-0.010943976,-0.015373068,0.0021099343,0.005333579,0.012649949,-0.031647403,0.004190899,0.015553322,0.0011410705,0.029304106,-0.0013454653,-0.016094083,0.0017960996,0.021887952,-0.016853724,0.03157015,0.013647783,-0.0004103991,-0.034222458,0.0078024114,-0.00046391194,0.0036018558,0.0071715233,0.020703427,-0.023806367,-0.028917847,0.0058936533,0.012044812,0.014639177,-0.025055269,0.02058755,-0.018154126,0.009019124,-0.03002512,-0.025338523,-0.0048314435,0.011896746,0.0041844617,0.013660657,-0.006022406,0.008407549,0.014574802,0.0044065597,-0.00274726,-0.021115437,0.0012843078,-0.017639115,0.027810575,-0.015450319,-0.008549177,0.000859424,0.004860413,-0.010338839,0.013815161,-0.0038497045,-0.007512718,0.01792237,0.017046852,-0.00061157515,0.026368545,-0.0042939014,-0.011658554,-0.018476008,-0.014561926,-0.008600678,-0.014407423,-0.013557656,0.03332119,0.035072226,-0.010004082,-0.008896809,0.012939642,-0.033707447,-0.009959019,-0.018785013,0.022802096,0.018295754,-0.004773505,0.009154314,0.026832055,0.009431132,0.0034988536,0.021939453,-0.034016453,-0.017793618,-0.0024736605,0.030643133,0.001223955,-0.051526815,-0.01637734,0.027707573,0.009868892,-0.00057254697,0.010203648,-0.0041619297,0.002455957,-0.01765199,-0.004619002,0.014883808,0.007738035,0.0062348475,-0.009843141,-0.004525656,0.016081208,-0.00021183837,0.030771887,0.007055646,-0.0050084786,-0.011735805,0.019943787,-0.030256875,0.012431069,-0.006421539,-0.03234267,0.023304231,0.010454716,-0.0009688638,0.019673407,0.0037692343,-0.009695075,0.003926956,0.010705784,-0.0074161533,0.0044902493,0.01694385,-0.006476259,-0.0043614963,-0.006334631,0.010158585,-0.021475945,-0.018218502,0.0044001224,-0.012649949,-0.020935183,0.010222961,0.017059729,-0.0038271728,0.005401174,-0.00084815815,0.0014283499,-0.0028245116,-0.010338839,0.0083946735,-0.004960196,-0.0023078914,-0.00016989316,0.0025364275,-0.031029392,-0.008748744,0.032368418,-0.020445922,0.0058357143,0.20054515,-0.007609282,0.0011539457,0.052943096,0.019815035,0.0056715547,0.009012686,0.00031021345,0.004792818,0.018063998,-0.011394611,0.0071843984,-0.013416028,-0.0076414705,0.02007254,-0.020098291,-0.03200791,0.008278796,0.011813057,-0.0036984202,-0.0001435391,0.00032087578,-0.017330108,-0.011903184,0.021398693,0.01025515,-0.007364652,0.0013140818,0.01055128,0.010943976,-0.010158585,-0.02472051,0.01523144,-0.018514633,-0.037570026,-0.008253045,0.011703617,0.0061447206,0.035355482,0.002274094,0.020639053,-0.0033829762,0.0078088487,-0.0459132,0.0056425855,0.015295817,-0.011928935,-0.01604258,-0.006688701,0.007989103,-0.03520098,-0.021192688,0.024115374,0.0036050745,-0.0040782406,0.010409653,0.032239668,-0.018926641,0.020742053,-0.033810448,-0.00435184,0.033990704,-0.021244189,0.019506028,-0.029123852,0.014188543,-0.0048024743,-0.0015200861,0.017793618,-0.0148065565,0.02853159,-0.022042455,0.0047960365,0.021463068,-0.016274337,-0.011240107,0.008516989,0.02417975,0.028351337,0.0030337346,-0.014458924,-0.016338713,-0.0053496733,-0.0071457727,-0.017072603,-0.03759578,0.019119771,0.017471736,0.008800245,-0.015785076,0.006205878,0.0017703491,-0.0014130605,0.00022370776,0.028093832,0.017780744,0.017832244,0.021360066,-0.020613302,0.012727201,-0.008858183,-0.034170955,-0.0018556478,0.009225128,0.009012686,-0.00375314,-0.015591947,0.003946269,-0.009154314,-0.028145332,0.004506343,0.008639304,0.011845245,0.023973746,0.011909621,0.0053625484,0.007338902,-0.020381546,-0.0071007092,-0.01650609,-0.0042166496,-0.00786035,0.0040653655,-0.0065792613,0.01684085,-0.00845905,-0.028377086,0.0047638486,0.005890434,-0.048565503,0.019261397,-0.008748744,0.022866473,-0.0090835,0.0032574423,-0.029716114,-0.012353818,-0.006498791,-0.008735868,0.004165149,0.004631877,0.01422717,-0.013557656,-0.009154314,-0.0029693583,-0.010422528,-0.013351651,-0.0025605685,-0.0339392,0.002124419,-0.028402837,-0.01422717,-0.017124103,-0.0042102123,0.018759264,-0.02591791,-0.046685714,-0.036076497,-0.001998885,0.013750784,-0.030617382,0.006476259,0.044780176,-0.036591507,-0.0071457727,0.0048024743,-0.1645974,0.018978143,0.0077830986,-0.004300339,0.011928935,0.022917975,0.011677867,-0.011240107,-0.019943787,-0.017214231,0.0038593612,0.007738035,-0.039964825,-0.011388173,0.008439737,-0.0042327438,-0.009675763,0.028428588,0.023020975,0.009579198,0.03198216,-0.015604823,0.03496922,0.0035342607,0.0181155,0.0048861634,-0.0012939642,0.014587677,0.006965519,-0.012302317,-0.01259201,0.0059902174,0.024810638,0.021076811,0.005771338,0.002480098,-0.003981676,-0.008452612,-0.022351462,0.030900639,0.00622841,0.0068689547,-0.0033636633,0.0061833467,0.007950477,0.016750721,0.022261335,0.004715566,0.0003920921,-0.006263817,0.02657455,-0.014368797,-0.015952455,-0.0070685213,-0.0016472294,0.010480466,-0.002187186,-0.003843267,0.009856016,-0.02569903,-0.010094209,-0.0026539143,0.0049151327,0.0013631688,0.0040492713,-0.013815161,-0.043235146,0.02515827,0.005578209,-0.008491238,-0.0045385314,-0.028171083,0.005777776,-0.02542865,0.030231126,0.0015015779,-0.03733827,-0.0005500153,-0.007107147,-0.023638988,0.012386006,0.03048863,-0.020832181,0.007107147,0.0056264913,-0.021746324,0.022287086,-0.0052563273,-0.0049762903,0.013712158,0.024282752,-0.013596281,-0.0052788593,-0.00008293482,0.011742243,0.021707699,0.014935309,0.015488945,-0.0019457747,-0.009611386,0.004316433,0.009836704,-0.023265606,0.008317422,0.006427977,0.0031367368,0.003389414,0.031776156,0.011375298,-0.01770349,-0.016068332,-0.0017172387,0.017497487,0.013531905,0.0091156885,0.049981784,-0.0022579997,0.0051855133,0.018089749,0.013866662,0.039784573,-0.010461153,-0.030437129,0.017613364,-0.021128312,-0.009386069,-0.10774023,-0.025608905,0.016016832,0.02466901,-0.002700587,0.016094083,0.009875329,0.00034240162,-0.0018025372,0.022209834,0.0025380368,-0.012418195,-0.020059666,-0.00429712,0.0067530773,0.004506343,-0.0077187223,0.0062412852,-0.0005274836,0.010815224,0.0014146699,-0.017510362,0.0009849579,-0.013261524,-0.016789347,0.020832181,-0.025544528,0.02352311,0.009579198,0.007944039,-0.009341005,-0.009662887,0.019982412,-0.036540005,-0.020162666,-0.012173564,-0.029587362,-0.050162036,0.00266518,-0.03973307,0.013416028,0.018398756,-0.0013792629,-0.03733827,-0.008928997,-0.0052852966,-0.025673281,0.022686219,-0.022274211,0.017561862,-0.011523363,0.007248775,-0.0078152865,-0.014600552,0.027475819,-0.0007101514,-0.0012344162,0.015849452,0.00161826,0.003878674,-0.015862327,-0.021411568,-0.009946143,0.05562115,0.0011917668,0.01221219,0.003421602,0.008748744,0.018566133,-0.016763596,0.00086264283,0.023458734,-0.016003955,0.012308755,-0.027501568,0.004660846,-0.01836013,-0.005175857,0.025325648,-0.030617382,-0.01860476,-0.023844993,0.012205753,-0.004821787,0.029304106,0.017072603,-0.0035310418,-0.004757411,0.005813183,0.00079464534,0.009218691,0.018282877,0.0533551,-0.024385754,-0.008433299,0.016132709,0.006164034,-0.011317359,0.0110662915,-0.007441904,-0.023059601,-0.027038058,-0.0314929,0.01667347,-0.026420046,-0.00505998,-0.000429712,-0.006003093,0.032033663,0.0002904982,-0.009257317,0.02396087,-0.0048185685,0.022132583,0.006894705,0.011085604,-0.02997362,0.0005146083,0.008092104,0.007139335,0.018514633,0.017857995,0.008890372,0.0030063747,0.013222898,0.010512655,-0.027939327,0.0115298005,-0.023162603,0.0021807482,-0.0034891972,-0.027012309,0.017677741,-0.020278545,0.009102813,0.026935058,0.0048121307,-0.03241992,-0.021192688,0.01593958,0.025570279,-0.029741865,-0.047638483,-0.023420108,0.0068689547,-0.01985366,-0.0017397704,-0.011330234,-0.030359877,0.0065728235,0.008639304,-0.00077010185,0.027733324,0.012630636,0.0037949847,-0.016982475,-0.018733513,-0.0037402648,0.012585573,0.012122063,0.0050986055,-0.02896935,0.03337269,-0.000307397,-0.008426862,-0.013892412,0.025711907,0.037467025,-0.012077,0.0044548423,0.011890308,-0.031235395,-0.015527571,-0.0046576275,0.013531905,0.02023992,0.0064505083,-0.012476133,-0.010705784,0.016325837,-0.015038311,0.025827784,0.00047316603,-0.008227295,-0.013235774,0.005443019,0.020085415,-0.007248775,-0.031132394,0.018810764,0.00094552734,0.028402837,-0.040891845,0.01642884,0.005639367,0.010029833,0.0008739087,0.009012686,0.0068689547,0.002526771,0.0062863487,0.017806493,-0.0004908695,0.010622094,-0.011394611,-0.008845308,-0.020304294,-0.0032397388,-0.02708956,-0.010338839,-0.024115374,0.03478897,0.0078088487,-0.002885669,0.027192563,0.013634907,0.0036437004,-0.00044982962,-0.01689235,-0.0128302025,-0.0058743404,0.0017365515,0.018823639,0.012115626,0.025660405,0.0055717714,-0.0037273895,0.002243515,0.018913766,0.016596219,0.00026716178,0.0030369535,0.011175731,-0.023780616,0.017536113,-0.012791577,-0.03097789,-0.0081629185,-0.0068882676,0.02559603,-0.016003955,0.049183518,0.002064871,0.0108345365,0.015257191,0.014407423,0.024990892,0.0023239856,0.013222898,-0.016055457,-0.010641407,0.0030562663,-0.011999748,0.01330015,-0.02369049,-0.0314414,0.003473103,-0.01003627,0.010390339,-0.025763407,-0.0056200535,0.0013969664,-0.009482633,0.020574676,-0.004409779,-0.014175668,-0.023420108,0.026149666,0.0024060654,-0.0113688605,-0.018308628,-0.0060449373,0.005372205,-0.0038561423,0.000101191545,0.003669451,-0.011916059,-0.018720638,-0.02374199,-0.017742116,0.0157207,-0.011162856,0.024681885,-0.01014571,-0.03239417,0.03571599,-0.016712096,-0.0027842764,0.011001915,-0.015257191]},{\"id\":\"f40e253c-47a5-44a5-8a1d-0d73bb9783ee\",\"text\":\"Why can’t you find my post? It’s out there on TikTok. Just as you asked.\",\"vector\":[-0.028211473,-0.004664713,-0.02670652,0.00019798327,0.00620155,0.0071740295,-0.011350908,-0.022701817,-0.020355113,-0.0005141388,0.009960741,-0.009712041,-0.008085928,-0.025405629,0.011280763,-0.024270538,0.03040513,-0.0016356787,0.005729658,-0.0027149715,-0.013850659,-0.024283292,0.007403598,0.0067531527,-0.016171856,0.0035391878,0.027114643,-0.0017297382,0.012122516,0.0019975686,-0.010961917,-0.011242501,-0.03512405,-0.021770788,-0.033287495,-0.022229925,-0.010298718,-0.018811898,0.02670652,-0.02501026,0.009335804,0.0016300989,-0.00586995,-0.003030629,-0.03234371,0.035991307,0.005299216,-0.01941133,0.007186783,0.011025686,0.009393196,-0.0078882435,-0.038389027,-0.03474143,-0.004390506,-0.008270859,0.030660206,-0.012224546,-0.010847133,-0.0095526185,0.0047699325,0.012441361,0.0017137959,-0.005930531,-0.004007891,-0.009208265,0.0072250445,0.013417029,-0.0019640897,-0.0030019328,0.012823976,0.0007652298,0.022370217,-0.0044765943,0.04216416,-0.0044925367,-0.0021442377,0.022918632,0.003325561,0.022485003,0.0061856075,-0.011937585,0.010655825,0.035455648,0.015699964,0.031195868,0.0025778678,0.04132241,-0.020100037,-0.00839202,-0.0015177057,0.022038618,0.028798148,0.0068806913,-0.0105920555,0.018607838,-0.011867438,0.027726825,-0.028772641,-0.0067021376,-0.0110065555,-0.007199537,-0.014105736,-0.017676808,-0.016337655,0.00021601799,0.01825073,-0.0296399,0.016707517,-0.0047444245,-0.029614393,0.014730673,-0.000058538088,-0.028543072,-0.01422052,0.013212968,-0.017804347,-0.02360734,-0.035481155,-0.02490823,0.049637906,-0.0010306688,-0.0074291057,-0.00907435,0.0050983434,0.023505308,-0.031731527,-0.028619595,0.0058922693,-0.019755682,0.048464555,0.012454115,-0.012562523,0.027675811,0.002054961,0.009170003,-0.046372924,0.020010758,-0.0061218385,-0.021872818,0.016490702,0.016503455,-0.020393373,0.030328607,-0.016159102,0.0028967136,0.011191485,0.0067212684,-0.0039441218,0.0033510688,0.030915283,0.006488511,-0.014705166,-0.013340506,-0.031552974,0.016273888,-0.0049708053,0.006348219,0.0047029746,-0.027420735,-0.0021522087,0.017600285,0.007722444,0.011165978,0.03882266,0.019105237,0.020852512,-0.043414038,-0.008232597,-0.0019258283,0.0020198878,0.022956893,-0.013417029,0.021656003,-0.035608694,0.008315497,0.008289989,0.010483648,-0.0051142857,0.0052513895,-0.010751478,-0.009329426,0.03507303,0.01258803,-0.0031119345,-0.0013503117,0.01895219,-0.009584503,-0.017970147,-0.024857214,-0.0011111774,0.009775811,0.0010011756,-0.017766085,-0.6329981,-0.027675811,0.041271392,0.0043713753,0.010183933,0.03323648,-0.013570075,0.022752833,-0.020673959,0.005149359,-0.024831707,-0.00048743543,0.0038452798,-0.004065283,-0.008162451,-0.01351906,0.028287994,-0.004151372,-0.0044765943,0.0075502675,-0.029231777,-0.008659851,0.0024152566,0.004412825,-0.014730673,0.001150236,0.0049931244,-0.023365017,-0.01994699,0.029257286,-0.0403021,0.024308799,0.016771287,0.000231761,0.04435782,-0.017587531,-0.011535839,0.0109300325,-0.0011143659,0.014016459,-0.03474143,-0.018582331,0.011880193,-0.013570075,0.01422052,0.00667663,-0.0051047206,0.013493552,0.01918176,0.026732028,-0.0009557401,-0.005589366,0.013672106,0.00363803,-0.0066893836,-0.011956716,0.016592734,-0.017727824,0.012594407,0.012996153,-0.0060229963,0.0065809763,-0.005241824,-0.009118988,-0.019424083,0.012243677,0.001421255,0.02240848,0.045939296,-0.0019959745,-0.009514357,0.0085897045,-0.008079551,0.027752334,-0.013289491,0.024002708,0.022867616,-0.003924991,0.030456146,0.002815408,-0.009884218,0.0068424297,-0.02254877,-0.006016619,0.013582828,0.020469896,-0.024602138,0.0059082117,0.008187959,0.013799644,0.0143353045,0.033108942,0.0031948343,-0.008921304,0.007971143,0.03259879,0.0042852866,0.005009067,0.030762238,0.007920128,0.0073015676,-0.013570075,0.0021155416,-0.01008828,0.034409832,-0.0022781529,0.0032426612,0.014475597,-0.0003294075,-0.025367368,-0.0027835234,-0.019373067,0.003218748,0.0057902387,-0.0012307445,-0.026604488,0.021235127,0.0006181622,0.026196366,0.01395269,0.017039116,-0.010572925,0.0004551523,-0.00022398913,0.01918176,0.0492808,-0.0024662719,0.014577627,0.007046491,0.023964446,0.00057870505,-0.015495903,0.018862914,-0.0034594764,-0.019998005,0.02451286,-0.0054554506,0.0021968472,0.022472247,-0.04165401,-0.0030625134,-0.021337157,-0.01351906,0.006536338,-0.014615889,-0.006294015,-0.0026591734,0.005567047,-0.02920627,0.0033159957,-0.0005109503,-0.017702315,-0.024538368,-0.0063801035,-0.012128892,0.00033857432,-0.017064624,-0.018939437,-0.0022064126,0.0013821963,0.024321554,0.012632668,-0.0052800854,-0.0015424163,-0.0060803886,0.010037264,-0.017128393,0.009865087,-0.0067021376,-0.020559173,0.007983898,-0.014041967,-0.004055718,-0.017396225,-0.013723121,0.0014754587,-0.000032058942,-0.011191485,-0.003191646,-0.009641895,-0.0023610527,0.018378269,0.0118228,-0.002195253,0.017255932,-0.0024997506,-0.031603992,0.047061633,-0.015878519,0.009374065,0.008863912,-0.008015782,-0.010974671,-0.0037273068,0.0036571608,0.010490025,0.00071421446,0.026757535,0.0004691018,0.020661205,0.011829177,-0.003331938,0.009201888,-0.032012112,0.0011048005,-0.008334627,-0.019819451,-0.033619095,0.027395226,0.02701261,0.0027627985,-0.019054221,0.002850481,-0.014603135,-0.011529462,0.027879871,-0.009922479,-0.011918454,-0.0011071919,0.027548272,0.0076012826,-0.001107989,0.005066459,-0.0099416105,-0.008270859,0.006810545,0.023148201,0.022319201,-0.01608258,-0.0031741094,-0.035736233,0.032547776,0.024627645,0.049178768,0.007716067,-0.034639403,0.009514357,-0.013053545,0.019041467,-0.012020485,0.0003054941,-0.0010131324,0.0007233813,-0.0021569915,0.0116825085,0.018072177,0.018493053,-0.029129747,-0.0026097524,-0.00787549,-0.010668579,-0.008443035,-0.021949342,0.009871464,0.010126541,-0.018454792,-0.038006414,0.011331778,0.02174528,0.027624795,0.014756181,-0.008749127,-0.006542715,0.0016229248,-0.015279088,-0.007116637,-0.009877841,0.016465195,-0.00094059494,-0.00034375556,-0.0063896687,-0.022765586,0.023734877,-0.002209601,0.021592233,-0.004871963,0.0068934453,-0.008372889,0.009367688,-0.00015822721,-0.012498753,-0.06606484,0.010426256,-0.007339829,-0.017829854,-0.0058221235,-0.0059719807,0.017778838,-0.022229925,0.01651621,-0.0038006413,0.0183145,0.0019130745,-0.0030210635,-0.014207766,0.006619238,0.018454792,-0.0024216333,0.026145352,0.042572282,0.023798646,0.013990952,-0.013965444,-0.008774635,0.023033416,0.017995654,-0.011248878,-0.024283292,-0.021987602,-0.017625792,0.021056574,0.003784699,-0.004014268,-0.0017552458,-0.009048842,0.015942287,-0.005567047,-0.008302744,0.013595583,-0.006182419,-0.0040812255,0.0044478984,-0.015113289,0.007926505,0.1338642,0.024398077,0.0045818132,0.0123329535,-0.002844104,0.014322551,0.00029572943,-0.012549768,-0.015865764,-0.006606484,0.0085641965,0.0009318267,-0.019793944,-0.015993303,-0.01362109,-0.012352084,0.017485501,0.007416352,0.0060771997,-0.01054104,0.0031549786,0.0014116896,-0.020559173,0.018977698,-0.005366174,-0.0058444426,0.033210974,0.03499651,0.01668201,-0.006529961,-0.021502957,0.013786891,0.0070783757,0.013072676,0.0049197897,0.0055192197,0.007123014,0.018926684,0.005876327,0.025788244,-0.0010617563,0.03772583,0.02441083,0.0025906216,0.017345209,-0.0063227112,-0.01825073,0.013582828,0.0024503295,-0.0020597435,0.011229747,0.0012945137,-0.013774136,-0.024665907,0.016069826,0.0035359992,-0.019309299,-0.017511008,-0.011924831,-0.017842608,0.00072856253,0.013302244,-0.021949342,0.009839579,0.0017472747,-0.036807552,0.00037643727,-0.027497258,-0.008423905,0.017345209,-0.0062079267,0.010196687,-0.04269982,0.009361311,0.026451442,-0.0011024092,0.039511364,0.0042757215,-0.017511008,0.021885572,0.007295191,-0.037368722,0.02457663,-0.023237478,-0.0060740113,-0.009259281,0.008079551,0.025099536,-0.018595085,0.0069572143,0.027191166,0.04565871,0.032828357,0.0040270216,0.013888921,-0.017039116,0.0118228,0.045250587,-0.01335326,0.0017616227,0.013417029,-0.023938939,-0.01684781,-0.03583826,-0.025660705,-0.010751478,0.014041967,0.022918632,-0.016694764,-0.019870467,0.024143,0.022638047,-0.0065490915,0.01911799,0.014934734,0.024882723,0.0032633862,0.024793446,-0.014092982,-0.023887923,-0.01128714,-0.00053685653,0.024359815,-0.011019309,-0.005178055,0.018901177,-0.012613538,-0.050862275,-0.016350409,-0.0017153901,-0.004090791,-0.0136593515,-0.0018524937,0.015381119,-0.008653473,-0.009303919,0.005860385,0.015049519,0.0033351264,-0.004141806,-0.0036826683,-0.02240848,-0.02151571,0.0022127894,-0.0077096904,-0.03344054,0.0035073033,0.016197365,0.004690221,0.011102209,0.007295191,0.021298897,-0.0063035805,-0.023275739,0.011484824,-0.011242501,0.0023435163,0.013633844,-0.0076650516,-0.02494649,0.02604332,-0.013327752,0.01885016,0.011440186,0.0089021735,0.008659851,0.01078974,0.016643748,-0.018697115,0.0014993721,0.04479145,-0.01130627,0.029869469,0.033083435,-0.00049540657,-0.013123691,-0.013825151,-0.022038618,-0.013990952,-0.031348914,-0.0066319914,-0.002906279,-0.0043107946,-0.0041290526,0.002724537,-0.0063131456,0.016643748,0.0041705025,0.04303142,0.0026384485,0.04282736,-0.023492554,0.010566548,-0.0076076593,0.029155254,-0.0296399,-0.015699964,-0.0051684896,-0.010649448,0.020074528,-0.013774136,0.0079392595,0.002230326,0.007824475,0.008749127,0.033619095,-1.3233344e-7,-0.012989775,0.0023036606,-0.016579978,-0.010700463,-0.01895219,-0.027701318,-0.006823299,0.0013016878,0.01885016,-0.02567346,-0.0048687747,-0.009731173,-0.01558518,-0.020890774,0.011376416,0.029818455,0.0000646659,0.026885074,0.019998005,-0.012772961,0.024500107,0.004173691,-0.005876327,-0.014641397,-0.00135908,0.015457641,-0.026068829,-0.0017791593,-0.016541718,0.003520057,-0.009546242,-0.026961597,0.012294692,0.0178171,-0.0319611,-0.005917777,-0.014870966,-0.028517563,0.013863413,-0.027165657,-0.0033128073,-0.00066200347,0.003526434,-0.03446085,0.018186962,-0.014207766,0.014539366,0.028951194,0.024002708,-0.016235625,-0.0076650516,0.0071548987,0.0015185028,-0.009418704,0.0118228,-0.01791913,0.016605487,0.030660206,-0.018263485,-0.008749127,0.0001346127,-0.013417029,0.028619595,-0.015444888,0.014041967,-0.015636194,0.011038439,0.020036267,-0.018620592,0.0011749465,0.005018632,0.0007624399,0.0002066519,0.0562699,-0.0028138137,-0.00014268348,-0.00899145,-0.008997827,-0.003966441,-0.017472748,-0.0017153901,0.0069572143,-0.0112680085,0.004202387,-0.020775989,0.021107588,0.0022909066,-0.010968294,0.014730673,0.0024359815,0.0124031,-0.014373566,0.0071421447,-0.009099858,0.0035742607,-0.02800741,-0.0049325437,0.025762737,-0.03137442,0.027446242,-0.014845458,-0.0070783757,-0.025023013,-0.0037815105,0.02451286,-0.0062685073,-0.013136445,-0.006418365,0.023301248,-0.016733024,-0.0316295,-0.018225223,0.02015105,0.026502458,0.012014108,0.0054331315,0.012390345,0.0053566084,-0.03986847,-0.005009067,0.005302405,0.017408978,0.031399928,0.0060325614,0.008787389,-0.004623263,-0.029894978,-0.015967796,-0.013404275,0.0016205335,0.01455212,-0.022523263,0.0044702175,0.009482472,0.009661026,0.01771507,0.0053629857,-0.01002451,0.00351368,-0.021362664,-0.009036088,-0.0016213306,-0.000007728273,-0.006918953,0.025686214,0.0027978714,-0.020954542,-0.02567346,0.019768436,-0.033313002,-0.027497258,0.0078627365,-0.0075375135,-0.008506805,-0.017026363,-0.0059624156,0.012192661,-0.013850659,0.012109761,-0.008372889,-0.034282293,-0.019819451,-0.0047635552,-0.006316334,0.014972996,0.0018110438,-0.0042119524,-0.00471254,0.028747132,0.01422052,0.020125544,-0.0063322764,0.004141806,-0.043694623,-0.010993801,-0.0044032596,-0.016605487,0.019436836,-0.03999601,-0.0017520573,0.0075183827,0.004412825,0.012141646,-0.00007039516,0.002627289,0.012224546,0.031450946,-0.012326577,0.0027293195,-0.029716423,0.006029373,0.00093421806,-0.014016459,0.0013710367,0.017740577,-0.0068679373,-0.0063545955,-0.019105237,0.018760884,-0.017447239,-0.0048400783,0.019768436,-0.004333114,0.0009461747,-0.000045012053,-0.01802116,-0.01701361,-0.01345529,0.00083059317,-0.004683844,0.015330103,0.0336446,-0.0003192443,-0.01701361,-0.025749983,-0.015904026,-0.020941788,-0.00839202,-0.0035359992,-0.019921482,-0.009763056,-0.010732348,0.028415533,0.016171856,-0.05035212,0.0073653366,0.006306769,0.012345707,0.015228073,0.23956794,0.02943584,-0.008602458,0.052290704,0.0051748664,-0.0072377985,-0.013901674,0.033950694,-0.03117036,-0.008940435,-0.0047157286,-0.0041290526,0.00942508,0.00028058427,0.009437834,-0.008385643,-0.023262985,-0.0034817955,-0.021732526,-0.0359658,0.0059496616,-0.0050026895,0.018237976,-0.005901835,0.038287,0.0019130745,0.008889419,-0.0022781529,-0.00044359415,0.0004663119,-0.0054682046,-0.030124547,0.027777841,0.0039696298,0.0039632525,0.00006989697,-0.0047763092,0.0012562523,0.024500107,0.02370937,0.0024296045,-0.02920627,0.020878019,-0.029792946,-0.0049197897,-0.0034945493,-0.012154399,-0.0041290526,0.0033574458,0.010572925,-0.026094336,-0.022650803,0.017064624,0.018799145,-0.010005379,-0.003701799,0.028798148,0.012001354,-0.00762679,-0.002098005,0.0244746,0.027318703,0.01944959,-0.007575775,-0.025443891,0.024729677,0.011319024,0.025252583,0.028032918,-0.013429783,0.023148201,-0.010292341,0.01481995,0.014526612,-0.039409336,-0.0075056287,0.017000856,-0.01721767,0.018824654,0.009648272,-0.012007731,0.01924553,-0.022025865,-0.01802116,0.0018413342,-0.0057456004,-0.0040748487,-0.013786891,-0.0028616406,-0.011982223,-0.0063035805,-0.012823976,-0.015457641,-0.010292341,-0.006048504,-0.0036348414,-0.015508657,0.010649448,-0.007250552,0.0013949501,0.010942786,0.016069826,0.030991806,0.018008407,0.0018811899,-0.0024822142,-0.008366512,-0.002641637,0.03479245,-0.029129747,0.023071678,-0.019258283,0.0016755344,0.0053916816,-0.017268686,0.04489348,0.012683684,-0.0027723638,0.0032872995,0.0041354294,-0.019551622,-0.021796295,-0.01581475,0.0110065555,-0.0032713574,-0.011083079,0.002195253,0.004696598,0.0066893836,-0.022357464,0.02141368,0.0013766165,0.011491201,0.02617086,-0.03193559,0.014207766,0.04438333,-0.0060102423,0.005066459,0.0032841112,-0.008621589,0.018161453,0.010649448,0.030354114,0.018722622,-0.035889275,-0.008838404,-0.014896473,-0.021566726,-0.0048751514,-0.011108586,-0.012772961,-0.0039983257,-0.012766584,0.03683306,-0.007569398,-0.020788742,-0.017485501,-0.025533168,-0.004001514,-0.025303598,-0.0008999421,0.021286141,-0.0064853225,0.0032777344,-0.0037655684,-0.15875967,0.016707517,0.004036587,-0.0046041324,0.0012498753,0.0069572143,0.024270538,-0.021911079,0.0024264161,0.012600784,0.020010758,-0.016465195,0.000035845238,-0.009610011,-0.029257286,-0.025686214,-0.008576951,0.008749127,0.016630994,0.015164304,0.02011279,-0.0074609905,0.0053215353,-0.009227396,-0.0033191843,0.029894978,-0.037955396,0.033083435,-0.0050026895,-0.046347417,-0.0028249733,0.0011900917,0.03073673,-0.00042924608,0.023199217,-0.028568579,-0.0053470433,-0.021923834,-0.009495227,0.007811721,0.014450089,0.02507403,0.03216516,-0.0024025028,-0.023326755,0.021617742,-0.0054554506,0.011931208,0.0009955958,-0.014807196,0.0027787406,-0.020801496,0.021337157,0.014679658,-0.008838404,0.017523762,-0.0028185963,0.026655504,-0.0063258996,-0.014794443,0.006246188,-0.008832027,-0.012294692,-0.024181262,-0.020827005,-0.026451442,-0.013149198,-0.0013949501,-0.037164662,0.005206751,-0.01455212,-0.011044817,0.032955896,-0.005946473,-0.010247703,0.010751478,-0.03346605,0.0042980406,0.009539865,0.02271457,-0.012486,0.034945495,-0.014003705,0.008085928,0.0013024849,0.005930531,-0.02141368,0.013544567,-0.0048400783,-0.018735375,0.004824136,0.008156074,-0.022625294,-0.018926684,-0.0049708053,0.010572925,0.01188657,0.010343356,0.0067722835,-0.048974708,0.021949342,-0.0072888136,-0.020163804,0.030838761,0.024882723,0.007996651,-0.026119843,0.0022351088,0.024538368,-0.021604987,-0.016656501,0.003813395,0.009775811,0.019551622,0.029359316,0.024423584,0.018174207,-0.011848308,0.018569576,0.008232597,0.037878875,-0.017396225,-0.018709868,-0.002641637,-0.008934058,-0.05012255,-0.08815447,-0.013123691,0.01027321,0.010815248,-0.012792091,0.007920128,-0.0006922938,0.00028795758,-0.013442537,0.04772483,-0.0022542395,-0.02358183,-0.0030641076,-0.005965604,0.005031386,-0.012466868,-0.008997827,-0.024372568,-0.010655825,0.015100535,-0.0025571429,-0.010311471,-0.0026225063,-0.011701639,0.011510331,-0.031042822,-0.018709868,0.02004902,0.012390345,0.013468044,-0.03300691,0.005375739,-0.008570573,-0.032088637,-0.0075247595,0.002461489,-0.017766085,-0.012772961,0.011835554,-0.041832563,-0.016592734,-0.023148201,-0.008238974,-0.01531735,-0.019334806,0.0034403456,-0.0020852513,0.008423905,-0.0004236663,-0.033619095,-0.008666228,0.009514357,0.006083577,-0.03170602,0.027777841,-0.020010758,0.0026671446,0.0041003563,-0.0091636265,0.024066476,-0.0050473283,-0.014131243,0.0075375135,0.02670652,0.0030896154,-0.011599609,0.022956893,-0.016210118,-0.003561507,-0.019526113,-0.025762737,0.007703313,0.0004188836,0.015661703,-0.03410374,-0.0032283133,-0.008800142,0.011197862,0.03333851,-0.023390524,-0.0065682223,-0.026145352,0.0014571251,-0.018684361,0.008742751,0.0012626292,-0.0054331315,0.009342181,-0.015444888,-0.028568579,-0.016630994,0.0007492875,-0.0236456,-0.02457663,-0.045811757,0.006734022,-0.00023315595,-0.0070719984,-0.0059114,0.013404275,0.005493712,0.005761543,-0.047010615,0.011229747,0.0063386536,-0.02257428,0.003960064,-0.011873815,-0.00967378,-0.026196366,-0.023428785,0.027803348,-0.020559173,0.019271037,0.0014332116,0.009029712,-0.013200214,0.004891094,-0.0102540795,-0.031731527,0.028466549,0.005053705,-0.0049708053,-0.0191435,-0.023798646,-0.0041896333,-0.0064725685,0.032573283,-0.005429943,0.018811898,-0.01951336,-0.008659851,0.014373566,-0.04042964,0.017421732,0.05341304,0.00046790612,-0.025290845,0.035353616,0.008430282,-0.007371714,0.010260456,-0.00088957965,-0.01345529,0.014080228,-0.027675811,-0.0007987086,-0.0068934453,-0.003883541,0.011299893,0.011089455,0.01345529,0.016937086,0.012454115,-0.006791414,0.007059245,0.010209441,-0.002021482,0.02604332,-0.011695262,-0.002257428,0.007920128,0.021553973,0.0239772,0.0048113824,-0.01335326,0.020571928,0.012460492,-0.021898326,0.015738226,0.030660206,-0.019857714,0.0005667483,0.01405472,-0.0013710367,-0.00659373,0.020788742,0.03356808,-0.019806698,0.015942287,-0.0035423762,0.01591678,-0.0026097524,0.015840257,-0.011134094,0.011841931,-0.0027914946,0.016707517,-0.013028037,0.019424083,-0.01498575,-0.015419381,-0.01345529,0.005107909,-0.008360135,-0.01395269,0.01267093,0.015725473,-0.017128393,0.00061856076,-0.0052386355,-0.007767082,0.009367688,0.0019593071,0.0051461705,-0.00056834257,-0.028032918,0.023288494,-0.016159102,-0.035685215,0.0060963305,0.011274385,-0.010725971,-0.039052226,-0.010043641,0.0006775472,0.0035455646,-0.0118228,0.0067148916,-0.004231083,-0.024857214,0.046679016,0.0013256012,-0.004817759,0.007103883,-0.025954043,0.017804347,-0.0015543731,-0.006663876,0.00082262204,0.008360135,-0.015355611,0.0013327752,0.0052195047,-0.0136848595,-0.008213466,-0.0020836568,-0.014603135,-0.0033191843,0.018671608,0.0019975686,0.058361527,0.0057806736,-0.037776843,-0.0076140366,-0.013493552,0.026553474,0.021860065,-0.0014324145,-0.026400428,0.031884573,-0.0013646598,-0.010094657,0.011561347,-0.005130228,-0.0031310653,0.0017743766,0.0055319737,-0.009967118,-0.0058635734,-0.010336979,0.01585301,-0.008054043,0.01070684,0.009170003,-0.009495227,-0.0056786425,0.029690916,-0.011083079,-0.015266335,-0.06535062,0.024372568,0.0069380836,-0.00398876,-0.011727147,0.026987104,-0.012957891,-0.013761383,0.0052800854,0.045327112,-0.007658675,0.017842608,0.0045658713,-0.012179907,0.0067531527,-0.033185467,0.009896972,-0.0014754587,0.0036284646,-0.03836352]},{\"id\":\"ab677904-89b9-483c-8d33-c324e52f0861\",\"text\":\"Can you fix where it says a my Instagram account is found when I have a legit nail page as well as my studio nail page? I entered my nail page info so I don’t know why it’s saying my instagram account is not found.\",\"vector\":[-0.02609277,0.0012012714,0.00986586,-0.010657873,-0.045550093,0.009011485,-0.039438497,-0.018459512,-0.0041845716,-0.0040224274,0.0045836964,-0.025257101,0.0039070556,0.001502174,0.005843433,-0.035222743,0.024596052,-0.0053102276,0.00014343539,-0.0014943785,-0.01873391,0.0030308522,-0.021203494,0.0022871708,-0.030782484,0.0025506555,0.007820347,-0.0056376345,0.0009588344,0.0006906726,-0.021777235,0.0013252184,-0.015703058,-0.014081614,-0.0034642767,-0.011699339,0.0113501055,-0.027115526,0.01476761,-0.015141789,0.005447427,0.021864543,-0.005357,-0.0138446335,-0.023797803,-0.0011022699,-0.020492552,0.0079824915,-0.0269908,0.046448123,0.008001201,-0.028238064,-0.013719907,-0.03869014,-0.010807545,-0.028063446,0.0025459782,0.014842445,-0.0029981115,0.007159297,0.000088380366,0.019981174,0.01920787,-0.010071659,-0.006978444,-0.0008598328,0.007676912,0.006822536,-0.005157438,-0.002968489,0.02132822,0.0012807845,-0.007988728,-0.025182266,0.022475703,-0.025843317,-0.007776693,-0.008487633,0.011462359,0.0154785495,0.008431506,-0.023935001,-0.0029575755,0.020317936,0.009098793,0.0046522957,0.019382488,0.009784789,-0.0073401504,-0.000084385225,0.021265857,0.034175042,0.0042968257,-0.0012963753,-0.021066293,0.010982162,-0.017573955,0.016788177,-0.0131835835,-0.006672864,-0.0035484668,0.0051449654,-0.014356012,-0.01793566,-0.027963666,-0.007277787,0.0039039373,-0.0009370073,-0.0029014486,-0.021315746,-0.016788177,0.026442003,0.022151414,-0.0038228652,-0.0031555786,0.014356012,-0.008942885,-0.017823407,-0.04597416,-0.0071842424,0.0041034995,0.013769798,-0.005843433,-0.0065855556,0.015416186,0.002154649,-0.039812677,-0.0073463866,-0.019606994,0.0025927506,0.04959123,-0.021153603,0.014493211,0.02166498,0.008936648,-0.0065294285,-0.011555904,-0.00623944,-0.028412681,-0.01930765,0.019033253,0.010165204,-0.017386865,0.0137448525,0.008824395,0.017474173,-0.010770127,0.0047489586,0.016738286,-0.008930412,0.003489222,0.014331067,-0.015603276,-0.030957099,0.000028477578,0.026741346,0.025543973,0.032004803,-0.010950981,-0.03175535,-0.016451417,0.027739158,0.0048955125,0.0062581487,0.03686913,0.031680513,-0.0125724245,-0.046024054,-0.04572471,0.0042375806,-0.023872638,0.010501966,-0.008331725,0.016738286,-0.0041970443,0.0019161098,-0.019594522,-0.0047489586,-0.0018288012,-0.0068786624,0.0049765846,-0.0064483564,-0.0016323571,0.0075584217,-0.008007437,-0.0040816725,-0.014717719,0.009323301,-0.015852729,-0.02751465,-0.008481397,0.0119113745,0.010439603,-0.00056984386,-0.6238317,-0.009504154,0.038241122,0.01186772,-0.010090368,0.057224486,-0.0016339163,0.016389053,-0.040710706,0.02137811,-0.03751771,0.0120111555,-0.010626691,0.008892994,-0.010689055,-0.025693644,0.015328879,-0.0034985763,-0.015004589,0.0054256,-0.016164545,-0.004951639,-0.019544631,0.013395619,0.0067601725,0.013807216,0.004867449,-0.027439814,-0.009516627,0.029111149,-0.021939378,0.011269033,0.029984234,-0.008986539,0.041982915,0.0025350647,0.014293649,0.030084016,-0.0000016382525,0.01835973,-0.042581603,-0.0040660817,-0.0020595451,-0.016601088,0.010152731,-0.0022076578,0.024109619,0.009235992,0.021877015,0.023872638,0.016102182,-0.030582922,-0.017785989,-0.010289931,0.033825807,-0.0028063448,0.001259737,0.000020414209,0.018484456,-0.0032834234,-0.0020439543,0.0044184336,-0.027813993,-0.041833244,0.0019457323,-0.005840315,0.00589956,0.0030542384,-0.008462688,0.0005371032,0.008213235,-0.0025272693,-0.0070906975,0.018060386,-0.034499332,0.026915964,0.025369355,0.011318924,0.009903278,0.0026254915,-0.0014491652,0.009872097,-0.00038489795,-0.014293649,0.015752949,0.002154649,-0.0134954,0.011824066,-0.010146495,-0.009722426,0.02953522,0.012036101,0.016251855,-0.0125724245,-0.016189491,0.007583367,-0.015091898,-0.016014874,-0.0027205953,0.0048362673,0.01149354,-0.0067539364,0.0007117202,0.0072029512,0.024097146,0.005045184,-0.0036264209,0.022363449,0.00062752987,-0.0016713341,0.015615749,-0.018758856,-0.005038948,0.008774504,-0.0067788814,-0.023698023,0.034499332,-0.009504154,-0.019644413,0.0040442543,0.038390797,-0.005843433,-0.020804368,0.001395377,0.005930742,0.010689055,0.010389712,0.0021983034,0.018671546,0.0015349146,-0.016775705,-0.0087495595,0.030258631,-0.028662134,-0.024795614,0.021041349,0.0013306751,0.011256561,0.0080822725,-0.036395174,-0.0075521856,-0.016476361,-0.012241899,0.013869579,0.015503495,-0.037018806,-0.020018592,0.019544631,-0.012023628,0.028163228,0.0018896054,-0.002466465,-0.03454922,0.02109124,-0.015565858,0.00064857746,-0.008325489,-0.012279317,0.0027720449,-0.014256231,0.008755796,0.03968795,-0.018297367,-0.024458854,0.014543102,-0.015366296,0.006909844,0.030433249,0.0017368156,-0.024508743,0.001047702,-0.010158968,-0.028113337,-0.02166498,0.035472196,0.0014413698,-0.0033707318,0.009448027,-0.015578331,-0.00656061,-0.0033021322,0.014218813,0.009641353,0.014792555,0.011468595,0.001435913,-0.0036388936,0.031231498,-0.03138117,0.022612901,0.0021187903,0.00055425306,-0.010028005,-0.0040099546,-0.012079755,0.0061801947,0.034050316,0.011724285,-0.030283578,0.016788177,0.0017867062,0.01144365,0.022138942,0.0033301958,0.01632669,-0.0038727557,-0.009853388,-0.019931283,0.042581603,-0.0013634157,0.0121047,-0.029934343,0.0067539364,-0.033750974,0.00009861183,0.02581837,-0.0132833645,0.008169581,-0.013358201,0.038715083,-0.0023370616,-0.0033239594,0.012921658,-0.012466406,-0.0016432707,0.02529452,0.040860377,0.028462572,0.014705246,-0.013333255,-0.005824724,0.010452075,0.0032491235,0.021552727,-0.012098464,-0.03751771,0.027439814,-0.013620126,0.015191679,-0.0010960335,0.012036101,0.012216954,0.019532159,0.019606994,0.037143532,0.0023916294,0.023722967,-0.02095404,-0.017549008,0.0052852826,-0.009909515,-0.010264985,-0.023386206,-0.0046678865,0.007159297,-0.009759843,-0.01229179,0.003648248,0.019220343,0.029834563,-0.0055534444,0.009872097,-0.0013447069,-0.007583367,0.016900431,-0.0060336413,-0.0033800863,-0.016962795,-0.004446497,0.0036763116,-0.038066506,0.0037854472,0.032403927,0.02425929,-0.005447427,-0.031256445,0.026267387,-0.014056669,0.043504577,-0.0051699104,-0.034798674,-0.035696704,0.020592334,-0.002149972,0.014168923,0.016064765,-0.02487045,0.01608971,-0.018708965,0.0040660817,0.017287083,0.0015084103,-0.0030105843,-0.0027237134,-0.00076472893,-0.013769798,-0.0037012568,0.007277787,0.023298897,0.022500647,0.0032615962,0.008481397,-0.0029435437,0.005908915,0.0174617,-0.00242437,-0.005799779,-0.01524157,-0.0011459241,-0.020031065,0.014642883,0.00283129,-0.017761044,-0.005915151,0.021777235,0.0039444733,-0.025593864,-0.03317723,0.01902078,0.003688784,0.0059057963,-0.015466077,-0.020492552,-0.0029357483,0.07014614,0.024284236,-0.0067040455,0.019045725,0.0004992955,0.011131834,-0.0020673405,-0.030408304,-0.0066229734,-0.022263668,-0.011668158,-0.0020876087,0.0027845176,0.023722967,0.016226908,0.004075436,0.02666651,-0.022475703,-0.04535053,-0.0003453363,-0.023860166,-0.009641353,-0.0154286595,0.030857319,0.022288613,0.02821312,0.011842774,-0.026915964,-0.017299555,-0.023186643,-0.0067040455,0.025843317,0.006728991,0.008450216,0.009123738,0.012984022,-0.001803856,0.01835973,0.016264327,0.019282706,-0.0058870874,0.021315746,0.00034163348,0.0020205681,0.020118373,-0.0053975363,-0.007888947,0.01066411,-0.009285883,0.004134681,0.029235875,-0.011587085,-0.018871108,-0.029435437,0.02227614,-0.009940697,-0.007134352,-0.0123167345,-0.045749653,-0.035098016,-0.012466406,-0.011269033,0.003688784,-0.011686866,-0.021490363,-0.029460384,-0.0065668467,-0.015229098,-0.007851529,0.005590862,0.014667829,-0.029610055,-0.017748572,0.003897701,-0.010364766,-0.021103712,0.0175989,0.007471113,-0.011262797,0.011262797,0.010115313,-0.04300567,0.0066978093,-0.015515968,-0.017287083,0.0155284405,-0.0050763655,0.0046710046,-0.017137412,0.0243466,0.032304145,0.024458854,0.0033832043,-0.014455793,0.017636318,0.008113454,0.0032272963,0.037143532,0.0004965671,0.0059556873,-0.0039257645,-0.016301744,-0.04073565,-0.01505448,-0.015964983,-0.0013891406,0.008144636,0.038864754,-0.018571766,-0.0063111573,0.013994305,0.012428989,-0.0020922858,0.018609183,-0.0019613232,0.029285766,0.0020314818,0.008955358,0.026691455,-0.01812275,-0.0052104467,-0.020367825,0.019831503,0.02000612,-0.012934131,0.016351635,-0.0048799217,-0.0269908,0.0039351187,0.015765421,-0.03242887,0.019245287,-0.030308522,-0.012871767,-0.0061770766,-0.001191917,0.0029310712,-0.0021640037,-0.0038259833,-0.02510743,0.00073588593,-0.017798461,-0.009404372,-0.017287083,-0.0038665193,-0.029659946,0.0040660817,0.011156779,0.02198927,0.05058904,0.009454263,0.03936366,-0.013158638,-0.006186431,-0.01198621,-0.012092227,-0.0011771057,0.01325842,0.02256301,0.016177017,0.017424282,-0.004134681,-0.00908632,-0.009092556,0.0064358837,0.0017945016,-0.023286425,-0.00021339912,-0.014667829,0.0054848446,0.01054562,0.0069971527,0.014705246,0.013520345,0.0036544844,0.014293649,-0.0076582027,-0.0077891657,-0.017449228,-0.016177017,-0.01283435,-0.010420893,-0.005438072,0.017698681,-0.0070345704,0.0011911374,-0.027764102,-0.009304591,-0.01144365,-0.011955028,0.02614266,-0.027439814,0.024084674,-0.012216954,0.017860824,-0.01325842,-0.029410493,-0.015378769,0.000068355934,0.0009175188,0.010950981,0.018509403,-0.032927778,-0.00015522593,-0.01054562,0.029510273,0.0053039915,-0.032902833,-0.01234168,-0.020941569,0.007271551,0.010514438,-0.027065635,0.010102841,-0.014854918,0.0063735205,-0.014929754,-0.0035016944,-0.01666345,-0.0053195823,-0.006828772,-0.018833691,0.002965371,0.036220554,0.024932813,0.047296263,0.00632363,-0.006423411,0.023136754,-0.005116902,-0.014705246,0.035946157,0.03385075,-0.031456005,-0.038291015,0.026017934,-0.022101523,0.012659732,-0.0058122515,0.029285766,0.027265199,-0.017536536,-0.010751418,-0.003766738,-0.0174617,0.0053632366,-0.015578331,0.04497635,-0.026067823,0.022251194,-0.024645943,0.01783588,0.005138729,0.034898456,0.007851529,0.0032335327,-0.037343092,0.008487633,0.019370014,0.01656367,-0.015940038,0.023822749,-0.012210717,0.00559398,0.024857977,0.00044121974,-0.034698892,-0.004789495,0.0040442543,0.023012027,-0.039139155,0.013158638,-0.009466736,0.0012955958,-0.00879945,-0.013033912,0.014979645,-0.011462359,-0.0077392748,0.0055534444,0.03148095,0.0058496697,-0.011163016,-0.013632599,-0.024122091,0.00496723,-0.006947262,-0.005799779,-0.0033894407,-0.033052504,-0.019407433,0.0015045126,0.00010484816,-0.004387252,-0.033102393,0.008518815,0.021340692,-0.0037168476,-0.03973784,0.018060386,0.0005394418,0.0018989599,-0.022787519,0.0013556203,-0.010520674,-0.07104418,-0.010464547,0.012672205,-0.012447698,-0.01005295,0.024596052,0.011724285,0.018097805,0.0008535965,0.0034861036,-0.00418769,0.0039507095,-0.01995623,-0.024758196,0.0031477832,-0.008269362,0.016064765,-0.0035172852,0.026292332,-0.014206341,-0.02127833,0.0040692,0.025182266,-0.029086204,-0.015890148,0.009541572,0.012896713,-0.0069347895,-0.036320336,-0.009547808,-0.017761044,-0.032578543,0.012248135,-0.005182383,-0.016189491,-0.006189549,0.01264726,0.022475703,-0.004056727,-0.007583367,-0.004845622,-0.01968183,-0.054630175,-0.03265338,0.01325842,-0.03250371,0.03265338,0.024234345,-0.0217024,-0.017998023,-0.01378227,-0.022301085,-0.01566564,-0.0040660817,-0.0045743417,0.019756667,-0.0019332597,-0.015877675,0.029285766,-0.011331396,0.027340034,-0.02793872,-0.004621114,-0.013994305,-0.0016245617,-0.00029486106,-0.005971278,-0.01090109,-0.0037760928,-0.009778552,0.031131716,0.008518815,0.00046226734,-0.014044196,0.015877675,0.021253383,0.010015532,0.032678325,0.02953522,0.014518157,-0.034748785,-0.0044184336,-0.016301744,0.029485328,-0.009211047,0.022662792,0.0011014903,0.01132516,-0.0065231924,0.003242887,-0.010383476,-0.021964325,0.0028858578,0.040660817,0.0009331096,0.0050514205,0.00974737,0.0010071659,-0.0013836839,-0.010221331,0.013657544,-0.0006852158,-0.0006672864,0.025868261,-0.038914647,-0.040561035,-0.00783282,0.00593386,-0.0057717157,-0.023423623,-0.0037480292,0.010065423,-0.0077891657,0.016064765,-0.01439343,-0.0051106657,-0.009298355,-0.007271551,-0.03128139,0.019606994,-0.016014874,-0.018147696,-0.013595181,-0.0019379369,0.03138117,0.009211047,-0.00783282,0.01968183,0.0048175585,0.014954699,0.006485774,0.2191194,0.004209517,0.0015317964,0.008668487,0.015852729,-0.008780741,0.01995623,0.026915964,-0.0047645494,-0.009491681,-0.009098793,-0.014455793,-0.009435554,-0.0058527878,0.018945945,-0.038565412,-0.019320125,0.0054411907,-0.013295838,-0.00008950096,0.0127220955,0.010670346,0.007639494,0.008419034,0.04567482,0.015303933,-0.0039507095,0.032403927,0.00705328,0.025593864,0.001115522,0.015915092,0.0102275675,0.0075521856,0.003082302,-0.00014099933,0.016027346,-0.027364979,0.012204481,0.025618808,0.010252513,-0.019519687,-0.022812463,-0.010564328,-0.009267174,-0.008125927,-0.014942226,-0.008755796,-0.0026286095,0.0338757,-0.01047702,-0.029335657,0.02783894,0.009310828,-0.0035578215,0.00256001,0.029136093,-0.01764879,-0.0064545926,0.027290143,0.0033457866,0.024708306,0.0033707318,0.025743535,-0.0075147673,0.0027798403,0.0175989,0.009211047,0.006317394,-0.015441132,0.015989928,0.016863013,0.019532159,0.025194738,-0.021901961,-0.02312428,-0.0143061215,0.022326032,0.021926906,0.02283741,-0.016014874,0.0036544844,0.004777022,-0.019444851,-0.0154286595,-0.01391947,0.0032085874,-0.0012581779,-0.010919799,-0.039438497,-0.0005148863,-0.0035235216,-0.022862354,-0.019843975,-0.002965371,0.026591675,0.0088493405,0.024882922,0.0072840233,0.012597369,-0.023685548,0.04228226,0.027015746,0.013358201,-0.00000541415,0.0007682369,0.004462088,0.010028005,-0.016301744,-0.00042290054,0.014592992,-0.016226908,0.0024196927,0.00025471475,0.010495729,0.043429743,0.02222625,-0.039762788,0.0027361861,0.019058198,0.009448027,-0.010620455,0.010433366,0.00018553056,-0.004870567,-0.019507214,-0.016451417,0.0052478644,-0.009928224,-0.03826607,0.003086979,0.004561869,0.020218154,-0.0050545386,-0.045799546,-0.00279699,0.015091898,-0.024147037,0.0061365403,0.0017882652,-0.015278988,0.015378769,-0.009909515,-0.013682489,0.012796932,-0.042007864,-0.009279646,-0.013632599,-0.015989928,0.0061801947,-0.0024134563,0.007814111,-0.022475703,0.019245287,0.034723837,0.009554044,-0.048443746,-0.03210458,0.0014086291,0.00722166,-0.025082486,0.016738286,0.018135224,-0.025207212,-0.012740805,-0.01995623,-0.15226603,0.024371544,0.026716402,0.014293649,0.015129316,0.013008967,-0.008206999,0.0002541301,-0.02095404,0.012859295,0.021502836,0.0123666255,-0.012522534,-0.0037979197,-0.007701857,-0.0004649957,0.011649448,-0.0012870209,0.033950534,0.012023628,0.025793426,0.0017679972,0.031605676,0.008737086,-0.00008886758,0.016014874,-0.019806556,0.0015193238,0.02105382,-0.0010625133,0.013358201,0.014293649,0.0056937616,0.013670017,0.002717477,-0.014380957,0.0036794296,0.011225379,0.005834079,-0.0029606936,0.007851529,-0.013595181,0.01902078,0.0013236592,0.009354482,0.0134954,0.033277012,0.018284895,0.03552209,-0.017025158,0.027539596,-0.014193867,0.014568047,0.01047702,0.0017025158,0.024758196,-0.0034175043,0.02439649,-0.036819242,-0.014380957,-0.007627021,-0.01727461,-0.018222531,-0.011431177,-0.004462088,-0.0068537174,-0.02704069,0.011880193,0.0026036643,0.0042749983,-0.033376794,-0.030333469,0.027664322,0.0013618567,0.009522863,-0.021777235,-0.032952722,0.0015536236,-0.007963782,0.0044870335,-0.015466077,0.020692116,-0.027015746,0.019594522,-0.0117055755,0.012029864,0.029859507,0.014218813,-0.016725814,-0.0024461972,0.016014874,-0.020330409,-0.014268704,-0.03365119,0.020916622,0.005372591,0.030957099,0.029635,0.017823407,-0.00188181,-0.0031898785,-0.00729026,-0.021215966,0.015977455,0.027439814,0.0049204575,-0.00057841884,-0.0074835857,0.050663877,-0.010539384,-0.039039373,0.03377592,0.015790366,0.052135646,-0.008076036,-0.010732709,0.0040785545,-0.0019691186,0.029111149,0.0024087792,0.042007864,-0.015777893,-0.021315746,0.02741487,0.0057062344,-0.040186856,-0.097136945,-0.024196928,0.008132163,0.0017368156,-0.011462359,0.010109077,0.0065855556,0.00578107,-0.005681289,0.036694515,-0.019744193,-0.010601747,-0.014530629,-0.010040478,-0.0045088604,0.014642883,0.0024867333,0.0019862684,-0.032453816,0.0069285533,-0.009585226,-0.0017960606,0.004324889,-0.017973078,-0.022076579,-0.013944414,-0.022912245,-0.0071031703,0.01698774,0.007446168,-0.0018724556,-0.024271764,0.0056220437,-0.018272422,-0.022525594,0.019108089,-0.015441132,0.010040478,0.036095828,-0.020505026,-0.015291461,-0.017137412,0.014143977,-0.037293203,-0.0049984115,-0.0012948163,-0.0016806887,0.048917707,0.005671934,-0.029061258,-0.030233687,0.011718048,0.0025319466,-0.016900431,0.019532159,0.01505448,0.0059681595,0.02188949,-0.0026067824,0.022438284,-0.010102841,-0.008094746,-0.011424941,-0.018235004,0.022862354,-0.0048425035,0.013570236,0.002795431,0.026267387,0.0021484129,-0.009348246,0.0121733,-0.010651637,0.008275598,-0.04649801,-0.0048986305,-0.016900431,-0.009304591,0.0013704316,-0.015877675,-0.0015333556,0.010470784,-0.02888664,-0.011711812,0.004053609,-0.010028005,0.0053445273,0.0230245,-0.019906338,-0.018883582,-0.012054809,-0.012747041,0.004521333,-0.022388395,-0.023623185,0.008350435,0.013008967,-0.008487633,-0.008518815,0.011961265,0.012697151,-0.016376581,-0.038814865,0.023860166,-0.011923847,-0.0011498218,-0.007464877,-0.021390583,-0.0027221544,-0.022388395,-0.005104429,0.013058857,-0.01793566,0.02836279,0.015316405,0.01688796,0.0019504095,-0.0023417387,0.010414657,-0.006635446,-0.0023199115,-0.019544631,-0.019282706,-0.018422093,0.012042337,0.019806556,-0.000417054,0.030383358,-0.01973172,0.0036201847,-0.0022138942,-0.025643755,0.021203494,-0.02307439,-0.0064358837,0.043828867,-0.016476361,-0.046597794,-0.007521004,0.05308357,-0.027215308,0.018659074,-0.015653167,-0.0122668445,0.031081825,-0.008350435,-0.0022029807,-0.019320125,-0.021290801,-0.0035016944,-0.003782329,-0.0032709506,0.06460829,0.009703716,-0.013931942,0.0048768036,-0.00010777143,-0.023523405,0.024234345,0.0002591971,0.02614266,-0.015628222,0.028238064,-0.021153603,0.004783259,-0.037542656,0.02888664,0.0075584217,-0.011050762,0.0068412446,-0.0057966607,-0.011032052,-0.00017978146,0.025306992,-0.021590145,-0.009254701,0.042955782,0.027265199,-0.010470784,0.012397807,-0.01019015,0.022787519,-0.0012737687,0.017349446,-0.024009839,0.014218813,0.012472643,-0.0009284324,0.000033008655,0.03165557,-0.011025816,0.010632928,-0.043454688,0.016339162,-0.005762361,0.012054809,0.008980303,-0.007427459,-0.013557763,0.018185113,0.015079426,0.016962795,0.0041627446,-0.017524064,0.0016900431,-0.013008967,-0.0134954,0.03302756,-0.02005601,-0.02651684,0.017923187,0.0016884841,-0.026042879,-0.020879205,0.024708306,0.005584626,-0.004630469,-0.0161396,0.0068474812,-0.029011367,-0.040635873,0.01132516,0.014543102,-0.006691573,0.012584897,-0.02260043,0.016438944,0.0009292119,0.01054562,-0.007452404,0.022924718,0.00752724,-0.013058857,-0.018659074,-0.008518815,0.003124397,0.002851558,0.0020985221,0.0038291013,0.019694304,-0.011973738,0.09169887,0.020317936,-0.019507214,-0.01101958,-0.01066411,0.0322792,0.016912904,-0.012079755,-0.005759243,-0.00097286614,0.0041066175,-0.0175989,0.020991458,-0.0030573567,-0.022151414,0.02534441,-0.014418376,0.0019161098,-0.0073276777,0.011113125,0.016576143,0.010009296,0.0066229734,-0.001998741,-0.011524722,-0.0006961294,0.012984022,-0.01670087,-0.030607866,-0.033426683,0.009622644,-0.009809733,0.003682548,-0.006096004,0.017386865,0.0044496153,-0.016114654,0.03175535,0.015590804,0.025331939,0.007508531,0.016064765,0.00001119371,-0.011156779,0.0013330138,-0.0228873,0.0028936532,0.0201059,-0.05248488]},{\"id\":\"1ece47e3-e85d-4617-9c88-0f77e2e73ea8\",\"text\":\"Will you be making paypal an option to withdraw payments? Not a fan of stipe \",\"vector\":[-0.019432036,0.0032148089,-0.00015863105,-0.0008250093,-0.021272967,0.02224116,-0.030327614,-0.017318377,-0.019050214,-0.009518289,0.02866396,-0.008891009,0.001726724,-0.0024630958,0.023400264,0.008481913,0.016732007,0.0147819845,0.017263832,0.0066034836,-0.00032088428,0.015000169,-0.034200385,-0.0035454945,-0.0013679131,0.0026812803,0.01734565,-0.0054000607,-0.00027209113,-0.02247298,0.025895746,-0.00469778,0.0007436163,0.002215934,-0.029454878,-0.024395728,0.010425118,0.007915998,0.004827327,0.012225138,0.012429685,0.0071796263,-0.0024494594,-0.020618415,-0.029318511,0.003139808,-0.015177444,-0.0141956145,-0.012463776,0.026304841,0.021477515,0.0054511977,0.0050523295,-0.018436572,-0.0029693516,0.0056080176,0.009184195,0.014550163,-0.00012208945,0.0054511977,0.010827394,0.03597313,-0.021272967,0.010377389,-0.00927965,0.011134217,0.004690962,-0.0073705376,-0.014209251,-0.022991167,0.020100227,-0.004561415,-0.0061057503,-0.010295571,0.029645788,-0.009061466,-0.009129648,-0.0019994543,-0.014727439,0.0025534378,0.00790918,-0.010036477,0.0031278762,0.013125148,0.018668393,-0.0031534445,0.011516038,0.009184195,-0.02082296,0.0047625536,0.011147853,0.039764084,-0.020877508,0.025909383,-0.020509321,0.0185593,-0.014631983,0.014236524,0.00837964,-0.010534209,0.0095660165,0.012893327,-0.018941123,-0.028173044,-0.0234139,-0.003773906,-0.0010755803,-0.0035454945,0.029045781,0.012143319,-0.010029659,0.035482217,-0.0026045747,-0.025663925,-0.015395628,-0.0071387165,0.017277468,-0.010200115,-0.02877305,-0.030491251,0.014577437,-0.026904847,0.03245491,-0.0011522857,0.01429107,0.005212559,-0.017332014,0.018736575,0.0035932222,-0.0023369582,0.02125933,0.0036750413,-0.007861452,-0.006835304,-0.008195546,-0.004960283,-0.024068452,-0.008447822,-0.040391363,-0.0040295906,0.021463878,0.017045647,-0.023932088,-0.008141001,-0.022691164,0.019568402,0.032263998,-0.014222887,0.014236524,-0.023222988,-0.01738656,-0.0033801517,-0.0035693583,-0.0027153715,-0.0146183465,-0.0012835371,-0.010404662,0.007418265,0.02004568,-0.010861486,-0.01487744,-0.01123649,0.010166024,0.013493334,0.019882042,0.028909417,0.0152728995,0.009900112,0.008591006,-0.00025888075,-0.012572869,0.0026846894,-0.03362765,0.0034943575,0.009156921,0.025227556,-0.02161388,-0.011822861,-0.019132033,-0.010841032,-0.0033290146,0.0058637024,-0.0030750346,0.021682063,0.014372889,-0.021245694,0.014086522,-0.02533665,-0.0028381,0.020032045,0.0052364226,0.011209217,-0.0147819845,-0.0097296545,-0.6340435,0.00021903656,0.01550472,0.0021119555,0.027423035,0.015081988,0.0066273473,-0.0025585515,-0.02502301,0.023032077,-0.008488731,0.022609346,-0.011700132,-0.00955238,-0.0062966617,-0.029563969,0.01734565,-0.0076364498,-0.017836565,0.02142297,-0.015586539,0.020454776,0.003269355,0.0040227724,0.03340947,-0.0053591514,0.01159104,-0.007929634,-0.03234582,0.01671837,-0.0071318983,0.008509187,-0.023482082,-0.0135751525,0.05880066,-0.0005893532,-0.00055355736,0.009402378,-0.0008258616,0.0070228064,-0.02948215,-0.026291205,-0.013513789,-0.023536628,0.023304807,0.0051375576,-0.0035250396,0.012552414,-0.011481947,0.0028159409,-0.0054989257,0.0055193803,-0.012668325,-0.008666007,0.02142297,0.010261479,0.017577471,0.0015230285,-0.0053864243,0.010206933,0.00861146,-0.0046534613,-0.008420549,-0.026386661,-0.010793303,0.00039141066,-0.03496403,-0.0075273574,0.010322844,-0.01671837,0.000431681,0.0050761937,0.0012886509,0.010554664,-0.01965022,0.017100193,-0.0010423412,-0.016159274,0.023059351,0.014031976,-0.019977497,-0.004380731,-0.013056966,-0.010711485,0.025827564,0.01155013,0.020700233,-0.012422867,0.009013738,0.017782018,0.01847748,0.024423001,0.025854837,-0.011666041,-0.012341048,-0.0064943912,-0.009231922,0.0076841773,0.007834179,-0.033982202,-0.0033102646,0.015872905,-0.01722292,-0.01076603,0.023809358,0.013404696,-0.025118465,0.0017983157,0.022486616,-0.026673028,0.025541198,-0.024082089,-0.0055500623,-0.006883032,0.015041078,-0.036273137,0.024245728,-0.0057375645,-0.0010670575,-0.04442777,0.011468311,0.024177546,0.02588211,-0.011720587,-0.0048648273,0.011925134,-0.0061637056,-0.022636618,0.016227456,0.022500254,-0.0035386763,-0.0034739028,0.039682265,-0.021354785,-0.007561449,0.009838747,0.013384242,0.0039068623,0.0014949032,-0.03335492,0.0014770053,-0.00045426647,0.00955238,-0.03962772,-0.01554563,-0.025854837,0.018313842,-0.011400129,0.016991101,0.01969113,-0.0031773085,-0.021327512,0.0000037220766,0.013166057,0.0043364125,0.010166024,-0.024286637,-0.01644564,-0.022227524,-0.004483005,-0.001687519,0.021122966,-0.027668493,-0.013193331,-0.029018508,-0.024532095,0.0022125249,-0.0051409667,-0.002415368,-0.012041044,0.0048852824,-0.009266013,0.014904713,0.027300308,-0.01143422,0.0072341724,0.031418536,0.017918384,-0.03714587,0.015872905,-0.0088500995,-0.01193877,0.007070534,-0.011495584,0.020495685,-0.0091432845,-0.005938703,0.058364294,-0.015941089,0.0329731,0.0018733166,-0.0057034735,0.00094177196,0.0035898131,-0.01554563,0.0018119522,0.014181978,0.01519108,0.017168375,0.0021153647,0.011911497,0.008229638,0.012484231,0.013070602,0.0121092275,-0.030054884,-0.009791019,-0.037064053,0.030682163,0.04107319,-0.0101864785,-0.020959327,0.000011519128,-0.016241092,-0.005771656,0.025063919,-0.020959327,0.0023045714,0.019118397,0.040636823,0.020495685,-0.01632291,0.013111511,-0.019936588,-0.019663857,0.030709436,-0.006961442,-0.0010329662,0.020291138,-0.0315549,-0.028282136,0.00052969344,-0.0019568403,0.0035284488,0.01797293,0.0031738994,0.005461425,-0.0046295975,0.028718505,-0.011106943,0.008884191,0.010929668,0.021013873,-0.006061432,0.028963963,-0.003003443,0.026127568,0.0009681927,-0.015341082,-0.004950056,0.017113829,-0.009300104,-0.020768415,0.031527627,0.030763982,-0.05285514,-0.016077453,0.015436538,-0.0010721711,0.009538744,0.012231956,-0.0024733234,0.020918418,-0.007997817,0.027218489,-0.0002433266,-0.013397878,0.0019517265,0.005004602,0.007084171,-0.008816008,-0.019527493,0.027204853,0.0038966348,-0.0066750753,-0.0009247263,0.0121365,-0.006828486,-0.010343298,-0.0011897861,0.008141001,-0.014127431,0.017809292,0.012525141,0.0028005997,-0.009695563,-0.00810691,-0.0024255954,0.013268331,0.007779633,0.0008037022,0.006306889,-0.009327378,0.017577471,-0.012163773,-0.008359185,0.036982235,-0.03283673,0.00028551457,-0.023468446,0.023468446,0.010172842,-0.014822894,-0.004568233,0.038482253,0.018191114,-0.014727439,-0.027163941,-0.016077453,-0.0077387234,0.046691436,-0.013759246,0.0025483242,0.010956941,0.003981863,0.0016593937,0.0094705615,-0.023822995,0.023045713,0.023482082,-0.04009136,0.0047625536,-0.049582377,-0.013622881,0.094255604,0.03714587,0.015954725,0.03308219,-0.012156955,0.0017863838,-0.0070296247,-0.031936724,0.03229127,0.004851191,0.0116524035,-0.014481981,-0.021095691,0.028827596,0.0069239414,-0.0015835406,-0.0013235945,-0.017782018,0.002321617,-0.0077932696,0.017168375,0.01425016,0.002435823,0.029154874,0.030573072,0.05113694,0.0022738893,-0.017986566,0.0066818935,-0.0037261783,0.025227556,0.0020642278,0.00038714925,0.0042341384,-0.015763814,0.023822995,0.0028926462,0.008522823,-0.0060443864,0.00712508,0.021927519,0.02850032,0.0022142294,-0.013431969,-0.010854668,-0.03308219,-0.019009305,0.0036784506,-0.0048648273,-0.0035250396,0.011638767,-0.015981998,-0.027668493,0.012320593,-0.007725087,0.017645653,-0.03147308,-0.010506936,-0.00017983156,0.0069239414,-0.026673028,0.0037261783,-0.0102819335,-0.000037074282,0.018709302,-0.027423035,-0.026004838,-0.018722938,-0.009150103,-0.013718336,0.012818326,-0.017768381,-0.034636755,0.008734189,-0.0015110966,-0.011522857,0.0006937578,-0.01382061,0.020154772,0.011631949,0.014127431,-0.033054918,-0.0025773018,-0.012470595,-0.009613745,-0.009620563,-0.019172942,0.017945657,-0.00033707765,0.04060955,0.01554563,0.0019534312,0.018027475,-0.046991438,0.00469778,-0.026413934,0.0062387064,0.016459277,-0.012900145,-0.002071046,0.0098592015,0.009913748,-0.011181944,0.004510278,-0.004609143,0.009334196,0.0016747348,-0.0003875754,-0.0030273069,-0.012497868,0.010261479,0.0076364498,0.013991066,0.017863838,0.00927965,0.01883203,-0.017086556,0.014154705,0.0024869598,0.009170557,0.011311491,-0.03144581,0.038673162,0.02067296,-0.0034398115,-0.01382061,0.020195682,-0.033873107,-0.0053216508,-0.012006953,-0.017195648,0.019882042,-0.0011190467,-0.009054648,-0.042655025,-0.009034192,-0.025977565,-0.018122932,-0.016772917,-0.0037909518,-0.011761496,-0.031173078,-0.008216002,-0.01084785,-0.0014403571,-0.03578222,-0.010779667,0.009068284,-0.01460471,0.023209352,-0.0010772848,0.015327445,0.004605734,0.016691096,0.0040500457,-0.022459343,-0.012225138,-0.033327647,0.012641052,0.0312549,0.042382296,0.0068523497,0.016854735,-0.01123649,-0.0045989156,-0.0076841773,0.017727472,0.0039920905,-0.0013056966,0.005642109,0.008747825,0.007465993,0.0071796263,-0.0056625637,-0.002873896,0.007329628,-0.012504687,0.01483653,-0.030273069,-0.01648655,-0.0027273034,-0.0035284488,-0.0029761698,0.005215968,-0.02044114,-0.017100193,0.005352333,-0.023113897,0.024341183,-0.016104726,-0.023795722,-0.004063682,0.026523026,0.008713734,0.016254729,0.008829645,-0.008904646,-0.0028790096,0.0066273473,0.022582073,0.0048443726,0.03253673,-0.0020540005,0.0025432105,-0.012013772,0.013241058,-0.017959293,0.0004823918,-0.00040653866,-0.011338764,0.0007082466,-0.021995703,-0.012538778,-0.01581836,-0.009013738,0.00045682333,-0.014481981,-0.007015988,0.0066375746,-0.048600547,0.0021272968,-0.023591174,0.002031841,0.032864008,0.003535267,0.029182147,-0.0008940442,-0.02634575,-0.0077932696,-0.018613845,-0.0021869563,0.010527391,0.01864112,-0.010159206,-0.03512767,0.0061841607,0.012225138,-0.04906419,-0.04110046,0.005120512,0.0312549,0.005202331,-0.0067193937,-0.015054715,-0.01793202,0.020154772,-0.01703201,0.009954657,-0.0312549,-0.012736507,0.0011761496,0.0023233215,0.0068523497,0.008250093,-0.005250059,0.0062557524,-0.031500354,-0.011638767,0.0007529914,0.021095691,0.0049773287,0.043609582,0.006825077,0.02830941,-0.008052363,0.018600209,-0.016295638,-0.0028210545,0.0062932526,0.027463945,0.0018971805,0.002219343,0.03973681,-0.014372889,-0.014522891,-0.032945827,-0.0126955975,0.004513687,0.007070534,-0.004953465,0.020495685,-0.0075000846,-0.032400366,-0.00037564343,-0.014591074,0.007561449,0.0008667711,-0.0058193835,0.035400398,-0.02200934,-0.007997817,-0.010172842,0.0113933105,0.0046261884,0.023795722,0.013336514,0.019704767,0.017945657,-0.008754644,0.023563901,0.002294344,0.03109126,-0.020372957,0.013793337,-0.023468446,-0.025936656,0.00064986525,-0.016336547,-0.016895644,0.0218457,-0.005461425,0.012225138,-0.0035693583,0.02008659,-0.009743292,0.05086421,0.032127634,-0.026973031,-0.021682063,-0.0042511844,-0.0063887085,-0.0065046186,0.0026829848,-0.007834179,-0.0126955975,-0.032918554,0.0067603034,-0.011454674,-0.02035932,-0.01550472,0.0047932356,0.017550198,-0.012429685,-0.026127568,0.0002882845,0.011931952,-0.019895678,0.017045647,0.0074932664,-0.009075102,0.01671837,0.04088228,0.020686597,-0.007295537,-0.0052602864,0.005938703,-0.009136466,-0.030791257,-0.018982032,-0.013881975,-0.044591412,0.01287969,0.0065898467,-0.0013022873,-0.03728224,0.026959395,-0.022650255,-0.0034653798,-0.007977363,0.02071387,0.026059384,0.0042034565,0.0006191831,0.010091023,0.0063784807,0.018272933,-0.009000101,-0.019363854,0.0026966212,-0.011297855,-0.016131999,-0.008700098,-0.057709742,0.0049671014,0.026850302,0.03163672,0.04990965,0.011454674,-0.018150205,0.004742099,0.008406913,0.00982511,-0.0017761564,0.0019755904,0.015954725,-0.030573072,0.007997817,-0.00571711,0.012041044,-0.009443288,0.0141956145,-0.00031598366,-0.0017454742,-0.0032710596,-0.011454674,-0.008352367,-0.01519108,-0.00260287,0.012395594,0.03829134,-0.004830736,0.016500186,-0.008045545,-0.0021187738,-0.0063682534,0.007670541,0.0032864006,-0.0021409332,0.021409333,-0.018054748,0.045709606,0.013411514,0.014141068,-0.0033528786,-0.0023949132,-0.011904679,0.0033614014,0.02556847,0.010029659,-0.007963726,-0.027668493,0.013411514,0.001337231,0.009838747,-0.015518356,-0.0153683545,-0.020222954,-0.005713701,-0.013029692,-0.00060426816,0.0037636787,-0.027804859,0.026100295,-0.022895712,0.0016133705,-0.010070568,0.23432991,-0.0010448982,0.00614666,0.011516038,0.012681961,0.004990965,0.03379129,-0.005931885,-0.011809224,-0.0011071147,-0.0097637465,-0.0104796635,-0.03245491,-0.0112637635,-0.007200081,-0.030300342,-0.03575495,-0.022991167,-0.029100327,0.0007896396,0.010431936,0.012818326,-0.006903487,0.0059523396,0.0062387064,0.009934203,0.010309207,0.009075102,0.020522958,-0.009613745,-0.03444584,-0.009368287,0.011945589,-0.029154874,0.021736609,-0.021204785,-0.009845565,0.0061568874,0.012681961,0.016254729,-0.017836565,0.008270548,-0.011604676,-0.03242764,-0.014441072,-0.010309207,-0.0005309719,0.007336446,-0.00047599967,0.02161388,-0.012122864,-0.014850168,0.029563969,0.030409433,-0.0005211706,-0.021995703,-0.0036443593,-0.0051443763,-0.030600345,0.025186647,-0.0055330168,0.019118397,0.00023778676,0.017250193,-0.020182045,0.0062523433,-0.018150205,0.019472947,0.015695632,-0.0031415126,0.0033443558,-0.0329731,0.0010278525,0.020154772,-0.026236659,-0.02368663,-0.012900145,0.04617325,0.01734565,0.018218387,-0.013513789,0.044155043,-0.016309274,-0.017904747,0.011175126,-0.02490028,0.02055023,-0.010786485,-0.019568402,-0.012361503,-0.0030290114,-0.0012443322,-0.032373093,0.0024869598,0.00093836285,-0.017277468,0.023672994,0.03864589,-0.016295638,0.030027611,-0.022445707,0.054491524,-0.0073432643,0.010418299,-0.011618312,-0.0040329997,0.014931986,0.032754913,0.016568368,-0.020427503,0.009511471,-0.020154772,0.0016218933,-0.001325299,0.008952374,0.003606859,-0.013016055,0.028009405,-0.003335833,0.00233014,0.02948215,-0.01977295,0.0034159475,-0.012381958,0.016541095,0.0026454844,-0.009231922,-0.024027543,0.002302867,-0.03692769,-0.0028210545,0.011331946,0.017959293,-0.037309512,-0.04060955,-0.016309274,-0.0008318275,-0.01609109,0.022377525,0.0012392185,-0.03199127,0.03234582,-0.015000169,-0.01954113,0.014304707,-0.015586539,0.0035966313,0.018068384,-0.017168375,0.015913816,-0.0218457,0.0028142363,0.0041284557,-0.0066784844,-0.0032284455,-0.0048477817,-0.029236693,-0.024927553,0.01006375,0.0027733266,-0.039436806,0.00141905,0.024504822,-0.0113933105,-0.029973065,-0.006323935,-0.17443833,0.026945759,-0.0074932664,-0.0067296214,0.019800223,0.027654856,0.007254627,-0.010397844,0.00193809,-0.011672859,0.0012809803,0.014059249,-0.005192104,-0.033764016,0.015068351,0.0066853026,-0.027232125,0.022568436,0.0023676404,0.015831996,0.033027645,-0.00026442058,0.015354718,-0.017795654,-0.015013806,0.013881975,-0.017795654,0.028827596,-0.032864008,-0.006518255,-0.011025124,0.0021051373,0.0055773356,0.011925134,0.008447822,0.004523915,0.01193877,-0.020195682,0.008161455,0.041509558,0.023509355,0.013268331,-0.016309274,0.01851839,-0.016882008,0.019595675,0.01680019,0.01092285,0.0007474516,-0.025827564,0.017604744,0.0018920668,-0.004302321,-0.0011130808,0.010656938,0.007377356,0.030763982,-0.01429107,-0.002490369,-0.004356867,0.0071318983,-0.012163773,0.0050182384,0.0037636787,-0.0011309787,-0.012279684,0.026386661,0.0029113963,-0.0081000915,0.014086522,0.0017395082,0.007547812,0.007459175,-0.011693314,0.015409265,-0.018736575,-0.020618415,0.0025653697,0.00927965,0.004353458,-0.010213751,0.043309577,-0.003311969,0.026386661,-0.0013849587,0.0076023582,0.00028785836,-0.008345548,0.008625097,-0.043909587,0.02592302,-0.002780145,0.011543312,-0.007206899,0.007547812,0.016922917,0.0047352808,-0.007990999,0.012456958,-0.004687553,0.0039886814,-0.010472845,-0.007506903,0.0102819335,0.02142297,-0.0005126478,0.0038693617,0.0056114267,0.018804757,-0.01202059,-0.028118499,0.022882076,0.02431391,0.023059351,0.0126955975,0.014127431,0.010691029,-0.01914567,-0.0028210545,-0.036354955,0.055500627,0.001569904,-0.010466027,-0.008093273,-0.008134183,-0.026018474,-0.10331026,-0.03578222,0.0118160425,0.019118397,-0.00012592471,0.012300138,0.02247298,0.032754913,-0.0052261953,0.025186647,-0.007377356,-0.037500422,-0.015136534,0.01092285,0.006562574,0.013084238,-0.017591108,-0.008011454,-0.008945555,0.021668425,-0.0013329695,-0.023700267,-0.010813758,-0.00044062996,-0.027232125,-0.011427402,-0.006409163,-0.0060477955,0.008420549,0.004769372,-0.012259229,-0.025036646,0.0056489273,-0.010200115,-0.011325127,-0.0019414992,-0.051109668,-0.018054748,0.030354887,-0.007725087,0.0053114234,0.008550096,0.005672791,-0.023536628,-0.01765929,-0.022963895,-0.03444584,0.0042545935,0.040636823,-0.0021903655,-0.004090955,-0.03736406,-0.0081000915,-0.0064705275,0.027150305,-0.006064841,-0.0063648443,0.029918518,-0.01280469,-0.011161489,0.00165428,-0.0022772984,-0.009586471,0.010575119,-0.006958033,0.008284184,-0.016254729,-0.0121365,0.020304775,-0.0023829814,-0.018013839,0.019486584,-0.013793337,0.019568402,-0.015654722,0.019827496,-0.028282136,-0.0051852856,0.0027375307,-0.0074796295,-0.020891145,-0.01707292,-0.012129682,-0.016131999,0.017672926,0.00469778,0.013541061,-0.0019568403,-0.006750076,-0.027354853,0.00540347,0.03147308,0.02458664,0.00038118326,-0.017591108,-0.02858214,-0.006620529,-0.012791053,0.011836497,-0.018300205,-0.014509254,-0.0064296178,-0.056946095,0.023836631,-0.0067637125,-0.015613812,0.00047557353,-0.004264821,0.015845632,-0.021777518,-0.0058909752,-0.0008527085,-0.0033596968,0.018300205,0.00074787776,-0.01217741,-0.003923908,-0.024668459,0.025459377,0.0009281355,0.020032045,0.030763982,-0.005219377,-0.019609312,0.004534142,-0.0025585515,0.021736609,0.019882042,-0.032236725,0.010206933,-0.002197184,-0.0038693617,0.0066818935,-0.01307742,-0.013929702,0.0039989087,0.00042784572,-0.030736709,-0.023236625,0.012225138,-0.0021647972,-0.028718505,-0.012668325,-0.00044318681,-0.017250193,-0.023904815,-0.020263864,-0.015245626,-0.0028704868,0.014522891,0.019050214,-0.006351208,0.026632117,0.015068351,0.002161388,-0.0143592525,-0.012743325,-0.022145703,-0.011945589,-0.000416553,0.005031875,-0.02259571,0.027736675,-0.0047045983,-0.008256911,-0.026482116,-0.00026569903,0.021163875,-0.015913816,-0.008666007,0.015913816,-0.036382228,-0.02560938,-0.0049159643,-0.011788769,-0.0032437865,0.025513923,0.0013866633,0.0004990113,-0.028854871,-0.008161455,0.0082637295,0.014754712,-0.0022738893,-0.012968328,0.023618449,0.028363956,0.018900212,0.022091158,0.02215934,-0.03831861,0.027804859,-0.01339106,0.0028960553,-0.018995669,-0.00833873,0.013991066,0.018150205,-0.0015613812,0.02548665,-0.00822282,0.021109328,0.023795722,0.0047182348,0.0012093886,-0.008672825,-0.018422935,0.02376845,-0.040118635,-0.013581971,0.002243207,0.020222954,0.025732107,-0.0044591413,-0.0068114405,0.022350252,0.015804723,-0.00716599,0.010097841,-0.019336581,0.0031006031,0.017168375,0.02071387,0.010206933,0.02830941,-0.016254729,0.012709234,-0.0058977935,-0.00029510274,-0.010963759,0.03676405,0.013070602,0.018668393,0.0023966178,-0.02490028,-0.03362765,0.010070568,-0.030273069,-0.033027645,0.0035114032,-0.0106092105,0.068073496,0.021832064,-0.007718269,-0.010875123,-0.0033818563,0.0045989156,-0.0022875257,0.008502369,-0.0019943407,-0.004428459,0.0137728825,0.0001452076,0.0046705073,-0.04205502,-0.008270548,-0.0071591716,-0.0021392286,0.03845498,-0.0092728315,-0.019036578,-0.0011659223,0.021627516,0.026059384,-0.00034751813,-0.0064603,0.015068351,-0.0069750785,-0.0015255853,0.0057307463,-0.0298367,-0.010472845,0.021177512,-0.032564003,0.0027903724,0.012709234,0.01033648,0.010568301,-0.0027187807,-0.010036477,0.013377423,-0.006913714,0.03136399,-0.025323013,-0.023468446,0.00077941216,-0.02082296,-0.010622847,0.019745678,-0.028609414]},{\"id\":\"cb628bd1-f426-43a7-a9a0-def9434028e2\",\"text\":\"I posted a Blendjet review video on TikTok just the way you requested & Bounty says it cant locate my video. Please advise. \",\"vector\":[-0.0468227,-0.00009052891,-0.031564686,-0.015179364,0.032849297,0.021104297,0.0014410892,-0.012151356,-0.015323555,-0.0061117257,0.009896736,-0.031302523,-0.005095836,-0.02304432,0.008114012,-0.017578175,0.007294746,-0.0082057705,0.018246697,-0.0018253251,-0.034527153,-0.0005530047,-0.0039881878,-0.0026675307,-0.00718988,-0.007950159,0.020999432,-0.017787907,0.013101705,0.003699806,-0.008068133,-0.0051154983,-0.027605994,-0.024145413,-0.025915029,-0.0108405305,0.0006091244,-0.020199828,0.021379571,-0.020973215,0.006478757,-0.0013902948,-0.0019187215,-0.015598828,-0.036572043,0.041736696,-0.012341426,0.008585909,-0.00015504613,0.0006238712,0.0026101822,-0.006724537,-0.036703125,-0.028969252,0.011469726,-0.010139238,-0.00006820391,0.00021055141,-0.020658616,-0.027946807,0.0083958395,-0.0066655497,-0.007288192,-0.011646688,-0.011987503,-0.02055375,0.0010716001,0.015389096,-0.0038571053,-0.011187899,0.019098733,-0.0013853791,0.028707087,-0.0015557865,0.0323774,-0.007104676,-0.007956713,0.008356515,-0.0049450905,0.024761502,0.0083106365,0.0033950391,0.017984532,0.03198415,0.02899547,0.012210343,-0.0059380415,0.0158741,-0.02409298,0.0010748772,0.0101720095,0.00850726,0.017801017,0.008690775,-0.020946998,0.023175402,-0.006177267,0.032560915,-0.009569029,-0.0049942466,-0.0016368938,0.00779286,-0.036545828,-0.0061641587,-0.035287432,-0.005449759,0.005312122,-0.016922763,0.035942845,0.004043898,-0.03020143,0.0018580958,-0.029493583,-0.025954353,-0.0065475754,0.0054432047,-0.0019940939,-0.028077891,-0.027265178,-0.012760891,0.04042587,-0.00013313076,0.011994057,-0.022323364,0.03667691,0.018050073,-0.011430402,-0.014707467,-0.005181039,-0.01393408,0.05245925,0.029834397,0.005561179,0.025010558,-0.009529704,0.0035556152,-0.038826663,0.004604276,-0.007878063,-0.025128532,0.012806769,0.038092602,-0.024761502,0.030332511,-0.016988304,0.006426324,0.0036211566,-0.025626646,0.0008270492,0.015140039,-0.0011600809,-0.011456618,0.0009888543,0.014694358,-0.015087606,0.015087606,0.015756126,-0.018941434,-0.017538851,-0.0033852078,0.013127921,0.012433183,-0.0005558721,0.0014386314,0.03164334,0.024289604,0.0033950391,-0.047687847,-0.01822048,0.0012600314,0.012695349,0.027684644,-0.013973404,0.015743019,-0.018548187,-0.001594292,0.019491982,0.020304693,0.0058593918,0.006478757,-0.026216518,0.014301111,0.026583549,0.0145632755,-0.0027216023,-0.013593265,0.032718215,-0.015375988,0.0023660408,-0.033006597,0.013658806,0.0007639657,-0.017066954,-0.023358917,-0.6321327,-0.032062802,0.045302145,0.019006975,-0.0025102317,0.05369143,0.0023332702,0.033321194,-0.013049272,0.024525553,-0.024040546,0.002431582,-0.016293567,-0.0008528561,0.0063509517,-0.01663438,0.04058317,-0.020881457,0.0109257335,-0.00030497185,-0.03020143,-0.015035173,0.0046337694,0.017420877,0.005154823,-0.007805968,0.025351373,-0.0024512445,-0.0017466755,0.025259616,-0.027501127,0.0295198,0.0033540758,-0.00078403775,0.05400603,-0.0135801565,-0.0065541295,-0.006619671,-0.010525932,0.007235759,-0.03326876,-0.021392679,0.0022382352,-0.0014877873,0.006429601,0.0010257213,0.014209352,-0.014130703,0.0012968984,-0.0025921583,0.016241133,0.0058495607,0.027920593,0.0072554215,0.0067179827,-0.01633289,0.041291017,0.00389643,0.0120333815,-0.0035457842,-0.016450865,0.0072029885,-0.022991886,-0.012544604,-0.009529704,0.028969252,-0.01995077,0.013213125,0.035339866,-0.011122358,-0.0067376452,0.0013157415,-0.024761502,0.0061576045,-0.0018646498,0.035103917,0.01950509,0.0062329774,0.02423717,-0.01020478,0.0039259237,-0.007989484,-0.0051843165,-0.013108259,0.008972603,0.02109119,-0.017198035,0.008815304,0.002551195,0.01325245,0.013802997,0.035497166,0.008775979,-0.022900129,0.010866746,0.013632589,-0.0004297051,-0.0010969974,0.030725759,-0.018679269,-0.021104297,-0.005328507,0.0033213052,-0.010984721,0.015533287,0.0045682285,0.008448273,-0.0055513475,0.016319783,-0.026753956,0.0022939453,-0.007956713,-0.0033819308,0.0026003509,-0.013088597,-0.04433213,0.01223656,-0.013272112,0.017971423,0.0013870177,0.00847449,-0.0072816378,0.006370614,0.0033098354,0.0059052706,0.050021116,0.0131606925,-0.011745,-0.00718988,0.018207371,-0.0032180776,-0.010335863,0.022021875,0.017263576,-0.026478684,0.009516596,0.0106111355,-0.014471518,-0.0077142105,-0.034081474,-0.0024594371,-0.0041454867,0.0053776633,0.008513814,-0.00737995,0.005554625,-0.0027199637,0.010512824,-0.022388907,0.0010937203,0.0035621694,0.009025036,-0.011915407,0.010598027,-0.002298861,0.0054104337,-0.023804598,-0.023450676,0.00072586985,-0.006203484,0.018784136,0.023057427,-0.01687033,-0.0012043213,0.015310447,-0.00899882,-0.0034081473,0.013593265,-0.015362879,-0.028340057,0.0077338726,-0.0061969296,-0.019478872,-0.0018826737,0.0027740353,0.008251649,-0.0024545216,0.0016696645,0.003647373,-0.005702093,-0.0031476207,0.023594866,0.0066589955,0.0024627142,0.007878063,0.007891172,-0.012695349,0.041972645,-0.019937662,0.024001222,0.013632589,0.0031443436,-0.0066229478,0.0061576045,-0.019465765,0.00812712,0.02109119,0.0104014035,-0.009877074,-0.011764662,0.025167858,0.013894754,0.028208973,-0.020737266,0.008238541,-0.018954543,-0.00353923,-0.023214728,0.022860805,0.031669553,0.0034802428,-0.019242924,-0.0018580958,-0.018364672,0.022506882,-0.00090119283,0.004358496,0.0007787125,-0.0035130135,0.027579777,-0.018115614,-0.020501317,0.011377969,-0.031302523,-0.01004748,0.0061051715,0.019557523,0.016345998,0.028156541,-0.01268224,-0.007393058,0.048815157,0.011915407,0.02009496,0.0005521854,-0.02258553,0.015533287,0.0052924594,0.020737266,-0.011115803,-0.00696704,0.019465765,0.0075569116,-0.013763672,0.01912495,0.024263388,0.026491791,-0.021746602,-0.0044404226,0.005672599,-0.022651073,-0.0029165877,-0.032351185,-0.0023398243,0.020068744,-0.037070155,-0.012341426,0.010178563,0.021563087,0.018771026,-0.0039226464,0.012846094,0.0028690703,0.0016606526,-0.016411541,-0.01453706,0.010663569,0.0076158987,0.013698131,-0.008349961,-0.00634112,-0.036755558,0.04831704,-0.028549789,0.044384565,0.003434364,0.013986512,-0.000650907,0.01321968,0.0036211566,-0.00066647306,-0.036624476,0.01912495,-0.004342111,-0.0011748277,-0.012760891,0.0034147014,0.005528408,-0.018875893,0.025430022,0.0144584095,0.014143812,0.008880845,0.014523951,0.0068425112,-0.002474184,0.025508672,-0.02341135,0.02033091,0.0060166907,0.0075700195,0.0034671344,-0.009896736,-0.011581147,0.019190492,0.016804788,-0.0057446947,-0.018469537,-0.011463173,-0.0056398283,-0.0015877379,0.001606581,-0.0038112262,0.0002922732,-0.011043708,0.023096753,0.00014449807,-0.023555541,0.0192036,0.0077142105,-0.021117406,-0.011246886,-0.016162483,0.02907412,0.103712544,0.025325157,-0.0055742874,0.0065082507,-0.019439548,0.024564877,-0.022559313,-0.024984341,-0.011594255,-0.009123349,-0.0051843165,0.000054890836,-0.0044437,0.001578726,0.00073938776,-0.021222271,0.008068133,0.0013493315,-0.009274093,-0.024302712,-0.0035261216,0.010250659,0.0012706819,0.016988304,-0.00091184326,0.0016344361,0.033714443,0.02710788,0.009883627,0.0075110323,-0.0061969296,0.0008528561,-0.008553139,0.033242546,-0.007478262,0.001252658,0.026753956,0.011377969,0.0052727973,0.008526922,0.0020727434,0.021064973,0.009228215,-0.004915597,0.0038603824,0.0048664412,0.0076814396,-0.0043224483,0.00022427412,-0.007137447,0.019990096,-0.010709448,-0.015192472,-0.004263461,0.0018367948,0.014995849,-0.021746602,-0.027265178,0.020802807,-0.02907412,-0.013632589,-0.019662388,-0.0035031822,-0.0076093446,0.00095280656,-0.038643148,-0.012492171,-0.031564686,0.005711924,0.0046796487,-0.02071105,0.009785315,-0.05374386,-0.012891972,0.0107160015,-0.00449941,0.021169838,0.0009028313,0.015900318,-0.0034736886,-0.0058528376,-0.023240943,0.0092937555,-0.008133675,0.0033753768,-0.017565068,-0.0014165113,0.0009061084,-0.0084155025,0.00059765467,0.018771026,0.01739466,0.029755749,-0.00075044786,0.000797146,0.0051843165,0.0051515456,0.046744052,-0.0108405305,0.0016876884,-0.012610145,-0.021287812,-0.0053481697,-0.019256033,-0.009582138,0.008605572,-0.0074127205,0.030253861,-0.02522029,-0.011692567,0.030384945,0.0067179827,0.002295584,0.009359297,0.020868348,0.0295198,-0.0042339675,-0.01437976,-0.012898527,-0.0004776322,-0.012636362,-0.024984341,0.006462372,-0.02071105,0.0019203599,0.010552148,-0.009745991,-0.040085055,-0.017525742,0.0035556152,-0.010309646,-0.017027628,-0.016136266,-0.0010322754,-0.040897768,-0.025272723,-0.003157452,0.025849488,-0.01649019,-0.021930117,-0.027291395,-0.0007242313,-0.016922763,-0.009129902,-0.010342416,-0.024984341,-0.013632589,0.010578365,-0.0045256265,0.026452467,-0.008985711,0.015926534,-0.014550167,-0.03201037,-0.002039973,-0.028497355,-0.028077891,0.0054530357,0.012800215,0.005669322,0.019321574,-0.027448695,0.0045813364,-0.010584919,0.003496628,-0.00066647306,-0.011220669,0.00707846,-0.02839249,0.0066557187,0.021746602,-0.013108259,0.047897577,0.019256033,-0.007950159,-0.004263461,-0.011862975,-0.008120567,-0.005813513,-0.03326876,-0.02010807,0.008251649,0.006426324,-0.008343407,-0.014091378,-0.0003418388,0.005829898,0.03494662,0.017945206,0.00847449,0.015389096,-0.011581147,0.004011127,-0.010991275,0.026767066,-0.011495943,-0.024381362,-0.00499097,-0.010276875,0.021445112,-0.01152216,-0.0050892816,-0.014392869,0.0041749803,-0.011790879,0.05156789,0.012669132,-0.023555541,0.0008815304,-0.012511834,-0.030594677,-0.03788287,-0.011889191,0.015310447,-0.0137898885,0.003157452,-0.011292765,0.0014369929,-0.005475975,-0.0054399273,-0.015716802,0.003906261,0.027684644,0.01437976,0.029047903,0.04939192,-0.0043683276,0.009385513,0.037830435,0.0067376452,-0.00044035556,-0.010158901,0.042785358,-0.019295357,-0.025049884,-0.01701452,-0.013567048,-0.025141641,-0.025561105,0.016306674,0.010355525,-0.015729912,-0.025469348,-0.021012539,-0.045302145,0.028811954,-0.016503299,0.0074717076,0.002434859,0.004089777,-0.016306674,0.008736655,-0.0040766685,0.0085203685,0.03801395,0.011417294,-0.0042929547,0.013986512,-0.022611747,0.0026544225,0.0054726982,0.015638152,-0.009700112,0.010460391,0.0059970287,0.0026576996,-0.019806579,-0.008481043,0.009090577,0.023647299,-0.017171819,0.011725338,-0.0047255275,-0.0072226506,0.016909653,-0.00922166,-0.012112032,-0.018364672,0.023136077,-0.0020416114,0.02823519,0.02372595,0.006075678,-0.005407157,0.0009569029,-0.0054825293,0.0039259237,-0.0053481697,0.0073602875,-0.016608164,0.0009954084,-0.011535268,0.027815726,0.009922952,-0.010132684,0.023293376,0.018836569,0.025613539,-0.015323555,-0.004004573,-0.009339634,0.027894376,-0.029231418,-0.004279847,0.00660984,-0.026216518,0.01611005,-0.026268952,-0.02643936,-0.03880045,0.0004628854,0.0060101366,0.016673705,-0.002964105,-0.0147599,0.008749763,0.010368633,-0.023240943,-0.02069794,0.020291585,0.015441529,0.016857222,0.013337654,-0.0024168352,-0.00047640328,-0.028811954,0.020527534,-0.0059380415,0.013711239,-0.010165455,0.00075454416,0.0019416609,0.013226233,-0.03486797,-0.015192472,-0.005069619,-0.013167246,0.021051863,-0.01582167,0.00227756,0.0135801565,0.013632589,0.010709448,0.027081663,-0.014497735,-0.024197847,-0.02484015,-0.015113823,0.00025069545,-0.0146681415,-0.016962087,0.03177442,0.008461381,-0.01498274,-0.036834206,-0.012669132,-0.016516406,-0.023450676,0.013055826,0.0041028853,-0.02274283,-0.011010937,-0.007452045,0.027763292,-0.006167436,0.0091888895,0.01204649,-0.037699353,0.0031164887,-0.015297338,-0.012760891,-0.013409749,-0.019006975,-0.023122968,-0.005708647,0.0219039,-0.0016876884,0.0071964343,-0.00899882,0.00045633127,-0.023503108,0.007996038,-0.0017089893,-0.0021251766,0.013527723,-0.016044509,-0.015625045,-0.0011699122,0.018351562,-0.0064066616,-0.015140039,0.00903159,-0.00002562767,0.01912495,-0.031721987,-0.004542012,-0.037332322,-0.0019908168,-0.0034573034,0.005924933,-0.0041454867,0.0096280165,0.009175781,-0.02612476,-0.0061051715,0.0144584095,-0.015336663,-0.012531496,0.019033192,-0.0029460813,-0.017905882,0.0032049695,-0.011227224,-0.014956524,-0.034343638,0.0037292996,-0.0048828265,-0.0145632755,0.027973024,0.0049844156,0.00019426849,-0.03193172,-0.014694358,-0.041998863,-0.007484816,0.009719774,-0.007864956,-0.03720124,0.016214916,0.023581758,0.01204649,-0.06391587,0.028444922,-0.007294746,-0.011351752,0.008271311,0.22755937,-0.00013128741,-0.02055375,0.06312937,0.007596236,-0.0048828265,-0.0018810352,0.03334741,-0.017302902,0.01072911,0.010099914,0.0049778614,-0.000784857,-0.008762871,0.009143011,-0.0029460813,-0.03266578,-0.02567908,-0.015703695,-0.0071571097,-0.004551843,0.005249858,0.028733304,-0.005675876,0.040163707,-0.015493962,0.0023545711,0.0024758223,-0.004515795,0.0009437947,-0.017656825,-0.011482835,0.030725759,-0.016214916,0.0011600809,0.004450254,-0.013357316,-0.0010380102,0.025547996,0.035602033,-0.015113823,-0.0029870446,0.015375988,-0.01912495,0.026085436,0.0077338726,-0.019780362,-0.018233588,0.0034245327,0.0031132116,-0.029991698,-0.02303121,0.023175402,0.019360898,-0.017958315,-0.007779752,0.016726138,-0.0010396488,0.0065606837,-0.0074585993,0.006239531,0.022087416,0.010054035,0.005502192,-0.021182947,0.009123349,0.019229816,-0.016581947,0.0407929,-0.006986702,0.028890602,-0.010591473,-0.00047271658,0.02702923,-0.024643527,-0.036624476,0.0095034875,0.0062362542,0.032639567,0.029100334,0.018535078,0.008946387,-0.009687004,-0.037070155,0.0025380866,-0.028208973,-0.0027003014,-0.014130703,0.007019473,-0.009483825,-0.021641735,0.0010339139,-0.025285833,-0.0038767676,-0.0044142064,0.00027322528,-0.00060461846,0.005043403,-0.007438937,-0.008435165,-0.014471518,0.019609956,0.004738636,-0.012288993,0.0044764704,0.0069539314,-0.0010642267,0.008120567,0.018181155,-0.009051253,0.004211028,-0.026308276,0.013403195,-0.011351752,-0.014497735,0.044672947,0.013671914,-0.022074308,0.017302902,-0.009555921,0.0143535435,-0.018875893,0.008874292,-0.010067143,0.015415313,0.002603628,0.008966049,0.006013414,0.0014296195,-0.024368254,0.00073324324,0.029781964,0.014484626,-0.014288003,-0.0095231505,0.0060429075,0.029677099,-0.023909464,0.0010904433,-0.013435965,-0.0070391353,0.009647679,0.02786816,0.017368443,0.025993677,-0.043257255,0.009234768,-0.029991698,-0.0145632755,-0.00082868774,0.0023447399,-0.0080812415,-0.025731513,0.013619482,0.028916819,-0.0040176813,-0.0064689256,-0.033478495,-0.02228404,-0.0060068597,-0.018036965,0.0016631103,0.020540642,0.0031902227,-0.026675308,-0.006672104,-0.16516407,0.027710859,0.026452467,-0.00414221,0.014877874,0.009719774,0.022192283,-0.0060920636,-0.013632589,0.011869528,0.0143535435,-0.012112032,-0.007805968,-0.026780173,-0.013488399,-0.018941434,-0.029310068,-0.010833976,0.016175592,0.026531117,0.030332511,0.002834661,0.0036539272,-0.010375187,-0.0046337694,0.002021949,-0.03502527,0.021432003,-0.00903159,-0.023817707,0.02425028,-0.017748583,0.03402904,0.0003512604,0.036729343,-0.0122627765,0.015035173,-0.008572801,0.012760891,0.016083835,0.025954353,0.01528423,0.02477461,0.0043257256,-0.0033081968,0.025128532,-0.0010380102,0.006731091,0.012393859,-0.01806318,0.00850726,-0.032718215,0.013842322,0.00880875,0.008880845,0.0067638615,-0.0022087416,0.020815914,-0.01972793,-0.021038756,-0.008716992,-0.009431392,-0.011371415,-0.026465574,-0.03589041,0.00018146746,-0.021720385,-0.008992266,-0.0031820298,-0.00043380144,-0.015048281,-0.0119285155,0.016542623,0.038066383,0.0051908707,0.0048926575,-0.03305903,0.0025446408,0.003591663,0.01136486,0.006724537,0.0220612,-0.025259616,0.012243114,0.010578365,0.016136266,0.010768435,-0.0036670354,0.006921161,-0.022913236,0.0033852078,0.019321574,-0.012492171,-0.008513814,0.005767634,0.01996388,0.002308692,0.016424648,0.0040668375,-0.02529894,0.013488399,-0.0023365472,-0.026753956,0.05626065,0.037987735,0.0060101366,-0.029572232,0.020868348,0.015467745,-0.012184127,-0.012800215,-0.010774989,0.011784325,0.020278476,-0.0031508978,0.04003262,-0.012498725,-0.0026462297,0.019885229,-0.0034245327,0.018430213,-0.0032508483,0.004469916,-0.00011193224,-0.018469537,-0.010866746,-0.09516596,-0.024446903,0.0062493626,-0.0028133602,-0.01671303,0.002256259,0.012721566,0.0222185,-0.009018483,0.028471138,0.0068556196,-0.024119196,0.0058462834,-0.009260985,0.010381741,-0.010991275,0.017905882,0.005764357,0.0007131712,0.016306674,-0.0076683317,-0.011024046,-0.009274093,-0.014052054,0.011745,-0.017080061,-0.02590192,0.0047517437,0.012695349,0.018626837,-0.006065847,-0.0019432994,-0.017984532,-0.033766877,-0.020960106,0.015978968,-0.014589492,-0.0076158987,0.024735285,-0.05172519,-0.0070063644,-0.015493962,-0.014235569,-0.017420877,-0.02799924,-0.002803529,-0.006255917,0.0027707582,0.010119576,-0.021261597,0.0025167856,0.00035904342,-0.010637352,-0.018613728,0.012288993,-0.010991275,0.020750374,0.0023332702,-0.02883817,0.025888812,-0.013986512,0.012544604,-0.0103162,0.02229715,-0.010565257,-0.013724348,0.0039292006,-0.025285833,0.0023365472,0.003028008,-0.015847886,0.03266578,-0.016437758,0.018050073,-0.02288702,-0.014877874,-0.0077338726,-0.010833976,0.03266578,-0.0049778614,-0.0008553139,-0.020619292,0.007819076,-0.017971423,0.027055446,-0.0059970287,-0.014366652,0.007687994,-0.010833976,-0.031223873,-0.019387115,-0.0056365514,-0.0014238846,-0.016503299,-0.035418514,0.010034372,-0.007104676,-0.004132379,0.0142486775,-0.0118236495,0.015297338,0.002680639,-0.07372085,0.029703315,-0.004404375,-0.010512824,0.006115003,-0.0021530315,0.004132379,-0.018194264,-0.0067441994,-0.003493351,-0.0053416155,0.01626735,-0.0035752777,-0.017106278,0.0026216519,-0.01339664,0.008926724,-0.021038756,0.020763483,0.0013190185,0.0012313571,0.003889876,-0.004817285,0.011692567,-0.012328317,0.015690586,0.014314219,0.022021875,-0.0070129186,-0.011076479,0.010276875,-0.019151166,0.02439447,0.043860234,-0.005728309,-0.014877874,0.025888812,0.009536259,0.00510239,-0.01845643,0.01528423,-0.037096374,-0.013180355,-0.021209164,-0.002369318,-0.012767444,-0.017525742,0.018194264,0.013049272,0.027658427,0.038826663,0.011083033,-0.007996038,0.0015525094,0.004922151,-0.018928327,0.029178984,-0.006868728,-0.0023660408,-0.036178794,0.029598448,0.0038669363,0.0064164926,-0.014956524,0.035654463,0.013724348,-0.025613539,0.028182756,0.020566858,-0.024709068,-0.003739131,-0.015611936,-0.0044142064,-0.013193463,0.005371109,0.017499525,-0.013088597,0.024971234,-0.0002982129,0.0033213052,0.026924364,0.017905882,-0.017263576,0.003850551,0.027894376,0.032115236,-0.012164464,0.026740849,-0.0055775642,0.008264758,-0.029205201,0.0022234884,0.0040602833,0.018653052,0.0012936213,0.02009496,-0.017656825,0.015192472,-0.0022644517,0.026950581,0.007989484,0.022519989,-0.008762871,-0.014261786,-0.031119008,0.0061412193,-0.037620705,-0.025390698,0.0015500516,-0.0040766685,0.0004493675,-0.0075700195,-0.012361088,0.014694358,-0.015415313,-0.015716802,-0.001951492,-0.0006758946,-0.0176175,0.04818596,0.0044142064,-0.009182336,0.03953451,-0.021196054,0.048448127,0.006075678,-0.012656024,0.008055025,0.008330299,-0.00024782802,0.007897726,-0.008599018,-0.00911024,0.014288003,-0.0016975196,-0.0011215754,-0.019767255,0.030883059,-0.011063371,0.05715201,-0.004758298,-0.0070063644,-0.019636173,-0.014117595,0.03064711,0.046036206,0.004853333,-0.021799035,0.012282439,-0.022048092,0.0077666435,0.0379353,0.011640134,-0.003209885,-0.009995048,-0.0043224483,0.010257212,0.0018105783,-0.0043257256,0.014314219,-0.018692378,0.01506139,0.0051581,-0.008297528,0.01498274,0.0011215754,-0.006527913,-0.036388528,-0.029414933,0.0249188,0.004505964,-0.014694358,-0.010938842,0.03478932,-0.023175402,-0.024342038,0.019623064,0.016123159,0.015939644,0.02152376,0.023542434,-0.039403427,0.0074585993,-0.017525742,-0.002095683,-0.020763483,-0.00032873056,-0.027605994]},{\"id\":\"64813a5a-72e7-4c43-88c2-ae0517c4b827\",\"text\":\"I posted my videos to my Tik tok and Facebook  well I get bounty for that. It's not connecting with my tik tok. Or my facebook\",\"vector\":[-0.0428338,-0.0056590447,0.010184956,-0.0014967644,-0.02168196,-0.0094759185,-0.017295208,-0.035465114,0.009668088,-0.032045834,0.011251825,0.0045192842,-0.0012524115,-0.005234948,0.008455435,-0.0042409706,0.022053046,-0.017162677,-0.0031277156,-0.028308477,-0.03745307,0.00095753156,-0.023537386,0.028997635,0.0045159706,-0.014671107,0.025724135,-0.009727726,0.013339177,-0.000040768606,0.0018719909,-0.007925313,-0.024875943,-0.017891593,-0.026134979,-0.01171568,0.0011869747,-0.020820513,-0.0007434123,-0.0020012078,0.007282541,0.010284353,-0.014671107,-0.026413294,-0.040527772,0.034113307,0.008541579,-0.012424718,-0.008018085,0.0021602444,-0.0061394675,-0.014193998,-0.049937427,-0.009263869,0.009654834,0.0051521165,0.0019498523,0.006851818,-0.010715077,0.003054824,0.008375917,0.00542049,-0.0068584443,-0.010324112,-0.010748209,-0.0055762134,-0.008481941,0.0032088906,0.0030332878,0.0126500195,0.016977135,0.0016682255,0.0021652142,0.0019945814,0.03037595,0.012093392,-0.021204852,0.002188407,0.024836183,0.01687111,0.02111208,-0.010171702,-0.0070174807,0.036949456,0.025538594,0.0066828416,0.008859652,0.018978342,0.01673858,-0.009701219,0.014472311,0.016274724,0.011589777,0.0279639,-0.014300022,0.020184368,-0.022092804,0.024809677,-0.020608466,-0.010443389,-0.0005922449,0.009184351,-0.025459075,-0.012524116,-0.021165093,0.015227734,0.0018504546,0.008607845,0.031621736,-0.015532554,-0.01555906,0.035412103,-0.00439338,-0.042727776,-0.010947005,0.0040256088,0.009906642,-0.025379557,-0.03347716,-0.0028245526,0.035279572,-0.01335243,0.005344285,-0.010410257,0.02425305,0.011053029,0.0010942034,-0.0033563306,0.014790384,-0.0005980431,0.050069958,0.001746087,0.0024998533,0.017586773,-0.020780755,0.0065933834,-0.025021724,-0.02337835,-0.010430137,-0.012384959,0.018951837,0.035650656,-0.014790384,0.014498818,-0.0060135634,0.0045656697,0.004310549,-0.016022917,0.012974719,0.0044728983,0.0014371257,0.012464477,0.005337659,-0.01394219,-0.017494002,0.003041571,0.002309341,0.004028922,-0.0014917945,-0.045033805,-0.02364341,0.017772317,-0.019985573,-0.009124713,0.010913872,0.025247026,0.021310875,-0.022980759,-0.026638595,0.0014578336,0.010980138,0.017586773,-0.01862051,0.022887986,-0.014936168,0.008223507,0.0067988057,0.0037903672,0.0111458,-0.011848211,-0.017865088,0.028573537,0.032443423,0.011755439,-0.012941586,-0.013233153,0.011033149,-0.02451811,0.0081638675,-0.011112668,0.0010751523,0.004224404,-0.0119277295,-0.021363888,-0.6136684,0.007428325,0.039785605,0.018832559,-0.020687984,0.005533141,-0.022530155,0.01599641,-0.026187992,0.0048704892,-0.0037969938,-0.00834941,0.01084098,0.010012666,0.009144592,-0.017533762,0.03967958,-0.036684394,-0.010496401,0.018938582,-0.017162677,0.001822292,0.0062454916,0.012471103,0.0040819338,-0.006944589,0.003465668,-0.004605429,-0.010171702,0.056139845,0.007832542,0.01957473,0.032231376,0.006083142,0.056351893,0.00034996288,0.013663877,0.0032337399,-0.010529534,0.012331947,-0.052428994,-0.0129349595,-0.01070845,-0.01656629,0.0010569294,-0.016765086,0.023749433,0.0032817821,0.016049422,-0.0011977428,0.00586778,0.004575609,-0.0056888643,0.000750453,-0.004356934,-0.01582412,0.022649432,-0.0090385685,0.007978326,-0.017189182,-0.03159523,-0.019707259,-0.022265095,0.0059472984,-0.03347716,-0.00078896957,0.0066298293,-0.003594885,0.02286148,-0.010781342,-0.008998809,-0.0025777149,-0.0017560268,0.020608466,-0.0032768121,0.03811572,0.029845828,-0.002594281,-0.0042641633,0.0045557297,-0.022119312,-0.009482545,-0.011788572,-0.016195206,0.014260263,0.017600028,-0.029951854,0.011947609,-0.008647604,0.011947609,0.0029935287,0.016725326,0.018209666,-0.013564479,0.018540991,-0.0010420197,-0.013862672,-0.014631348,0.028997635,0.0070174807,-0.014313275,-0.01634099,0.004214464,0.002465064,0.04405308,-0.0018322318,0.0067988057,0.006626516,0.017997619,-0.011364475,-0.004277416,-0.0019664187,0.01276267,-0.012987971,0.021059068,-0.03618078,0.03872536,-0.015545807,0.028865105,-0.004058741,0.009568689,-0.009886762,0.0033563306,-0.001991268,0.0051786224,0.053542253,0.0069114566,-0.0018554245,-0.00037398402,0.0015431499,-0.007918687,-0.015612072,0.004274103,0.00426085,-0.02902414,-0.003197294,0.0040156688,-0.006440974,0.0019100932,-0.03832777,-0.00249157,-0.009416279,0.0055397674,0.019243402,0.00095007673,-0.0042210906,0.0072361557,-0.0040355483,-0.019283162,0.010224715,0.027128957,-0.009687967,-0.015612072,-0.0076204934,-0.012881948,-0.0032718424,-0.0039460906,-0.003750608,-0.012835562,-0.0046617542,-0.004287356,0.011424114,0.00077571656,-0.015572313,-0.033556677,-0.010880739,-0.010933752,0.00040545996,-0.006086455,-0.007945193,0.0029769624,0.0009417936,-0.0046518142,-0.0028096428,-0.0011339625,0.028387995,0.002585998,0.015108457,-0.00097492617,0.0069048298,0.008077723,-0.0128024295,-0.0034689812,0.011848211,0.00088795315,-0.007434951,-0.00096581475,0.027513295,-0.009157846,0.0066397693,-0.0018256052,-0.0026108474,-0.030402455,0.004363561,-0.00096664304,-0.011198812,0.032019325,0.01844822,-0.017507255,0.022636179,0.008037964,0.014273516,0.03981211,-0.023086783,0.0015398368,-0.021085575,-0.012232549,-0.014180745,0.023524132,0.026439799,0.012351826,-0.012789176,0.0015613729,0.0071698907,-0.0020376537,0.04344344,-0.018196413,0.012093392,-0.0093036285,0.035412103,-0.021165093,-0.01896509,-0.0050991043,-0.023669915,0.015439782,0.010257847,0.015015686,0.009873509,0.023219313,0.007984952,-0.021827744,0.03893741,0.008090977,0.010867487,-0.002456781,-0.007819289,-0.0006444287,0.01084098,0.019707259,-0.011457247,-0.008912664,0.039759096,0.006298504,-0.007792783,0.020608466,0.03207234,0.021337382,-0.016539784,-0.012510862,-0.0006618233,-0.008375917,0.024067506,-0.038195238,0.001158812,0.0130674895,-0.03400728,-0.026426546,0.018527739,0.024491604,0.012689779,0.01200062,-0.015108457,-0.01025122,-0.006560251,-0.00079311116,0.012875321,0.011742187,-0.011907849,-0.0071698907,-0.012961466,0.001456177,-0.03085306,0.0050725983,-0.024995219,0.026678354,0.0046021156,-0.017427737,0.0072957943,0.017149424,0.019640993,-0.020634972,-0.0187928,0.017626533,0.020078344,-0.008800014,-0.017281955,0.0023192808,0.016460266,-0.015797615,0.017440991,-0.0028278658,0.0026207871,0.011848211,-0.0009898358,0.0009765829,0.018872319,0.038910903,-0.017295208,0.022954252,0.0022082864,0.009787365,0.009628328,-0.008621098,-0.0068253116,0.019163884,-0.005599406,0.0090385685,-0.02019762,-0.008110856,-0.009581942,0.0065801307,0.011311463,-0.012570501,0.0066331425,-0.016261471,0.00952893,-0.028653055,-0.009442786,-0.0010991733,0.014750625,-0.01394219,0.014737372,-0.036472347,0.002393829,0.13263635,-0.0012606947,-0.010900619,0.027937392,-0.014180745,0.009369894,-0.014154239,-0.022318106,-0.0077331443,0.006301817,0.007534349,-0.0028030165,-0.013272912,0.01805063,-0.009548809,-0.015174722,0.015095204,-0.024690399,0.0058081415,-0.035915717,-0.0019216897,-0.01700364,0.008912664,0.010887366,0.0066198898,0.027725345,0.023100035,0.031754266,-0.0027731971,-0.005943985,-0.005632539,-0.012908453,-0.0027582874,0.028202454,-0.0013551225,0.017732557,0.03024342,0.028228959,0.013716889,0.033026557,-0.004148199,0.01173556,0.023365095,-0.017600028,0.035279572,-0.02394823,-0.013007851,-0.0031674746,0.017228942,-0.011682548,0.027407272,-0.015545807,-0.005751816,-0.029421732,-0.0075210957,0.018077137,0.003242023,-0.013166888,0.0062719975,-0.036684394,-0.0037406683,-0.022450637,0.013875925,-0.016897617,0.0035286199,-0.031913303,-0.0075939875,-0.028467514,-0.01247773,-0.01053616,-0.0011546705,-0.0003118604,-0.05322418,-0.0076204934,0.007852422,-0.00011617111,0.020343404,-0.0012863724,0.030534986,0.019455452,-0.020184368,-0.020475935,-0.020171115,-0.0029090405,-0.011795199,-0.015492795,-0.012543995,0.010794595,-0.009336761,-0.0067988057,0.023497626,0.008780134,0.024743412,-0.008667483,0.014538577,0.008621098,0.0069512157,0.026506064,0.0073885657,-0.0054337434,0.0062786243,-0.017401231,-0.015545807,-0.017653039,-0.008004831,0.0105030285,0.00585784,0.046306096,-0.014631348,-0.013915684,0.032416917,0.003657837,0.014657854,0.025538594,0.017361473,0.047260314,0.0050394656,-0.001190288,0.012219296,0.014034961,-0.035465114,-0.026466306,0.007103625,-0.008925918,-0.023298832,-0.006957842,0.00937652,-0.04566995,-0.01173556,-0.005920792,-0.025671124,-0.0018852438,-0.011629536,-0.012119899,-0.05083863,-0.0061924793,0.014193998,0.019879548,0.008992182,0.0054469965,-0.0016243248,0.0073885657,0.0031741012,-0.047021758,0.014498818,-0.04776393,-0.019654248,-0.0097409785,0.00749459,0.053118154,-0.008998809,-0.006918083,-0.030667517,-0.011178933,0.011921102,-0.01215303,-0.022490395,0.0093036285,0.032045834,0.01752051,0.01983979,-0.011662669,0.026413294,0.0006307615,0.011410861,0.0004775233,-0.012928333,-0.008190374,-0.023563892,0.0074415775,-0.002599251,0.0014023365,0.030773541,0.026161486,0.0057948884,0.021734973,-0.01011869,-0.018633764,-0.017586773,-0.032708485,-0.0031111494,0.0006949559,0.004814164,0.000020513728,-0.015757855,0.01839521,-0.0066695884,0.024067506,0.014472311,0.014869902,0.021151839,-0.02071449,0.006354829,-0.009204231,0.016818099,-0.007713265,-0.034113307,0.007640373,-0.0064111543,0.028387995,0.0035882585,0.019640993,-0.0070903725,-0.0045225974,-0.019548222,0.02923619,0.0031045228,-0.042595245,-0.012431344,-0.037347045,-0.0109204985,-0.05415189,-0.017016893,0.004900309,0.0047810315,0.0034192824,-0.015267493,0.003916271,-0.0070572398,-0.024862688,0.013902431,-0.0019995512,0.013915684,0.0077331443,0.011172307,0.03954705,0.013398816,-0.0072692884,0.031754266,0.0061063347,-0.010456642,0.015930144,0.03771813,-0.011993994,-0.012252429,0.011675921,-0.015240987,-0.036472347,-0.0136771295,0.029156672,0.0027847935,-0.028547032,-0.013690382,-0.010701824,-0.03981211,0.023206059,-0.025883172,0.0070771193,-0.0047081397,-0.012875321,-0.018527739,0.004930128,-0.0036313308,-0.014936168,0.024451844,-0.024597628,-0.027460283,-0.0008945797,-0.01200062,-0.0041581388,0.00006305544,0.025618112,-0.024398834,0.013783154,0.011238571,-0.0033927762,-0.018421715,-0.015108457,0.0051024174,0.025379557,-0.0061924793,0.014233757,-0.007381939,0.009542183,0.010933752,-0.013663877,0.0017179244,-0.023868712,-0.007547602,-0.015095204,0.02626751,0.010450016,0.005649105,0.008269892,-0.014432552,0.0054867556,0.006225612,-0.004005729,0.020515693,-0.028441008,-0.0120801395,-0.02552534,0.02128437,0.017334966,-0.0069379625,0.035677165,0.024094013,0.03151571,-0.013465081,0.003926211,-0.009151218,0.020568706,-0.020515693,-0.0037009092,0.0106156785,-0.022516903,0.010794595,-0.017984364,-0.010874113,-0.030216914,0.0013733455,0.008965677,0.0070042275,-0.012106645,0.018739788,0.0133723095,-0.009774111,-0.0113578485,-0.0119277295,0.019548222,0.038248252,0.006470793,0.023563892,0.0069777216,0.010052425,-0.027513295,0.039467532,-0.010357245,-0.00074796804,-0.022675939,-0.0063879616,0.016009662,-0.025207268,-0.040050663,-0.013862672,-0.007713265,-0.0097608585,0.013796407,-0.0345374,0.001790816,0.0001090269,0.017401231,0.025154255,0.032522943,-0.010443389,-0.016394,-0.0022033167,-0.0012358453,-0.006556938,-0.010072305,-0.005453623,0.023961483,0.011251825,-0.027115704,-0.0085217,0.007680132,-0.03853982,-0.012166284,-0.0020343405,0.01586388,0.00068874354,-0.011636162,-0.02430606,0.0445832,0.012225922,0.012278935,-0.020263886,-0.0367109,-0.011000017,-0.008554832,-0.018806053,-0.018938582,-0.024677146,-0.018461473,0.01848798,0.009668088,0.00048497814,0.023630157,-0.017759064,0.005957238,-0.017136171,-0.011689175,0.012510862,-0.012676526,0.038009696,0.0024998533,-0.013246406,0.009654834,0.01398195,-0.010363871,0.018461473,0.0028858478,0.0018852438,0.036021743,-0.0038533192,-0.00040276794,-0.014565082,0.0013609207,0.022516903,0.019919308,-0.020330152,0.008329531,0.03400728,-0.03326511,-0.0020790694,0.025803654,-0.0023126542,-0.020581959,0.020555453,-0.0005272222,0.0032171735,0.017348219,0.018633764,-0.021575937,-0.025538594,0.013498213,-0.019296415,-0.0048506097,-0.0019399126,0.008309651,0.00007801688,-0.030137395,-0.0036247044,-0.01247773,-0.008097603,0.00996628,-0.019468704,-0.033795234,0.019521717,0.008740375,0.031356674,-0.05826033,0.002322594,0.011053029,0.0012126524,-0.014008455,0.21819793,-0.009270496,-0.015890386,0.047578387,0.039785605,0.01730846,-0.012391585,0.019720512,0.0014329841,0.0036015115,0.020436175,-0.019985573,-0.024597628,-0.008057844,0.01669882,-0.011622909,0.010363871,0.014180745,-0.017202437,-0.021761479,0.02508799,-0.0032105471,0.015479541,-0.0059009125,0.03514704,-0.022490395,0.007203023,-0.021867504,0.004353621,0.0004779375,-0.013266285,-0.0033662703,0.0017924727,-0.010264474,-0.013465081,0.0196675,-0.008024711,-0.017586773,0.001556403,0.014631348,0.01586388,-0.020316899,0.011821705,-0.03193981,0.018024124,0.013286165,-0.0074813366,0.00071524957,-0.011112668,-0.0030978962,-0.0214169,-0.02950125,0.025869919,0.0054635624,-0.03395427,0.0030862999,0.00791206,0.0059406715,-0.03133017,-0.009793991,0.015201228,0.032019325,0.03024342,0.008833146,-0.03085306,0.00950905,0.0015787674,0.017242195,0.021363888,0.010728329,0.004542477,-0.0049897665,-0.020224128,0.032947037,-0.01485665,-0.03604825,0.014366287,0.008992182,0.03570367,0.023153048,0.020528948,-0.020462682,0.011006643,-0.03798319,-0.028918117,-0.014909661,0.0205422,-0.006550311,0.0006175085,-0.017321713,0.009654834,0.0027632574,-0.04829405,-0.023418108,-0.018991595,-0.006394588,-0.0045855492,-0.008090977,-0.013286165,-0.018978342,-0.022622926,0.02653257,0.009595196,0.0034988006,0.010913872,-0.015930144,-0.00037253444,0.022132564,0.023881964,-0.012530742,0.016592797,-0.034245837,-0.003318228,0.0028593417,-0.0043403683,0.02272895,0.004621995,-0.028467514,0.01143074,-0.008124108,-0.016102435,-0.015320505,0.008037964,-0.00080843497,0.014180745,0.0027268114,-0.003018378,-0.0030067817,-0.00966146,-0.03220487,0.015943399,0.022940999,-0.0062024193,0.003425909,-0.020210875,-0.004284043,0.019733766,-0.01660605,-0.0222916,0.022185577,-0.026333775,0.02084702,0.01892533,0.005781635,0.000039034323,-0.027049439,0.033291616,-0.033185594,-0.012736164,0.017931353,-0.018912077,0.0069247093,-0.003318228,0.01691087,0.036869936,-0.004065368,-0.010165076,-0.042489223,-0.018474728,-0.0074415775,-0.03225788,-0.008011458,0.035306077,-0.007600614,-0.019110873,-0.016592797,-0.16645809,0.030031372,-0.0057584425,-0.012133151,0.022119312,-0.008170495,0.017772317,-0.020794008,0.001087577,0.0024932267,0.026771126,-0.02390847,0.0022115998,-0.028228959,-0.015797615,-0.016619302,-0.0103506185,0.006265371,0.029898841,0.01055604,0.03421933,-0.01923015,0.00083411275,-0.022371119,0.013034358,0.013663877,-0.022119312,0.010516281,-0.0026588896,-0.024769917,-0.0048108506,-0.03133017,0.021933768,0.024743412,0.032045834,0.021191599,0.00033111873,-0.03623379,0.020767502,0.010562667,0.028175946,0.03400728,-0.0001516851,0.009641581,0.008356037,0.007574108,0.025750643,0.009210858,0.003255276,-0.014777131,-0.0023722928,-0.017202437,0.012351826,-0.0064774198,-0.0033099449,0.0011397608,0.004363561,0.012709658,-0.02583016,-0.017387979,-0.0067623598,-0.02111208,-0.026956668,-0.019190392,-0.018421715,0.0040521147,-0.005311153,-0.004376814,-0.017321713,0.013312671,-0.018527739,0.003197294,0.030269926,0.02775185,-0.020396417,0.008541579,-0.022662686,0.0005988714,-0.0057551293,0.011112668,0.025538594,0.027049439,-0.030906072,0.014167491,-0.004966574,0.014883155,0.029845828,0.008157241,0.007249409,-0.02661209,-0.016897617,-0.0047081397,-0.014618095,-0.017242195,0.017427737,0.028494019,0.024186784,0.01230544,0.016513279,-0.032443423,-0.0027234983,0.00070199656,-0.042966332,0.032973543,0.030216914,0.008157241,-0.015227734,0.0030266612,0.008727122,-0.02508799,-0.0190181,0.010953631,0.028520526,0.024875943,0.01757352,0.029951854,0.002143678,0.00088629656,0.0301639,-0.0027632574,0.048241038,-0.0074415775,-0.0046385615,-0.017560268,-0.004197898,-0.010900619,-0.09160496,-0.0101982085,0.008992182,-0.02522052,-0.015704844,-0.009469291,0.008090977,0.017944606,0.008998809,0.030800046,0.0034689812,-0.02727474,-0.0045921756,0.0032519628,0.0053641647,-0.025922932,0.0038135601,-0.004582236,0.006371395,0.038804878,-0.011410861,-0.020224128,-0.014140986,-0.014260263,-0.008170495,-0.02172172,-0.020701237,0.019720512,0.0100457985,-0.002456781,-0.00572531,0.0009194291,0.014962673,-0.046968747,-0.014353034,0.0033397642,-0.0061924793,-0.014180745,0.012948212,-0.02343136,-0.00022716526,-0.022238588,-0.016261471,-0.009330135,-0.013060863,0.011603029,0.006778926,0.0036644635,0.020780755,-0.022887986,-0.0105030285,-0.013007851,-0.005960551,-0.030481974,0.032708485,-0.0027400644,0.00083369855,0.03504102,-0.012729538,0.012941586,0.011987368,-0.020157862,-0.021509672,0.029686792,-0.00052100985,-0.0126301395,0.018328944,-0.038168732,-0.007421698,0.016818099,-0.018845811,0.03326511,-0.014790384,0.005311153,-0.002546239,-0.020184368,-0.01774581,-0.025061484,0.033980776,-0.024942206,-0.034272343,-0.016500026,0.008336158,-0.0032436796,0.04869164,-0.017016893,-0.022450637,0.018647017,-0.0279639,-0.011689175,-0.018859064,-0.004095187,-0.0031326856,-0.002546239,-0.004022295,0.022278348,-0.0135445995,-0.0063117566,0.009250617,0.009204231,-0.008667483,0.0027350946,-0.021483166,0.017281955,0.020621719,0.0042972956,0.008283145,-0.002585998,-0.017348219,-0.02425305,-0.0077861566,0.010290979,0.0111458,0.03618078,-0.0050295256,0.006513865,0.0019365994,-0.019853042,0.013458454,-0.016327735,0.007640373,-0.0009972907,-0.007938567,-0.013849419,-0.008640978,-0.011404234,0.007136758,0.015413277,0.008342784,0.026161486,0.0031956374,-0.025339797,0.011172307,-0.018236173,0.024743412,0.02910366,0.008230133,-0.041163918,0.008713868,-0.00040256087,-0.013610864,0.020171115,-0.024014495,-0.013014478,0.027089199,-0.0367109,-0.0021917203,-0.017136171,-0.020634972,-0.009847003,0.014975927,0.028812092,0.032443423,0.008269892,-0.024756664,0.00034188683,-0.019283162,-0.037055477,0.026519317,-0.013445201,-0.0042177774,-0.038804878,0.034272343,0.022106059,-0.011603029,-0.009634955,0.016102435,0.005340972,-0.04548441,0.007461457,0.0314627,-0.024862688,0.008177121,-0.0011637819,0.0034325353,0.0044364524,0.007110252,0.0214169,0.00039386356,0.012451224,-0.007825916,-0.003389463,0.0031542217,0.009137966,-0.021947023,0.015506048,0.024385579,0.028387995,-0.005748503,0.02215907,0.013325924,0.0037969938,-0.023802446,0.00600031,-0.002032684,0.016274724,-0.008382543,0.01259038,-0.01455183,-0.005784949,-0.008534953,0.022437384,0.0056789243,0.00050651433,-0.013836166,0.0051653692,-0.0022579853,0.03832777,-0.013610864,-0.038831387,0.012550621,0.0023921723,0.01158315,0.0066530225,-0.011291584,-0.005791575,-0.0073753125,0.0011911163,0.0042807297,-0.040713314,-0.018421715,0.042409703,0.012530742,-0.0016027886,0.010609052,-0.03456391,0.0384603,0.0074482043,-0.007825916,0.0012623513,0.004320489,-0.0064674797,0.014154239,-0.0056557315,-0.013438575,-0.015187975,0.012722911,-0.017387979,-0.03522656,0.022265095,0.0054635624,0.048665136,0.017719304,-0.002375606,-0.006918083,0.0038500058,0.0063614557,0.027380764,0.021973528,-0.01936268,-0.0048075374,0.0007595644,0.0027947333,0.0070837457,-0.01818316,-0.024796424,0.0066099497,0.008561459,0.0035915717,0.0048804292,-0.003465668,0.005480129,0.0043039224,0.03246993,-0.00072146195,-0.00922411,-0.0017079846,0.029130165,0.011940982,-0.039573554,-0.05134225,0.018540991,0.014737372,-0.0059804306,0.00033173995,0.012855441,-0.0187928,-0.01407472,0.0050659715,0.010754836,0.02364341,0.014260263,-0.021032562,-0.032416917,0.00072021945,0.008727122,-0.005380731,-0.03785066,0.0031790712,-0.047313325]},{\"id\":\"9c1b2122-4bed-41c7-968d-145144c8fbbf\",\"text\":\"Make it easier sign up is glitchy and the amount or rewards needed to make money is ridiculous \",\"vector\":[-0.0140231885,-0.009608725,0.0012613931,-0.040073805,-0.02290498,0.014565083,-0.031033408,-0.011168326,-0.011485533,-0.042188518,0.017948624,0.009430297,-0.014988026,-0.0038130912,0.02472892,0.0006641519,0.020512713,-0.011340147,-0.0047382778,0.0029605976,-0.028575055,0.030293258,-0.0336768,-0.0040543005,0.012985657,-0.012199248,0.022244133,-0.0084059825,0.022534907,0.0028466014,0.01471047,-0.011379797,-0.022495255,0.0016843355,-0.041580535,0.005154612,0.010870945,0.0017644634,-0.004764712,0.002175841,0.03214363,0.012166206,-0.006932292,-0.013904235,-0.02256134,0.0031902422,-0.015001243,-0.008617454,-0.025310466,0.015939647,-0.0019280232,-0.013732415,-0.02881296,-0.01822618,-0.000048014714,0.0054817316,0.029976051,0.0032959778,0.004255859,-0.004338465,0.013639896,0.0076393993,-0.02242917,-0.0091461325,-0.009258476,-0.0020849744,-0.0035024928,0.004255859,-0.010514087,0.000761627,0.01132693,0.006370572,0.016772315,-0.01471047,0.014076056,0.010150621,0.012959223,-0.005029051,0.020763835,0.0049662706,0.025072562,0.015714958,-0.0039122184,0.012774186,0.0142082255,-0.0044309837,-0.0018090706,0.017300993,-0.0089214435,-0.018728424,-0.0013357385,-0.006482916,0.0069455095,0.019389272,-0.013547378,0.008478676,-0.007256108,0.019851865,-0.012404111,-0.008716581,-0.024530666,0.027359094,-0.02976458,-0.015767826,-0.03661096,0.0011300496,-0.0015075589,0.0035223183,0.006654736,0.015767826,0.034416948,0.018027926,-0.00642344,0.00022530775,0.021966577,0.0003172069,0.015714958,0.0059211953,-0.027306227,-0.022600992,0.033782534,-0.0071768058,0.023539394,0.02642069,0.0028152112,-0.024345629,-0.015635656,0.009417079,0.0042327293,-0.0007855827,0.025032911,0.013917453,0.024808222,-0.0054817316,-0.019772563,0.027226925,-0.0141685745,0.00017440184,-0.000927665,0.010150621,0.016904484,0.035870813,0.006691083,0.0071041128,0.0042294255,0.00945673,-0.010599997,-0.013851368,-0.0039683906,-0.0152787985,-0.0046325424,0.01991795,0.017737152,-0.0042955102,0.0076261824,0.015133413,-0.020235157,0.026975803,-0.0104017425,-0.032778047,-0.0033769317,0.0109172035,0.00073395396,-0.024226677,0.002146103,0.01779002,0.009562466,-0.004434288,0.002329488,0.005726245,-0.021081042,0.009033788,-0.014313961,0.012430545,-0.008333289,0.009172566,0.007969824,0.0067869057,-0.011029548,-0.011174935,-0.0047845375,-0.01071895,-0.0022815766,0.03787979,-0.015767826,-0.028786525,0.018834159,0.0017628112,0.0145783005,-0.0017016828,0.021279296,-0.00954264,-0.014736904,-0.0042294255,-0.66105914,0.005610597,0.004705236,0.007943389,-0.009000746,0.00457637,-0.017948624,0.009357603,-0.021662587,0.034549117,-0.0056072925,-0.0073089753,0.004616021,-0.013243387,-0.014062839,-0.01549027,0.02339401,-0.026579294,-0.0143536115,0.015714958,-0.030531164,0.0021675804,-0.0045367195,0.026870068,-0.00056543783,-0.003046508,0.009060222,-0.00072651944,-0.001704987,0.003286065,0.004946445,0.02208553,0.013415208,-0.0059773675,0.0537137,-0.01219264,0.0066283024,0.033967573,0.007831045,0.024583533,-0.024913957,-0.009998626,0.03388827,0.0023592263,-0.008855359,-0.011227802,0.013534161,0.0067802975,0.0010713993,-0.012258724,0.005888153,0.02208553,-0.005835285,0.017261341,0.017499248,0.0040642135,-0.012126556,-0.005762592,-0.0064267437,0.001552992,-0.022204483,0.01505411,-0.049563576,-0.03232867,-0.011439274,-0.0019792388,-0.0050323554,0.009489773,0.0069521177,0.016217202,0.002258447,0.010811469,-0.015252365,0.04877056,-0.000859102,0.0089214435,0.025706975,-0.018160095,-0.023658348,0.01562244,-0.0055907713,-0.020790268,-0.010348875,-0.012642017,0.010547129,0.0080359075,0.00051091786,-0.023724433,0.00028684922,0.0061458834,0.010725558,0.0060434523,0.010514087,-0.029341638,-0.0054420806,0.01739351,0.00039878028,0.037166074,0.0075733145,-0.0129327895,-0.016018948,-0.0077385264,-0.019706478,-0.008194512,0.024200242,0.015648874,0.002745822,-0.016309721,0.052735645,-0.028284281,0.009258476,-0.029949619,0.005445385,-0.008174686,-0.021160344,-0.038804978,0.00928491,-0.015027677,-0.009403863,-0.02468927,0.010183663,0.014261093,0.044091757,-0.0150937615,-0.012992266,0.0049927044,0.021900492,-0.011822565,0.004196383,-0.0031538957,-0.019111715,-0.024332412,0.017803237,-0.0047845375,0.010547129,-0.003740398,0.017710717,0.010619823,0.031033408,-0.017512463,0.008716581,0.0054586018,0.013679547,-0.017089522,0.0039518694,-0.014340395,0.026010966,0.007533664,0.018926678,0.014247877,-0.007956606,-0.022415955,-0.033703234,-0.0021576677,-0.034284778,-0.010395134,0.0030151177,-0.0041501233,-0.010606606,-0.019984035,0.0027474742,0.012040645,-0.015199497,-0.025323683,-0.013613462,-0.0065192627,-0.010692515,-0.01080486,0.0033191075,-0.019019196,-0.0088091,-0.021398248,-0.02529725,0.02060523,0.002066801,0.02807281,-0.014380046,-0.0060467566,-0.022680294,-0.011472316,0.009324561,0.027200492,-0.0074741873,-0.0007550185,0.01731421,-0.00076699635,0.01410249,0.049695745,-0.019574309,0.020710967,-0.011697005,0.0058947615,0.004196383,-0.0016289896,0.0062549235,-0.021503985,0.011703612,0.001343173,0.012985657,0.016864832,0.004540024,0.0134680765,0.029235901,-0.023446877,0.026698247,-0.020076552,-0.003684226,-0.03658453,-0.0078508705,0.023460094,-0.00019174909,-0.015543138,0.0245571,-0.007798003,0.012014211,0.020922437,0.01887381,0.017631417,0.014644385,0.007864088,-0.015001243,-0.022957848,0.008861967,-0.009364212,0.013164086,0.021543635,0.0105669545,0.0071305465,0.009853239,-0.020525929,-0.008445634,-0.0020849744,-0.004639151,0.011934909,0.020843137,-0.011293887,0.0028300802,0.014300744,0.025627675,0.0006864555,0.0012399155,0.0039981287,0.014498998,0.0007079331,0.016693013,-0.010930421,0.023539394,0.00075460545,-0.033967573,0.037033904,0.012972441,0.027702736,-0.018556604,0.020631665,0.010481045,-0.0413955,0.012397503,0.0026136527,0.020367326,0.03084837,0.017512463,-0.003244762,0.013864584,-0.008187903,0.02026159,-0.00035582518,-0.005557729,-0.012397503,0.027755603,0.002314619,-0.0039948244,-0.02208553,-0.010652865,-0.009304736,0.003628054,-0.020129422,-0.00828703,-0.004087343,-0.00068026007,0.018014709,-0.0012671754,-0.015952863,0.02564089,0.01280062,-0.0055511207,-0.02746483,-0.0028763397,-0.012265333,0.016203985,0.009370821,0.012542889,-0.008253988,0.016322939,-0.0055081653,0.0022964457,-0.010091145,0.049167067,-0.010679299,0.0053132153,-0.01913815,0.016772315,0.03869924,-0.018345132,-0.02546907,0.024187027,0.0059244996,-0.029579543,0.0022617513,-0.0020436714,-0.021332163,0.012371069,-0.009919324,0.007216457,-0.005485036,0.0032331974,-0.0036478792,-0.00056378567,-0.022759594,0.0025178296,0.034258343,-0.01592643,-0.011829174,-0.03224937,0.011961344,0.09310022,0.02642069,0.008022691,0.032434404,-0.004725061,0.007209848,-0.010461219,-0.05937056,0.0008681887,-0.00039526954,0.009906107,-0.025958097,0.00698516,0.009271693,0.021160344,-0.006169013,-0.010302615,-0.023988772,-0.006169013,-0.014366829,0.008617454,0.01505411,0.008326681,0.011551618,0.021318946,0.04438253,0.009602117,0.009397254,-0.0029886838,-0.012014211,-0.008961095,-0.0176182,-0.012608974,0.016071815,-0.009787154,0.029209469,0.00009086656,0.019970817,-0.011075808,-0.0039122184,0.025389768,0.017076304,-0.008743015,0.008260597,-0.0010796599,-0.024768572,-0.006278053,0.025984531,-0.011822565,-0.01596608,0.020816702,-0.004860535,0.006439961,-0.005970759,0.0054222555,-0.0015323405,0.005266956,-0.0059608463,0.0038593505,-0.038514204,-0.04179201,-0.02577306,0.005131482,0.0023179234,-0.008121818,-0.030769069,-0.026618944,-0.004031171,-0.008736406,0.0028647748,-0.016944135,-0.0229975,-0.017803237,-0.00401465,0.009747503,-0.006773689,0.020433411,0.005058789,0.023539394,0.0047085397,-0.007646008,-0.03618802,-0.011994386,-0.0073221927,0.0026400865,0.0039981287,0.0043847244,-0.002506265,-0.0027144318,0.010249748,0.008379549,0.011478924,0.04031171,-0.011558226,0.02573341,-0.0025525242,0.010844511,-0.0023245318,0.002547568,0.014221443,0.0033587585,-0.005131482,-0.0064069186,0.015781043,-0.0063738762,0.005154612,0.015040893,0.008643888,-0.014974809,-0.019376054,-0.0012085253,0.005167829,-0.007632791,-0.0011374841,0.0018041142,0.00057865476,0.008339898,0.0018652426,0.013547378,-0.004751495,-0.022072313,-0.035342135,0.030451862,0.02008977,-0.0032530227,-0.028231414,0.008432416,-0.055246867,-0.002562437,-0.0028432973,-0.029156601,0.016732663,0.003948565,-0.0073948856,-0.018199746,-0.019984035,-0.017234908,0.0040939515,-0.014935158,-0.013045133,-0.026143136,0.0070710704,-0.0061888387,-0.019032413,0.020063337,-0.032883782,-0.01674588,-0.011320321,0.0020998435,0.0152391475,0.01397032,0.011736655,-0.02746483,-0.022442387,0.004533415,-0.0037800488,-0.013996754,0.009925933,0.02685685,0.020671315,0.021173561,-0.008022691,0.019098498,-0.00012463174,0.002911034,-0.0070314193,0.018953111,-0.036373056,-0.02234987,0.020023685,0.013785283,-0.0055907713,0.029077299,-0.028918695,0.0053165196,0.00023769865,-0.016071815,0.014684035,-0.02468927,-0.03605585,0.007857479,-0.0021328859,0.010005234,-0.0047845375,-0.02820498,-0.029976051,-0.008267204,0.027068323,0.0019445444,0.0020172375,0.027649868,-0.005266956,0.030266825,0.018477302,0.00911309,0.0073354095,-0.012423936,-0.017684285,-0.00798304,0.006000497,0.015714958,0.012232291,-0.023526179,0.016164334,-0.019706478,0.002674781,-0.017512463,-0.019362837,0.0107586,-0.011782914,0.0063540507,-0.030874804,-0.008795883,0.00027487133,-0.011181543,0.010613214,-0.015146629,0.0028862522,-0.015648874,-0.02312967,-0.011558226,-0.019508224,-0.011412839,0.017552115,0.015397752,0.01835835,0.024530666,-0.026262088,0.012899747,0.008947878,-0.001663684,0.0056006843,0.021728672,-0.004226121,-0.0050323554,0.013025308,-0.009615334,-0.03084837,-0.032302234,0.017102739,0.013249996,0.0199576,-0.021993011,-0.022812463,-0.0030663332,0.035421435,0.00065547833,0.016653363,-0.011254236,-0.012509847,-0.025231166,0.029262336,-0.0046754973,0.019521441,-0.0005220697,0.0005485036,-0.019600743,-0.015847128,-0.00557425,0.0021527114,0.0077649606,0.019732913,-0.017155606,0.020354109,-0.0027193883,0.012298375,0.008227554,-0.020684533,-0.018146878,0.015767826,-0.024491016,-0.02486109,0.0017363774,-0.0024748747,0.0073882774,0.0050687017,-0.011908475,-0.018160095,-0.008557978,0.005732854,0.009403863,-0.006773689,-0.006938901,0.0023245318,-0.0026797375,0.0033587585,0.0028300802,-0.0033521499,0.037245378,-0.029526675,-0.01050087,-0.013705981,0.00039568255,0.00014342461,0.009555858,0.008366331,0.039333656,0.013587029,-0.026711464,0.025944881,0.002217144,0.024372064,0.009714461,0.018543387,-0.006334225,-0.016851617,0.007494013,-0.018741641,-0.014247877,-0.0008227554,0.0027656476,-0.0034826673,-0.009787154,0.0107586,0.013177303,0.015477053,0.009232042,-0.017935406,-0.021966577,0.033703234,-0.0024302674,0.01549027,-0.000927665,0.009998626,0.0044904603,-0.024808222,0.03322742,0.0071173296,-0.009562466,-0.014789771,-0.013355732,-0.011663962,-0.030954106,-0.02624887,-0.024649618,-0.011875433,-0.015688524,0.009608725,0.0067538633,-0.008379549,0.006278053,0.011016331,-0.013051742,0.0105867805,-0.008075559,-0.0015538181,-0.015860345,-0.001966022,-0.01410249,-0.005805547,-0.037615452,0.035130665,0.01856982,-0.034364082,-0.026499992,-0.0054288637,-0.022680294,0.0004766364,-0.021054607,0.01397032,0.037721187,0.009364212,0.0103819175,0.03943939,0.005124874,0.039148618,-0.026460342,0.0027821688,-0.010150621,-0.007930173,-0.027015453,-0.003462842,-0.030954106,-0.0019908038,0.027279792,0.03558004,0.008313464,0.036108717,-0.014459347,0.006330921,0.014009971,0.012093513,-0.007844262,-0.0073486264,0.018820943,-0.037377547,-0.0031538957,-0.0062978785,0.010791643,0.0011465708,-0.00759314,0.0038130912,-0.010091145,-0.0062317937,-0.013560595,-0.0077120927,-0.030557597,-0.002131234,0.0005790678,0.024623185,-0.007817828,0.0027821688,0.0041534277,-0.02942094,0.01670623,0.024755355,-0.0015191237,-0.005736158,0.024266327,-0.0322758,-0.009251867,0.005544512,0.026883284,-0.0024864394,-0.007798003,-0.018794509,-0.012073687,-0.016560843,0.008650497,-0.0044970685,-0.011069199,0.018146878,0.00260374,-0.0037635276,0.0137984995,-0.012483413,-0.010738775,-0.0035784903,-0.0031192012,-0.0067340382,-0.004368203,-0.03674313,0.007996257,0.017710717,0.0033670191,0.025839144,0.21739246,-0.009106481,-0.007143764,0.06317704,0.008670322,0.0161379,0.022812463,-0.002618609,-0.02208553,0.009727678,0.013514335,0.007216457,-0.020843137,-0.007771569,-0.014380046,-0.031350616,-0.024451364,-0.010639648,-0.02968528,-0.0026764332,0.01609825,0.011848999,-0.03267231,-0.010910596,0.020988522,-0.016600493,-0.008339898,-0.0030233783,0.020671315,0.01843765,-0.028363584,0.004074126,0.0054222555,-0.0029969444,-0.019191017,-0.009965584,-0.007646008,-0.0073354095,0.01731421,0.045651358,0.0002746648,0.018794509,0.0007806263,-0.0021163647,0.0033339767,-0.01227855,-0.0036412708,-0.004450809,-0.028046377,0.016309721,-0.019719696,-0.020658098,0.02252169,0.020856353,-0.0058815447,-0.008610846,0.0039254352,-0.004612717,-0.022363085,0.013084784,0.013838151,0.019415705,0.0010441394,-0.0014621256,-0.054982528,-0.004457418,-0.027993508,0.02026159,-0.0024187025,0.00906683,-0.006439961,0.004982792,-0.018252613,0.014829422,-0.021596503,-0.013917453,0.009747503,0.028495753,0.028786525,0.0064796116,-0.024160592,0.0066745616,-0.006056669,-0.03232867,0.0036214453,-0.023843385,0.022799246,0.008961095,-0.003770136,0.010262964,-0.006195447,-0.0014852552,-0.021266079,-0.020618448,-0.012615583,0.008353115,0.028416451,0.016415456,-0.016983787,-0.018556604,-0.019931167,0.023843385,-0.009628551,-0.004338465,-0.007963215,-0.027887773,0.012642017,0.03145635,0.018067576,-0.014089273,0.007137155,-0.033174556,0.0160586,0.0031125927,0.011340147,0.026843634,0.016772315,0.0037536148,-0.009608725,0.015675308,0.01619077,-0.015952863,-0.0075006215,-0.0057592876,0.00025835013,-0.020169072,0.00042624676,-0.0006443265,-0.001039183,-0.046365075,0.020948872,-0.006700996,0.0015257321,-0.01531845,-0.023962338,-0.016402239,-0.010639648,-0.02060523,-0.012721318,-0.0075600976,-0.023922687,0.019415705,0.019032413,-0.018371565,-0.002397225,-0.0321965,-0.0014571692,0.0051050484,-0.016719447,0.026010966,-0.0088091,0.0031902422,0.0013117826,-0.013124435,0.021556852,-0.011406232,-0.052074797,-0.031641386,0.024239894,-0.0027507786,-0.028627923,-0.006387093,0.01562244,-0.022746379,-0.035765078,-0.008075559,-0.16843686,0.027147623,-0.018477302,-0.009562466,0.018596254,-0.006221881,0.002246882,0.0047184527,-0.027914207,0.0046854103,0.02060523,-0.0010961811,-0.029526675,0.016045382,0.029235901,-0.009317952,-0.019402489,0.012979048,0.026129918,0.015582789,0.0071569807,-0.005194263,0.0020155855,0.016640145,0.016389024,-0.0052339137,-0.007692267,-0.011815957,0.020512713,-0.011016331,-0.02942094,-0.0009607073,0.016375806,0.038804978,0.0110824155,0.003489276,-0.0014365177,0.002426963,-0.0024484408,0.02738553,-0.0067935144,0.004929924,0.0011160065,0.03179999,0.008617454,0.030346125,0.03896358,0.006489524,-0.019812213,-0.0014579953,0.02320897,-0.020710967,-0.016045382,0.008577803,0.0229975,0.03544787,-0.0085711945,-0.0055511207,-0.0074874046,-0.013203737,-0.0028895566,-0.015067328,0.011683787,-0.018953111,-0.011049373,-0.0015480358,-0.0043979413,-0.016375806,-0.0035157097,0.0043781158,0.013983537,-0.024702488,0.015305232,0.013223562,0.017961841,0.0011870477,-0.036002982,0.005498253,-0.0080293,-0.004734974,0.0023939207,0.028257847,-0.0098664565,0.01484264,0.00047457125,-0.0052834773,0.021451116,-0.008597628,-0.007024811,-0.04255859,0.004421071,0.0064333524,-0.009549249,-0.0199576,0.011564835,0.024543883,0.025588023,-0.0018900244,0.010507478,-0.009403863,0.021041391,0.017340643,-0.03639949,0.010157229,0.028892262,0.0020750617,0.0053528664,0.0019676741,0.010824685,-0.016494758,-0.032778047,0.0020238461,0.015754608,0.04004737,-0.005296694,0.015609222,-0.01991795,-0.0002273729,0.019111715,-0.014459347,0.044805475,-0.008643888,-0.010163837,0.016177552,-0.020129422,-0.0026681726,-0.113454334,-0.018596254,-0.012622191,-0.010289399,-0.015873563,0.022587774,-0.0033323246,0.03634662,0.0014943419,0.035130665,-0.0033835403,-0.037377547,-0.015397752,-0.009939149,-0.004434288,-0.002618609,-0.000070215065,-0.014221443,0.016177552,0.023539394,-0.029130166,-0.014300744,0.0007261064,-0.014974809,-0.034813456,-0.01982543,-0.013639896,0.0057692,-0.00039526954,0.0072891503,0.021318946,-0.004308727,0.008346506,-0.028019942,-0.00050926575,-0.0053297365,-0.018887026,-0.016772315,0.01319052,-0.021794757,-0.0053859088,0.0014464303,0.009020571,-0.017842887,-0.016560843,0.0045235027,0.007758352,0.011102241,0.015754608,-0.031429917,-0.017552115,-0.009608725,-0.008954486,-0.031059843,0.0075468807,0.015265582,0.0033571064,0.019851865,-0.0064366567,0.0150937615,-0.005663465,-0.02590523,-0.029341638,0.006747255,0.0077847857,0.005471819,-0.016203985,-0.009218825,0.007956606,0.004156732,0.0049860957,0.021900492,-0.011042765,0.030584032,-0.012265333,-0.0046358467,0.0021064521,-0.035262834,0.01856982,0.015106978,-0.0004890273,-0.010243139,0.012384286,-0.0044706347,0.0125627145,-0.01822618,0.01627007,0.0062714447,0.0071173296,-0.031482786,0.0027854731,0.009833414,0.023975555,-0.0017925494,0.004616021,0.0023493136,-0.0031770254,-0.017737152,0.032513708,-0.0012316549,-0.011366581,-0.004837405,-0.03380897,0.035289265,-0.0020007165,-0.011644136,0.019362837,-0.00618223,0.0016529453,-0.009707852,-0.038910713,-0.015027677,0.0029424243,0.028627923,0.0002560785,-0.012040645,0.0009838371,-0.019587526,0.023843385,-0.0014307352,-0.0027706039,0.017684285,0.004278989,0.007302367,0.02248204,0.0134680765,0.018635904,0.015675308,0.011789523,0.01410249,-0.00011657766,-0.015410968,-0.012166206,-0.010124187,0.00033228248,0.015159846,0.0074477536,-0.020512713,-0.010884161,0.01202082,-0.00026206742,0.006169013,0.009271693,-0.017604982,-0.0091461325,-0.023896253,-0.02550872,-0.042214952,-0.017261341,0.0035322309,0.0168384,-0.0041501233,0.027359094,0.015635656,-0.027094755,-0.0021031478,-0.0025013085,-0.027993508,0.01579426,-0.008253988,0.0061194496,-0.03795909,0.027596999,-0.0025607848,0.015265582,-0.033465326,0.019072065,0.0147236865,-0.03314812,0.018741641,0.02854862,-0.040126674,-0.008604237,0.005389213,0.0020403673,-0.015331667,0.025165081,0.02738553,0.004477243,-0.020486278,-0.022230916,-0.0018933286,-0.00006680757,0.0048142755,-0.038196996,0.018543387,0.023195755,0.021596503,-0.0031010278,0.0023592263,-0.0070115943,-0.0014290832,-0.020896005,0.0033587585,-0.004616021,0.0018718512,0.03341246,0.030821936,-0.030716201,0.012040645,0.023156103,0.013038525,0.020843137,-0.0040939515,0.013613462,0.006578739,0.0130980015,0.0048968815,-0.010269573,-0.031429917,0.0306369,0.024847873,-0.0012167859,0.005491644,0.005557729,0.011042765,-0.021543635,0.022600992,-0.0019296752,-0.032593008,-0.007877304,0.01549027,0.020446628,0.01366633,0.009390646,-0.019944383,0.04586283,0.011472316,0.0018718512,-0.036108717,-0.003766832,-0.00078847393,-0.014261093,-0.008650497,0.000020419162,-0.0072362823,0.011789523,-0.0064069186,-0.023883035,0.020539146,0.0034331037,0.052603476,0.02746483,0.0071305465,-0.002022194,0.028390016,0.023486527,0.015371317,0.009099873,-0.0065060453,-0.011531793,0.010778426,0.0015604267,0.022336653,-0.015913213,-0.029024431,-0.005432168,0.0022187962,0.03193216,-0.01866234,-0.013137653,0.012681668,-0.0031109406,0.010870945,0.0075006215,-0.015860345,0.0071305465,-0.0019280232,0.022600992,-0.012067079,-0.0007459318,0.0020948872,0.014485781,-0.0042492505,0.0077120927,-0.009370821,-0.00924526,0.0037932657,0.0072957585,-0.011089024,-0.007137155,-0.0060467566,0.009998626,-0.0068397736,-0.016256854,-0.021530418,0.0039683906,-0.019798998,0.007864088,-0.02647356]},{\"id\":\"cfde4725-ef43-489b-825b-567e78558401\",\"text\":\"I barely got paid anything and went out of my comfort zone. \",\"vector\":[-0.018319668,-0.030914439,0.016315954,-0.03299622,-0.015717443,0.008385672,-0.01396094,-0.004579917,-0.004892184,-0.044576123,0.003831777,0.013687707,0.0056305653,-0.020271337,0.008340132,0.0013328274,0.019100334,0.005324804,-0.011267637,-0.019594759,-0.031226706,0.007605004,-0.017539,0.018267624,-0.008079911,-0.020986948,0.022066873,0.00019201578,0.037081715,-0.0064632776,0.015535287,-0.009894962,0.00085060246,-0.006368947,-0.03218953,-0.018423757,0.010870798,0.014598485,-0.0047360505,-0.010708158,0.0060208994,0.017226733,-0.004144044,-0.0068308422,-0.019347547,0.006993481,-0.01130667,-0.018501824,-0.0147546185,0.0025599394,0.006567367,-0.00499302,-0.0166022,-0.020427471,-0.016914466,0.01396094,0.023849398,0.018033423,0.013173766,-0.008040877,-0.018085467,0.008307605,-0.018137513,-0.010851281,0.00017585352,-0.01662822,-0.01696651,-0.006193297,-0.024721142,-0.013076183,0.02066167,0.0058517545,0.014936775,0.0031356819,0.038148627,0.0033991572,0.0023696516,0.0011368473,0.0055655097,-0.009010206,0.0070650424,-0.0039911633,-0.014702574,-0.0016312702,0.021286204,0.00194679,-0.007637532,0.0026802924,-0.019516692,-0.015131941,0.021012971,0.0071821427,0.008203516,0.018905168,-0.019204425,-0.0016581055,0.023276908,0.032735996,0.004732798,-0.019139368,-0.0102852965,0.009276934,-0.01557432,-0.013973951,-0.030862395,-0.0065966416,0.0025046421,-0.0070910645,0.020349404,-0.0084182,-0.009550167,0.029665371,0.012607783,-0.042546388,0.0070455256,-0.016563166,-0.010246263,-0.0021858695,0.016823389,-0.015535287,0.0075269374,0.008105933,0.026477644,0.015027853,0.011222098,0.0055590044,0.00036512478,-0.030185817,0.015053875,0.0020980444,0.003818766,0.0091208005,0.028442325,0.0011864522,0.0009571311,0.0043262,-0.027635636,-0.022665385,-0.0024509712,0.0019386581,0.014273207,0.033646777,0.003207243,0.0015954896,0.011618937,-0.017278777,0.016341977,-0.013479528,-0.008749983,-0.014715585,0.014338262,-0.0077416208,0.010948864,-0.010337341,-0.0047067753,0.0068373475,-0.018657956,0.010825259,0.0009709554,-0.020219292,-0.00042530123,0.023810364,0.012776927,-0.015418186,-0.007429354,0.01904829,0.017695135,0.0056793573,-0.008333627,-0.005724896,-0.0075594652,0.01567841,-0.005175176,0.008678422,-0.0070585366,0.023693264,0.002483499,0.000013049246,-0.014234174,-0.036639336,-0.022431184,-0.008782512,0.01938658,0.02054457,0.011358715,-0.027973924,0.0056012906,-0.0051068678,0.007650543,0.0037374464,-0.013206295,0.009231395,-0.034635622,0.0061965496,-0.67199874,-0.009166339,-0.004072483,0.020453492,-0.00087581156,0.0015784124,-0.005676104,0.0031210443,-0.016680265,0.034557555,-0.018306656,-0.0026802924,0.009322473,-0.006739764,0.00585826,-0.016810376,0.03354269,-0.020102192,-0.01822859,0.012399605,-0.014338262,0.029066859,-0.0006143692,0.009667268,0.018527845,-0.016810376,0.010610575,-0.016420044,-0.010955369,0.021975795,0.014988819,0.0254888,0.009940501,0.01534012,0.07281027,-0.01869699,0.0064567723,-0.009276934,0.0136616845,0.035156067,-0.0440817,-0.023159808,-0.016120788,-0.018046435,-0.00040558123,-0.013440494,0.014234174,0.013264844,0.020804793,0.022079883,0.0050971094,0.014338262,-0.014247185,0.0013905643,0.0059753605,-0.02088286,-0.0018020412,-0.011131019,-0.005985119,0.014572463,-0.02423973,-0.0060176468,-0.022079883,-0.022574307,-0.018306656,0.029925594,0.011755554,0.0007607444,0.019477658,-0.002283453,0.008912622,0.027297346,-0.005789952,0.021143083,0.0065283333,0.0032007373,0.016433055,-0.0104804635,-0.00951764,0.004277408,0.010545519,-0.014468374,-0.022340106,0.008906117,0.020167248,-0.014403318,-0.019815948,-0.00080221734,0.008040877,-0.021780627,-0.0057053794,0.03739398,-0.005061329,-0.008444222,0.0063331663,0.0054809377,-0.0032641666,0.0041082636,0.020271337,-0.033074286,0.0010238132,0.004801106,0.027765747,-0.006294133,0.009960018,-0.009999052,0.0006123362,-0.0050483174,0.040516652,-0.020986948,-0.006164022,0.010226746,0.0008294594,-0.007474893,-0.0066747083,-0.032007374,0.014455363,0.0041212747,0.019282492,-0.016706288,-0.01717469,0.018293645,0.035806622,-0.008522289,-0.005119879,-0.0047425563,0.011039942,-0.010044591,-0.0027941396,0.010025074,-0.00024070586,-0.0025599394,0.015964653,-0.018501824,0.009257417,-0.006960953,0.012939567,-0.011644959,0.0018101732,-0.040022228,-0.01937357,0.0018280634,-0.015196997,-0.0044693225,0.008249055,-0.024773188,0.013973951,0.012776927,0.021038994,0.032319643,0.002982801,-0.0051914398,-0.026048278,-0.0061022188,0.006713742,-0.007910766,-0.016940488,-0.0043001776,-0.024473932,-0.022236018,-0.010051096,0.0060046352,-0.01337544,-0.00047327977,-0.015821531,-0.004404267,-0.012145888,0.006655192,-0.0055557517,-0.020687694,-0.002229782,-0.020960927,-0.001419026,0.008528794,0.02308174,0.013921906,0.017226733,-0.0014564331,-0.012191427,-0.0010465826,0.0087695,-0.000024980349,0.009094778,0.010974886,0.034167223,-0.0076440377,-0.014052018,0.029613327,-0.013173766,0.013401462,0.006638928,-0.036405135,-0.006967459,0.0073122536,-0.0029421411,-0.004638467,0.03424529,0.0006037977,0.017083611,0.012328044,-0.0043782443,0.01429923,0.0030169552,0.014845696,0.015262052,-0.028780615,0.0008782511,-0.03661331,-0.0026884242,0.023563152,0.017096622,-0.016367998,0.01580852,-0.013440494,0.014780641,0.027297346,-0.008118943,0.017278777,0.0035422796,0.030524105,-0.023146797,-0.013518562,0.00089776784,-0.0070129978,0.010571541,-0.006339672,0.0063169026,-0.013648673,0.012770422,-0.0046905116,-0.020349404,0.0124711655,-0.0029405148,0.012490682,0.012900533,0.00715612,0.006043669,-0.00039033382,0.019659813,-0.015418186,-0.019191414,0.013076183,0.027505524,0.00014546035,0.006238836,0.004905195,0.026880989,-0.01396094,-0.04556497,0.013264844,0.0020817805,0.0265427,-0.0267769,0.0023224864,0.0048303814,-0.028208125,-0.0048433924,0.011527859,0.021182116,0.03114864,0.0034349377,-0.0018166787,0.012022282,-0.03978803,0.02859846,-0.0041798246,0.008938645,-0.013167261,0.008554816,0.011638454,0.014260196,-0.009407045,-0.02192375,-0.014351274,0.023354974,0.0026298743,-0.0073057483,-0.023836385,0.022053862,-0.005126384,-0.007819688,-0.006759281,0.015170975,0.009433067,-0.0018849871,-0.0016312702,0.005295529,0.010890313,0.011183064,0.010408903,-0.009530651,0.006111977,0.010929347,0.008854073,0.0021972542,0.0077351155,0.049416263,-0.02158546,-0.0015223019,-0.024499953,0.022691406,-0.006124988,-0.009914479,-0.002520906,0.03887725,0.025944188,-0.005776941,-0.014533429,-0.01649811,-0.013544584,0.018332679,0.014624507,0.016107775,0.01661521,0.0094590895,-0.019360557,-0.0031958583,0.012796444,0.017057588,0.003431685,0.0002520906,-0.0036919075,-0.04142743,-0.0035325212,0.10237155,0.020440482,0.0031047803,0.0065836306,0.0057183905,-0.017434912,-0.015196997,-0.020791782,0.01217191,-0.007975821,0.027323369,-0.031226706,0.015860565,0.0073187593,0.033308487,-0.019308513,-0.014234174,-0.036249,0.009250912,-0.014012985,-0.005952591,0.001048209,0.01165797,0.02617839,-0.0056143017,0.022418173,0.027739724,0.012510199,0.015027853,-0.012939567,0.00007084966,-0.007221176,-0.013076183,0.004745809,0.0091208005,0.011007414,0.0070520313,0.003669138,0.02516352,0.0018817344,0.036249,0.006700731,-0.0019532954,-0.029379126,0.0075204317,-0.036170933,-0.009042733,0.035572425,0.0011872654,-0.016693277,0.023953486,0.020687694,-0.012841983,-0.008333627,0.01488473,0.006960953,0.0016467208,-0.011176558,-0.014286218,0.024525976,-0.0055590044,-0.032735996,0.015873576,-0.018488813,-0.022314085,-0.03057615,0.0013336405,0.018931191,-0.029040838,0.002691677,-0.010922842,-0.022444196,-0.026204411,-0.017096622,0.024083598,-0.0075724763,-0.00008477563,-0.004605939,0.0039879107,0.0059623495,0.01476763,-0.009647751,-0.006238836,-0.006072944,-0.002237914,0.015730454,0.008743478,0.012165404,0.0012978599,-0.0065250807,-0.0036788962,0.0154832415,-0.0066161584,-0.034687668,0.009641246,0.0021565943,-0.011397748,0.02053156,-0.000034840345,0.015769487,0.014832686,-0.009511135,-0.0072602094,0.008782512,0.007956305,0.00048141173,0.010669124,0.010688641,-0.011560387,-0.019503681,0.019854981,-0.010311319,-0.0013336405,0.0140259955,-0.0034934878,0.010070613,-0.009322473,0.035624467,0.0092379,0.009615223,-0.015157964,-0.018371712,0.025709989,0.043743413,-0.025410732,-0.0017337328,0.009582696,-0.027843812,-0.016654244,-0.020687694,-0.002059011,0.021767616,-0.018332679,-0.004905195,-0.026256455,-0.008288088,-0.005324804,-0.018293645,-0.0091923615,-0.031773172,-0.012295515,-0.0092379,0.003711424,-0.014624507,0.008281583,-0.03585867,-0.029275037,0.00085954764,-0.03010775,0.037810337,0.00481737,-0.008541806,-0.009615223,0.0015946763,-0.025696978,-0.027999947,-0.017044578,-0.0077155987,0.010246263,0.01720071,0.023927463,-0.0027860077,0.027427457,0.01626391,-0.005246737,0.011651465,0.015053875,-0.00038138867,-0.014936775,0.043196943,0.005500454,0.025527833,0.011697004,-0.025020398,0.0032479027,-0.0025615657,-0.000081929444,0.0022915849,-0.020466505,-0.008645894,0.017395878,-0.014832686,-0.0044205305,-0.0047815894,-0.00871095,-0.018553868,0.03622298,-0.0040464606,0.0064047277,0.0008538553,0.025176533,-0.0073577925,0.01868398,-0.0040041744,-0.001506038,-0.015366142,-0.033620752,-0.026451623,-0.007422848,-0.0003976526,0.009381023,0.020596616,-0.007884744,-0.0032576611,-0.022470217,0.01338845,0.0069284253,-0.008424705,0.0046156975,-0.019646803,0.02032338,-0.029743439,0.00044481794,-0.0042611444,-0.010298308,-0.0012702113,-0.029066859,0.010695147,-0.0040985052,-0.0173048,-0.0025469281,0.0009546915,-0.012698861,-0.009842918,0.014676552,0.0029762955,-0.015092908,-0.027765747,0.011723026,0.012523211,0.00031978913,0.014143095,0.020713715,-0.025371699,-0.006473036,-0.01182061,0.014780641,-0.028988792,-0.027323369,0.013869862,0.018775057,-0.011404254,-0.020050148,-0.0056175543,-0.03013377,0.03440142,-0.008268571,0.0006749522,0.010135668,-0.027973924,0.0109423585,0.011033436,0.014819674,0.023862408,0.003711424,-0.00012045458,-0.0131022055,-0.0053378153,0.008216527,0.02585311,0.00438475,0.023341963,-0.011963732,0.031226706,-0.006040416,0.005201198,-0.00026286545,-0.016706288,-0.01557432,0.016185842,-0.005897294,-0.01972487,-0.004391256,0.00668772,-0.00006220945,0.023263896,-0.014169118,-0.030706262,0.0054516625,0.016823389,-0.002841305,0.0068568643,-0.0008896359,-0.008249055,-0.030914439,-0.019998103,0.0039130966,-0.0023013433,0.005991624,-0.014273207,0.0005537861,-0.015053875,0.0153140975,-0.0024721143,-0.0067787976,0.01869699,0.01275741,0.0028347995,-0.019243458,0.024421887,0.0064047277,0.011521353,-0.016706288,-0.0070064925,-0.02031037,-0.0011775071,0.020518549,-0.020492526,-0.03182522,-0.018970225,-0.0069999867,0.01881409,0.0066747083,0.009530651,0.025670955,0.00813846,0.0047067753,-0.034921866,0.013531573,0.015183986,-0.0028868439,-0.008626377,-0.004082241,-0.0153140975,-0.033750866,-0.017291788,0.02192375,-0.025072442,-0.03723785,0.009433067,0.010064107,0.025306644,-0.016459076,-0.033516664,-0.024421887,0.009172845,0.003316211,0.028364258,0.013583617,-0.0042676497,0.004833634,0.016068744,0.010083624,0.0036561268,0.0075204317,0.0064892997,-0.00008802841,0.01061708,-0.010395891,0.002242793,-0.0049019423,0.01649811,-0.0026315006,-0.025970211,-0.03356871,-0.017135656,-0.054646738,0.005715138,-0.008034372,0.014975808,0.030081727,0.00035252023,-0.017395878,0.018931191,0.0076895766,-0.0015442582,-0.022561295,-0.0026900508,0.00032060232,-0.009738829,-0.0027225784,0.0027811285,-0.032735996,0.0024412128,0.03034195,0.018618925,0.012054809,0.009003701,-0.031695105,0.014637519,0.025345678,0.019087324,0.0154832415,-0.005158912,0.034323353,-0.03161704,-0.008782512,0.009094778,0.0016459076,-0.00585826,-0.024786199,0.026933035,0.009250912,0.011007414,-0.009361506,-0.024252743,-0.012054809,-0.02053156,-0.012750905,-0.0041993414,-0.018918179,0.02479921,0.0060046352,-0.016810376,0.0029632843,-0.0039261077,-0.018983236,-0.0037699742,0.00709757,-0.015157964,-0.0043749916,-0.009101284,0.03221555,0.006378705,0.012809455,-0.02943117,-0.0024737406,0.013778784,0.0025257852,0.00629088,-0.019685837,0.013518562,-0.0027111936,-0.0055069597,-0.0053573316,-0.036144912,0.0024916308,-0.04059472,-0.02919697,0.01258176,-0.00021224402,-0.044914413,-0.002467235,0.01217191,-0.0023436295,0.020219292,0.24440102,0.0009563179,0.0005208517,0.0055590044,-0.0006460838,0.027323369,-0.0015588957,-0.015639376,0.011872654,0.014897741,-0.028754592,0.009745334,-0.0005049944,-0.018788068,0.0089256335,-0.006772292,-0.020752748,0.0030999011,-0.007897754,-0.010083624,0.0147546185,0.0048856786,-0.0143903075,-0.008789017,0.035988778,0.0075139264,-0.008600355,-0.0010132416,0.015457219,-0.0048303814,-0.00051515934,-0.013804806,0.014624507,-0.023810364,-0.0023062224,0.009686785,0.016563166,-0.0044498057,-0.0084182,0.021871706,0.014273207,-0.0059688548,0.019139368,-0.016185842,0.005236979,0.03921554,-0.0022167708,-0.015327108,-0.014962797,0.013180273,-0.010239758,0.00461895,0.02792188,0.01476763,-0.013713729,0.009999052,0.03346462,-0.011794588,-0.0260743,0.004446553,0.009322473,-0.0061217356,-0.009055745,0.01441633,-0.022600329,0.0059721074,0.018150523,0.011449792,0.012562244,0.0024493448,-0.0019598012,0.011618937,-0.025566867,-0.0027111936,-0.03552038,-0.017343834,0.023159808,0.018657956,0.01994606,0.019126358,0.006707236,-0.0132258115,0.0077611376,-0.031955328,-0.011586409,-0.042884678,0.019750891,0.0052239676,-0.0036463686,-0.0072797257,0.0032609138,-0.0042741555,-0.028936747,-0.010207229,0.013583617,0.003477224,0.0036626325,0.020921893,-0.021169106,-0.0037764797,-0.0045734113,-0.034193244,0.008223033,0.012262988,-0.003444696,-0.0023436295,0.00027628316,0.03575458,0.021624494,-0.04246832,0.011521353,-0.018215578,-0.0025892144,-0.0035292683,-0.0017548759,0.010532508,0.0066486862,-0.007117087,0.02377133,-0.03796647,-0.009498123,-0.024031553,-0.0029844274,0.005328057,-0.0060046352,-0.006707236,-0.00692192,0.0068048197,0.005715138,-0.03104455,0.031174662,-0.0036528741,0.020089181,-0.01962078,-0.016016698,0.023446051,0.007800171,0.018957213,-0.01915238,0.00006276853,0.0065088165,0.019789925,0.026490657,-0.0007871732,-0.0051654177,-0.02826017,0.039683938,0.0038838217,0.002037868,0.015717443,-0.0171877,-0.0008855699,-0.0061379997,-0.0048824255,0.033490643,-0.023849398,-0.026360545,-0.022899585,-0.016823389,0.01171652,-0.026828945,-0.0054223873,0.050274998,-0.0048271283,-0.019074313,0.0034999934,-0.16550155,0.017539,-0.001967933,-0.004101758,0.025241587,-0.006427497,-0.0049832617,-0.003698413,-0.02943117,-0.00092460326,0.00686337,0.0044010137,0.015262052,0.001954922,0.00062860013,0.005985119,-0.0009522519,0.0037959965,0.033386555,0.010389386,0.029951615,0.017018555,0.0017565022,-0.020622637,0.033100307,0.014520419,-0.0021663527,0.009953513,-0.008450727,-0.0125687495,-0.028364258,0.018723013,-0.0073903203,0.01234756,0.033516664,0.027557569,0.0041407915,0.0039130966,-0.00831411,0.0038805688,0.011885665,0.010415408,-0.01372674,-0.0051686703,-0.021676539,0.034089155,0.011215592,-0.0013970698,-0.005328057,0.025436755,0.004872667,-0.023810364,0.01580852,0.0012628926,0.004631961,0.023341963,0.015196997,0.011254625,-0.0046287086,-0.012243471,-0.0037081714,-0.013082689,0.008723961,0.013323395,-0.011274142,-0.020102192,0.019243458,-0.0023208598,-0.022340106,0.010597563,0.016420044,-0.031695105,-0.013238822,0.0019419108,0.0031942318,-0.008450727,0.006365694,0.0053898594,-0.007871732,0.008379166,0.00060420425,0.03989212,-0.00981039,0.009784368,0.0031519458,0.022405162,0.005936327,0.023680253,0.015522275,-0.016706288,0.019087324,0.0021159346,-0.020401448,-0.0030478567,-0.0018996246,0.02157245,0.015392164,0.0023241127,-0.0032479027,-0.016003687,0.01717469,0.013791795,-0.024890287,0.018892158,0.024643077,0.0044335416,0.0021435833,0.015730454,0.0065511027,-0.021364272,-0.019425614,-0.014793652,0.0060534272,0.028520392,0.023498097,0.021884717,0.02828619,-0.02158546,0.011196075,-0.032345664,0.039033383,-0.0052890233,-0.043431144,-0.005354079,-0.0029405148,-0.00045904884,-0.1299031,-0.028806636,0.0020004609,0.0024721143,0.0070715477,0.008281583,-0.016940488,0.008938645,-0.01926948,0.025189543,0.003473971,-0.01107247,-0.015535287,-0.009081767,0.0070715477,-0.015548297,0.02758359,-0.018644946,-0.0184758,0.025085455,-0.024044564,-0.012080832,-0.009615223,-0.0028933496,-0.008053888,-0.004290419,-0.017565023,0.018592902,-0.009498123,0.009211878,0.0014052017,-0.009842918,0.015561309,-0.021312227,0.008522289,0.0073187593,-0.031434886,-0.025371699,0.00066682027,-0.010916336,0.020336393,0.03505198,-0.008040877,-0.02237914,-0.009660763,0.005441904,0.0024282017,0.015626363,0.027739724,-0.015262052,-0.016172832,-0.0069284253,-0.02423973,0.0021029236,0.02019327,0.011267637,0.005698874,0.01580852,-0.004189583,0.0065218275,0.008541806,-0.020115204,-0.0075399484,0.009446079,0.015795508,-0.015860565,-0.028182102,-0.012282505,-0.0109423585,-0.009992546,-0.005978613,0.0101161515,-0.034089155,0.018631935,-0.010467452,-0.005877777,-0.03034195,-0.026386566,-0.0024038057,-0.011300164,-0.024838243,-0.006889392,-0.00074854644,-0.040126316,0.032319643,-0.0005745226,0.007663554,0.0039651413,-0.013934918,0.013186778,-0.019581746,0.011644959,0.0038577993,-0.018527845,0.015196997,0.0007953052,-0.025033409,-0.013427484,0.0013116843,-0.010864291,-0.0029421411,-0.005415882,-0.011261131,0.026802924,-0.00011567706,-0.009511135,0.018566879,-0.00871095,-0.0061412524,-0.0020638902,-0.020271337,-0.027609613,-0.037862383,0.007383815,-0.017486956,-0.013752762,-0.0014287845,-0.023719287,0.004105011,0.0020411205,-0.0018134259,0.010083624,-0.0048368867,-0.04030847,0.014533429,-0.0012051557,0.0051361425,0.004940976,-0.0014385429,0.009498123,0.000509467,-0.0064502666,0.012139382,-0.024031553,0.017213723,0.006560861,-0.0076895766,-0.014715585,0.007149615,0.014052018,-0.006622664,0.011768565,-0.026009245,-0.025436755,0.008815039,-0.020908883,-0.024083598,-0.016120788,-0.008229538,-0.0024119378,0.014052018,-0.00904924,0.011222098,0.020336393,-0.012380088,0.00016568857,-0.016055731,-0.002803898,0.0044237836,-0.0040985052,-0.025475789,-0.03539027,0.026828945,0.015899599,0.0012921676,-0.02435683,0.015860565,-0.011931204,-0.016146809,-0.0070910645,0.01488473,-0.020479515,-0.0039261077,-0.0000847248,0.016693277,0.00904924,0.007618015,0.0123020215,0.0116709815,0.008906117,-0.01776019,0.01441633,0.008990689,-0.0012067821,-0.0136616845,0.011989754,0.013739751,0.029170949,-0.010454441,0.0041733193,0.008489761,0.0013181899,-0.023237875,0.007201659,0.0070715477,-0.010168197,0.032397706,0.04915604,0.016576177,0.0099470075,-0.011736037,0.009328978,0.028572436,0.0018361954,0.004534378,0.0024477183,-0.00017666671,0.024291776,-0.02987355,-0.004631961,0.0119377095,0.02538471,0.010688641,0.0072667147,-0.01384384,0.017864278,0.0058550076,-0.0022736946,0.017578034,-0.030758306,-0.009628234,0.023524119,0.022587318,0.028910726,0.0120092705,-0.026334522,0.03104455,0.0011685619,0.0005106868,0.0029096135,-0.0056923684,0.0007200846,-0.009309462,-0.0004137132,-0.020830816,-0.014780641,0.032033395,-0.0073057483,-0.017968368,-0.0032479027,0.0008782511,0.022535274,0.0003567895,-0.0058745244,0.009166339,0.006427497,-0.006378705,0.023237875,0.0020492526,0.008502772,-0.017044578,0.01962078,-0.012386594,0.004397761,-0.02745348,-0.0068243365,-0.013791795,0.007188648,0.010688641,-0.0034967405,-0.000020609423,0.023211852,0.011462804,0.024538986,-0.004056219,0.007956305,-0.014104063,0.0061087245,0.034089155,-0.0059883716,-0.021702562,0.022444196,-0.012894028,-0.051602133,-0.00068471057,0.006170527,-0.036509223,-0.0061217356,-0.008444222,-0.020830816,0.011736037,-0.00033239365,0.032788042,-0.02943117,-0.014988819,-0.0016280174,-0.009276934,-0.014923763,-0.002758359,-0.023719287]},{\"id\":\"aa6c1541-a584-4904-a0e5-ab97a07e3eba\",\"text\":\"I have done a post and never got paid \",\"vector\":[-0.03110578,-0.0067066867,-0.011194371,-0.0184674,-0.013645209,0.0055971853,-0.020772513,-0.010823433,-0.0074253785,-0.02067978,0.007995033,0.008683917,-0.011565309,-0.011386463,0.014373837,-0.012115091,0.015685366,0.01822894,-0.02448189,-0.00088925695,-0.023196856,0.0038948462,-0.021063965,0.009041607,0.011850135,-0.02448189,0.024813084,0.0014680192,0.023753263,-0.0001354792,-0.0014324158,-0.015115713,-0.017646037,-0.026243845,-0.031185266,-0.005921756,-0.0017636102,0.010180916,-0.002959222,0.0058985725,0.01959346,0.01906355,-0.013843926,-0.018189197,-0.009326435,0.0057031675,-0.005696544,-0.026839994,-0.004560547,0.013578971,0.00044545648,-0.014161873,-0.051136415,-0.017116128,-0.002189195,0.005491203,0.018546887,0.020004142,-0.006620576,0.000062668194,-0.0048188786,-0.009511903,-0.021302424,-0.0007191058,-0.007372387,-0.014493067,-0.0068358523,-0.0066338237,-0.018281931,0.005723039,0.02472035,-0.0025601326,0.00010411924,-0.0076240953,0.01834817,-0.007577728,0.0047128964,0.015287934,-0.00075263926,-0.0055309464,0.013737944,-0.001954047,0.0053521018,-0.0028019047,0.0315827,-0.01536742,0.008796523,0.0086640455,0.002136204,-0.024866076,0.011764025,0.029542541,0.011333472,0.02252122,-0.01033989,0.026217349,0.000115814546,0.03688181,0.00839909,0.0010175948,-0.0140029,0.010803562,-0.03669634,-0.01352598,-0.02495881,0.017129375,0.0043750782,-0.013088803,0.037385225,-0.0003007659,0.0013107018,0.031529706,0.018785346,-0.033198927,0.019010559,-0.009803355,-0.0152216945,-0.011969366,-0.015420412,-0.014228111,0.027740844,0.011287105,0.017116128,0.014771271,0.018361418,0.0026959225,-0.0075644804,-0.020838752,0.018162701,0.013671705,0.0016062929,0.03264252,0.0029675018,-0.0008006625,0.006696751,0.015089217,-0.039292905,-0.0055971853,-0.010995654,-0.011452703,0.020454567,0.039398886,-0.008717037,0.00463341,0.003792176,-0.0014001244,0.005686608,-0.016943906,-0.0052891746,-0.026787004,0.0010755538,-0.00700145,0.0058853244,-0.012154834,-0.013274272,0.009147589,-0.0010142828,0.020388328,-0.007889051,-0.05516374,0.00652453,0.04247237,0.019937903,-0.019884912,-0.006935211,0.03804761,0.02543573,-0.025011802,-0.025448978,-0.013227904,-0.016705446,0.0072929007,-0.0046632173,0.019394744,-0.005921756,0.025369491,-0.011340097,-0.0047526397,0.018454153,-0.021010973,0.004795695,0.020361831,0.0052328715,0.031264752,0.004676465,-0.030416895,0.00947216,-0.027714347,0.016135791,-0.0043485826,-0.019355,0.021819087,0.0098364735,-0.0108499285,-0.65497005,-0.023634033,0.023581041,0.02407121,-0.004550611,0.02305113,-0.022004556,-0.0066503836,-0.030602362,0.0025849724,-0.01959346,0.00033243638,-0.0005626165,0.024177192,0.0059250677,-0.0074320026,0.04514842,-0.025965642,-0.0150759695,0.010406128,-0.022918653,0.008968744,-0.003855103,0.033808324,0.005458084,-0.013002693,0.014042643,-0.0067133107,-0.016361004,0.03664335,-0.005047403,0.026442561,0.0088958815,0.021116955,0.064967096,0.0027720972,-0.0073790113,0.01075057,-0.013751192,0.03436473,-0.025382739,-0.017381083,-0.0129629485,-0.014930244,0.0016568,-0.016135791,0.013320639,-0.0071802945,0.0351596,0.023024635,-0.009717244,0.016692199,-0.029410062,0.011571933,0.0071537993,0.0027638173,0.012035605,0.01548665,-0.00084495975,0.019633204,-0.020931486,-0.010041814,-0.0063721803,-0.016877666,-0.005494515,0.0062794457,-0.0036563862,0.011525565,0.010876425,0.012274065,0.008763404,0.015499898,0.0100683095,0.027979303,0.0039809565,0.01137984,0.0031761543,-0.00483875,-0.012313808,0.0026379635,-0.012168082,0.0040008286,-0.021514388,0.0064748507,0.015513146,0.023448564,-0.004669841,-0.010379633,0.01066446,-0.0030966676,-0.014016147,0.025753677,0.008531568,0.018149454,-0.0089819925,0.010697579,0.0033748709,0.019964399,0.0010474023,-0.015950322,-0.015208447,-0.0019027118,-0.0022007867,0.0071869185,0.033410892,-0.023196856,-0.007690334,-0.0021776033,0.026124615,-0.030893814,0.011340097,-0.010214035,0.004610226,0.0009629477,-0.022229768,-0.03412627,0.013479612,-0.005030843,0.0011716002,0.023819502,0.019871665,0.008352723,0.033675846,0.00672987,-0.004775823,0.014652041,-0.0056634243,-0.01746057,0.025144279,0.005322294,0.011187747,-0.0036762578,0.023422068,-0.012028981,-0.00005291348,-0.0108698,-0.0015052785,0.0064947223,-0.0019407992,-0.023448564,-0.015142208,0.029781,-0.010823433,0.01632126,-0.0063953637,-0.0309733,-0.004623474,0.0070279455,-0.0076572145,0.027555374,0.0007754089,-0.0280058,-0.028800664,-0.007975161,-0.023938732,-0.019858416,-0.004199545,-0.008856138,-0.016175535,-0.009498656,-0.0043253987,0.027899817,-0.025157526,0.005574002,-0.0118766315,-0.011015526,-0.003381495,0.0034444218,-0.006441731,-0.013711449,0.0060409857,-0.0030503005,-0.01447982,-0.014506315,0.004931485,0.002074933,0.013360382,-0.0013935005,-0.009743739,0.021434901,-0.0009952391,0.0044678124,-0.004315463,-0.010452495,0.038868975,-0.0039412132,-0.0121813305,0.06417223,-0.0130358115,0.014440076,-0.016652456,-0.02168661,-0.0042889677,0.020706274,-0.0010324985,0.010551854,0.032298077,0.015446907,0.007451874,0.028588701,-0.018215692,0.0034676054,0.01650673,-0.011598428,0.004484372,-0.03449721,-0.00014044713,-0.009061479,0.025700686,0.008074519,0.0047228322,0.0034278622,-0.0011368248,-0.0026760509,0.00019436971,0.019341754,-0.028403232,-0.0045141797,-0.00009371767,0.026230596,-0.01739433,-0.0038849104,0.0077698207,-0.014599049,0.023157112,0.0043419586,0.0028664875,-0.00872366,-0.0024607745,-0.027263923,-0.011889879,0.015168704,-0.007948666,0.015393916,0.02359429,-0.00042931075,0.009902713,0.004163114,0.021726353,-0.008021529,-0.018864833,0.0055210106,0.015738359,-0.014360589,0.016347757,0.015036226,0.0139764035,-0.03436473,-0.03325192,0.031291246,0.012611883,0.018202445,-0.032854486,-0.0010399504,0.0025866283,-0.030337408,-0.021726353,0.0084322095,0.020189611,0.010558478,0.02877417,0.012651626,-0.00017025463,-0.012737737,0.015804596,0.017434074,-0.009644381,-0.012327055,-0.00044255852,-0.021607123,-0.015208447,-0.043982618,0.004312151,-0.026005385,0.041651007,0.0045804186,0.01959346,0.0003135997,0.022229768,0.0076572145,-0.02168661,-0.015870836,0.010975783,0.019394744,0.009121094,-0.0016940593,0.00054647075,-0.011121508,-0.00320265,0.0064847865,-0.0054812673,0.00831298,0.0029327264,-0.009657629,-0.0027025463,-0.00047443598,0.04475099,0.0049414206,0.011995861,0.003725937,0.019553717,0.006554337,-0.017222108,-0.005666736,0.0065444014,0.0004914097,-0.008902506,-0.020640036,-0.006143656,0.0024044714,0.030814327,0.020322088,0.010710827,0.006564273,0.027157942,0.008094391,-0.0039809565,-0.0007762369,0.04085614,0.009803355,-0.018122958,0.019646453,-0.02758187,0.013565723,0.10333265,0.018917825,-0.015301181,0.00887601,-0.014069138,-0.00052535714,-0.015248191,-0.019686196,0.010445871,0.013539228,0.03550404,-0.006322501,-0.011359968,0.0053984686,0.026561791,-0.013923413,0.003911406,-0.009988823,0.0107042035,-0.035610024,-0.00437839,-0.011611676,0.00024156492,0.026972473,0.02162037,0.018838339,0.006570897,0.010227283,-0.01560588,0.0018298491,0.0006433451,-0.013857174,-0.0018083215,0.027502384,0.013174914,0.032933973,0.0071935426,0.0010399504,0.0020467814,0.013472988,0.014797766,0.0048122546,0.0062893815,-0.0119494945,0.0071339277,-0.020083629,0.002305113,0.032192096,0.004805631,-0.0055441945,0.017076384,-0.011452703,-0.0020053822,-0.010267027,0.019487478,0.005484579,-0.021474645,-0.02483958,-0.0044247573,0.026522048,-0.025780173,-0.049970612,-0.0018265372,-0.006309253,-0.032271583,-0.03258953,-0.003553716,0.0018149454,-0.0036332025,-0.00061312364,-0.017977232,0.013605466,-0.02805879,0.0030585802,0.031953637,-0.0065510254,0.03526558,-0.008074519,0.0073657637,0.004908301,-0.02037508,-0.04075016,-0.019818673,0.0016460362,-0.0052428073,0.01865287,0.01775202,0.004842062,-0.0043585184,-0.0050341547,0.011479198,0.012684746,0.017381083,-0.014466572,0.022243015,0.0030420206,-0.002134548,0.009054855,0.002729042,0.014466572,0.0024177192,0.005401781,-0.01756655,-0.0020799008,-0.007862555,0.0050043473,0.02758187,0.029118612,-0.020136619,-0.03001946,0.016228525,-0.00032436353,0.017765269,0.01233368,0.0019209275,0.029781,-0.013830679,0.038974956,0.008584559,-0.0068822196,-0.025660943,-0.021368664,0.028403232,0.0062993173,-0.033702344,0.009551646,-0.0016452082,-0.024269925,-0.015407164,0.010406128,0.0014059203,0.013578971,-0.0042293523,-0.012015733,-0.026349828,-0.009227077,0.0009952391,0.006037674,-0.004792383,-0.01536742,-0.020110125,-0.024693854,-0.029860487,-0.025700686,0.020176362,-0.036484376,-0.01173753,-0.0060045547,-0.0072995247,0.025886154,0.0007352516,0.004146554,-0.009107846,-0.009458913,0.00816063,-0.026071623,-0.015115713,-0.013075555,0.008154007,0.01289671,0.0073790113,0.0045241155,0.006981578,0.01679818,0.00070917,-0.011677914,0.014267855,-0.003785552,-0.017116128,0.014254607,0.00863755,0.01453281,0.010247155,0.0024475267,-0.011154627,0.012366799,-0.007842683,-0.0023200167,-0.026137862,-0.023620784,0.023673777,-0.0030320848,-0.0017354587,-0.003484165,-0.014082386,-0.024826333,0.015115713,-0.0013471332,0.014267855,0.022905406,0.0108698,0.007809564,0.00931981,-0.002313393,0.02162037,-0.014943492,-0.00986297,-0.012943077,-0.003788864,0.0077963164,0.012101844,0.026522048,-0.0226272,0.009246948,-0.028456222,0.021050716,-0.0056700483,-0.021169946,0.002190851,-0.028376736,-0.0047294563,-0.021540884,-0.011485822,-0.013645209,-0.023130618,0.0069882018,-0.011585181,0.010584973,-0.010684332,-0.031185266,-0.008107639,-0.019368248,0.0047228322,0.017553303,0.019964399,0.02882716,0.008511696,-0.02906562,0.027502384,-0.019884912,0.0035835234,0.016970402,0.0393194,-0.022150282,-0.013002693,0.013963156,0.019143036,-0.028906647,-0.023726767,0.027449392,0.0061337203,-0.01560588,-0.023064379,-0.010412752,-0.031556204,0.0035437802,-0.015287934,-0.014705031,0.0027704411,-0.006209895,-0.0036398266,0.00096377573,-0.0106180925,0.028085286,-0.00019964813,0.013141794,-0.01230056,-0.03150321,0.004851998,0.035954464,-0.012499277,0.005802526,-0.024243431,0.018957568,-0.006093977,-0.01393666,-0.01644049,-0.03258953,-0.0013082179,0.015195199,-0.01388367,0.0023233288,-0.003613331,0.011061893,-0.021116955,0.0047691995,-0.018732356,-0.036192924,-0.00032312155,-0.0038584147,0.003908094,-0.0035735876,-0.020030638,0.0074982415,-0.015884083,-0.0037126893,-0.0035735876,0.0013247776,0.010525358,-0.0017934177,0.0030320848,-0.014625545,0.013433245,0.023938732,0.00982985,0.020997725,0.011108261,0.003553716,0.0070743123,0.00780294,-0.0031281312,-0.025806667,-0.0141353775,-0.0006441731,-0.016109295,-0.024203688,0.024574624,-0.024919067,-0.027210932,-0.023859246,0.009598014,0.011777273,-0.0064748507,0.0062893815,0.031768166,0.020481061,0.012194578,-0.026204102,0.008736908,0.017195614,-0.006928587,0.00031215072,0.0217396,-0.007094184,-0.021699857,-0.039372392,0.020640036,-0.0152216945,-0.0060707936,-0.008339475,0.039027948,0.022958396,-0.024177192,-0.026469057,-0.020891743,-0.0063589327,-0.007928794,0.03730574,-0.018864833,-0.0017834819,-0.010969158,0.021991309,0.0005477127,0.003311944,0.0009977232,0.011366592,-0.020640036,0.02156738,-0.0022223145,-0.008081144,-0.02073277,0.022004556,-0.0020898366,-0.024574624,-0.0003966053,-0.023845997,-0.045704827,-0.014850757,-0.009240324,0.0141353775,0.03783565,-0.006050922,0.004434693,0.009174085,0.0033450634,0.0028664875,0.003204306,-0.004659905,-0.018878082,0.0061800876,-0.006623888,0.004693025,-0.03388781,-0.013174914,0.02282592,0.032669015,0.029754505,-0.0029343825,-0.0064947223,0.012949701,0.011207619,-0.010406128,-0.002250466,-0.0023398884,0.03788864,-0.036855314,-0.0025021737,-0.0120223565,-0.0098364735,-0.0036861936,-0.0003028359,0.020825503,-0.003841855,0.013174914,-0.0070279455,-0.0007352516,-0.014665288,-0.030469885,0.023289591,0.012585388,-0.008617679,0.021434901,0.014095634,-0.03460319,-0.015274686,0.011644796,-0.00971062,0.002308425,0.017659286,-0.0078824265,-0.009313187,0.009260195,0.012101844,-0.0087899,-0.011764025,-0.017182365,-0.009240324,0.002139516,0.01662596,0.0031844343,-0.026243845,0.003600083,-0.006382116,0.0011624923,0.006670255,-0.009558271,-0.030125443,-0.03110578,-0.017963985,0.014877252,0.022560963,-0.055587668,0.022190025,-0.015327677,-0.004626786,-0.00028275722,0.24312319,0.0049414206,-0.015976818,0.020772513,0.01834817,0.023157112,-0.00039515633,0.0057859663,-0.008101015,-0.00047567795,0.0134994835,0.0050639627,-0.016599463,-0.007213414,0.013843926,-0.01852039,-0.005968123,-0.019116541,-0.012068724,-0.01649348,0.020838752,0.01894432,-0.014387085,0.009498656,0.031423725,0.005441524,-0.012247569,-0.0033583113,0.0094456645,-0.006921963,-0.012525773,-0.0076108472,0.014969987,-0.019249018,-0.01691741,0.0074253785,0.017288348,-0.023276342,0.016533224,0.031900644,0.023090875,0.001539226,0.017884498,-0.016400747,0.0003013869,0.007908923,-0.007160423,-0.01078369,-0.0055375705,0.017738773,-0.033410892,-0.010141172,0.01441358,-0.0025634447,-0.018745603,-0.007438626,0.018056719,0.001185676,-0.033066448,0.004732768,0.015884083,0.02347506,0.0007211758,0.012028981,-0.029357072,-0.006564273,0.0046069142,-0.0055905613,0.022799423,-0.0021030845,0.016572967,-0.009982199,-0.003616643,0.009498656,-0.029436558,-0.017977232,0.017950736,0.026654525,0.045227908,-0.0006387912,-0.0009281723,-0.0008627614,-0.008962121,-0.022375494,-0.0016799836,-0.039716832,0.021991309,0.0014878908,-0.004487684,-0.0064053,-0.0064682267,0.006802733,-0.039504867,-0.017049888,-0.022362245,-0.027608365,0.020878496,0.010426,-0.019500727,-0.0047228322,-0.005567378,0.028429728,-0.0046300977,-0.0029840616,-0.012757609,0.00048851175,-0.0063191894,0.027290419,-0.0027903127,-0.01567212,0.023329334,-0.028456222,0.0012245913,-0.0079685375,-0.005381909,0.015897332,-0.016016562,-0.014148625,0.013194785,-0.0048751817,-0.018374665,-0.01834817,0.006382116,-0.0070875604,0.017805012,-0.013201409,-0.008531568,0.0062496383,0.006027738,-0.02991348,0.017765269,0.0061204727,-0.008935625,-0.005027531,-0.0123403035,0.024428898,0.008670669,0.033039954,-0.0066536954,0.007233286,-0.02073277,0.01960671,0.013234529,-0.00720679,0.0187721,-0.028111782,0.032377563,-0.003141379,-0.01865287,0.0054812673,-0.012578763,0.0064814743,0.02574043,-0.00007752019,0.034391228,-0.00986297,-0.014055891,-0.023925483,-0.008048024,-0.016983649,-0.03415277,-0.008743532,0.042551856,-0.017116128,-0.029781,0.004699649,-0.16904162,0.0120621,0.0019904783,0.021991309,0.0121813305,0.009280067,0.012399918,-0.0036961297,-0.020335337,-0.0015557858,0.018374665,0.008173878,0.0014580834,-0.008273236,-0.009598014,0.003735873,-0.031132273,0.015380668,0.011075141,-0.0005038295,0.0333579,-0.0038252953,-0.0097636115,-0.030999796,0.024972059,0.0128900865,-0.005517699,0.033066448,-0.006176776,-0.032139104,-0.019580213,0.0010863177,0.020507557,0.0038219835,0.026998967,0.029383568,0.0060111783,0.00019643968,0.012883462,0.0000059317435,0.017593047,0.0150759695,-0.013618714,0.0014117161,-0.026522048,-0.00045746227,0.02197806,0.011287105,0.007173671,-0.001008487,0.016215278,-0.011234114,0.006160216,-0.0031148833,-0.008107639,0.013161666,0.01971269,0.010876425,-0.023395572,0.0011293729,-0.0160828,-0.017659286,-0.0057097916,-0.010293522,-0.010770442,-0.009167461,-0.01033989,0.0053487895,-0.025713934,0.016851172,-0.022892157,0.00097371155,0.0084322095,0.011234114,0.011671291,-0.013631961,-0.029701514,0.005507763,-0.008107639,0.022534467,-0.00201035,0.039133932,0.0014920308,0.015870836,-0.015168704,0.009756987,0.010571726,0.01650673,0.0022239704,-0.0351596,0.0044645006,-0.012168082,-0.020004142,0.0019888224,-0.0026445873,0.017500313,-0.007935418,0.006272822,-0.0069617066,-0.024362661,0.00436183,0.012532396,-0.03921342,0.011432831,0.023634033,0.01286359,-0.00947216,0.020295594,0.023859246,-0.02282592,-0.011439455,0.010651212,0.019341754,0.04085614,0.02895964,0.000120264966,0.0016352724,-0.0060178023,0.009273443,-0.016692199,0.047082596,0.0005030015,-0.033198927,0.008365971,-0.01238667,0.0091409655,-0.106247164,-0.02829725,0.009697372,-0.010207412,-0.011744154,0.0016866075,0.008968744,0.007140551,-0.015208447,0.02257421,-0.008147382,-0.015526393,0.013618714,0.0039809565,0.011114884,0.00003506003,0.011664667,-0.016003314,0.010055062,0.024044713,-0.017076384,-0.010445871,-0.013088803,-0.034470715,-0.020004142,0.007266405,-0.017076384,0.017473817,0.0026147799,0.0033003523,0.0023763198,-0.009856345,0.0010945975,-0.009465536,0.025753677,-0.0050076596,-0.03174167,-0.0038252953,0.031847652,-0.022560963,0.0005849721,-0.011916375,-0.0058356454,0.0008975368,-0.0022918652,0.003974333,-0.001062306,0.020189611,0.023276342,-0.021143451,-0.008233493,0.0071339277,0.0046864008,-0.00591182,0.04424757,-0.0022190025,-0.012631754,0.050791975,-0.0048221904,0.022057548,0.006875596,0.004385014,-0.009399298,0.016665703,-0.007756573,-0.0155396415,0.007405507,-0.020322088,0.012313808,-0.011472574,-0.029436558,0.014506315,-0.025131032,0.0029492863,-0.0045307395,-0.008915753,-0.023024635,-0.021646867,0.003311944,0.0018811842,-0.024137449,-0.00650797,-0.017805012,-0.023024635,0.03492114,-0.003990893,0.017036641,0.014638793,-0.0067894855,-0.025581455,-0.022362245,0.013227904,0.008418961,0.008630926,0.010743947,0.0038054236,-0.024627617,-0.0014754711,-0.010055062,-0.009809978,-0.016069552,0.00296419,-0.04276382,0.018440904,0.005789278,-0.009856345,0.012883462,-0.008485201,-0.011161251,-0.006935211,-0.03788864,-0.02066653,-0.01304906,0.00931981,-0.022560963,-0.021063965,-0.006415236,0.0046433457,0.004441317,0.013830679,0.0013545852,-0.008187125,0.0042326646,-0.0002589526,0.0034642934,-0.006640448,0.020414824,0.022335751,-0.0024707103,0.013565723,-0.00023369906,-0.008014904,-0.0026280277,-0.035239086,-0.009902713,0.0026263716,0.01840116,-0.013539228,-0.005087146,0.02264045,-0.019129789,0.011850135,-0.015155456,-0.020719523,-0.0009654317,-0.014771271,-0.010147797,-0.007849308,-0.008929001,0.0031165394,0.022799423,0.00068888435,0.028323745,0.024283174,-0.01674519,-0.012856967,0.0051202653,-0.009432416,0.021143451,-0.0030320848,-0.0078824265,-0.062105574,0.034974128,0.016188782,-0.011810392,-0.02996647,0.009485408,0.0003910164,-0.033039954,-0.002906231,0.0050109713,-0.03145022,0.0017669222,-0.009697372,0.012492653,0.011181123,0.032059617,0.011114884,0.019116541,-0.0070875604,-0.010949287,0.01233368,-0.0052229357,-0.00016890914,-0.021991309,0.025488721,0.022892157,0.02156738,-0.008869386,0.01620203,-0.0055971853,0.0058919485,-0.019580213,-0.008736908,-0.009008488,0.00012057546,0.02252122,0.031900644,0.015990065,0.016347757,-0.013241152,-0.008266612,0.044433042,-0.0032208655,0.008418961,0.00055930455,-0.009273443,0.01870586,-0.03449721,-0.04135956,0.009531775,0.024468642,0.024375908,-0.011783897,-0.0063026296,0.024998553,-0.0041266824,0.00050548546,0.026058376,-0.032324575,-0.029992966,0.021991309,0.0076572145,-0.0036861936,-0.0037756162,-0.04575782,0.034947634,0.00024011594,-0.010320018,-0.008809771,0.016241774,-0.004676465,-0.013082179,0.016135791,-0.016957153,-0.022666944,0.022203272,-0.014453324,-0.03945188,0.006587457,0.017540056,0.045704827,0.013009316,-0.020043885,0.0037557445,0.0047691995,-0.0032125858,0.025753677,-0.0068557244,0.016851172,-0.0027373217,0.002662803,-0.015579385,0.0089819925,-0.013698201,0.011154627,0.0029211347,-0.0010912856,0.010134549,-0.019288762,-0.017328091,0.023302838,-0.006928587,0.007703582,0.0057859663,-0.022865662,-0.0019308634,-0.01930201,-0.0041730497,-0.007696958,-0.03298696,0.020441318,-0.0016973714,-0.008101015,-0.0041796733,0.0050639627,-0.017646037,0.0040207,0.0016758437,0.01972594,0.0024657424,-0.0039710207,0.027012216,-0.022534467,-0.016851172,-0.014307599,-0.003553716,-0.024998553,0.015128961,-0.03139723]},{\"id\":\"92d70eb1-5634-48f6-9926-a78b72876d28\",\"text\":\"I had always fantasized a healthy vape lifestyle until I found ripple making my dream come true especially with my love of nature and having everything naturally plant based feels so good ….Al Adigun\",\"vector\":[0.012911845,-0.020023208,-0.012395643,-0.01677657,-0.008001133,0.015255131,-0.016219614,-0.028798643,-0.013169946,-0.008795812,0.0021140515,0.013006935,0.00066562905,-0.02034923,0.023432858,0.011600963,0.037682753,-0.009189756,0.00511108,0.0040413192,-0.025008634,0.001077402,0.012416019,-0.020702422,-0.00054973824,-0.0018984012,0.017917646,-0.03700354,-0.0028832604,-0.0041499934,0.037329562,0.0071317395,-0.015567569,-0.008476582,-0.0063098916,-0.0048292065,-0.009773879,-0.01350276,0.01573058,-0.024506016,0.01461667,-0.017143343,0.007756616,0.010147447,-0.028173767,0.00878902,-0.025687847,0.011139098,-0.0037696338,0.015608322,0.001940852,0.025796521,0.0017073724,-0.0045778975,0.016464131,-0.0029358994,-0.010025188,-0.01658639,0.027494553,0.00011143343,0.0010791001,0.030374419,-0.018012736,-0.009950475,-0.014983445,0.011213811,-0.014222726,0.007213245,0.014929108,0.015771333,0.021313714,0.012517901,-0.028418284,0.010704402,-0.013964625,0.006703835,-0.02691043,0.0062555545,-0.01710259,-0.0027813783,0.011322485,-0.0072336216,0.010745155,0.008673553,0.014181973,0.003120985,-0.014535164,0.021259377,0.009244093,-0.012395643,0.00235687,0.019439084,0.0014747418,0.015418142,-0.027304374,0.004255271,0.0059940573,-0.0011079666,-0.015621906,-0.04664837,-0.015418142,0.01267412,0.0014764399,-0.01875987,-0.03398783,-0.015268715,0.0014204048,-0.005053347,0.033634644,-0.009508986,-0.0064083776,0.007104571,-0.004863167,-0.025456915,-0.01812141,-0.0038069906,0.0028204331,0.014589502,-0.0014891751,-0.0088297725,-0.0021598982,0.0041975384,0.028744306,-0.00064992224,0.008537711,0.022020094,-0.011118721,0.0027762842,0.01452158,-0.009515778,0.010106694,0.0070434418,0.0056103016,-0.008795812,-0.01658639,0.017224848,-0.009087874,-0.0105345985,0.014290648,0.02257705,0.010208576,0.035373427,-0.025375409,-0.012062828,0.008510542,0.030292913,0.004129617,-0.0032449416,0.02274006,-0.00815056,0.009223716,-0.026978351,0.014467243,0.008422245,0.0037934063,0.01156021,-0.017605208,0.018909298,-0.00008453022,0.006269139,0.025579173,-0.017618792,-0.012062828,-0.006479695,0.0041092406,0.02691043,0.030265745,-0.004217915,-0.012612991,0.0009636339,0.0101882,0.037329562,-0.053929534,0.014874771,-0.019493422,0.018243669,-0.015947929,0.022794398,-0.011614547,-0.011125513,-0.0030870244,0.0057970854,0.028391115,0.014222726,0.0032517337,-0.030863453,0.004085468,-0.002497807,-0.00539635,-0.009312014,-0.0142363105,0.008999576,-0.036731854,-0.02658441,-0.65769583,-0.019765107,0.026530072,0.007199661,0.0422199,0.021979341,0.011173058,0.016056603,0.0060042455,0.0048869397,-0.0007963776,0.03352597,-0.000843498,0.0018168956,0.0061502764,-0.009576907,0.015839254,-0.028717138,-0.018352343,0.0048801475,-0.013414462,0.007709071,-0.028092261,-0.010650065,0.0011020235,0.007647942,-0.020675253,-0.0045711054,-0.0059499084,0.01980586,-0.0117843505,0.03607981,0.017537287,0.0286628,0.06330268,-0.026516488,-0.0022923448,0.012551862,0.016056603,0.024084903,-0.04379567,0.0031379655,0.0072743744,0.0059668887,-0.012096789,0.02534824,0.030944958,0.004231499,0.0099844355,0.023473611,0.023011746,-0.014453659,-0.010588936,-0.0073422957,0.028744306,-0.013794822,0.020851849,-0.011302109,0.022807982,0.01452158,0.010989671,0.017971983,-0.015200794,-0.020960523,-0.018461017,0.017618792,-0.014249895,-0.00018317533,0.0057563325,-0.027521722,0.0013448424,0.012083204,-0.014752513,0.005314844,-0.015377389,0.015961513,0.030618936,0.002246498,0.019683601,0.015839254,0.0031294753,-0.0003096788,-0.033797655,-0.002606481,0.04352399,-0.0013703128,-0.008476582,-0.0029732562,-0.011662092,-0.01022216,0.019588511,0.015214378,0.0021938588,-0.03455837,0.0014161597,-0.005474459,-0.027616812,0.0164913,-0.0057563325,-0.019221736,-0.009767087,-0.0022159333,0.026027454,0.009644829,0.013013727,-0.009189756,-0.01757804,0.004180558,0.014820434,-0.020987691,-0.0023246075,-0.0006643555,-0.004085468,-0.0024587521,-0.028961655,-0.030129902,-0.0001056495,-0.01461667,-0.007994341,-0.029477857,0.021137118,-0.00075307774,-0.003572662,0.006428754,0.000110902794,0.010799492,-0.011614547,-0.014929108,0.0082320655,-0.008021509,0.011111929,-0.0022617802,0.010813076,-0.0124363955,-0.003939437,-0.0022804586,-0.000588793,0.016341873,0.0028526958,-0.017971983,-0.009250885,-0.004404698,-0.02130013,-0.007016273,-0.011967738,-0.024818454,0.010527806,0.0056069056,-0.00834074,-0.0407528,0.01729277,-0.008191313,-0.029151835,0.034639876,0.00069364655,-0.011207019,0.0016504884,-0.015132872,-0.0068872226,-0.0006537428,0.010018396,0.007885667,-0.01499703,-0.0035930383,0.008877317,-0.0075256834,-0.0049310885,0.017156927,0.026271971,-0.016165277,0.010364795,-0.031624172,-0.013978209,0.01710259,-0.013210699,0.010928541,-0.013543513,-0.010643273,0.013713316,0.0019510402,0.005868403,-0.005569549,0.010290082,0.022237442,0.029586531,-0.0069245794,0.01895005,0.031732846,-0.0005667186,0.01897722,-0.0012336212,0.014956277,0.0019068914,0.009909722,-0.012565446,-0.010779115,-0.013061272,0.012253008,0.014575917,0.0025300696,0.0018304798,-0.0137336925,0.025402578,-0.023011746,0.018528938,-0.022305364,-0.00017861187,-0.003976794,0.005987265,0.00942748,-0.01194057,-0.000740767,-0.015350221,-0.012660536,0.007247206,0.016477715,-0.0043401727,0.02496788,0.002302533,0.0003852413,-0.008211689,0.0012803171,-0.0045846896,-0.021843499,0.014535164,0.027671149,-0.013163154,-0.02248196,0.006534032,-0.019670017,-0.0016513374,0.0077702003,0.004795246,0.008721098,-0.0024264895,-0.0040990524,0.0056170938,-0.030048396,0.03279242,0.018148579,0.015323052,0.017428612,0.013754069,0.009889346,0.011811519,-0.0009806142,0.01452158,-0.0035149287,-0.0047409087,-0.017958399,-0.005674827,-0.014766097,0.009284846,-0.015214378,0.0021344277,-0.055342298,-0.0022261215,0.008945239,0.035183247,0.012789587,-0.0012641858,0.030673273,0.010072733,0.010310458,0.006170653,0.023582285,-0.0074441778,-0.022427622,-0.031080801,-0.011960946,0.009943683,-0.0123345135,0.014263479,-0.024275083,0.014005378,0.02009113,-0.01267412,-0.0063030994,-0.010758739,0.011580586,0.006191029,-0.01859686,0.027766239,0.011091553,0.010419132,-0.014222726,-0.018298006,0.004078676,0.017876893,0.0044658273,0.008666761,0.0073830485,0.009536155,0.007152116,-0.01060252,0.010045565,0.029097497,-0.03314561,0.015880007,-0.02028131,0.0057529365,-0.020267725,-0.009026744,-0.0021819726,0.031787183,0.002156502,-0.0170075,0.0030530638,0.0061061275,-0.012680912,0.0030241972,-0.012361682,-0.019126646,-0.009420688,0.014562333,0.020552995,-0.02340569,-0.019860197,0.024628274,-0.013713316,0.016151693,-0.014467243,-0.018447433,0.010819868,0.12247574,-0.008313571,0.005297864,0.00094665354,-0.011770766,-0.0064525264,-0.015676243,-0.015934344,0.0031345694,0.0036643557,0.026611578,-0.025212398,-0.0020834869,-0.011702845,-0.008109807,-0.006764964,-0.01363181,-0.014507996,-0.01748295,-0.022712892,0.022753645,0.0009593888,-0.007749824,0.03868799,0.007980756,0.029858217,0.007851706,0.016450547,-0.0013193719,0.008164144,0.014698176,0.014127636,-0.0030479697,0.0019985852,-0.014046131,-0.0012989955,-0.0008592048,0.0126877045,0.00048563752,0.0023602662,0.013298997,0.009115042,0.027222868,-0.042464416,-0.008259234,-0.016355457,-0.029668037,-0.006571389,0.0068906187,-0.010996463,0.01850177,0.0147389285,-0.007104571,-0.019493422,0.019221736,0.017469365,0.011594171,-0.0036473754,-0.011621339,-0.0041499934,-0.012877884,-0.031162307,-0.024152825,-0.00337569,-0.02238687,-0.036731854,-0.018800624,-0.013699732,0.0054201223,-0.0011020235,-0.003163436,-0.009848593,-0.01755087,0.017319938,0.022278195,-0.002154804,-0.010690818,0.0046322346,0.010228952,-0.007247206,-0.00059600966,0.016925996,-0.0016793548,0.017360691,-0.011200227,0.004747701,0.005253715,-0.0085309185,0.009685582,0.022753645,0.026421398,0.001124947,0.029260509,-0.016695064,-0.0075188912,0.01840668,0.01738786,0.0058480264,0.002550446,-0.0034707799,0.018420264,0.004554125,-0.004598274,-0.014915524,0.010745155,0.0066630826,-0.009006368,0.024573937,-0.03015707,-0.04550729,-0.010514222,0.0028526958,-0.004995614,-0.009576907,0.000083097504,0.02146314,-0.009210132,0.02350078,-0.030483093,-0.00501599,-0.010011604,-0.004557521,0.032547902,-0.0037526535,-0.004343569,0.026000286,-0.0137336925,0.00092118303,-0.0005777558,0.022060847,-0.011451536,0.010432716,-0.029640868,-0.015024198,-0.016858075,-0.008659969,-0.0070909867,-0.022033678,-0.04145918,-0.036514506,-0.025932364,0.008286403,-0.0008957125,0.004859771,0.023201926,-0.020906186,-0.0011546626,-0.008551295,-0.004543937,0.033580307,-0.030999295,-0.016708648,-0.026041038,-0.0013100327,0.010405548,-0.015757749,-0.021150703,-0.0053250324,0.005535588,0.012280176,0.015024198,-0.01471176,0.00539635,-0.017510118,0.00014910854,-0.016029434,-0.0030021227,0.0037560496,-0.034341022,0.038198955,0.018284421,0.002041036,-0.020946939,-0.023826802,-0.007892459,0.017890478,-0.0033502195,-0.0134348385,-0.002502901,-0.009746711,-0.016002266,-0.008164144,0.0074917227,0.010914957,0.029695205,-0.022468375,0.03923136,0.004017547,0.023908308,-0.013346541,-0.006520448,-0.0122869685,-0.0044352626,0.005443895,-0.0026811946,-0.02321551,-0.0009143909,-0.004309608,-0.020797512,0.0072336216,0.023473611,-0.0089316545,0.002597991,0.01693958,-0.010419132,0.004408094,-0.008666761,-0.016640726,0.014671007,-0.024777701,-0.011696053,-0.0035047405,-0.02321551,-0.029831048,-0.00089741056,-0.010493846,-0.017374275,0.024247915,-0.019153815,-0.015486063,-0.01885496,-0.0002273242,0.013740485,0.009590492,0.02238687,0.02885298,-0.023541532,-0.016858075,0.018719118,-0.0073898407,-0.027956419,-0.004907316,0.0075188912,0.00511108,-0.008014717,0.0053691813,0.0097331265,-0.019289657,-0.017781803,0.014141221,0.013889912,0.02101486,-0.017795388,-0.009441065,-0.022033678,0.0119337775,0.008945239,0.008816188,-0.0042416872,-0.013428046,-0.018148579,-0.0052333386,-0.00418735,0.018284421,-0.016599974,0.00754606,-0.013380501,-0.011193435,-0.03018424,0.0018067074,0.017537287,0.017876893,0.0022261215,-0.000869393,0.0011580586,0.0021123535,-0.005477855,0.015390974,-0.012524693,0.024587521,0.0031379655,-0.00041007504,-0.016002266,-0.008571671,0.017727466,-0.0058650067,-0.007756616,-0.0071928687,-0.009400312,0.002041036,0.019004388,-0.017849725,-0.028825812,-0.016545637,0.004360549,-0.012789587,-0.021829914,0.0058412342,0.02264497,-0.028146598,-0.0074713463,0.0016683176,0.0005514363,0.008320363,0.011906609,0.005589925,-0.0133329565,0.010262913,-0.037628416,-0.00054124807,0.011825103,-0.0005985567,-0.020009624,0.02350078,0.008361116,-0.039666057,0.0031956986,-0.00050176884,-0.049093537,-0.04050828,-0.0036847321,-0.00031689546,-0.0039937743,0.008408661,-0.008646385,-0.0042688553,-0.00088212825,-0.027874913,-0.032901093,-0.006235178,0.007016273,0.0011954154,0.0101882,-0.025565589,-0.0021751805,0.007994341,0.008238858,-0.016273951,-0.0043197963,-0.0017421821,-0.028934486,0.022400454,-0.010704402,-0.018433848,0.0068702423,0.004133013,-0.020756759,0.009896138,0.00093646534,-0.013794822,0.009047121,0.03314561,0.0018219897,-0.00038205748,-0.008123391,-0.008442622,-0.025864443,0.0011419273,-0.028228104,-0.016980331,-0.015975097,0.021721242,0.018352343,0.0044794115,-0.035264753,0.010154239,-0.029369183,-0.03455837,-0.027847745,0.025212398,0.006028018,-0.014209142,0.010745155,0.033634644,-0.009658413,-0.004085468,0.009291638,-0.028934486,0.023908308,-0.028391115,0.009352767,-0.021245793,-0.040671293,0.0020580164,0.014861187,0.0044352626,-0.00582765,-0.0043367767,-0.009610868,0.024655443,0.004350361,-0.0016003964,0.006381209,0.023460027,0.020661669,-0.022237442,-0.005043159,0.013142778,0.0025844066,0.004910712,0.014779681,-0.0013329561,0.03129815,-0.014861187,-0.0021768785,0.005151833,-0.015649075,-0.010358003,0.023921892,-0.007763408,-0.009950475,0.007702279,0.020580163,-0.00073864445,-0.0062080096,0.014562333,-0.0044352626,-0.012918637,0.022223858,-0.026991935,0.015146457,0.0066087455,0.0026845906,0.008768643,-0.012612991,-0.01767313,0.0061299,0.012742042,0.010004812,0.017876893,-0.016192446,0.004710344,0.00878902,0.011288525,0.0014271969,-0.023283431,0.031080801,-0.012728457,-0.014494412,0.003012311,-0.007457762,-0.039122686,-0.0039156647,-0.016341873,-0.013591058,0.0143857375,0.22560748,-0.0170075,0.0048801475,0.034531202,0.0011920193,-0.023650207,-0.000562049,0.008965615,0.011825103,0.010099902,0.010167823,-0.0041669738,-0.030673273,-0.013414462,-0.018868545,-0.021789163,-0.03423235,0.00582765,-0.008653177,-0.02359587,-0.000087077264,0.0035964344,-0.013197115,-0.017618792,0.027087025,0.009726334,-0.0038613277,0.0047850576,0.016314704,0.0030530638,-0.0027864724,-0.010819868,0.037030708,-0.009345975,0.0003292062,0.0017285978,0.009977643,-0.0006770908,0.021612568,0.026828924,0.014412906,0.015010614,-0.006089147,-0.019466253,0.0038443473,0.0071317395,-0.025619926,-0.007940004,0.028146598,0.009692374,-0.02149031,-0.0137269,-0.0049684453,-0.0103851715,0.0006694496,0.0064049815,0.01875987,0.002350078,-0.0076343575,0.01009311,0.019058725,0.022128768,0.014548749,0.021789163,-0.021925004,0.01206962,-0.029831048,-0.009862177,0.023283431,0.0013108817,0.02942352,-0.0223597,-0.03257507,0.019004388,-0.046539694,-0.015309468,0.0032500357,0.008408661,0.027847745,0.016830906,0.019411916,0.020702422,-0.01244998,-0.010059149,-0.018773455,-0.028934486,0.011342862,0.0017540683,-0.031053632,-0.0058072736,0.0064932792,-0.0024298856,-0.010711194,-0.015363805,0.019792276,-0.0007004387,0.004136409,0.01442649,0.0035590776,0.01573058,-0.018488185,0.0029358994,-0.004353757,0.031597003,-0.0075324755,0.022875903,-0.009508986,0.02340569,0.002761002,-0.019452669,0.0035930383,-0.023134004,0.0081845205,-0.00052341877,-0.003219471,-0.0008384039,0.01859686,-0.017360691,-0.0057529365,0.0060551865,-0.0020970711,-0.00043321072,0.009284846,-0.011410783,0.021164287,-0.025117308,-0.03700354,-0.009495402,-0.0044760155,-0.02764398,0.025076555,0.02461469,0.0043197963,-0.02028131,-0.007810953,-0.015119288,0.017129758,-0.022957409,0.010106694,-0.013869535,-0.020620916,0.0077362396,0.014630254,-0.013495968,0.017754635,-0.019833028,0.014114052,0.011410783,-0.009019952,-0.0005684166,-0.0203764,0.02726362,-0.021517478,0.0036507715,0.026856093,-0.01442649,-0.046675537,-0.0052876757,0.0245196,-0.0019306638,-0.022889487,0.008001133,0.023188341,-0.02034923,0.0006376115,0.012022075,-0.17496534,0.017876893,0.0057427483,-0.011424367,0.0271957,0.007980756,0.014059715,-0.002402717,-0.031732846,0.0056408662,0.021164287,0.0043809256,-0.01127494,-0.009678789,0.027630396,0.0052333386,-0.019262489,0.022875903,0.034096505,-0.002608179,0.028092261,-0.0007819443,-0.0034554976,-0.01668148,0.018338758,-0.011791143,-0.0014552145,-0.0062521584,0.010358003,-0.0014603086,-0.01895005,0.00084179995,0.05148437,-0.011539834,0.025388993,-0.008836565,-0.00326362,-0.006374417,0.020389983,0.026136128,0.044257537,0.009590492,0.008191313,0.0033094669,-0.026271971,0.005297864,0.008911278,-0.010276497,-0.013815198,0.00652724,0.041187495,-0.019452669,-0.021042028,0.018678365,0.023283431,0.013129193,0.007410217,0.016083771,-0.004119429,-0.038524978,-0.015581153,-0.010181407,-0.0030734402,0.000031387084,0.0035013445,-0.00480883,-0.03311844,0.013679355,-0.012089997,0.01480685,-0.023052499,-0.029396351,0.008700722,0.017605208,0.025470499,0.0040073586,-0.04795246,0.013849159,0.026801756,-0.0044895997,-0.017184095,0.0019646245,-0.021666905,0.041785203,-0.006238574,0.011519457,-0.0029783503,-0.0011665488,-0.02700552,-0.00942748,0.012463564,0.0027389275,-0.011594171,-0.018393096,0.0010595728,0.017510118,0.023324184,0.008843357,0.000870242,-0.007199661,0.023541532,0.0040582996,-0.0035149287,0.016464131,0.019153815,0.0020597144,0.011118721,0.0031956986,0.03398783,-0.023256263,-0.04626801,0.03751974,-0.0092305085,0.021177871,-0.01812141,0.004078676,0.007844914,-0.03567228,0.02980388,-0.012646952,0.051593043,0.007308335,0.011587379,0.005790293,-0.0072743744,0.0036202068,-0.109760866,-0.024573937,0.020974107,0.007199661,-0.0007267582,-0.007498515,-0.013366917,0.022033678,-0.024682611,0.017618792,0.01812141,-0.011064384,-0.013869535,-0.0056985994,0.036677517,0.00031286263,-0.008191313,-0.018746287,-0.029287677,0.0206345,-0.025701432,-0.021232208,-0.005009198,-0.0022091412,0.00040179712,-0.0027253435,-0.00296137,0.013550305,0.03224905,-0.010324042,0.006038206,-0.0069891047,0.015608322,-0.020430736,-0.01745578,-0.0027932646,-0.0053420127,-0.006371021,0.02544333,-0.01041234,-0.0051382487,-0.0031226831,0.011825103,-0.01359785,-0.0079332115,-0.0024230934,0.0036643557,0.027236452,0.019955287,0.0019748127,-0.0066087455,-0.0070298575,-0.010011604,0.0038884962,0.024275083,-0.017659545,0.019914534,0.015173625,0.0023738504,0.008612424,-0.013251452,0.0005934626,-0.0373839,0.014643839,-0.0027542098,-0.0083339475,-0.014073299,0.0069177873,0.0060517904,-0.00069874065,-0.008490166,-0.007152116,0.0040447153,0.033580307,-0.03626999,0.0096312445,-0.026896846,-0.016790153,0.017564455,-0.030021228,-0.0030309893,-0.013557097,-0.0020240557,-0.010779115,0.00929843,0.009135419,0.003623603,0.019846613,-0.032113206,-0.015812086,-0.018827792,-0.027277205,0.015649075,0.0052672992,0.004173766,-0.023582285,0.013482383,0.0034554976,0.032086037,0.010670441,-0.0075936047,-0.03243923,-0.047599267,0.027820576,0.0031379655,0.009773879,-0.007851706,-0.019860197,0.034015,-0.0035862462,0.017252017,-0.00013552427,-0.000059325037,0.02177558,0.017116174,-0.008619216,-0.010894582,-0.037030708,0.021952173,0.01885496,0.007838122,0.028065093,0.010914957,0.018148579,-0.01592076,0.026788171,0.010711194,0.015934344,-0.016885243,-0.010962502,-0.01235489,0.005263903,-0.0039496254,-0.0074713463,0.023324184,0.02091977,0.008035094,0.011512665,-0.015132872,0.02091977,-0.003919061,0.0055661527,-0.027331542,-0.034123674,0.0063064955,-0.014168389,-0.006340456,-0.019099478,-0.037057877,0.015553985,0.04349682,0.019737938,0.00850375,0.016178861,0.0009916514,-0.023867555,-0.006221594,-0.0035454934,0.021707658,0.00016248056,0.0027915665,-0.0073762564,0.03477572,0.0062114056,0.0094818175,-0.027603228,-0.00254705,0.0033926703,-0.026788171,-0.0015146456,0.027589643,-0.0058072736,-0.03167851,-0.028472621,-0.003316259,0.034015,-0.0050397627,-0.0118862325,-0.018447433,0.007253998,-0.016070187,0.0147389285,-0.0050193863,-0.0035387012,-0.040834304,0.011967738,0.0076343575,0.019004388,0.0036541675,0.019819444,0.005471063,0.032303385,-0.012110373,0.0014373851,0.012884676,0.006269139,0.026597993,0.00015537004,0.02072959,-0.022536296,0.0051722093,0.013353333,-0.001986699,0.007607189,-0.0026828926,-0.021245793,0.005668035,0.012925429,-0.012008491,-0.054228388,-0.0069313715,0.024641858,0.02885298,-0.022658555,-0.0030513657,0.019167399,0.0010400454,-0.0022244235,-0.012402435,0.0028476017,-0.010663649,0.047246076,0.010194992,0.0046899677,0.020552995,-0.013339749,0.004900524,0.012395643,0.0065951613,-0.010656857,0.00990293,-0.0034453094,-0.00055058725,-0.018610444,-0.015988681,-0.0025895007,-0.014059715,-0.005406538,0.013923872,0.038742326,-0.027603228,0.062161602,0.015160041,-0.020797512,-0.013115609,-0.00469676,0.03678619,0.0029019387,0.008259234,-0.029450689,-0.009074289,0.031433992,-0.0075868126,0.02015905,-0.013190323,-0.027902082,0.016613558,-0.0038715159,0.017170511,-0.0019578324,-0.024315836,0.015594738,0.002608179,-0.0051382487,-0.0017982172,-0.028744306,-0.018393096,0.026271971,-0.0035998304,-0.008164144,-0.019629264,0.0027389275,-0.0015401162,-0.05455441,-0.016233198,0.021707658,-0.01904514,0.009739919,0.0074238013,0.015241547,0.02904316,-0.013618226,0.02525315,-0.02461469,0.0021004672,0.014725344,0.0013966323,-0.0070909867,0.008890902,-0.028010756]},{\"id\":\"c747af6a-f709-490d-bbad-a0323603d45e\",\"text\":\"More product to post only had 2 from gfuel. Able to change videos from tik tok instead of instagram\",\"vector\":[-0.026665386,0.016665867,-0.015719244,-0.009066232,0.012146084,-0.006339696,-0.027998656,-0.030425206,0.017399164,-0.03941144,0.01603923,0.020119034,-0.019052418,-0.038744807,0.009666203,-0.0012007756,0.019959042,0.0048031025,-0.007732962,-0.008752913,-0.01415932,0.015185937,-0.012299409,0.010846145,-0.0118061,-0.015492589,0.013019375,-0.013452687,0.008932904,0.006329696,0.012212747,-0.023212219,-0.02629207,-0.022852236,-0.024492158,-0.009839527,-0.008446261,0.0034365016,0.00715299,-0.024905471,-0.00047122737,0.011486115,0.00617637,-0.0073196483,-0.03919812,0.011926094,0.0052697468,0.013279363,0.0024215505,0.010106182,-0.01921241,-0.012306076,-0.019812383,0.00036394087,-0.0052964124,0.00009869318,-0.0036098266,-0.010512829,-0.011286125,0.00665968,-0.00041539673,0.017772479,-0.015465924,0.0022882235,-0.020425687,0.0059263823,-0.02103899,0.013526017,0.0039898083,-0.0071596564,0.0023082225,0.00811961,-0.008099611,-0.0024132174,0.018612439,-0.026012084,-0.008052947,0.0062197014,0.00038081504,0.027945325,0.024798809,-0.029331924,0.009479545,0.0144926375,0.02242559,0.030451871,0.018159129,0.026812045,0.0029415253,-0.010726152,0.012606061,0.017972471,0.015905904,0.018719101,-0.014225983,0.014759291,-0.028851949,0.030771855,-0.016425878,-0.010172845,-0.0025832092,-0.0052964124,-0.01237274,-0.022678912,-0.031225167,-0.0018915759,-0.0066830125,-0.013012708,0.030078556,0.012159416,-0.0048730993,0.008246271,0.012566064,-0.019279074,-0.013692676,0.02069234,0.014025993,-0.03357172,-0.009719533,-0.01751916,0.015799241,0.0048897653,0.022998895,-0.017039182,0.006563018,0.00652302,-0.009686202,-0.018439114,0.014239316,-0.007232986,0.029891897,-0.013679343,-0.0074729742,0.019225743,0.0029931895,-0.0013166034,-0.03485166,-0.010006187,0.0037164881,-0.002213227,0.019772384,0.02043902,-0.005386408,0.038584813,-0.013732674,0.016479209,-0.010446165,0.0009499544,0.01603923,0.0039564767,-0.0051697516,-0.02233226,-0.0029298593,-0.0009982854,0.01410599,-0.0013216032,0.007252985,0.021358974,-0.018132463,0.0070863264,-0.007866289,-0.001687419,-0.014119322,-0.037891515,0.026878709,0.031838473,0.029518582,-0.023345545,-0.0055530667,-0.007652966,-0.0028981941,-0.0046831085,-0.017732482,0.02169229,-0.00019124082,0.01673253,0.009006234,0.0025632102,0.0011266125,-0.017599154,-0.014479305,0.011032804,0.022665579,0.007599635,-0.019519063,-0.030611863,0.014439306,-0.019425733,0.017052514,-0.012219413,-0.00520975,-0.011179463,-0.017772479,-0.0092928875,-0.6254633,-0.01569258,0.047784373,-0.009286221,-0.0010124514,0.035758283,0.0017782479,0.016799193,-0.0014215984,0.021078987,-0.015972566,0.0016224221,0.00576639,-0.00506309,0.008526257,-0.016519208,0.02901194,-0.012119418,-0.020025706,-0.0024848806,-0.023972182,-0.012466068,0.0059730466,0.006293031,0.019732386,0.0026132078,0.012586062,0.007272984,-0.028691955,0.054504048,-0.022478921,0.03455834,0.039624766,-0.0076196343,0.053970743,-0.0033515056,-0.0038131503,0.01069282,0.001903242,0.000839543,-0.044424534,0.0065696845,0.006063042,-0.0066063493,-0.0050330916,-0.020785669,-0.00081579416,0.018212458,-0.004899765,-0.008832909,0.02109232,-0.036664907,0.01707918,0.007559637,0.01450597,0.0048531005,0.023438875,0.013772672,0.0126460595,0.0064896885,-0.0117061045,0.013679343,-0.033891708,-0.0075663035,-0.041678,0.0075129727,-0.029065272,0.005463071,0.0048331013,0.0059563806,0.001235774,0.0020865665,-0.005656395,0.0058030547,0.001227441,0.038824804,0.02791866,0.0144926375,-0.007039662,0.00087745785,-0.01959906,0.014399309,-0.013219365,-0.010206177,0.025732098,0.014132654,-0.024732146,-0.004403122,-0.0014407642,0.011072801,0.015985899,0.026652053,0.00895957,-0.019279074,0.022585582,0.034425013,-0.012492733,0.033331733,0.033438396,-0.009726199,-0.009632871,-0.0019099083,0.010886144,0.011599443,0.02975857,0.015439259,-0.037651524,-0.027758667,0.015679248,-0.031865135,-0.0033531722,-0.009966188,-0.007066327,0.0049364297,-0.017265838,-0.031971797,0.020932328,-0.017252505,-0.009919523,-0.029971894,-0.0071996544,-0.0023132223,0.01061949,0.034824993,-0.003213179,0.047997694,0.00015103442,-0.0010974474,-0.012326075,-0.005076423,0.009366217,0.004213131,0.029785236,-0.010232842,-0.0032498438,0.027811999,0.028078651,-0.0035064982,0.017599154,-0.036371585,0.0018899093,0.0010082849,-0.0025782096,-0.0109128095,-0.005983046,-0.008746247,-0.009766198,0.001798247,0.011779434,0.00031852638,0.017239172,-0.01534593,0.012272744,0.015465924,0.015385928,-0.0127593875,0.0035731618,-0.018132463,-0.022652246,-0.010439498,0.015799241,0.016185889,0.0035164978,-0.0074929735,-0.03711822,-0.008579588,-0.0060097114,0.01762582,0.008906239,-0.0011416118,-0.024238836,-0.024398828,-0.013152702,-0.006199702,-0.025812093,0.011459449,-0.0049497625,0.02485214,0.004773104,-0.0014590966,-0.0046664425,0.021318976,-0.025025465,0.026985371,0.0015940901,0.015292599,-0.012892714,0.008452928,-0.057490572,0.02474548,-0.006463023,-0.010232842,0.0060697086,0.0034031698,-0.003289842,0.017559158,0.0360516,-0.0035864944,-0.005919716,-0.0129860435,0.027785333,0.010999472,-0.007966284,-0.020625677,0.017465828,-0.032931753,0.00049164303,-0.012826051,0.03509165,0.011799433,0.0063563613,-0.013759339,-0.009586207,0.012099419,-0.019652389,0.017959138,-0.0041098027,0.029171932,-0.0010474497,-0.00049872603,-0.018532444,-0.034238357,0.0038931463,-0.013306027,-0.017319169,0.017812477,-0.0027965324,0.020132367,0.022052275,-0.024465492,-0.012506066,-0.0073263147,0.017092513,0.011579444,0.02579876,0.0024648816,0.023012228,0.007819625,0.036744904,-0.019092416,-0.0017565823,0.017852476,0.016799193,0.02441216,0.025518775,0.014479305,0.03469167,-0.009106229,-0.02410551,-0.00036539912,-0.006173037,0.0073263147,-0.02598542,-0.020079035,0.020972326,-0.0063163633,-0.005639729,0.017159175,-0.012092752,0.025665434,-0.014145987,-0.0070063304,-0.00074579753,-0.020505682,-0.020305691,0.017452495,0.007899621,-0.015492589,-0.016319217,-0.023652198,0.00029040274,0.012592728,0.02158563,-0.01415932,0.017745815,-0.00021498968,0.016319217,-0.005039758,-0.013719341,0.031518485,-0.0046464438,-0.024332166,0.010466164,0.0016332549,-0.0116727725,-0.011832765,-0.00853959,-0.008512924,0.0049130972,0.02381219,0.00611304,-0.007886288,0.005879718,-0.00086579175,-0.0138126705,0.014319313,0.013919331,-0.02435883,0.017039182,0.014119322,0.037998177,0.0047064405,-0.0105394935,0.013919331,0.024252169,0.019719053,-0.017492494,-0.019372404,-0.012272744,-0.01678586,0.020465683,0.0047764373,-0.010679487,0.004523116,0.00035831612,-0.0037464867,-0.009052899,-0.017879141,0.019385736,0.006873003,-0.010779482,0.0014340978,-0.015825907,0.0073596467,0.09396882,0.0123860715,0.0026898708,0.01603923,-0.010112848,0.023585534,-0.008279602,-0.00742631,-0.014559301,-0.010246174,-0.0256921,-0.0074663083,-0.01269939,-0.011066135,-0.00028831948,-0.01623922,-0.018892426,0.0034198358,-0.011206129,0.010079516,0.022758907,0.010426166,0.016999183,0.009719533,0.027811999,0.01450597,0.004939763,0.0375182,-0.015012613,0.018639104,0.01096614,-0.011179463,0.006873003,0.01614589,-0.009946189,0.024692148,0.016279219,0.0047064405,0.00513642,0.018145796,-0.016612535,0.017252505,0.028585294,-0.01727917,0.004423121,0.011752769,-0.030158551,0.0068796696,0.019372404,-0.021958945,0.021212315,0.007446309,-0.017359165,0.008559589,0.012512732,-0.007826291,-0.0062030354,-0.022385592,-0.025945421,-0.03154515,-0.012059421,-0.037064888,0.008586254,-0.02045235,0.011332789,-0.031598482,-0.01353935,-0.01678586,-0.011519447,-0.02069234,-0.016052563,-0.007252985,-0.051864177,0.004099803,0.0018915759,0.0053530764,-0.0050730896,-0.010559493,-0.024132175,-0.0180258,-0.006693012,-0.026065415,-0.019825714,-0.02831864,0.0027032036,0.0049164305,-0.026865376,-0.013072706,-0.021612296,-0.002624874,0.017385831,-0.023278883,0.028185314,-0.010979473,0.015519255,0.0005678894,0.038504817,0.006986331,0.0054664044,0.005599731,0.013452687,-0.010439498,-0.015292599,-0.035571624,-0.022038942,0.009906191,0.007886288,0.0124993995,-0.003559829,-0.009072898,0.016225887,0.015785908,-0.0084329285,-0.005679727,0.01999904,0.0083396,0.00707966,-0.023225551,-0.02925193,-0.031011844,-0.0015607583,-0.03746487,0.0031581817,-0.012919379,-0.005919716,0.003903146,0.0028615294,-0.038744807,-0.003169848,0.026252072,-0.0020015705,-0.00074121443,-0.021252314,0.0034165026,-0.02138564,-0.012339408,0.003596494,0.030158551,0.021452304,-0.030851852,-0.023398876,-0.018385783,-0.00513642,0.0012049421,-0.012246079,-0.033785045,-0.024132175,-0.0010582826,0.0023215553,0.013706009,0.008406263,0.0035798282,-0.035064984,0.0065296865,-0.001150778,-0.016212555,-0.012519399,-0.00826627,0.0115927765,0.028691955,0.022998895,-0.022252265,-0.010706153,-0.009979521,-0.001650754,0.011892762,-0.004533116,-0.003519831,-0.055410672,0.021745622,0.016639201,0.0013699342,0.017799145,0.0073996447,0.002189895,0.0150926085,-0.020079035,-0.0023115557,0.018425781,-0.007652966,0.0028281976,-0.00513642,-0.009319552,-0.0024298832,-0.0058363862,0.004899765,-0.0036664905,0.011512781,0.0026582056,0.021825619,0.0062463665,0.008439595,-0.0030415207,0.017612487,0.008419596,-0.00018874093,-0.026878709,-0.008512924,0.0049730944,0.017812477,0.0031915135,0.019039085,-0.0049164305,-0.0054530716,-0.0083529325,0.021878948,-0.011986091,-0.041411344,0.005009759,-0.041118026,-0.007039662,-0.034078363,-0.0039098123,-0.014732626,0.00749964,0.010759483,-0.017359165,0.013366025,-0.00016478375,-0.02598542,0.0007374646,0.005133087,0.040824708,0.016199222,0.0067196772,0.027465347,0.018345786,-0.0010266174,0.005246415,0.018799096,-0.009886192,0.010159512,0.041118026,-0.0041797995,-0.006676346,-0.00117911,0.011252793,-0.039731424,-0.017239172,0.012292743,0.00742631,0.016225887,-0.014759291,-0.0034898324,-0.022985563,0.0002858196,-0.003633159,0.019812383,0.0017665818,-0.0026432064,-0.023078892,0.018639104,0.019692387,-0.011472782,0.01727917,-0.003068186,-0.019652389,-0.005303079,-0.015985899,0.0125327315,-0.012852716,0.012072753,0.00025602937,0.025238788,0.022905566,-0.030878518,-0.018239124,0.00742631,-0.010526162,0.02598542,-0.013252697,-0.010726152,-0.0009474545,0.008486259,0.037811518,-0.031171836,-0.01269939,-0.032905087,-0.011446117,-0.0026332068,0.01262606,0.025518775,-0.012052755,-0.0051064217,-0.0052797464,-0.006816339,-0.010159512,-0.018092465,0.030665195,-0.027438682,-0.0035131646,-0.012472735,0.009092896,-0.0235722,-0.0036864895,0.02599875,0.023385543,0.020479016,-0.028638626,0.0053764083,0.004039806,0.0033398396,-0.016372547,-0.0036431584,0.014825955,-0.014252649,0.0106528215,-0.019719053,-0.032505106,-0.01727917,-0.00819294,0.009412881,0.0134393545,0.027065367,0.0050864224,0.014345977,-0.0061263726,-0.048291013,-0.00861292,-0.001423265,0.0118061,0.025092129,0.0074329763,-0.007526305,-0.009279555,-0.012212747,0.016639201,0.00017780396,0.021105653,-0.012406071,-0.009059565,0.0012432736,0.007139657,-0.0082396045,-0.016705865,-0.009126228,-0.01614589,0.008866241,0.007366313,-0.0030331877,-0.0127593875,0.021958945,0.0052230824,0.015919236,-0.014905951,-0.017385831,-0.021132318,0.0043597906,-0.0150926085,-0.0051664184,-0.006946333,0.019825714,-0.013945997,-0.013172701,-0.01539926,0.004699774,-0.009606205,-0.014625965,-0.012112752,0.010159512,-0.02494547,-0.0041598002,-0.029891897,0.038451485,-0.0016190889,0.0026898708,-0.008052947,-0.0051264204,-0.016185889,0.00067288434,-0.0032198455,-0.021158984,-0.022638913,0.0066430145,0.010186178,0.039918084,-0.0042031314,0.0056463955,-0.011379453,0.015759243,-0.022505585,0.014292647,0.036824897,0.0008624586,0.037011556,-0.019332405,-0.040824708,0.0037431535,0.0130993705,0.007579636,-0.017732482,-0.014479305,0.004843101,0.018905759,-0.018399116,-0.0038864801,-0.017492494,0.0064330245,0.0180258,0.0041198023,-0.005389741,0.0067663416,0.039224785,-0.009746199,0.030531866,0.01589257,-0.012906047,-0.002681538,0.03671824,0.0030065223,-0.005559733,0.016065896,-0.0038131503,-0.009152894,-0.022172268,0.007912953,-0.012326075,0.015999231,0.012186081,-0.012332741,-0.016665867,-0.031411827,-0.00027269524,-0.011599443,0.009106229,-0.012259412,-0.004826435,-0.0031065175,-0.0025498776,0.009392883,0.017545825,-0.064743556,0.0015474256,0.037598193,-0.007812958,0.011472782,0.242975,-0.0022765573,0.0016382546,0.0630903,0.01514594,0.012319408,0.003866481,0.020572346,0.0029381923,0.0070196628,0.0010616157,0.010579492,-0.018852428,-0.021812286,-0.004326459,-0.0073263147,-0.03826483,-0.0016374213,-0.049624283,0.011352788,-0.0013915999,-0.017132511,0.024025513,-0.026918707,0.03261177,-0.032505106,-0.02554544,-0.018639104,0.018839095,0.0033548388,-0.022718908,-0.021398973,0.019265741,-0.0017865809,0.0020982325,0.0014507637,0.000347275,0.0011599443,0.007879621,0.0115927765,0.0029481917,0.00797295,0.014825955,-0.014025993,0.020812334,0.0006366361,-0.017092513,0.0024615484,-0.014772624,0.006999664,-0.009959522,0.0027165362,0.013186034,0.028238645,-0.008126277,-0.008686249,0.011359454,0.0107994815,-0.015652582,0.0058763847,-0.008412929,0.028398637,-0.0007862123,0.019985707,-0.03639825,0.014972614,-0.008679583,0.0054230727,0.013446021,-0.0108794775,-0.017692484,-0.013732674,-0.012299409,0.008212939,0.0034081696,-0.035011653,0.006979665,0.012692723,0.023198886,0.016292552,0.00797295,0.0050064265,0.009486211,-0.03103851,-0.00079996156,-0.019332405,0.030158551,-0.006446357,0.00430646,-0.005276413,0.0002920693,-0.003213179,-0.030265214,0.009226223,-0.010292839,-0.011379453,-0.010179511,0.009286221,0.003596494,-0.01970572,-0.018492445,0.017145844,0.0074729742,0.0058130543,-0.020958994,0.011719437,-0.008699582,0.018092465,0.016132558,-0.008279602,0.010572826,-0.030531866,0.0049897605,-0.0019099083,-0.024198838,0.013412689,0.003156515,-0.019119082,0.019345738,-0.01831912,-0.009352884,-0.007266318,0.029811902,0.013652678,0.0059730466,0.006773008,-0.01103947,0.018185792,-0.004083137,-0.031465154,-0.006353028,0.024638817,0.018732434,0.0030631863,-0.014985947,-0.008446261,0.018492445,-0.0026015418,-0.00019353237,0.016812526,-0.008086278,0.040851373,0.029091936,-0.005653062,0.043144595,-0.024718814,0.014572633,0.0024665482,0.00043331253,-0.011512781,-0.0068796696,0.03437168,-0.008499592,0.00513642,0.042397965,0.009752865,-0.02094566,-0.033865042,0.0067263437,-0.01563925,-0.01866577,-0.022918899,0.022118937,-0.018385783,-0.039891418,-0.0012307742,-0.16916521,0.018385783,0.0056063975,0.00046664427,0.021625629,-0.028398637,0.024198838,-0.015105941,-0.00873958,-0.016092561,0.03711822,0.019785717,-0.014665962,-0.031518485,0.0004064388,-0.017065847,-0.054237396,-0.0011841098,0.03322507,0.0016724197,0.04877099,-0.008846242,0.009872859,0.004249796,-0.011439451,-0.0029165265,-0.026212074,0.034611672,-0.015599251,-0.01269939,-0.004769771,-0.010719486,0.04807769,0.026278738,0.03717155,-0.0024115508,-0.013759339,-0.0029565247,0.00923289,0.018639104,-0.0013457687,0.019572394,-0.002366553,-0.00012093169,-0.005823054,0.024572153,0.012166083,-0.0003724821,0.0069929976,-0.028878612,0.03362505,-0.02519879,-0.010352836,0.013186034,0.008786244,0.014825955,-0.011779434,0.007939619,-0.0063196965,-0.007939619,-0.014879285,-0.005359743,-0.023972182,-0.017385831,-0.025825426,-0.014079324,-0.019639056,-0.009932856,-0.00087829115,0.021305643,-0.025078796,0.0067230104,0.022998895,0.0023565535,0.019545728,-0.0000065491645,-0.02545211,-0.003443168,0.013079372,0.016332548,-0.012799385,0.021812286,-0.02202561,0.013772672,-0.010672821,0.009119562,-0.0049130972,0.012326075,-0.02713203,-0.009419547,0.013839335,-0.0024082176,-0.0035498296,-0.0008378764,-0.00013749339,0.017932473,0.019719053,0.012732722,0.02005237,-0.039091457,0.009306219,0.017545825,-0.024332166,0.025918756,0.02861196,0.0057463907,-0.016372547,0.023092225,0.036504913,-0.023638865,-0.005616397,0.02534545,0.010319505,0.003559829,0.019132415,0.027012037,0.0075329714,-0.011146131,0.014959281,-0.021052323,0.04130468,-0.029731905,0.0046431106,0.011612776,-0.0037531531,-0.022238933,-0.08372931,-0.038451485,0.020359023,0.00079787837,0.0010774483,0.027212027,0.008286268,-0.0014765958,-0.010059517,0.04479785,-0.0046697757,0.0034665002,-0.0011657773,0.01032617,0.060903743,-0.008526257,0.0036298258,0.0031815139,-0.01901242,0.007932953,0.0073263147,0.0021948947,0.005979713,-0.023705529,-0.01939907,-0.012706056,-0.027438682,0.015759243,0.02089233,0.004699774,-0.00061413716,-0.024772143,0.019559061,-0.032638434,-0.014025993,0.02158563,-0.026118746,-0.020519014,0.011186129,-0.032318447,0.00070288294,-0.016892523,-0.003806484,-0.016225887,-0.02054568,-0.0084662605,0.0050697564,0.024985466,0.020492349,-0.037091553,-0.0072796503,-0.020292358,-0.02118565,-0.009392883,0.022038942,-0.016052563,0.04063805,0.014332645,-0.029411921,-0.0075063063,-0.022452256,-0.00047331062,-0.0016899188,-0.001542426,-0.00569306,-0.010806148,-0.018679103,-0.019465731,-0.0012532731,0.012026089,-0.013112703,0.028451966,-0.011879429,-0.0104195,-0.01811913,0.014479305,0.0012991043,-0.015465924,0.022945564,-0.010832814,-0.008639585,-0.01505261,0.0040931366,-0.0166792,0.019772384,-0.008252937,0.013879334,0.0036131598,-0.0048064357,-0.029865233,-0.014625965,-0.0025948754,0.01563925,-0.018172462,-0.019545728,0.01718584,-0.0043364586,0.014612632,0.009739532,-0.0007745461,0.004426454,-0.028078651,-0.051117547,0.028905278,0.024812141,-0.007739628,-0.0007453809,0.014599299,-0.017665818,-0.028691955,-0.006199702,-0.015039278,0.006563018,0.014132654,-0.037198212,-0.017305836,0.0007732962,-0.041811325,0.007192988,0.012886048,0.026052082,-0.017092513,0.009719533,0.003806484,-0.01707918,0.006369694,0.025945421,0.014465972,-0.0017932472,0.013559349,-0.00080704456,-0.029118601,0.015332597,-0.0003456084,0.027705336,0.005653062,0.026692051,-0.0058563855,-0.008479592,-0.005329744,0.002588209,-0.029598579,-0.013606014,-0.005306412,0.019985707,-0.015225936,-0.013972662,-0.0073263147,-0.008906239,-0.0015674247,0.02257225,0.00875958,0.015159272,-0.0005312245,-0.011759436,-0.017772479,-0.0023148889,-0.013852668,-0.0012491067,-0.021852285,-0.0022915567,-0.00061747036,0.018372452,0.006826339,0.024678815,-0.033945035,0.02975857,0.014519303,-0.016572537,0.009766198,0.027838662,-0.023745526,-0.0035998272,-0.004733106,0.013932664,0.012246079,0.0088862395,0.010266174,0.0065830173,-0.006253033,-0.011432785,0.00769963,-0.0046097785,-0.0053830747,-0.028531963,0.03733154,0.0036431584,0.055037357,0.0084662605,0.013592681,-0.008212939,-0.0075929686,-0.039784756,0.0056463955,-0.0013541017,-0.016745862,0.041118026,0.029225264,0.0048031025,0.017599154,0.011152797,-0.01906575,0.00003372234,-0.003184847,-0.001088281,0.01450597,-0.012919379,0.036024936,-0.007899621,-0.0028998607,-0.0044331206,0.019972375,0.018705769,-0.032371778,-0.03687823,0.004963095,-0.03445168,0.0011974425,-0.008772912,-0.011239461,-0.033305068,0.046717755,0.0067763412,0.003559829,-0.0016924187,-0.017852476,0.04330459,-0.0117061045,0.008572922,-0.0050297584,0.013479353,0.0015207604,-0.019559061,-0.0038798137,-0.002999856,-0.02415884,0.026745383,-0.007559637,-0.04122469,0.04311793,0.0091128955,0.073383145,0.017025849,-0.0053830747,0.0018699102,-0.00024852974,0.027265357,0.016052563,0.035758283,-0.019119082,-0.023785524,0.0021215647,-0.011339456,0.0166792,-0.019612392,0.004463119,0.005656395,-0.009746199,0.01979905,0.0071863215,-0.0005449738,0.004813102,-0.015825907,0.024065511,-0.0033565054,-0.031011844,-0.008059613,0.020825667,0.008792911,-0.017239172,-0.041704662,-0.0041698,0.015439259,-0.038158167,-0.01742583,0.013106037,0.00985286,-0.007739628,0.0243055,-0.022812238,0.022598915,-0.0038164833,0.023878854,-0.025065463,-0.010146179,0.011646108,-0.004829768,-0.016012564,-0.0066263485,-0.035411634]},{\"id\":\"96b406c8-80bd-4734-8fe8-9ae8992f3206\",\"text\":\"What do I need to do to get paid, pay per views or per video? \",\"vector\":[-0.012078888,-0.009354327,0.0030635095,-0.050547097,-0.022341402,0.0067659933,-0.013188173,-0.015075905,-0.0013955267,-0.025896305,0.019798478,0.014595863,-0.0047452776,-0.012987074,0.0108463485,-0.009328378,0.016126808,0.017203657,0.021108862,-0.005027464,-0.037988167,0.0035289554,-0.0076417453,-0.0009008891,0.0010168451,0.004472821,0.007181165,-0.0028024057,0.0026142814,-0.011566411,0.014012028,-0.013765521,-0.0039733183,-0.015984092,-0.013817417,-0.0032094682,0.010612815,0.004823122,0.003989536,0.0041646864,0.01781344,0.010509022,-0.0033570486,-0.035834465,-0.010431177,0.012377292,-0.012072401,-0.028491125,0.0024845402,0.01099555,0.006243786,-0.0037689763,-0.031215686,-0.037728686,-0.008517497,0.012195655,0.010625789,0.039519113,0.007330367,-0.016905254,0.004680407,0.010541457,-0.01920167,-0.004686894,-0.011183674,-0.0018066436,-0.012377292,0.011709126,-0.02926957,-0.010800939,0.019850373,-0.001509861,0.008082865,-0.0018196176,0.03072267,-0.011962121,-0.006195133,-0.0152834905,0.008965104,0.011637769,0.010489561,-0.0036522094,-0.003177033,0.014972112,0.018721627,0.0032824476,0.006224325,0.018228611,-0.0077844607,-0.010541457,0.014037977,0.006282708,0.030696722,0.010554431,0.009107819,0.03534145,-0.020680716,0.012182681,-0.0057410398,0.020473132,0.01686633,0.0114820795,-0.013947158,-0.013648754,0.0031818983,0.0007508761,-0.013376297,-0.013253044,0.007427673,0.004427412,-0.01581543,0.013973107,0.007602823,-0.026246605,0.012636774,-0.004242531,-0.009172689,-0.009269995,-0.033810508,-0.01064525,0.020602873,0.004680407,0.029736638,0.009334866,0.028361384,-0.009788959,0.0011790214,-0.0117221,0.03318775,-0.0060491743,0.013557935,-0.0021812706,0.012935178,0.009834369,-0.02025257,0.008874285,-0.0070319627,0.0016087885,-0.024559973,-0.0055723763,0.024858378,0.015517024,0.0033570486,-0.00681789,0.009269995,0.013648754,-0.0114301825,-0.035964206,-0.0055107493,-0.0011287468,0.0065746256,0.0034219192,0.012137271,0.0013168713,-0.006639496,0.015841378,-0.015062931,0.018708654,0.006804916,-0.01686633,0.009659218,0.03217577,-0.002137483,-0.0048750183,-0.0064383973,0.02828354,0.03458895,0.000666139,-0.0094321715,0.022704676,-0.00014889808,0.00041963108,-0.036301535,0.0075314655,-0.012636774,0.027634835,-0.0012503789,-0.010690659,0.012584878,-0.015906248,0.0010573892,-0.014115822,0.0006633009,0.03879256,-0.0123837795,-0.023885319,0.0123837795,-0.019863348,0.011151239,-0.0140769,0.005562646,-0.007855818,-0.005643734,-0.006428667,-0.666765,0.005948625,0.036950238,-0.00084493833,0.014686682,0.014440174,-0.010937167,-0.00028745743,-0.029892327,0.022017049,-0.0041841473,0.008348834,0.008627777,0.0050955783,0.0020336902,-0.013830392,0.03578257,-0.034303524,-0.025325445,0.008549932,-0.025870357,0.010684172,-0.016269522,0.039856438,-0.0020515297,-0.013181686,0.0007131701,-0.029736638,0.007816896,0.03767679,-0.009587861,0.037572995,0.008647238,0.019513048,0.0461878,-0.011696151,0.0016517652,0.0037073493,-0.019123824,0.040790573,-0.030826464,-0.0068438384,-0.003996023,-0.021939205,0.0004358487,0.0067530195,0.023781527,-0.0032662298,-0.00075939036,-0.0019380063,-0.016503057,0.007512004,-0.0007411455,-0.014297459,0.014803449,-0.008595342,0.010210617,-0.0029889084,0.0015909491,0.013791469,-0.022899289,-0.014219615,-0.032435253,-0.025390316,-0.022886313,0.0012495681,-0.0034997638,0.020356365,0.006830864,0.010320897,0.00670761,0.010437664,-0.009827881,0.0043398365,-0.016749565,0.029399313,-0.008043942,0.0020061203,-0.015491077,-0.010074389,-0.01020413,-0.0120659135,0.0020580168,0.0176837,0.011015012,0.020148778,-0.0154262055,-0.0150888795,0.023898294,0.0038273598,-0.0033505615,0.028750608,0.016879305,-0.009717601,-0.023872346,0.024235621,-0.011702639,-0.0018325917,-0.014050951,-0.001584462,-0.016684694,0.003415432,-0.016983097,-0.0026272554,0.03217577,-0.0031348672,-0.021666748,-0.005825371,0.026311476,-0.018501068,0.00045125544,-0.015971119,0.00794015,0.00039246655,-0.012766515,-0.031059997,0.014803449,0.0035257118,0.010294949,-0.0041938783,0.0013071407,-0.0031121625,0.00507936,-0.014842371,0.01816374,0.024923248,-0.004897723,-0.0024618355,0.0051604486,0.009542451,-0.0069930404,-0.033966195,0.009393249,-0.002958095,-0.0018147524,0.002268846,0.0070319627,0.0004808526,-0.013596858,-0.013934184,0.017138787,-0.0023888564,0.021031016,-0.01020413,0.008517497,-0.010606327,0.0053096507,0.014466123,-0.013259531,0.026155787,-0.009886265,-0.022315454,0.008329373,0.0016120321,-0.010476586,0.0048004175,-0.0018115088,-0.020356365,-0.027505094,-0.023366356,-0.0013038971,0.0012179437,-0.019448178,-0.0037592456,-0.012831385,-0.014543967,-0.002917551,-0.00066776073,-0.0115534365,-0.009406223,0.011559924,0.0038143857,-0.016204651,0.022536013,0.0076871547,0.0142585365,0.036249638,-0.0018634052,-0.013726599,-0.0073887506,0.00043625414,0.0017466383,-0.00760931,0.008627777,0.00890672,0.0038273598,-0.031682756,0.057345524,-0.02986638,0.009153228,0.01154695,0.008926181,-0.007953124,0.014336381,0.0030521571,-0.00069411437,0.019863348,0.014375304,0.0034381368,-0.0050988216,0.011443157,0.007700129,0.008608316,-0.0025575196,0.0015536486,-0.026532035,0.00782987,-0.032824475,0.01851404,0.031812496,0.027245611,-0.0154781025,0.027790524,0.0045733703,0.007090346,0.029684743,-0.012442162,0.006039444,-0.0055496716,0.034147833,-0.01645116,-0.024274543,0.024780532,-0.03793627,-0.0030035044,0.019513048,-0.009419197,0.015400258,0.00771959,-0.01636034,-0.029243624,0.0059129465,0.0009625161,0.012130784,0.036483172,-0.0050177337,0.0073887506,0.0055723763,0.010690659,-0.009088358,-0.0033116392,0.025234627,0.031994134,-0.028205695,0.027842421,0.013648754,0.021614851,0.022691702,-0.019383306,-0.00789474,-0.00093008083,0.020226624,-0.019603867,0.011858328,0.008802927,-0.03881851,-0.012980588,0.003908448,0.0055237236,0.006441641,0.019110851,0.010249539,0.026402295,-0.016464135,0.0042555053,0.020732613,-0.0019915244,-0.0054588527,0.020161752,-0.0038857432,0.0073822634,-0.022665754,0.009977084,0.003966831,0.0065421904,0.018021027,-0.004910697,-0.016788486,0.0022720895,0.018838394,-0.005922677,-0.0053712777,0.017982103,0.006230812,-0.014725604,-0.014582889,0.0066492264,-0.009334866,0.0038435773,0.0024877838,-0.006159454,-0.016438186,0.013531987,-0.0036749141,0.0067465324,-0.0036489659,0.037754633,-0.006558408,-0.0081412485,-0.03129353,-0.0091662025,0.00008215241,-0.018669732,-0.031397324,0.021082914,0.0082645025,0.002513732,-0.029918276,-0.0041095465,-0.03290232,0.006668688,-0.0028721415,-0.020226624,-0.013973107,0.016113833,-0.016632797,-0.002452105,-0.0036878882,0.024066957,0.015932195,-0.024845403,0.010937167,-0.019642789,-0.0037722199,0.07493841,0.011008524,0.005569133,0.03938937,-0.0432816,-0.025870357,-0.009990058,-0.027634835,0.027141819,0.0018342135,0.011332877,0.010165208,-0.019383306,0.002945121,0.048471242,0.0012479463,0.0061983764,-0.02755699,0.0042457744,-0.0131103285,-0.006464346,-0.005621029,0.019668737,0.04587642,0.009451632,0.030982153,0.030696722,0.020019038,-0.016243573,0.005854563,-0.023716656,-0.022977132,0.0009990057,0.015049957,0.0061108014,0.018656757,-0.003681401,0.03980454,0.02300308,0.036561016,-0.0143104335,0.027063973,-0.008673186,-0.018137792,0.016464135,-0.023340408,-0.0020320686,-0.0029143074,0.023054978,0.0066622007,0.002075856,-0.013726599,-0.02496217,-0.0046739196,-0.014284485,0.005020977,-0.011676691,0.011618307,0.0010509022,-0.026155787,-0.016269522,-0.012675696,0.021108862,0.009665705,0.000935757,-0.020732613,-0.016269522,-0.015348361,0.0008506145,-0.015594869,0.004712842,-0.015361335,-0.040738676,-0.023625838,0.013168712,-0.0031316236,0.012805438,0.0016882549,0.01746314,-0.016087884,-0.008686161,-0.024689713,-0.022419246,-0.0015114828,-0.0045214742,0.0091662025,-0.016152756,-0.0001954224,-0.0068632993,0.0014985086,0.005835102,0.0015650009,0.0310081,-0.041620914,0.03593826,0.01616573,-0.003833847,0.01420664,0.0011019877,-0.0002513732,-0.014998061,-0.02872466,-0.005144231,-0.002945121,-0.010379281,0.0067595067,0.017359346,0.018929213,-0.0037819503,-0.026207684,0.018708654,-0.0056794127,0.0064838068,0.012792463,0.04284048,0.033706713,-0.0015406745,0.011929685,0.0032743388,0.020213649,0.0014636407,-0.043800563,0.015270516,0.025260573,-0.024118854,-0.0076222843,0.0077779735,-0.037754633,0.0060913404,-0.010736069,0.0012211872,0.0227436,-0.011689665,-0.020148778,-0.05238942,0.00029374176,0.006584356,0.000350098,-0.0003200954,0.00007034395,0.0018520529,-0.026090916,-0.008919694,-0.008874285,0.03131948,-0.035004124,-0.0035613906,0.010547944,-0.020914251,0.0150369825,0.005218832,0.007077372,-0.011274493,-0.020032011,0.007959611,-0.025429238,-0.019279514,-0.0150888795,0.052545108,0.00873157,0.028491125,-0.003026209,0.0010436042,0.018241586,0.015231594,-0.005569133,0.026622854,-0.011021499,-0.007336854,0.0039927796,0.02031744,0.0024877838,0.020278519,0.017320424,0.022756573,0.011812919,-0.019941192,0.006139993,-0.03490033,-0.033706713,0.011663716,0.0113718,0.003232173,-0.01002898,-0.015542973,-0.014271511,-0.0111642135,-0.01594517,-0.0027764575,0.00053842517,0.0071617034,-0.002494271,0.028750608,-0.0052155885,0.024157776,0.008673186,-0.025558978,-0.020006062,0.025883332,0.012078888,0.00818017,0.023184719,0.017852362,0.0198374,-0.017450165,0.03189034,-0.011566411,-0.02683044,-0.0049171844,-0.00022724949,-0.023690708,-0.039882384,0.019318435,0.00908187,0.0014101226,0.0072006257,-0.011585872,-0.007447134,0.0154262055,-0.019863348,0.0085304715,-0.02328851,0.0029272814,0.0029807996,0.023716656,0.024430232,0.0112355715,-0.009977084,-0.018916238,0.013609832,0.01990227,0.0072525223,0.025610875,-0.005831858,-0.025416264,0.0040057534,0.0008960238,-0.04629159,-0.019759556,0.027582938,0.02483243,-0.022445194,-0.004086842,0.006701123,0.010547944,0.044034097,-0.004206852,0.014673708,-0.0066881487,-0.022717651,-0.011125292,0.015997067,0.0049982723,0.018332405,0.0082645025,-0.007310906,-0.02385937,-0.00076993176,-0.0219911,0.030618878,0.008245041,0.009198638,-0.004151712,0.021394292,0.016126808,0.005779962,-0.008394243,-0.012033478,0.0065876,0.017268527,-0.021679722,0.0004109141,0.004174417,-0.028075954,-0.012545955,0.007194139,-0.0072525223,-0.035860416,-0.00072695507,-0.019214643,0.029113881,-0.0074211857,-0.024105879,-0.003681401,0.0038435773,0.01565974,0.0072136,0.018877316,0.032409303,-0.008465601,-0.02157593,0.0023645298,0.005381008,0.006564895,0.015231594,0.05205209,0.025429238,0.00925702,-0.004664189,-0.006276221,0.012026992,0.004145225,-0.014284485,-0.007576875,-0.012487572,-0.020927224,0.03710593,-0.0047582514,-0.011838867,-0.023431227,-0.0013890397,-0.0039052044,0.0054588527,0.000321109,-0.018916238,0.011605334,0.005676169,-0.006701123,0.0011514515,-0.0019477368,0.008478574,-0.016606849,0.01724258,-0.020070935,-0.010080876,-0.011806431,-0.0025056233,-0.0067595067,-0.008277476,-0.0100679025,-0.0009779228,0.0016225735,-0.02084938,-0.018708654,-0.0014571537,0.0021099132,-0.0015390527,0.03214982,-0.010444151,-0.006804916,-0.018124819,0.04284048,0.017060943,0.013908236,-0.029321468,-0.00800502,-0.017644778,-0.031059997,0.014089873,-0.025987124,-0.03697619,0.037521098,0.0022380324,-0.014440174,-0.023405278,-0.014336381,-0.04418979,-0.013609832,0.006039444,0.009763011,0.0058707804,0.0030099915,-0.017930208,0.026402295,0.0035062507,0.000026860444,-0.0023126334,-0.005799423,-0.007576875,-0.017437192,-0.0069930404,-0.0092894565,-0.019500073,-0.0018082653,0.024041008,0.007246035,0.025805486,0.009607322,-0.021121835,-0.005559402,0.005708604,0.015322413,0.012156732,-0.011670204,0.0038987172,-0.04011592,0.00034867896,0.013363324,0.010074389,-0.017450165,0.012364318,0.009756524,-0.021913256,-0.002753753,-0.0016087885,-0.0067854547,-0.0012430811,-0.0154262055,0.01933141,0.013609832,-0.010690659,0.012130784,0.016788486,-0.019603867,-0.00019521968,0.016347367,-0.007920689,-0.0018569182,0.023366356,-0.01939628,-0.013253044,-0.011598846,0.0026742865,-0.0113069285,-0.009218099,-0.002636986,-0.00019248294,-0.00048247437,0.006114045,0.00096900313,-0.020473132,-0.00094792026,-0.0016882549,-0.012682184,-0.026272554,-0.021978127,0.008258015,0.016879305,0.0015674336,0.006045931,0.008699135,-0.015257543,0.019188695,0.015841378,-0.006490294,-0.0010914463,0.23540208,0.010638762,-0.013045458,0.04805607,0.0267007,0.008867797,0.007395237,-0.0052447803,0.009185663,-0.011209623,0.0010071145,0.004680407,-0.019798478,-0.007220087,-0.0053031635,-0.045928318,-0.028387332,-0.017605854,-0.006564895,-0.0036295047,0.014219615,0.0154262055,-0.00016349394,-0.008634264,0.02179649,-0.004761495,0.0028234888,0.0052642412,0.012811924,-0.008660212,-0.0069022216,-0.0049625933,0.006139993,0.0024910273,-0.015335388,0.011689665,-0.008121787,-0.014479096,0.029529054,0.02926957,0.032435253,0.018008051,-0.011988069,-0.027868368,0.025494108,-0.0059680864,-0.013752547,-0.0050858473,-0.012104836,-0.001488778,-0.031475168,-0.00963327,0.02843923,0.023236614,-0.028024057,-0.0126497485,-0.00058221276,0.0024342656,-0.030359395,0.008258015,0.00066370633,0.024689713,-0.009140254,0.018306457,-0.006973579,0.0036522094,-0.0018974622,-0.009406223,0.017216632,-0.013596858,0.008854824,-0.025455186,-0.0011928064,0.0014936434,-0.011955634,-0.017346373,0.0038857432,0.030489137,0.03129353,0.024222646,-0.008219093,-0.0010955007,-0.015685689,-0.012811924,0.00046504042,-0.015166724,0.022380324,-0.016204651,-0.0016047341,-0.0057832054,0.0040738676,-0.0027553746,-0.05687846,-0.009068896,-0.014193666,-0.0010127907,0.018578913,0.014102847,-0.0026240118,0.005176666,0.0065389466,0.060978275,0.0067400453,-0.0106517365,-0.0075574135,0.0048004175,0.017502062,0.021238603,0.013843366,-0.023924243,0.017022021,-0.021056965,0.01686633,-0.01790426,-0.0074211857,-0.0038306033,0.016632797,-0.020667743,-0.008303424,0.009004026,-0.0064124493,-0.032357406,-0.014569915,-0.0024537267,0.014388278,-0.02170567,0.0040965723,0.0027407787,-0.034044042,-0.029970173,0.0059388946,-0.00045855338,-0.012143758,-0.010989063,-0.0201877,0.016957149,0.018656757,-0.02170567,0.006490294,0.003743028,-0.01645116,0.009269995,0.014297459,0.0012333505,0.022574935,-0.019980116,-0.00025907657,0.006016739,0.003756002,0.0077649993,-0.0042328006,-0.012001043,0.0059810607,-0.014219615,0.013557935,0.00394737,-0.0018666488,-0.037443254,0.0059615993,-0.016541978,-0.008186658,-0.015257543,0.02439131,-0.007070885,-0.026298502,-0.016619824,-0.16471918,0.023807475,0.022406273,0.0041095465,-0.012292961,0.008608316,0.0049463757,0.005601568,-0.026402295,-0.011268007,0.0002073829,-0.022613857,-0.016464135,-0.008556419,0.001871514,-0.00591619,0.00090818707,0.038040064,-0.0049625933,0.0109177055,0.04629159,0.019084902,-0.012727593,-0.029373365,-0.0026613125,-0.0075314655,-0.028491125,0.017696673,-0.01796913,-0.016671719,-0.0019753068,0.0021147784,0.0008177738,0.0020645037,0.012195655,-0.011060421,0.0015544594,-0.00523505,0.0040608933,0.02683044,0.0053355987,0.017009046,-0.0048555573,0.0144531485,-0.0062275683,0.030333448,0.011728587,0.02170567,0.025390316,-0.013253044,0.013519013,-0.022600884,0.0072136,0.011884277,0.0065389466,-0.008744544,0.0059745735,0.011216111,-0.016061937,-0.011222597,-0.0018796228,-0.007006014,-0.014777501,-0.024079932,-0.037313513,0.0024553486,-0.020992095,-0.0054880446,-0.018332405,0.0027488875,-0.008342347,-0.019785503,0.0076741804,0.0045117433,-0.0048750183,0.0029629602,-0.026960181,-0.015322413,-0.0072914446,0.024521051,-0.00004279933,0.045954265,-0.016840383,0.030956205,0.0071746777,0.015335388,0.016464135,0.041958243,-0.015075905,-0.027193716,0.0057961796,0.0039116913,-0.005718335,-0.0037787068,0.03850713,0.00002440246,0.012039966,-0.011378286,0.018890291,-0.021692697,0.022678727,-0.0031235148,-0.040894367,0.038040064,0.020135805,0.015374309,0.027245611,0.020369338,0.021095889,-0.00038212782,-0.03043724,0.025714668,0.014725604,0.0096786795,0.033265594,0.005212345,-0.026402295,-0.015581895,0.003319748,0.0029694473,0.053349502,-0.008154223,-0.021601878,0.009205124,-0.013376297,-0.012481085,-0.09652731,-0.009153228,0.013324401,-0.002371017,0.004991785,0.00681789,0.010774991,0.0054102,0.022445194,0.021939205,-0.011585872,-0.037780583,0.0012130784,0.0017125813,0.007992046,-0.018747576,-0.014803449,-0.0047971737,0.007901227,0.032539044,-0.009925187,-0.022600884,0.0071422425,-0.029918276,-0.03679455,-0.025442211,-0.020512054,0.004806904,0.0020385557,-0.004268479,0.00022522228,-0.022237608,0.010716607,-0.022665754,-0.021679722,-0.009951135,-0.025130833,-0.033966195,0.008751031,-0.030566981,0.015997067,-0.0003780734,-0.012669209,-0.017982103,-0.009269995,-0.009055923,-0.03477059,0.0053583034,0.01926654,-0.015685689,-0.0023937216,0.001659874,-0.023197692,0.0017271772,-0.0106517365,-0.008854824,-0.029477157,0.020576924,-0.011099343,0.018228611,-0.0267007,0.009639757,-0.022834416,0.013739573,0.022380324,-0.0029224162,-0.00225425,-0.009795446,0.008511011,0.0027440223,-0.034044042,0.023418251,-0.010554431,0.006915196,-0.008491549,-0.0053972257,-0.011229084,-0.011125292,0.005329112,-0.006292439,-0.019162746,0.00021224818,-0.011384773,-0.004297671,0.014102847,-0.012215116,-0.015166724,0.021082914,-0.0053939824,-0.028127851,-0.0048815054,0.016853357,0.023586916,0.018864343,-0.00058383454,-0.008627777,-0.037443254,-0.016334392,0.0059097027,0.012442162,-0.012747054,-0.013272505,-0.05093632,0.01268867,-0.010301436,-0.0010825265,0.00053518167,0.013013023,0.006399475,-0.018085897,0.0007010069,-0.00069411437,-0.012507034,0.026622854,-0.0068892473,-0.0017547471,-0.0045733703,-0.013006536,0.030073965,-0.0019704415,0.014414226,-0.0057896925,0.0005688332,-0.012889769,-0.0013403868,0.0132854795,0.017034994,0.010411716,0.011365312,0.0009714358,-0.004138738,-0.020979121,0.025727643,-0.014518019,0.0026272554,0.03116379,0.025078937,-0.009497042,-0.015387284,0.016269522,0.006253517,0.0072525223,-0.012870308,-0.02913983,-0.0032662298,-0.022497091,0.0041711736,-0.004304158,0.00084737095,-0.008569393,0.00890672,0.008206119,0.02302903,0.014349355,-0.018617835,-0.021160759,-0.019513048,-0.019305462,-0.00081331393,-0.016126808,0.01818969,-0.053608984,0.030541033,0.0044695777,0.02157593,-0.017865337,0.02157593,0.0075509264,-0.021809462,0.00053883065,0.0042846967,-0.035730675,0.009548938,0.003347318,-0.0105803795,0.0052480237,0.01787831,0.020875327,0.031656805,-0.0071292683,-0.010619301,0.0068632993,0.014764527,-0.0023402034,-0.02841328,0.024041008,0.03318775,0.0216408,0.00091872853,0.018527016,-0.014634785,-0.01977253,-0.03131948,0.0036716706,-0.0004901778,-0.015296465,0.017657751,0.007492543,-0.004356054,0.002152079,-0.014543967,0.017891284,0.026155787,0.0020547733,-0.0024861621,0.008705622,-0.008017994,0.017696673,-0.02328851,-0.03220172,-0.0073238797,0.007868792,0.010593353,0.001332278,0.015672714,-0.0025429237,0.013778495,-0.00035334151,0.026142813,-0.022834416,-0.029710691,0.016490081,0.0045506656,0.0042587486,0.0015001304,-0.007194139,0.016126808,0.021277525,-0.009782472,-0.0046349973,0.013947158,0.003921422,-0.008303424,-0.00084412744,0.0022785764,-0.02898414,0.01977253,-0.024352387,-0.030774567,0.017151762,0.010833374,0.069437385,0.011508027,0.01607491,-0.007512004,-0.0063086567,0.0076482324,0.029217675,-0.0045928317,-0.002813758,0.00064951595,-0.011527489,0.015542973,-0.00002537805,-0.019435203,-0.0021391048,-0.009814907,-0.008744544,0.018838394,-0.020862354,-0.0056177857,0.018643783,0.004774469,0.0035062507,-0.018695679,-0.004537692,-0.004268479,0.0069930404,0.009055923,-0.006626522,-0.032642838,0.0019963898,0.0074017243,-0.007207113,-0.0061172885,-0.009600835,0.0006345146,-0.0033311003,0.011131778,-0.010463612,0.015114827,0.016139781,0.0052155885,-0.027219664,-0.015802454,-0.046525124,-0.0031137841,-0.018332405,0.0053647906,-0.021407267]},{\"id\":\"f1e85f75-591a-4361-a15b-25990f171f4b\",\"text\":\"I also posted it on Tik Tok what about promoting for that one\",\"vector\":[-0.0174494,-0.0025092186,-0.003498081,-0.0009068515,0.011235495,0.019733088,-0.017954081,-0.0073115886,0.024199529,-0.019266257,0.0124656595,-0.0035075438,-0.00057092216,-0.017171824,0.00023479568,0.0059584086,0.024376167,0.00030714666,-0.016755462,0.0120303705,-0.030356655,0.0036210974,-0.006857374,-0.011841115,-0.009898087,-0.009935938,0.029170651,-0.009431255,0.016452651,-0.0034917723,0.004482212,-0.02195369,-0.037523147,-0.004434898,-0.028110819,-0.0227738,-0.02247099,-0.0058637806,0.007854123,-0.011696018,0.0064567826,0.023000907,-0.0057092216,-0.01577133,-0.03502497,0.024615891,-0.0050909854,-0.01555684,-0.009134755,0.011822189,-0.011910508,-0.0070150876,-0.03754838,-0.026672473,0.0071223327,0.007008779,0.0206289,-0.0033151335,-0.008592221,0.016011054,0.016250778,0.021638265,0.011323815,-0.009002275,-0.009620511,0.0024224762,0.0033750646,0.025423383,-0.011525688,0.016982568,0.03348569,0.003024941,0.019796174,-0.0047629415,0.0141184945,-0.012604447,0.009645745,-0.018925596,0.017903613,0.028691204,0.013247917,-0.03050806,-0.0044916747,0.033157643,0.034520287,0.026293961,-0.017310612,0.016995186,-0.005734456,-0.007198035,0.0045799944,0.01564516,0.013651663,-0.0010961074,-0.030735169,0.0046935477,-0.0028782678,0.038103532,-0.019960195,0.00010901932,-0.00023814708,-0.001708035,-0.049130846,-0.0046336167,-0.020591049,-0.0067627463,0.013613812,0.006119276,0.03441935,-0.009778225,-0.016982568,0.01873634,0.021688733,-0.041535374,-0.01847138,0.008093847,-0.0072863544,-0.0065040966,-0.022874737,-0.026293961,0.028211756,0.033838965,0.017184442,-0.012995576,0.030911807,-0.00932401,-0.003092758,-0.015291882,0.0045610685,-0.011803263,0.0142699,0.013500258,-0.015279264,0.0066744266,-0.013538109,0.028035115,-0.011361666,-0.01332362,-0.022420522,-0.025991151,0.016995186,0.022521459,-0.006844757,0.0036368687,-0.021713967,-0.006273835,0.011147176,0.006406314,0.016515737,0.0063905427,0.018282125,-0.020035898,0.0017916231,0.009040127,-0.018256892,0.013475024,0.02023777,-0.0025912295,-0.001849977,-0.017840529,-0.018294742,0.0023057684,-0.0011063588,0.0066113416,0.02732856,0.041106395,0.04047554,-0.0035548578,-0.014623177,-0.020225154,0.009652054,0.012768469,-0.018875128,0.008579603,-0.0047345534,-0.0034129159,-0.010352301,-0.0005240024,0.025637874,-0.007816271,-0.0042992644,0.005299167,0.022546694,0.015190945,-0.01821904,0.0062549096,0.0055199657,-0.014370835,-0.021284986,-0.03459599,-0.0028688048,0.02273595,-0.008630072,-0.00751977,-0.6262101,-0.016339097,0.029069716,-0.009652054,-0.0041636312,0.023884103,-0.0058543175,0.015708245,-0.003069101,0.02320278,-0.008995967,0.013159597,0.00547896,-0.0067942888,0.020641517,-0.023038758,0.03992039,-0.0072800457,-0.027278092,-0.006305378,-0.025700958,-0.013563343,0.019859258,0.0051319906,0.00777842,0.011803263,-0.0006533273,-0.0015085277,-0.0048701866,0.04034937,-0.035378247,0.044765342,0.008106464,-0.013399322,0.045926113,-0.030634232,0.0046273083,0.0011339586,-0.005396949,0.017474633,-0.055666488,-0.019770939,0.0016070985,-0.0053874864,0.0034097615,-0.008920264,0.022824269,0.011058857,0.020035898,0.008156932,-0.0018405142,-0.0102261305,0.016553588,0.0054758056,0.0006690987,-0.026521068,0.012358414,-0.011487837,-0.008762551,0.007879357,-0.008611146,0.002644852,-0.014648411,-0.0054505714,-0.022925206,-0.009349245,-0.0020423871,0.030003378,0.020818155,-0.025044871,-0.019442895,-0.002561264,-0.032173514,0.004106854,0.0035643205,0.022483608,0.016553588,0.0065671816,-0.003356139,0.011960977,-0.02273595,0.014206814,0.0023641223,-0.014421304,0.018332593,0.014560091,-0.029120183,0.017297994,0.009677288,-0.008926572,0.015090008,0.021234518,0.014194197,0.0036494858,0.01654097,0.0039302153,-0.007538696,0.0028483022,0.029776271,0.013941856,-0.009349245,-0.0042645675,0.009241999,0.0057092216,0.012509819,-0.018799426,-0.020490112,0.010345993,0.017550336,-0.011008388,-0.00661765,-0.02355606,-0.00042385448,-0.00069038995,0.017386314,-0.029700568,0.026016386,-0.01302081,0.02075507,-0.035605356,0.009689905,-0.017462017,-0.0009825538,0.015354967,0.0054947315,0.02148686,0.0048670326,-0.0023325798,-0.018244274,-0.0023278482,-0.017260144,-0.032022107,0.01637695,-0.020527963,-0.005598822,0.014812433,0.021284986,0.0067312038,0.0068258317,-0.023429887,-0.021146199,-0.031265084,0.0058322377,0.0062233666,-0.018988682,-0.015657777,-0.012358414,-0.0017868917,-0.0034349957,0.005466343,0.009115829,-0.033056706,-0.017941466,0.021499477,-0.0059237117,0.0082074,-0.005371715,-0.009746682,-0.027505198,-0.030280953,0.0073872907,0.04163631,0.0021717122,-0.01864802,-0.0028609193,0.016048905,-0.00391129,0.0075954725,0.003687337,-0.024615891,-0.019140085,0.00033100077,-0.00053819665,-0.001506162,0.03338475,0.020691985,-0.018029785,-0.018042402,0.008365113,0.00436235,0.009330319,-0.000072548115,-0.0039806836,-0.0026480062,-0.0015290304,-0.010276599,-0.016427416,0.020275623,-0.014509624,0.011872658,0.022824269,-0.0058448547,-0.019392427,0.0068762996,0.0021259752,0.008977041,0.012276404,0.022887355,-0.0015172019,-0.006699661,0.01702042,0.011323815,0.019581683,-0.053698223,-0.0015984243,-0.008276794,-0.0045831483,-0.008560678,0.03025572,0.020641517,-0.017537719,-0.021890607,0.0035043894,-0.0131217465,-0.0051509165,0.020288238,-0.011942051,0.00020443587,-0.0030170553,0.018635403,-0.0020565814,-0.018988682,-0.0038229704,-0.0063968515,0.014232048,0.011317506,0.01512786,0.018458765,0.0040816204,-0.01779006,-0.03333428,0.034545522,0.01009996,0.030230485,0.009128446,0.01207453,0.0058070035,0.01482505,0.016768077,-0.013487642,-0.016440034,0.01211869,0.0008138006,0.011140867,0.016604057,0.012932491,0.010560483,-0.02831269,-0.024527572,-0.0032126198,-0.014181579,0.018193806,-0.035958633,-0.010175662,0.02170135,-0.0021764436,-0.044412065,0.0073683653,0.037926894,0.040904522,0.011935743,-0.0049995114,-0.027050985,-0.014068026,-0.008182166,-0.013979707,-0.0056145936,-0.006213904,0.014332985,-0.011336432,-0.010175662,-0.005800695,0.036286674,-0.015354967,0.01439607,0.010844367,-0.006333766,-0.0030754094,0.011317506,0.014560091,0.016288629,-0.043175593,0.014030175,0.005870089,-0.020994794,-0.014131112,-0.008352497,0.017600805,-0.015708245,0.021310221,0.0039680665,0.028337926,0.009860235,0.00067422434,-0.022799034,0.009784533,0.026672473,-0.020174686,0.043503635,0.012194392,0.02445187,0.03161836,-0.020956943,0.0044443607,0.015594691,-0.016212927,0.023619143,-0.023833634,-0.009342936,0.014812433,0.022811651,-0.0110651655,-0.0074188337,-0.0057596895,-0.010655111,0.007866739,-0.0039302153,-0.008320954,0.015733479,-0.0014517509,-0.025032254,-0.00092893135,-0.030911807,-0.0033025164,0.14060456,-0.021449009,0.010238747,0.029473461,-0.013146981,0.018130722,-0.0036904912,-0.020288238,-0.01512786,-0.008535444,0.015859649,-0.027808009,-0.018244274,-0.0043339613,0.01031445,-0.000640316,0.00032074942,0.01009996,0.02054058,-0.026016386,0.017827911,0.017033037,0.0064914795,0.014749348,0.012774778,0.0034097615,0.016263396,0.04390738,0.016692376,-0.0037630394,-0.013967089,-0.0009715139,-0.009071669,0.0013728943,-0.014332985,0.0116897095,-0.00388921,0.021284986,0.023795782,0.013437173,0.026924815,0.02591545,0.03308194,-0.02221865,0.029246354,-0.0055420455,-0.009399713,0.003772502,-0.010156737,0.0006280932,0.011418443,0.0195943,-0.030407123,-0.017474633,0.0011008389,0.019884493,-0.015746096,-0.009204148,-0.022382671,-0.017827911,0.0056398273,-0.032047343,-0.0140554095,0.0016386412,0.0074062166,-0.0015101049,0.0009770339,-0.034444585,0.0017963544,-0.003949141,-0.0034318415,-0.013336237,-0.041283034,-0.021007411,0.015165711,-0.009557426,0.029473461,-0.0030880263,0.009500649,0.016755462,-0.016515737,-0.035681058,-0.017108738,-0.027404264,0.0026779717,-0.0016165613,-0.014597943,0.00704663,-0.019796174,0.01009996,0.041737247,-0.0019004452,0.04241857,0.0038324331,0.009910704,-0.011311198,0.02445187,0.031214615,-0.0039270613,-0.0148629015,0.01534235,-0.037523147,-0.025890214,-0.033107176,-0.010932686,-0.0043812753,0.014572709,0.016793313,-0.018370446,-0.0020944327,0.026394898,0.015657777,0.0007045842,0.023530824,0.011702327,0.021449009,-0.0032063113,0.01276216,-0.014623177,-0.0012301637,-0.0018468227,-0.008989658,0.018748958,-0.020527963,-0.010358609,0.0026984746,0.0097908415,-0.03850728,-0.035933398,-0.0003282408,-0.0058038495,0.011008388,-0.011367975,-0.010850675,-0.031744532,-0.0012143924,0.005087831,0.0028277994,-0.0032362768,-0.03588293,-0.012610756,-0.0054379543,-0.0026180407,-0.008989658,-0.00075938954,-0.042443804,-0.012982959,-0.003021787,0.007034013,0.019619534,-0.020427026,-0.004422281,-0.025259363,-0.029069716,0.005371715,-0.011740178,-0.005204539,-0.002632235,0.028464096,0.0029965527,0.04156061,-0.020086367,0.029851973,0.010680345,0.0068699913,-0.002870382,0.007639632,-0.010686653,-0.0070024705,0.009279851,0.011071473,0.004958506,0.025044871,0.038784854,-0.008573295,0.011866349,-0.019733088,-0.024249997,-0.010730813,-0.026420131,-0.021158816,-0.0010921645,0.0038040448,-0.009077977,-0.013222683,-0.00158975,0.018559702,0.005109911,0.024779914,0.012743235,0.013992324,-0.021600414,0.0062075956,-0.006750129,0.016793313,-0.003712571,-0.01696995,-0.007021396,-0.013285768,0.019770939,0.011683402,-0.0071917265,0.0034129159,0.017260144,-0.03161836,0.014648411,-0.009929629,-0.021284986,-0.019304108,-0.024641126,-0.012875713,-0.036160506,-0.01387877,-0.0012356837,0.027858477,0.0126864575,-0.032324918,0.012572904,0.020704603,-0.012913565,-0.021739202,-0.018786808,0.013083896,0.011077782,-0.007803654,0.029170651,-0.004718782,0.0013074432,0.034848332,0.007885665,-0.023051376,-0.0018941368,0.016604057,-0.019884493,-0.022029394,-0.0020723527,0.006806906,-0.020982178,-0.03338475,0.03515114,-0.0057691527,-0.028514564,-0.01091376,-0.010800207,-0.018622786,0.028918311,-0.005419029,0.0022568773,0.0012790549,0.002231643,-0.02178967,0.03361186,0.0077279517,0.004803947,0.007671175,-0.0065608732,-0.018673254,-0.023581292,0.013891388,0.004744016,0.0045263716,-0.0015487446,-0.031088445,0.003580092,0.026950048,-0.011632933,-0.016048905,-0.012087148,-0.009525883,0.029145418,-0.027959414,0.021764435,-0.0022836886,0.008566987,0.012068221,-0.015910117,-0.005702913,-0.023455122,-0.012434117,-0.013803068,0.028287457,-0.0033592933,0.0012695921,0.007103407,0.00250291,0.016427416,-0.003428687,-0.011134559,-0.0006115333,-0.02414906,-0.008737316,-0.0053464808,0.017222293,0.01598582,0.00183736,0.025322447,0.026546303,0.03949141,-0.011828497,0.007683792,-0.0065671816,0.010276599,-0.012446733,0.0062359837,0.014320368,-0.045270026,0.018193806,-0.00593002,-0.026445366,-0.007999218,-0.004933272,0.018080253,0.0017269606,-0.00032607224,0.02818652,0.02289997,-0.006743821,-0.023127079,-0.020010663,0.022382671,0.015329733,0.012213318,0.030659465,0.010144119,-0.0053086295,-0.017928848,0.02191584,-0.01882466,-0.012162849,-0.012150233,-0.01211869,0.0032283913,-0.015506372,-0.018080253,-0.024842998,-0.0031747688,-0.0068258317,0.0264706,-0.029195886,0.0006939385,-0.017991934,0.01607414,0.027732307,0.023127079,0.0048544155,-0.0056051305,-0.032324918,-0.00782258,-0.0070844814,0.0016086757,-0.0050562886,0.027151922,0.01580918,-0.041106395,-0.01890036,0.015783947,-0.043629806,-0.029296823,0.013626429,-0.0053748693,-0.005702913,-0.008440816,0.0069898535,0.015392818,-0.0029350445,0.017386314,-0.020212537,-0.023316335,-0.019392427,-0.018812042,-0.01623816,-0.004920655,-0.013714748,-0.008762551,0.022912588,0.016919482,0.004374967,0.020856006,-0.0027347486,0.000016609181,-0.032198746,0.009973789,0.015695628,-0.0038135075,0.03520161,-0.026268726,-0.009241999,-0.00030478096,0.0148629015,0.009342936,0.008100155,0.0031826543,0.014888136,0.043554105,-0.014534858,-0.0005914249,-0.014711496,0.010516323,0.025663108,-0.00017466748,-0.010812824,0.013247917,0.0009383941,-0.004415972,-0.0064725536,0.027177155,-0.035908163,-0.023177546,0.04045031,0.017386314,-0.020641517,0.004671468,0.0059804884,-0.02050273,-0.025271978,0.015367584,-0.030230485,0.00096520537,0.018521849,0.014761965,-0.011014697,-0.022319587,-0.0034791555,-0.0074062166,-0.008768859,0.009469107,-0.022660246,-0.011828497,0.00068211,-0.004460132,0.006901534,-0.020603666,-0.000942337,0.03459599,-0.0076901005,-0.0052486984,0.23780642,0.0076648663,0.0030911807,0.053395413,0.0074945358,0.013613812,0.011311198,0.022534076,-0.0135254925,-0.0002897982,-0.0035359322,0.009077977,0.00050468254,-0.0019193708,-0.002703206,-0.0019241022,-0.0088256365,-0.019897109,-0.012042987,-0.00028920677,0.0045200633,-0.0116897095,0.013475024,-0.0050310544,0.025864981,0.0070150876,-0.00391129,0.00031739802,0.02831269,0.0078288885,-0.010863292,-0.01779006,0.022571927,-0.0124656595,-0.022193415,0.0058196206,0.0016228699,-0.00320158,0.021840138,0.012945107,0.012787394,-0.01684378,0.0035359322,-0.020856006,0.008844562,0.023745315,-0.019606918,0.013916622,-0.013538109,0.011834806,-0.012320563,-0.0083903475,0.030735169,0.033056706,-0.0022237576,-0.0021117812,0.012181776,0.025839746,-0.011910508,0.00889503,0.019707853,0.034570754,0.015935352,0.015493754,-0.01302081,-0.0052707787,-0.00079645216,0.020427026,0.037043698,-0.015872266,0.0017017265,-0.010402769,-0.0033466762,0.017562954,-0.012995576,-0.017247526,0.021449009,0.014635794,0.023732698,0.039390475,0.011260729,0.00068487,-0.004649388,-0.013197449,-0.0029855128,-0.00941233,-0.009191531,-0.019430278,-0.008289411,-0.00016964036,0.0058385464,-0.010781281,-0.019417662,-0.019392427,-0.029776271,-0.019783556,0.0018089715,-0.0013027119,-0.012995576,0.0004400201,-0.022635013,0.014433921,0.025587406,0.009784533,0.0017537719,-0.0058732433,-0.018660638,-0.015014306,0.017247526,-0.032425854,0.023228014,-0.03472216,0.010446929,0.005157225,-0.021322839,0.021158816,0.021449009,-0.007343131,0.024464486,-0.021297604,-0.03166883,-0.027076218,0.00022888143,-0.00032548083,-0.014497006,0.021688733,0.017007802,0.00472509,-0.01332362,-0.003712571,0.026546303,0.01366428,-0.016212927,0.022672864,-0.02922112,0.0023672767,0.0201116,-0.016086757,-0.002561264,0.008913956,0.003807199,0.0038229704,0.011752795,0.016288629,0.004766096,-0.044033553,0.009406021,-0.006049882,-0.007336823,-0.01461056,-0.0145853255,-0.00048181412,-0.013563343,0.0036116345,0.023492973,-0.016755462,0.0039302153,-0.03636238,-0.021739202,-0.027379028,-0.018080253,0.0015306076,0.033056706,-0.0046872394,-0.021348072,0.0018878282,-0.15604785,0.0060751163,0.015266648,0.0238084,-0.0140554095,0.0016402183,0.011166101,-0.027151922,0.017045652,-0.000029571243,0.054253373,-0.012080839,-0.0015235104,-0.022546694,-0.009166297,-0.03270343,-0.010364918,0.007936133,0.018029785,0.011039931,0.03653902,-0.0077847284,-0.0036084803,-0.0069772364,0.002275803,0.020098982,-0.015544223,0.010232439,-0.006970928,-0.03189594,-0.011696018,-0.0021023182,0.02298829,0.006756438,0.018925596,0.007267429,-0.0060688076,-0.025625257,0.017474633,-0.0008587489,0.0015164134,0.019821407,0.0023041912,-0.006554565,-0.015304498,0.0134624075,0.012295329,0.00041123742,0.01121657,-0.002479253,0.013348853,-0.008352497,0.039516643,0.00037575193,0.011847423,0.020124217,-0.0042992644,0.012478276,-0.016957333,-0.020881241,-0.005251853,-0.012402574,-0.011248113,-0.013197449,-0.01207453,-0.030709933,-0.023089226,0.015670393,-0.016654525,0.015569457,-0.033283815,-0.008598529,0.013803068,0.015153094,0.0046304623,0.016566206,-0.030432358,0.0401475,-0.0054947315,0.012635989,0.026268726,0.041106395,-0.026268726,0.0049490435,-0.0063495375,-0.0077594942,0.0067942888,0.0059521,-0.011916817,-0.0063274577,0.011632933,0.0030706779,-0.02273595,0.0025786124,-0.007374674,0.015910117,0.006428394,0.0069204597,0.0034665384,-0.029296823,0.010396461,-0.006157127,-0.016604057,0.020691985,0.041737247,0.0029902442,-0.021461627,0.0058795516,0.015203562,-0.0052739326,-0.031164149,0.02182752,0.031012744,0.0130586615,0.011298581,0.037270807,0.015329733,-0.004056386,-0.007103407,0.0132353,0.04186342,-0.010995771,-0.0021795977,0.011153485,-0.012566595,-0.024439253,-0.10810301,-0.013866154,0.019001298,0.0069204597,-0.014900752,0.031567894,0.005788078,0.010200896,-0.0026006922,0.036967997,-0.016654525,-0.033107176,0.0016733381,0.0009029086,0.029851973,-0.026874347,-0.008579603,-0.010976845,-0.018584935,0.010585717,0.008226326,-0.03141649,-0.00007796951,-0.013803068,-0.010181971,-0.031466957,-0.03245109,0.016818546,0.008554369,-0.007021396,-0.019152703,-0.01861017,0.005680833,-0.016011054,-0.012982959,-0.007835196,-0.0058732433,-0.02634443,0.0076901005,-0.030861339,-0.011052548,-0.028009882,-0.017045652,-0.00713495,0.011746487,0.0037914277,0.001167867,0.015380201,0.005217156,-0.030306188,-0.010938995,0.0072863544,0.004321344,-0.031820234,0.013260534,-0.020856006,-0.007198035,0.030432358,-0.011115633,0.031265084,-0.010869601,-0.007873048,-0.020729836,0.014181579,0.0053086295,-0.009298776,0.017689124,-0.030709933,0.0048828037,-0.006996162,-0.021158816,0.011323815,-0.010869601,0.0014060141,-0.013954473,0.001684378,-0.03764932,-0.022117713,0.02552432,-0.04309989,-0.031088445,-0.016831163,-0.013260534,-0.013386705,0.021348072,0.009046434,0.007116024,0.019392427,0.00811908,-0.042771846,-0.027782775,0.012484585,0.0016906866,0.0013665857,-0.043377466,0.007627015,0.009374479,0.012635989,0.019770939,0.027379028,0.004658851,-0.005122528,-0.039314773,0.020830773,0.014156345,0.012699075,-0.025499087,-0.021625647,0.0060561905,-0.019417662,0.0005279453,-0.010390152,-0.009847619,0.0046209996,-0.0034570755,0.0058448547,-0.003248894,-0.024350934,0.006198133,-0.03093704,0.014686262,-0.017197058,-0.009954863,-0.0022947285,-0.016692376,-0.010522631,0.012181776,0.021903222,0.027177155,0.012774778,-0.021549946,-0.008913956,0.014648411,-0.011027314,-0.0017600805,0.0055672796,-0.006605033,-0.028867843,0.011197644,-0.0018878282,-0.009670979,-0.0022631858,0.013916622,-0.003532778,0.028893076,-0.018711105,-0.004611537,-0.010200896,-0.013739983,-0.007709026,0.03356139,0.010118885,0.050771065,0.012421499,-0.013739983,0.008188475,0.031870704,-0.005277087,-0.0037977363,-0.0058984775,0.005359098,-0.013096512,0.020767687,0.028136052,0.020704603,-0.005841701,0.0070781726,0.0135885775,-0.018622786,-0.020565813,0.020578431,-0.022849502,0.0018925596,0.018509233,0.014623177,-0.0047377073,0.01818119,0.023379419,-0.014888136,0.00051375106,-0.012219626,0.029877208,0.0009715139,-0.002230066,-0.000732184,0.016490502,0.0050342083,0.031441722,-0.02019992,0.02320278,-0.0035864005,-0.012402574,-0.021726584,0.016048905,0.0044380524,0.027000517,0.0028136054,0.007469302,-0.024678977,-0.004043769,-0.010345993,0.009008584,0.023732698,-0.027353795,-0.0032063113,0.0056051305,-0.027530434,0.025335064,-0.028994013,-0.012087148,0.023303717,0.016263396,-0.0007010356,-0.022571927,-0.016831163,0.0015929043,-0.00078422937,0.007980293,-0.006535639,-0.0060656536,-0.008813019,0.0444373,0.017436782,-0.002409859,0.0044191265,-0.026066855,0.025587406,-0.008781477,-0.0096331285,-0.0017537719,0.01461056,-0.0013587001,0.0042046364,0.020767687,-0.029120183,-0.011664475,-0.0012404151,-0.015140477,-0.01696995,0.01834521,0.017373698,0.07146305,0.007399908,-0.02500702,0.0017301149,-0.0107245045,0.03136602,0.017184442,0.023467738,-0.030482827,-0.010680345,0.0097277565,-0.009469107,0.016578821,-0.012900948,-0.009570043,-0.0039207526,0.021158816,-0.0042235623,-0.015657777,-0.011323815,0.008459741,-0.016149841,0.020427026,0.013601195,-0.011784337,-0.008074921,0.033359516,0.0069898535,-0.033157643,-0.050468255,0.020263005,0.0035485493,-0.022357438,-0.030608997,0.007709026,-0.026420131,-0.009311393,0.017550336,0.011506762,0.026117323,0.005371715,0.0042645675,-0.026849112,-0.013424556,0.0046399254,-0.0055578165,-0.00008279948,-0.009588969,-0.06374141]},{\"id\":\"63b93c4c-cd1e-468c-b1e6-3882ab85e91c\",\"text\":\"My message was to Harney & Son as follows\\nMy question was how differently do you brew herb infused and tea leaves? I ordered Chamomile tea and received the herbal infused variety versus the leaves and I'm at a loss on how to use when brewing one cup? \",\"vector\":[0.009070815,0.024132282,-0.0030132723,-0.021482822,0.009436257,0.025489641,0.016379673,-0.014682973,-0.030462274,-0.0064246166,-0.010689205,0.027225494,-0.028060794,-0.020386493,0.013051531,0.030488377,0.015975075,0.009840855,0.016249157,-0.0029284374,-0.03972886,0.0021681858,0.017502105,0.014944004,-0.008803258,0.021182636,0.018050268,-0.016745115,-0.039598346,0.00017915266,-0.0034195012,0.023571067,-0.016379673,-0.030853821,-0.033855673,-0.027590938,-0.0026103063,-0.0014642187,0.035943918,-0.009468886,0.0054033343,-0.016379673,0.00092665874,-0.019825276,-0.035604578,0.02522861,0.0040851296,-0.006943415,-0.0145133035,0.029444255,0.057217915,-0.015792353,-0.006780271,0.019564247,-0.0013451235,-0.003957877,-0.0021159796,0.021978779,0.017593464,0.010982864,0.0010131252,0.021078223,-0.015113674,0.023336139,-0.008901144,0.0077656615,-0.0026886156,-0.0031062646,-0.006626915,-0.0026739326,0.026990568,0.03732738,-0.017958907,-0.0011803479,0.0040590265,0.0031323675,-0.03876305,-0.010082308,-0.0056154216,-0.010976338,-0.0015555795,-0.03210677,-0.018546227,0.014800437,0.020242926,0.007250126,0.018076371,0.015557426,0.0119291,-0.028347926,0.01516588,0.032524418,-0.01171375,0.00596455,-0.019407628,0.0058960295,0.00046169793,0.040198717,0.007863548,0.0011713749,-0.025489641,0.01026503,-0.006245158,-0.02154808,-0.008607485,-0.022357274,0.018546227,-0.00398398,-0.0029317003,-0.023558015,-0.025189456,0.03784944,-0.0067280647,-0.028922195,-0.018950824,-0.007139188,0.00702825,-0.028347926,-0.0071718167,-0.012379378,-0.012111821,-0.0026429351,0.01576625,-0.028321823,0.03910239,0.029365946,-0.024223642,0.0033134576,-0.0259856,-0.008150682,0.014591613,0.010832772,0.0022677036,-0.0052760816,-0.020425647,0.025828982,-0.011511451,-0.015283343,0.0022073402,-0.0060330704,-0.012973223,0.014030397,0.009149124,0.0024324793,-0.022801027,0.020216823,0.029783595,-0.0060363333,-0.010134514,0.0019136808,0.009227433,-0.019290164,0.023649376,-0.00016916009,0.023218675,0.02036039,-0.015583529,0.01333214,-0.01662765,0.019133545,0.011563657,-0.0021078223,0.0030703729,-0.005011788,-0.0015107148,0.027747557,0.024863169,-0.018624537,0.004568036,0.0045810877,-0.0077395584,0.010147566,-0.028687267,0.010408596,-0.0038240987,-0.018454866,0.030227348,0.00035443067,-0.004212382,-0.02257915,-0.008718424,0.0050868345,0.010369442,0.02105212,0.0063365186,-0.022566099,0.03228949,0.022213707,0.020895502,-0.0024504252,-0.008764104,0.033307508,0.0032090454,0.0046952884,-0.6431795,-0.031767428,0.016366621,-0.014160912,0.026351042,0.025502693,-0.0125164185,0.02837403,0.007948383,0.01001705,-0.014434994,0.020373441,0.008202888,-0.011909523,0.006819425,-0.013077634,-0.013534439,-0.018272145,-0.0032955117,0.0038893565,-0.022044037,0.014187015,-0.023779891,0.004352686,0.003651166,-0.009109969,0.005201035,0.005292396,-0.025045888,0.037483998,-0.0058927666,0.023988714,0.022592202,0.0066464925,0.04406197,0.017006146,-0.012248863,0.0071457135,0.017828392,0.01354749,-0.0272777,-0.010943709,0.032080665,-0.029600874,-0.019381525,0.0052793445,0.0057100453,-0.016810372,0.012007409,-0.009233959,0.0052760816,0.013743263,-0.003377084,0.007406744,0.008496547,-0.007857022,0.030879924,0.01516588,0.003674006,0.009305743,0.016862579,0.0032057825,-0.0047474946,-0.0046137166,-0.027721453,0.007896177,-0.008620537,-0.013116789,0.01031071,0.009677711,0.010180195,0.0098082265,-0.027016671,-0.0088097835,-0.022461686,0.014735179,0.017737031,-0.008875041,0.0033575066,-0.006160323,0.005318499,-0.0054653287,-0.01866369,-0.017710928,0.02957477,-0.015466065,-0.0114853475,-0.0044473093,-0.0023884303,-0.01934237,0.013469181,0.041999828,0.021978779,-0.035343546,-0.017684825,0.016927836,-0.020503957,0.012921017,-0.0047833864,-0.048003532,0.00473118,-0.02325783,0.003928511,0.0016771219,0.0117790075,0.00396114,-0.00064278796,0.008548753,0.036178846,-0.010656576,0.023897355,0.010604369,0.0039350367,0.015479117,0.017058352,-0.02376684,0.017880598,0.008098476,-0.0060624364,-0.008777156,0.017684825,-0.007837445,0.01806332,0.0038795678,0.015270292,0.043853145,-0.0017032248,-0.0051194634,-0.0027701876,0.00073129364,-0.012333698,0.0037588412,-0.001071857,-0.016562393,-0.0043722633,-0.0014903218,0.0113091525,-0.00997137,0.00082265434,-0.016210003,0.011805111,0.0191727,0.011263472,-0.0021404512,0.004039449,-0.015727095,0.0038958823,0.0071196104,-0.03500421,-0.004933479,-0.00095439324,-0.025620157,-0.032420006,0.0045647733,-0.0074785277,0.002439005,0.006359359,-0.016562393,-0.009096918,-0.02240948,0.015113674,0.02146977,-0.026886156,0.004992211,-0.010578266,-0.022696614,0.023231726,-0.0056774165,0.00342929,-0.027408216,-0.010251978,-0.023910407,0.0012456055,-0.001951204,0.016249157,0.007883125,-0.022044037,-0.010558689,-0.018219939,-0.015387756,0.008209414,0.0238582,0.001112643,-0.0032482,0.024928426,0.00017874481,0.007348012,0.016418828,-0.011968255,0.048186254,0.002164923,0.00762862,-0.012320646,0.018350454,-0.004202593,-0.004450572,0.024145333,0.010930657,0.0037164236,0.007954909,0.010499957,0.0028174995,0.01294712,0.002631515,-0.019916637,0.005439226,0.0006040412,0.0005673338,0.025176404,0.027303804,0.014578561,-0.005657839,-0.0323678,-0.021456718,-0.0031698907,0.00078349974,-0.008228991,-0.0064017763,-0.0060363333,0.016862579,-0.018285196,-0.009070815,0.002985538,-0.025111146,-0.004953056,-0.0060526477,0.01568794,0.0007647382,-0.010003999,-0.00015937144,0.0123075945,0.034717076,0.008007115,0.025750672,0.018885566,0.020047152,0.023897355,-0.025267765,0.04549764,-0.0072436,0.00059506827,0.02675564,0.010689205,-0.027068878,0.020203771,-0.0039480883,0.0026331465,-0.011531028,0.00044293635,0.007158765,0.0042189076,-0.00044579137,-0.016079487,-0.01048038,0.027016671,-0.012679563,-0.012170553,0.024432467,0.019237958,0.027251597,-0.010180195,0.004430995,0.03221118,-0.017241074,-0.0032123083,0.011792059,0.01103507,-0.014017345,-0.021887418,-0.010154092,0.015988126,-0.01738464,0.015048416,-0.014330582,0.009149124,0.013573593,0.011048121,-0.025385229,0.0029333318,0.010826246,-0.030227348,-0.0012088981,0.028086897,-0.00958635,0.0019985158,-0.00092339586,0.00615706,0.03255052,0.002194289,0.021796059,0.017032249,-0.0022057088,-0.002076825,0.019707812,0.004382052,-0.0067280647,0.014983159,0.007250126,0.023988714,0.021065172,-0.012333698,-0.03808437,-0.011863843,-0.0040622894,0.027617041,0.0072958064,-0.02097381,-0.01635357,0.0065257656,-0.009266588,0.011707224,-0.012255388,-0.016118642,-0.023401396,0.020999914,0.0067867967,-0.012562099,-0.014030397,0.017358538,-0.0052467156,-0.008065847,-0.02991411,-0.02180911,0.021783007,0.1013843,0.030462274,-0.005762251,0.020007998,-0.009612453,0.019211855,0.0068716314,-0.026468506,0.0051912465,-0.022774924,-0.005915607,-0.0074915793,-0.017658722,0.0023639586,-0.0009796806,0.00067786395,-0.028347926,-0.030149039,-0.0029300689,-0.023492757,0.0024145334,-0.00507052,-0.0056121587,0.013991242,-0.005435963,0.035604578,0.02683395,0.0020311447,0.03228949,-0.0057426738,-0.015988126,-0.00023186862,0.0118964715,-0.0032139397,-0.025881188,0.00095113035,0.01866369,-0.0018631062,0.003318352,0.00067664037,0.008633588,0.01721497,-0.010878452,-0.018037217,0.00092747447,-0.016601548,0.01840266,-0.006013493,0.010154092,-0.021482822,0.002760399,0.012646934,-0.026233578,0.0022709665,0.020242926,0.020660575,-0.014839591,-0.0020229875,0.0039448254,0.02207014,-0.020047152,-0.027982485,0.013012378,-0.006969518,-0.018376557,-0.010800143,-0.047585886,0.0029251745,0.0029219117,0.021874366,-0.026807847,-0.010415122,-0.04557595,0.00954067,0.025098095,0.022357274,0.017188868,-0.012385904,-0.00076106744,0.015270292,0.015870662,-0.030488377,-0.006049385,-0.0055893185,-0.02233117,0.023088159,-0.00058772677,0.011641966,0.0023117526,-0.0027979221,0.00025695204,-0.008366032,0.026990568,-0.03033176,-0.0025009997,0.014474149,0.012888388,0.0025662575,0.011459244,-0.010421648,-0.011146008,0.016471034,-0.008059321,-0.02317952,0.0016314414,-0.006884683,-0.017776186,0.017919753,-0.03244611,-0.00877063,0.05163186,-0.017097507,0.014957055,-0.0077004037,0.0075176824,0.009038186,-0.022344222,0.015988126,-0.0054261745,-0.008235517,0.0066530183,-0.03262883,0.02965308,-0.00070763775,-0.038032163,0.016405776,0.0101606175,-0.0067280647,-0.006747642,-0.01171375,0.004261325,0.0065877605,-0.023701582,0.00920133,-0.048943244,-0.0323678,-0.025241662,0.006316941,-0.0019381525,-0.015466065,-0.018115526,-0.0047213915,-0.034612663,-0.006656281,-0.010519534,-0.023779891,0.008078898,0.02863506,0.020908553,0.009299217,0.00045761932,0.0151919825,-0.009090392,0.00775261,-0.007282755,-0.02436721,-0.013123315,0.016966991,0.01764567,0.009096918,0.015570478,-0.018454866,0.021234842,-0.00613422,-0.010780565,-0.020151565,0.010343339,-0.026938362,-0.021104326,0.013899881,0.040015996,0.0015213192,0.026194423,0.026429351,0.032524418,0.022605253,-0.011628915,-0.01269914,-0.009129547,-0.009449309,-0.027669247,0.003329772,-0.0072370744,0.00016936402,0.007661249,-0.007406744,0.025085043,-0.0023867988,0.004209119,-0.023166468,0.022670511,-0.00886199,0.013939036,0.0041667013,0.001659176,0.003677269,-0.0039480883,-0.027617041,-0.0013638851,0.014278376,0.012810078,0.00033016296,0.008959876,0.006773745,-0.018337402,0.0041210214,0.002985538,-0.002912123,-0.0119552035,-0.010467328,-0.045027785,-0.019472886,-0.0011958466,0.017345486,0.010924132,0.009214382,-0.017658722,0.014095655,-0.030462274,0.005631736,-0.0041601756,-0.021104326,0.034456044,0.028452339,0.009645082,0.025672363,-0.02327088,0.010447751,0.028896092,0.036439877,-0.017332435,-0.00044171276,0.027042774,-0.004326583,0.010969812,-0.0136910565,0.0077721872,-0.0066725956,-0.023871252,0.007106559,0.005739411,-0.02233117,-0.007445899,-0.008379083,-0.035917815,0.041451667,0.003303669,0.034873694,-0.018272145,-0.002039302,-0.028948298,0.030853821,0.0040525007,0.025685415,0.019120494,0.007746084,-0.021260945,-0.012059615,-0.0091621755,0.01814163,0.002191026,0.03187184,-0.01670596,-0.01550522,-0.0023150155,0.0038404132,-0.025789827,-0.020399544,-0.015661838,0.02522861,0.012568625,0.0022040773,-0.0005595844,-0.0013769366,0.025541848,-0.015714044,-0.017228022,-0.0029545405,0.00047556518,0.014526355,0.030044626,0.021273997,-0.013704108,0.00075780455,-0.0016453087,-0.001650203,-0.021326203,-0.037640616,0.01610559,-0.023727685,-0.03792775,-0.02564626,-0.00077575044,0.022709666,-0.010839297,-0.022566099,-0.004486464,0.03654429,-0.0039350367,0.016758166,-0.011609337,0.01026503,-0.047350958,0.012646934,-0.011916049,-0.058001008,0.0123663265,-0.021769956,-0.035996124,-0.03784944,0.016223054,0.012522944,0.0049008504,0.01120474,-0.008300774,0.0006668517,0.021104326,-0.0069303634,-0.044766754,-0.01456551,-0.014735179,-0.01986443,-0.0014976632,-0.027251597,0.011230843,0.012137924,0.0038502018,-0.010610895,0.012803553,-0.016079487,-0.0068455283,0.014382788,-0.010330288,-0.025868136,0.001921838,0.0007231364,-0.017136661,0.012646934,-0.0113091525,0.0033411921,0.0063952506,0.0125164185,0.00024553193,0.003762104,-0.02053006,-0.00009691782,-0.023401396,-0.01465687,-0.02240948,-0.021156533,0.002923543,0.038971875,-0.010232401,0.00093073735,-0.047925223,-0.026259681,-0.02233117,-0.020947708,-0.0021681858,0.007106559,-0.007224023,0.010636998,-0.006042859,0.020047152,-0.018794205,-0.010271556,-0.0037555783,-0.014408891,-0.0051423036,-0.018076371,-0.012953646,-0.0063365186,-0.023310035,-0.008157208,0.016301364,0.00040215033,-0.013012378,0.017528208,-0.021508925,0.004705077,0.0022024459,0.013292985,-0.0093971025,0.00007545417,0.016666805,-0.019329319,-0.017280228,-0.0061179055,0.01627526,-0.028922195,-0.00011175374,0.012960171,-0.02624663,0.010545637,0.009423206,-0.02505894,-0.0010816457,0.021861315,0.013586644,0.004179753,-0.016196951,-0.0033314035,0.00958635,-0.01388683,-0.004678974,0.009136072,-0.026625125,-0.00668891,-0.0049400046,-0.011322204,-0.011296101,-0.030436171,0.016732063,0.011087276,0.005295659,-0.006506189,0.014382788,-0.012418533,0.017019197,-0.0045027784,-0.01337782,-0.004352686,-0.008339928,-0.016523238,0.02777366,-0.011426616,0.02053006,-0.03696194,-0.0046430826,0.010911081,0.011126431,-0.04320057,0.02683395,-0.009175227,-0.0028745998,0.016131693,0.23304816,0.008835887,-0.003654429,0.037614513,0.0013663322,-0.009266588,0.01892472,0.025189456,-0.0047181286,0.0027440845,-0.0068128994,-0.007132662,-0.014421943,-0.005739411,-0.0025336286,-0.029104916,-0.0349259,-0.026468506,0.0016338886,-0.00020821272,-0.0033575066,-0.0019560982,0.009109969,-0.011283049,0.0151919825,0.0032563573,-0.016849527,0.013612747,-0.006388725,-0.013664953,-0.03563068,-0.0072109713,-0.005905818,-0.01252947,0.012412007,-0.0055860556,0.020725833,0.001296996,0.0011485348,0.011746379,-0.02310121,-0.0055012205,0.0047507575,0.0025760462,-0.010362917,0.007602517,0.013495284,-0.017019197,0.015022313,0.0051977723,-0.013273408,-0.010591318,0.020817192,0.025959497,-0.0022774923,-0.0094558345,0.018741999,-0.012770924,-0.024850117,0.0037816814,-0.023636324,0.02973139,-0.0022464949,0.01585761,0.008483496,0.02310121,-0.020986862,-0.025750672,-0.00596455,-0.0037098979,-0.00032098612,-0.012790501,-0.0051129377,0.016771218,-0.022448635,-0.010610895,0.0059025553,0.0022774923,0.0117790075,0.02564626,-0.00758294,0.016405776,-0.023336139,0.018807257,-0.0032286227,-0.032837655,0.020086307,-0.018950824,0.010258504,-0.008202888,0.010898029,-0.004956319,-0.028452339,0.01337782,0.019211855,-0.010741411,0.018298248,0.00434616,0.0024846853,-0.001226844,-0.01533555,0.0323678,-0.010617421,0.009671185,-0.018533176,0.021521976,0.022801027,0.007602517,-0.0017374852,0.0066399667,0.0063658846,-0.034795385,0.00086792686,-0.004545196,-0.005259767,0.0033020375,-0.013965139,-0.035813402,0.0067867967,0.0023329612,-0.0037294752,0.0018647376,-0.00997137,0.025998652,0.0046659224,-0.0016624389,0.006072225,0.013292985,-0.021273997,-0.026364094,0.022109294,0.015609632,0.026351042,-0.0030573213,-0.015022313,-0.0064213537,0.0075372597,-0.0013655165,-0.02589424,-0.015700992,-0.01269914,-0.010447751,0.02190047,0.0067280647,0.016692908,-0.0340906,0.0010351496,-0.01653629,-0.017528208,-0.012705666,-0.016679857,0.0012994431,-0.010832772,-0.0075176824,0.017580412,-0.014552458,-0.022422532,-0.016457982,0.005608896,-0.00890767,-0.023218675,-0.0050835717,0.017919753,0.005765514,0.010760988,0.01662765,-0.1644493,-0.0013353348,0.021652492,-0.019198803,0.008078898,0.022278965,0.010565215,-0.0072958064,-0.005129252,0.0012904702,0.016092539,0.0069825696,0.005667628,-0.041817106,0.0016583602,0.01567489,0.00035483853,0.022592202,0.0289744,0.014382788,0.019146597,0.004737706,0.004316794,-0.02248779,0.021026017,0.0070086727,-0.025019787,0.018428763,-0.035578474,-0.00026531317,-0.028269617,0.01516588,0.0038665163,-0.00954067,0.04628073,-0.01678427,0.027329907,-0.010656576,0.0032840916,-0.0020034101,0.012881862,-0.012359801,-0.0051977723,0.014669921,-0.039389525,0.012927542,-0.008757578,0.01772398,-0.005905818,-0.014304479,0.0060624364,-0.035160825,0.01525724,-0.0046887626,0.012281491,-0.010434699,-0.01431753,0.025581002,-0.011942152,0.010656576,0.006819425,-0.018089423,-0.005435963,-0.008392135,-0.0009935478,-0.011818162,-0.00852265,-0.011269998,-0.010858875,0.021482822,-0.0058601378,-0.019812224,0.0048323297,-0.0012782344,0.001332072,0.012934068,-0.011061173,-0.014787385,0.018180784,0.0028207623,-0.026546815,0.012105295,-0.014617716,0.034038395,0.006320204,0.025998652,0.0011615864,0.005967813,0.008966402,-0.025411332,0.029000504,-0.013978191,0.008842412,-0.029809698,0.014304479,0.020242926,0.010584792,-0.01414786,0.014121757,-0.0008826098,0.035317443,0.0020670362,-0.025333023,0.042469684,0.03680532,-0.005458803,-0.0357873,0.00043926563,0.038710844,-0.023714634,-0.01077404,0.03440384,0.009318793,0.013965139,0.0071196104,0.027617041,0.011765956,-0.030410068,0.006316941,-0.013155944,0.026364094,-0.00946236,-0.014213118,0.016223054,-0.0066106007,-0.0013867252,-0.104621075,0.0039448254,-0.004737706,-0.007830919,-0.010395545,-0.010826246,0.008901144,0.0039415625,0.0028713369,0.019929688,-0.035134725,-0.03818878,-0.0200341,-0.02837403,0.024301952,-0.0058014058,0.0013916196,-0.016523238,0.0060298075,0.018350454,-0.024315003,-0.016901733,-0.008614011,-0.0077591357,0.033881776,-0.030879924,-0.02624663,0.0076743006,0.046567865,-0.00078431546,0.000324249,-0.0063136783,-0.008542228,0.0058927666,-0.0009641819,0.01158976,0.006405039,0.01308416,0.03654429,-0.03954614,0.011433142,0.0123663265,0.0026837212,-0.027068878,0.00028325903,0.012934068,-0.046724483,0.02223981,-0.0015449751,-0.020490905,-0.026259681,0.0020931393,-0.014160912,-0.0006350386,0.03758841,-0.0034097126,0.008744527,0.0013051531,-0.032054562,0.0014772703,-0.01729328,0.0024602138,-0.028608957,-0.00059751543,0.016484085,-0.0031698907,-0.0046137166,-0.0009168701,0.009762546,0.013769366,0.003163365,-0.0094558345,-0.022513893,0.021835212,-0.04244358,-0.002660881,0.003023061,0.017071404,-0.002868074,0.011981306,-0.018246042,-0.0016387829,-0.013873778,-0.023401396,0.015909817,0.015792353,0.0072305487,0.0058372975,-0.012346749,-0.020843295,-0.0073414864,0.00031201317,-0.011380936,-0.014434994,-0.0032433057,0.0021779744,0.0061244313,0.008672743,0.015753198,-0.004509304,-0.031663015,-0.015570478,-0.05225833,0.035265237,-0.024275849,-0.009977896,-0.0111329565,-0.004479938,0.021182636,0.0015082676,0.01115906,0.003765367,-0.009318793,0.008124579,-0.001951204,0.009527618,0.006780271,-0.023401396,0.013195098,0.002368853,0.013319088,-0.0045354073,0.004169964,0.0026119377,-0.0013695951,0.02616832,-0.018702844,0.0045060413,-0.01857233,0.0022350748,-0.011243895,-0.004271114,0.015909817,0.00014315899,0.026351042,0.013175521,0.017789237,-0.020412596,-0.0103368135,0.027199391,0.0021698172,-0.015322498,-0.018076371,-0.019642556,-0.00043681846,0.019746967,-0.024667395,0.01986443,-0.017763134,0.029209329,0.04463624,-0.012105295,0.039833274,0.013195098,-0.0077721872,-0.014748231,-0.006104854,-0.024732653,0.021039069,-0.016601548,0.012092244,-0.04351381,0.031741325,0.0015066362,-0.00079573557,-0.0041340725,0.00666607,0.0037164236,-0.0015384493,-0.0024683708,-0.0031176847,-0.008764104,-0.0088685155,-0.0242889,0.008418238,-0.013965139,0.027799763,0.01789365,0.010062731,0.0010180195,-0.008294248,0.016510187,0.0014258799,0.0005734517,-0.002894177,0.00381431,0.020438699,0.023871252,-0.009423206,0.0023248042,0.0076808264,0.011570183,0.013312562,-0.0026298836,0.0036576919,-0.015218086,0.005853612,0.022474738,0.011576708,-0.0077330326,0.0067411163,0.013443078,0.022226758,0.02803469,0.008875041,-0.0075372597,-0.015413859,-0.015139777,-0.027825866,-0.028139103,-0.020634472,0.017515156,-0.0017048563,0.011517976,0.009083866,0.009442783,-0.0040068203,-0.01132873,-0.012810078,-0.021978779,-0.027878072,0.041295048,0.013286459,0.002675564,0.017476002,0.00045476432,0.011106853,0.029470358,0.023022901,-0.0059547615,0.020138513,0.028661164,-0.009227433,-0.008366032,-0.012229285,-0.011041596,0.005233664,-0.0077395584,0.025359126,0.034873694,-0.006046122,0.0494131,-0.004401629,0.0023851674,0.0051684068,-0.008483496,0.035265237,0.00792228,0.00095439324,-0.021443667,-0.029078813,0.007981012,0.010023576,0.0042809024,-0.044375207,-0.031767428,0.0002532813,0.007276229,0.027564835,-0.0062125293,0.0146307675,0.022918489,-0.003925248,0.000739043,0.011765956,-0.006137483,-0.0019985158,0.030801615,-0.012842707,-0.032654934,-0.03933732,0.007915754,0.017841443,-0.047350958,-0.023401396,0.0016314414,0.020751936,-0.009442783,0.017710928,0.035500165,0.0032955117,-0.0068912087,0.059201747,-0.025359126,-0.01635357,-0.012340223,-0.0093383705,-0.029783595,-0.018363506,-0.018911669]},{\"id\":\"3c3877a2-d49f-41a0-a137-680f8b7f5993\",\"text\":\"It'd be nice if we got informed like how long it takes to see our earnings and such, I posted a tiktok a couple days ago and got about 5 dollars worth of views but still don't know when that's even gonna go through or how long the bounty will be even earning me money for.\",\"vector\":[-0.034832954,-0.003171918,0.008281871,-0.048476726,-0.00017301003,-0.014509425,-0.03069848,-0.0077586016,-0.008927883,-0.017132232,0.021279627,-0.011867236,-0.012183783,-0.010297428,0.012758733,0.018333815,0.022830056,-0.008307711,-0.014225179,0.018165851,-0.028786285,-0.00019874956,-0.04116387,0.019070268,-0.0018298284,-0.02140883,0.01860514,0.0014575641,0.013320763,-0.015956491,-0.0023353326,0.013915094,-0.03354093,-0.020762818,-0.032558993,-0.020078046,0.010252207,0.0014640242,0.003669347,-0.0059368485,0.012978377,0.012480948,0.0038825308,-0.0067314426,-0.029277254,0.008462754,-0.008398153,-0.040078573,-0.013042978,0.011221224,-0.0019461105,-0.012991297,-0.059484765,-0.030801842,-0.00246292,0.022054842,0.0027665454,0.01868266,-0.020426892,-0.009509293,0.00026001973,0.004457481,-0.008372312,-0.0027697755,-0.0050033615,-0.00825603,-0.024974816,0.0066668415,-0.0059303883,0.017403558,0.022184044,0.006250164,0.010181146,0.006421357,0.04121555,-0.0016634803,-0.0140701365,0.0029910346,0.020000525,0.022145284,0.01148609,0.0065505593,-0.0070350682,0.042533416,0.009974422,0.0011071027,-0.0040408038,0.026111796,-0.008430454,-0.00025961598,0.010807777,-0.004118325,0.030620959,0.026253918,-0.0005692979,0.020116808,-0.012971916,0.023527749,-0.036951873,-0.014948713,-0.007454976,0.011350427,-0.02186104,-0.010465391,-0.031008566,0.012287145,0.011234145,0.0021528343,0.021641394,-0.013837572,-0.012868554,0.016796306,0.020181408,-0.018475937,0.0019444955,0.020659456,-0.0063309157,-0.0115248505,-0.016744625,-0.012409886,0.037468683,0.008746999,0.032171387,0.00009276326,0.012991297,-0.0014139583,0.0087793,-0.009231509,0.017946208,-0.0053586676,0.0037759389,-0.0016764005,-0.0070609087,0.016279496,-0.018902306,0.03563401,-0.024974816,-0.01370837,-0.0045640734,-0.00007025378,0.03873487,0.025439944,-0.0032785097,0.01807541,-0.024290044,0.011789715,-0.00040840058,-0.008288331,0.013075278,-0.0072030313,0.0273909,-0.008650098,0.020478573,0.008172049,-0.021693075,0.0067120623,0.019625839,0.002850527,-0.0005648566,-0.00023639994,-0.018501777,-0.0007211107,0.003730718,-0.0036112058,0.017364796,0.03604746,0.027881868,-0.024160841,-0.0132561615,0.016628344,-0.00028162077,-0.008469215,0.0017313116,0.012216083,-0.010620434,0.017287275,0.0037081076,-0.005956229,0.01917363,-0.01750692,-0.008889122,0.01093052,0.014625707,0.023282265,-0.007345154,-0.034290306,0.02138299,-0.0029361236,0.0070996694,-0.02245537,-0.0036887273,0.004822478,0.014199339,0.00060563604,-0.62761337,0.0054491092,0.019664599,0.026434802,-0.00929611,0.007771522,-0.024277123,0.018876465,-0.022093603,0.029225573,0.0046286746,0.001258108,0.037727088,0.0035918255,0.0011507085,-0.017080551,0.03454871,-0.01478075,-0.015711006,0.027571782,0.00033532048,-0.008921423,-0.0024290043,0.028321156,0.017235594,-0.01590481,0.010781936,-0.0015528508,-0.007920104,0.037106916,-0.0027487802,0.019380353,0.014871191,0.010226366,0.04870929,-0.013333683,0.017636122,-0.0029361236,-0.026021354,0.044316407,-0.06403269,-0.0002319586,-0.0012379201,-0.013772971,-0.008327092,0.010652734,0.009922741,0.0038276198,0.021641394,-0.006476268,-0.00072878203,0.009683717,-0.0052262354,0.00021540455,0.0021173037,0.013889253,0.014677388,-0.0086759385,0.011912458,-0.0022029001,-0.024974816,-0.016253656,-0.021563873,-0.014302701,-0.03284324,0.026060116,0.007816742,0.019083189,0.0106268935,0.017468158,0.006692682,0.031654578,-0.000876961,-0.00046472473,-0.008669478,0.018501777,0.036590107,-0.0049096895,-0.0017636121,0.018398415,-0.019832563,-0.016189056,-0.0022416608,-0.003231674,0.005923928,0.0084046135,-0.012164402,-0.013579167,0.009599735,0.025452863,-0.011130783,0.03137033,0.024406325,-0.016899668,0.009289649,0.023333946,-0.00069728895,-0.01856638,-0.00062178634,-0.005965919,-0.029509818,0.0013945779,-0.015659325,-0.006204943,0.04336031,-0.0014446438,-0.014690308,-0.014160578,0.03940672,-0.042714298,-0.021163346,-0.011931838,0.0055072503,0.008553196,-0.009916281,-0.03938088,0.017804084,-0.0072094915,-0.0016747855,0.008585497,0.02091786,0.0047255764,0.037158597,-0.011822016,0.015232958,0.02463889,0.0036015157,-0.009160447,0.012442187,0.03553065,-0.016718784,-0.020052206,0.0053554378,-0.0033721814,-0.029148052,-0.011324586,0.01699011,-0.02084034,-0.007390375,-0.056383908,0.0032672046,-0.0033947919,0.012358205,-0.0059465384,-0.012778113,-0.010672115,-0.0007796555,0.022339087,0.0048063276,0.011550691,-0.008566116,-0.021034144,-0.0030717861,-0.00082083873,-0.009677256,0.0029764993,-0.0031396174,-0.017067632,-0.02186104,0.003398022,-0.013992615,0.01373421,0.007849043,-0.005319907,-0.017041791,-0.02308846,-0.0060499003,-0.008876202,-0.008262491,-0.006757283,-0.012655371,-0.007351614,0.011641133,0.0036596567,0.01591773,0.025129858,0.028191954,0.0032526692,-0.011350427,-0.0049516805,-0.0024144691,-0.007022148,-0.006240474,-0.003286585,0.014677388,-0.00015564846,-0.024793932,0.045866836,-0.009063546,-0.0062630842,0.00027677568,-0.016318258,0.004867699,0.014922872,-0.005303757,0.007933024,0.017997889,0.012461567,-0.0019945614,0.010116545,0.021615554,0.019070268,0.019780882,-0.022842977,-0.0132561615,-0.004596374,-0.002740705,-0.027856028,0.0037436383,0.033153325,0.0046319044,-0.028579561,0.00712551,0.0024354644,-0.0010852998,0.025452863,-0.017726563,0.008042847,-0.003073401,0.017829925,-0.028605402,-0.023992877,0.007952405,-0.008902042,-0.0026163477,-0.00037569623,0.0041344753,-0.00051479065,0.0035239942,-0.027726825,-0.016951349,0.024768092,0.0019929463,0.015090835,0.017584441,0.025478704,0.013643769,0.009967962,0.017248515,0.0034916936,-0.031964663,0.0054975604,0.025013577,-0.009173367,0.01971628,0.0137988115,0.021085825,-0.017093472,-0.008423993,0.0066280807,0.00047239612,0.01591773,-0.032739878,-0.0042636776,-0.00033754116,-0.06516967,-0.024186682,0.009916281,0.01479367,0.023075541,0.015543044,0.0067895837,-0.001451104,-0.016189056,0.024703491,0.020956622,0.0036919573,0.0046771253,-0.0052972967,-0.0015148977,0.001648945,-0.026951611,0.020581935,-0.009560974,0.03444535,-0.0009383321,-0.00492907,0.0005672791,-0.0037016475,0.0051745544,-0.019871322,-0.018230453,0.011576531,0.02086618,-0.008695318,-0.006256624,0.011124323,-0.0017119312,-0.022907577,0.0044671716,-0.004648055,-0.0030281802,0.00656671,0.0035562948,0.009787079,-0.009515754,0.03943256,-0.0070415284,0.0021253787,-0.012545549,0.011150164,0.006469808,-0.008656558,-0.009993803,0.015232958,0.028760444,-0.008417534,-0.039096635,0.009922741,-0.01596941,-0.0023676332,0.0018879694,-0.016576663,0.0020963082,-0.000005012269,0.008501515,-0.0058431765,-0.018178772,0.03439367,0.013682529,-0.0025485165,0.001041694,-0.02907053,0.002897363,0.10051943,-0.023308106,-0.0007917682,0.019793801,-0.006185563,-0.006182333,-0.0009690177,-0.029923266,0.022649173,0.00007065754,0.01913487,-0.004060184,-0.017493999,-0.0002301417,0.020465653,-0.0075841784,-0.0002614329,-0.016667103,0.00081074476,-0.018243372,-0.007933024,0.0006205751,0.012119181,0.015995251,0.03067264,0.02355359,0.029716542,0.045298345,-0.00658286,-0.017674882,-0.0014188034,-0.00823665,0.0045576133,0.0002557803,-0.011918917,0.029406456,0.0010602669,0.00549433,0.029690702,0.026085956,-0.017661963,0.040957145,0.01150547,-0.0015237803,0.019793801,-0.014716148,0.013772971,0.011977059,0.001983256,0.0042475276,0.008643637,-0.018876465,-0.022093603,-0.01313342,-0.013269082,0.017119313,-0.004318589,-0.0014171883,0.008262491,-0.02793355,-0.0103555685,-0.02629268,0.0063341456,-0.013010677,0.013953854,-0.030569278,0.012661831,-0.024393406,0.009593275,0.0031073168,-0.014160578,-0.0077069206,-0.03994937,-0.019625839,0.017984968,-0.011809096,0.016021091,0.00151086,0.029354775,0.019328672,-0.030026628,-0.03878655,-0.01589189,-0.0030362555,-0.0051357937,-0.006692682,0.004670665,-0.022649173,-0.0024774552,0.00191704,-0.0005014666,0.015452602,0.049923792,-0.015116676,0.014754909,0.0000036338163,0.0022319707,0.022791296,0.012474488,-0.013307842,0.02689993,-0.008159129,-0.012151482,-0.006867105,0.009832299,0.0142381,0.00075704505,0.0111695435,0.0025872772,-0.0070415284,-0.0040440336,0.018669741,0.019496636,0.011679893,0.034652073,0.018928146,-0.00028202453,0.00437027,-0.008482135,0.015801448,-0.030517597,-0.023049701,0.03439367,-0.010904679,0.001344512,-0.024380485,-0.004451021,-0.030517597,-0.014690308,0.007409755,-0.0055718515,-0.0013275542,-0.0137471305,-0.03452287,-0.010148846,-0.006686222,0.0013485496,0.005869017,-0.012442187,-0.00823665,-0.0018459787,-0.010885298,-0.013346603,-0.03496216,0.03010415,-0.04051786,-0.03286908,0.0020979233,-0.013411204,0.041809883,0.0010037408,-0.0117121935,-0.025388263,-0.017984968,0.026951611,-0.017093472,-0.0094899135,-0.012241923,0.026512323,-0.0038825308,0.0024483847,-0.0061145015,0.011570071,0.0040214234,0.010949899,-0.0054587997,-0.0023369477,-0.032119706,-0.027623463,0.0031557677,0.012545549,-0.00493553,0.0082689505,0.010562292,0.00191704,0.007939485,-0.018269213,0.026564004,-0.02356651,-0.0186439,-0.018372575,0.009528674,-0.0104395505,-0.009599735,-0.0047384966,-0.008482135,0.0022578111,-0.004489782,0.030956885,0.02139591,0.023127222,-0.008792221,0.03457455,-0.0050485823,0.028734604,-0.0032768948,-0.021499272,-0.009367171,-0.0014147658,0.024858534,0.022158204,0.0076617,-0.004883849,0.0027568552,-0.035685692,0.04108635,-0.017493999,-0.008721159,-0.018398415,-0.01696427,-0.03666763,-0.035349764,-0.005923928,0.012190242,0.012435727,0.009134606,-0.009405931,-0.004554383,-0.013553327,-0.027778506,-0.005271456,-0.024496768,0.009728937,0.012364666,0.024367565,0.018553458,0.03240395,-0.017403558,0.010278047,0.017933287,0.016718784,0.014367302,0.02907053,-0.024858534,-0.026641525,0.03439367,0.010349109,-0.03121529,-0.041499797,0.025013577,0.007558338,-0.008721159,-0.027623463,-0.0029183582,0.008882662,0.034858797,-0.013243241,0.006285695,-0.006366446,-0.0045220824,-0.0010861073,0.030465916,0.01751984,0.012687672,0.0041473955,0.010123005,-0.032016344,0.004670665,-0.023321025,0.012713512,0.010478311,0.008430454,-0.024005799,0.028166113,-0.0060628206,-0.014677388,-0.0071125897,-0.04113803,-0.015310479,0.024160841,-0.029742382,-0.0056009223,-0.016059853,-0.009741858,-0.00329789,-0.0008095335,-0.023049701,-0.032998282,-0.0016109919,-0.008688859,0.03783045,0.00022650788,0.00439934,-0.008385233,-0.012803953,0.011718654,-0.0028941329,-0.004341199,0.02581463,-0.0050582723,-0.0025888921,-0.0036305862,0.01965168,0.003914831,0.0066603813,0.031008566,0.006382596,0.025659587,-0.017145153,0.0097095575,-0.0057398146,0.000673871,-0.02580171,-0.014354382,-0.011460249,-0.038192216,0.013630848,-0.025827551,-0.018437177,-0.008365853,0.025504544,0.009774159,-0.0175586,-0.0028682924,-0.00219644,0.012177322,0.010846538,-0.0034852335,-0.025556225,0.003908371,0.013553327,-0.016524982,0.033334207,0.011931838,-0.0040408038,-0.028450359,0.033670135,-0.009141067,-0.004589914,-0.023282265,-0.0068735653,0.005546011,-0.033695973,-0.0070544486,-0.018798944,-0.028295316,-0.019406194,0.04447145,-0.021809358,-0.003559525,0.00074493233,0.032248907,0.020711137,0.010846538,-0.006473038,-0.023967037,0.0035046139,-0.02140883,-0.0015181277,-0.030543437,-0.029819904,0.02689993,0.012132102,-0.033670135,-0.027158335,0.0030233352,-0.03622834,-0.026111796,0.009451153,0.027856028,0.01096928,-0.012429267,-0.008449834,0.04062122,-0.005436189,0.02633144,-0.025026496,-0.019522477,0.0049064597,-0.013760051,-0.012345285,0.0014745219,0.0011143703,-0.010342648,0.017739484,0.019096108,0.006405207,0.013811732,-0.00874054,-0.001645715,-0.0024144691,0.0148324305,0.013824652,-0.0015665786,0.024135001,-0.014716148,-0.015064995,0.00062380516,-0.00046633976,-0.020297691,-0.01151839,0.03439367,-0.002687409,0.03609914,-0.012978377,-0.003669347,-0.01201582,-0.020362291,0.030750161,0.023941197,-0.0072094915,-0.0014995548,0.026667366,-0.024948975,0.0065537896,0.012971916,-0.014212259,-0.0067766635,0.009470533,-0.00015958509,0.027881868,0.021240868,0.0015132827,-0.005917468,-0.024238363,-0.004215227,-0.010904679,-0.0011725114,-0.0075260373,0.001866974,0.0004118325,-0.017610282,-0.0028085362,-0.017183913,-0.011337507,-0.00439288,-0.017235594,-0.031344492,-0.0019025047,0.005271456,0.03137033,-0.04005273,0.01255847,0.003511074,-0.028760444,0.0015165127,0.2253289,0.0040343436,-0.013139879,0.057365846,0.0082689505,0.0010473466,0.003239749,0.013876333,-0.0023837835,-0.0071642706,0.011427948,-0.012403427,-0.00022711352,-0.004237837,-0.008992484,-0.021227947,-0.0061726426,-0.010336189,-0.010691495,-0.0045156223,0.025737109,0.01748108,-0.0038986811,-0.009929202,0.020879101,-0.023424387,-0.003779169,-0.005736585,0.004489782,0.0030960115,-0.014574026,-0.027623463,0.016253656,-0.01969044,-0.038476463,0.00056203024,-0.009225048,-0.029122211,0.021279627,0.04217165,0.022196965,0.0067637432,-0.0109822005,-0.031060247,0.03770125,0.016744625,-0.010517072,0.004283058,-0.015504283,-0.004276598,-0.0329466,-0.022532891,0.022868818,0.015995251,-0.018333815,-0.013837572,0.012416347,0.0064471974,-0.02251997,0.006744363,0.005814106,0.01753276,0.0036854972,0.01481951,-0.04160316,0.011221224,0.019341594,0.01589189,0.029974947,0.0058787074,0.00028424518,-0.0021802897,-0.012203163,-0.0072805528,-0.017493999,-0.015388001,0.021693075,0.020181408,0.010019643,0.012093341,0.0023369477,-0.0056364527,-0.014625707,-0.018475937,-0.0026631835,-0.028657082,0.026460642,-0.009496373,0.004867699,0.008469215,-0.015400921,-0.0014381837,-0.033825178,-0.023204744,-0.027520102,-0.010219906,0.0088116005,0.021873958,-0.019587077,-0.0028957478,-0.008372312,0.011809096,0.020026365,-0.0092185885,0.000522462,-0.005610612,-0.007726301,-0.00033168666,0.016537901,-0.007177191,0.012829794,-0.017338956,0.025078177,-0.010206986,-0.0142897805,0.016680025,-0.002364403,-0.025917992,0.0114408685,0.005206855,-0.00013848877,-0.034161102,-0.0034367826,-0.011079102,0.0048935395,-0.0024419245,-0.0033624913,-0.0029151281,-0.013785891,-0.00768108,0.006421357,0.010685035,-0.011305206,-0.0019283452,-0.016822146,0.01201582,0.008139748,0.0011894692,-0.030465916,-0.0066119307,-0.022765456,-0.0074420557,0.027881868,-0.004434871,0.013889253,-0.03503968,0.030853523,-0.019251151,-0.019031508,0.021047063,-0.025956754,-0.019406194,-0.015982332,-0.0035950555,0.025827551,-0.00823665,-0.003950362,-0.020620696,0.0043734997,0.0051874747,-0.023799075,-0.011460249,0.026744887,-0.026615685,-0.03501384,0.0032090636,-0.16103782,0.017468158,0.0042636776,0.01589189,0.003062096,-0.0016973959,0.027158335,0.014677388,-0.02143467,-0.012429267,0.013940934,-0.012009359,-0.0063987467,-0.016783386,-0.019276991,-0.005164864,-0.036822673,0.017623201,0.010717335,0.0035433746,0.03292076,0.0021092284,0.017067632,-0.014160578,0.004761107,0.025013577,-0.006641001,0.011427948,-0.006153262,-0.040827945,-0.025349503,0.0035950555,-0.009095846,-0.005100263,0.013081739,0.0092185885,-0.01094344,-0.010504152,0.013042978,0.014302701,0.02958734,0.010239286,0.01258431,0.008152668,-0.010846538,0.014845351,-0.0035336844,-0.0017829925,0.0007614864,-0.022868818,0.012823334,-0.0069446266,0.014845351,-0.02086618,-0.0032413641,0.008520896,0.01093052,0.017119313,-0.009464073,-0.02254581,-0.012377586,-0.011692814,-0.019832563,-0.023372706,-0.007073829,-0.02193856,-0.021447591,-0.005533091,-0.0061791027,-0.005155174,-0.012519709,-0.017817006,0.017984968,0.017920367,-0.0029538888,-0.005927158,-0.026047194,-0.0061694128,0.002911898,0.037003554,0.0031993734,0.040181935,-0.040156092,0.022687934,-0.0059400783,-0.0034884636,0.028915487,0.014535265,0.008372312,-0.027675144,0.008184969,0.021667235,-0.021809358,-0.0073128534,0.008986024,0.017326036,0.028863806,0.011809096,0.012829794,-0.029251413,0.00045705333,0.012655371,-0.03284324,0.056849036,-0.010607514,0.0038760707,0.0031589977,0.0057462747,0.017377717,-0.025362423,-0.0077004605,0.007933024,-0.0042507574,-0.00219967,-0.004451021,0.036460906,-0.043799598,-0.0006835612,0.020711137,-0.03444535,0.050027154,-0.013010677,-0.010685035,0.007183651,0.0021625245,-0.013863413,-0.09974422,-0.02961318,-0.00020157587,-0.015129596,0.009806459,0.019884244,0.012564929,0.019264072,0.0050033615,0.030233352,0.0023078772,-0.04612524,0.00603052,0.0028925177,0.012920235,-0.035401445,0.008430454,0.018398415,0.009909821,0.03387686,-0.0018007578,-0.025698349,0.008165589,-0.013333683,-0.004428411,-0.036383383,-0.030285032,0.039794326,-0.0071448903,0.013333683,0.012810414,-0.011789715,0.009528674,-0.02516862,-0.012435727,0.0010166611,-0.042662617,-0.026796568,0.001233075,-0.042455893,0.012267764,-0.009696637,-0.002853757,0.00008791817,-0.014315621,0.004221687,-0.010827158,0.008630717,0.013863413,-0.03392854,-0.0013719675,-0.017158072,-0.021654315,-0.021098744,0.0107108755,-0.0039988128,-0.0043573496,0.042016607,-0.004108635,0.017416477,-0.001479367,0.006750823,-0.0036854972,0.01642162,0.002294957,-0.025969673,-0.0003476351,-0.011595911,0.004816018,0.006137112,-0.01910903,0.034910478,-0.003892221,0.015207117,-0.02408332,-0.01643454,0.00080549595,-0.010316808,0.012519709,-0.02195148,-0.013837572,-0.011789715,-0.009476993,0.009560974,0.03284324,-0.02692577,0.0007832893,-0.004318589,-0.0035207642,-0.03604746,-0.024910215,0.004751417,-0.0042119967,0.0011482859,-0.0024306194,-0.008630717,-0.012216083,-0.021525113,0.01922531,-0.016705865,-0.003617666,-0.00036984176,-0.028217794,0.009134606,0.0046738954,-0.0033334207,0.02963902,0.008617797,0.011266446,-0.013385364,0.0012637606,0.0107108755,0.002038167,0.0146127865,-0.017881606,-0.007287013,-0.0070415284,-0.017493999,0.005904548,-0.009877521,0.016847987,-0.0035046139,-0.009560974,-0.008572577,0.003459393,-0.003404482,0.01587897,0.042559255,0.00983876,-0.011776795,-0.0009197593,-0.034161102,0.017041791,-0.0054071187,0.015581804,0.02240369,0.020672377,-0.021072904,0.02351483,0.011234145,0.028062752,0.0062017133,-0.0002452826,-0.016137375,0.0039762026,-0.024819773,-0.009108766,-0.027158335,-0.01976796,0.024832694,0.03240395,0.022868818,0.04930362,0.022274487,-0.018475937,-0.005303757,0.0050647324,-0.017209753,0.019044427,-0.018850625,-0.014134738,-0.03726196,0.027597623,0.021279627,0.013928014,-0.016499141,0.043515354,0.026486482,-0.054006584,0.010135925,0.023863675,-0.01700303,-0.00047683745,-0.007978246,-0.01965168,-0.009070005,0.024806853,0.02294634,0.031990502,-0.00549433,-0.0015504283,0.0077456813,0.0077456813,0.0017393867,-0.012500328,0.005965919,0.040259454,0.025853392,-0.0024499998,0.016563741,0.017183913,-0.014470664,-0.020581935,-0.010394329,0.003293045,0.004179696,0.02793355,0.016189056,-0.007610019,-0.010265127,-0.004228147,0.0143414615,0.01206104,-0.0024176992,-0.011466709,0.013501646,-0.0060175997,0.0022723465,-0.04612524,-0.023114301,0.013126959,-0.0023595581,-0.0019574156,-0.011072642,-0.013889253,0.011343967,-0.00932195,-0.0011878542,0.00219644,-0.028114432,-0.022248646,0.055763736,0.004173236,-0.014729069,0.0047352663,-0.038502302,0.046099402,-0.006854185,0.0013243242,-0.02525906,0.019096108,0.00032058335,-0.017300196,-0.0018508238,-0.019096108,0.0051971646,0.02405748,-0.0059368485,-0.021163346,0.022817137,0.006653921,0.054213308,0.012325905,0.0033269606,0.018359656,-0.012216083,0.021538032,0.029432297,0.021525113,0.0060499003,0.0020478573,-0.009942122,-0.0006791199,-0.0041926163,-0.021240868,-0.024548449,-0.0029264335,0.005022742,0.026822409,-0.011111403,-0.02025893,0.003908371,0.014393142,0.01913487,0.0027164796,-0.016822146,-0.013017138,0.002958734,0.0148841115,0.0036435064,-0.04943282,0.017765325,0.018915225,0.010859458,0.0041958466,-0.00034440504,0.0009787078,-0.01913487,0.03452287,0.020491494,0.004560843,0.013385364,0.013372444,-0.014083057,-0.008927883,-0.016318258,-0.018734341,-0.013126959,0.01868266,-0.03395438]},{\"id\":\"0ad55011-a8e9-442e-8f1f-8c37457c969d\",\"text\":\"I'm trying to post a video I made for doe lashes but your site doesn't give me the option to link it?\",\"vector\":[-0.050420437,-0.000570462,-0.0225082,-0.03203637,-0.008448656,0.014014296,-0.008661972,-0.022572841,0.005543016,-0.019870823,0.0010447697,-0.0020459061,-0.021021444,-0.01936662,0.004970938,-0.0026987863,0.005177791,-0.0051583988,0.0054201973,-0.01722052,-0.023335613,-0.017608369,-0.009877235,0.011906981,0.0008403406,-0.022262562,0.014621927,-0.012747321,-0.0014196909,0.0053490913,0.00045289512,-0.0085844025,-0.016651673,-0.02681333,-0.015501052,-0.016082827,0.0110601755,-0.0015643265,0.014815852,-0.023064118,-0.0020442903,0.00070216926,0.0059405616,-0.0028345336,-0.006910186,0.012049192,-0.019651042,-0.004764085,0.005788654,0.010032374,-0.018577993,-0.009192034,-0.048041627,-0.023775175,0.00994834,-0.00042178636,0.009547562,-0.028468154,-0.00084438076,-0.016018186,-0.008661972,0.015759619,-0.007369141,-0.0063154832,-0.010995534,0.0032740964,0.00334197,0.013031744,0.006735653,-0.013167491,0.007285107,-0.003949601,0.017711794,-0.0047802455,0.02389153,-0.006312251,0.006215289,-0.011092496,0.0065288004,0.0042954334,0.020672379,-0.0009696238,-0.016263824,0.026257413,0.02028453,-0.0064641587,0.015177845,0.025145577,-0.012514612,-0.022624556,-0.0019812647,0.019159766,0.014983919,0.020556025,-0.0046735867,0.005905009,0.0020960034,0.028183732,0.007841025,0.023025334,0.017685939,0.009851377,-0.022637485,-0.022146208,0.010142265,-0.02213328,-0.014376289,0.012980031,0.009334245,-0.008998109,-0.024848226,0.030226406,0.013561805,-0.018384067,-0.011480346,-0.0026260645,-0.003262784,-0.021357581,-0.03020055,-0.007123503,0.022081567,0.007853953,0.01706538,-0.010665862,0.033691194,-0.014531429,-0.0075630657,-0.011215315,0.01080161,0.0056787636,0.054816067,0.0051390063,0.012689143,0.023813961,0.0001427165,0.024990438,-0.010568899,0.008377549,-0.021383436,-0.009353638,0.015100275,0.025442928,0.0012790954,0.023348542,-0.0033064173,0.015488124,0.021047302,0.0012378864,0.01025862,-0.002438604,0.009056286,0.00733682,0.009877235,-0.0069425064,-0.019327834,0.03133824,-0.012883068,0.008468048,0.00064924394,-0.0149451345,0.002192966,0.01706538,0.015332985,-0.0021008516,0.025856635,0.033639483,0.0056335144,-0.04338743,-0.024072528,0.0033225776,-0.009457064,0.023115832,-0.013135171,0.02420181,-0.017996218,0.0051551666,-0.0105365785,0.0030446188,0.00097932,-0.019612258,-0.029166285,0.031674378,0.0067873667,0.037854113,-0.029011145,-0.014789995,0.007750526,-0.023180474,-0.02535243,-0.020995587,-0.005400805,-0.010439617,0.014919278,-0.01117653,-0.6164222,-0.002399819,0.042430736,0.019470045,0.0061958963,0.037000846,-0.018694347,-0.013458379,-0.048377763,0.023426112,-0.020698236,-0.0053393953,0.002653537,0.008655509,-0.0023626501,0.0054848385,0.041784324,-0.029321425,-0.009101535,-0.0013219204,-0.016354322,-0.009502313,0.012624502,0.0040207068,0.004276041,-0.0013291927,0.028597439,0.00077893113,-0.02274091,0.021331724,-0.0035229665,0.012986495,-0.014156507,0.014363361,0.046412658,-0.0064189094,-0.015332985,-0.004760853,-0.0033839871,0.015914759,-0.037802402,-0.021047302,0.017543728,0.0037007309,-0.02228842,-0.032915495,0.02288312,-0.013199812,0.018823631,0.010193978,-0.004641266,-0.012398256,-0.0031141085,-0.014854637,0.002773124,-0.011215315,0.028442299,-0.012281901,0.023607107,0.020607738,-0.0054492857,0.014350432,-0.021732502,-0.023374397,-0.005694924,-0.015087347,-0.025378287,0.0057983506,0.014415074,0.017582512,0.019948393,-0.009547562,-0.019224407,0.02012939,-0.008248267,0.044628553,0.0085844025,0.019651042,-0.008500368,-0.0039786897,-0.012902461,-0.023542466,-0.022249633,-0.0019748006,0.03239836,0.018733133,-0.01636725,-0.00092275866,0.015875975,0.018965842,0.026153985,0.03756969,0.0016394722,-0.01866849,-0.02519729,0.0106981825,0.011195923,0.00018119845,0.0013510091,0.006561121,-0.022482345,0.014492644,-0.013018816,-0.0055171596,0.032243222,0.025481714,-0.032139797,0.0057595656,0.009172642,-0.034906458,-0.025766136,-0.0037459799,0.013342024,-0.004922457,-0.020375028,-0.033355057,0.010303869,-0.0133549515,0.0023885067,-0.008649045,0.010077624,0.0031900622,-0.010976141,-0.0018115805,-0.00011191075,0.0138591565,0.009696238,-0.025442928,-0.0024240594,0.02511972,0.004919225,-0.0022640715,0.030924534,-0.012353008,-0.011738912,0.013587662,0.00861026,0.005132542,-0.007084718,-0.028830148,-0.005623818,0.005242433,0.007931523,0.0058726883,-0.010142265,-0.0020135855,-0.018215999,-0.011163602,-0.024874082,0.016548246,-0.007446711,-0.027718313,0.0027230268,-0.0019828808,-0.01521663,-0.0044214847,-0.022172064,-0.0034098437,0.010749896,0.0043018977,0.0152942,0.001262935,-0.027744168,-0.0035229665,-0.009592812,-0.003009066,0.0034583248,0.0027763562,-0.009411816,-0.01490635,-0.004705908,-0.012824891,-0.015875975,-0.015630336,0.016871454,-0.02012939,0.040931053,-0.0041887746,-0.005546248,-0.0017453228,0.0020992355,0.0062993225,-0.0030187622,-0.0020556024,-0.0036910346,0.006402749,-0.03609586,0.024421591,-0.024292309,0.0011182994,0.015914759,-0.013141635,-0.008623187,0.009663917,-0.0024483001,-0.0013380809,0.03687156,0.027640743,0.00872015,0.012501683,0.009903091,-0.037776545,0.022236707,-0.0027359552,0.015992329,-0.013574733,-0.026761618,-0.018009147,0.030071266,0.015811332,0.015113203,-0.018565064,-0.0041499897,0.0002603844,0.0019424798,0.015578623,0.00025149618,0.008810649,-0.041060336,0.006871401,-0.033251632,-0.008623187,-0.015151988,-0.020400885,0.0070523974,0.014298719,0.016729243,0.026386695,0.025533427,-0.03327749,-0.04470612,0.004770549,0.003830014,0.016444819,-0.003949601,-0.021848856,0.019638114,0.011047247,0.0051907194,-0.010038839,-0.019405404,0.01619918,0.03787997,0.0029961376,0.04987745,0.01521663,0.008978716,0.0029605846,-0.027718313,-0.0030430027,-0.010665862,0.03066597,-0.016315537,-0.001219302,0.018177215,-0.01459607,-0.014350432,-0.0020119695,0.01321274,0.018409925,0.011370455,0.011926373,-0.01566912,-0.02658062,-0.004893368,0.0090886075,-0.015113203,0.002446684,0.03374291,-0.0017808757,0.0044990545,-0.017660081,0.03694913,-0.01513906,0.014466787,-0.005239201,0.019392475,0.016444819,0.01627675,0.027330464,0.0053943405,-0.032139797,0.020375028,-0.011318742,0.0012144538,-0.027925165,-0.005630282,0.013626447,-0.013962583,0.042818587,0.029554134,0.019702755,0.0008371085,-0.002443452,-0.0003630029,-0.0036457856,0.036612995,-0.0014350433,0.030898679,0.00035270065,0.0019748006,-0.012087977,0.009786736,0.0005862184,0.026477193,-0.0067421175,0.0076923487,-0.01921148,0.005303842,-0.0033516663,-0.0037265874,-0.010743432,0.001711386,-0.02243063,0.010303869,-0.0049515455,-0.006296091,-0.013432521,0.017621297,0.011842338,-0.022689197,-0.012146154,0.0016362402,-0.0015158452,0.07663906,0.010924428,0.012314223,0.028597439,-0.014363361,0.0034130758,-0.02389153,-0.02274091,-0.01021337,0.0010738584,0.0007054013,-0.020866305,-0.007485496,0.020801663,0.013626447,-0.008177161,0.017311018,-0.022676269,-0.01975447,-0.026179843,-0.010782217,0.00037694126,-0.0044182525,0.0014027224,0.028080305,0.03211394,-0.0082030175,-0.003012298,0.023451967,0.028442299,0.019987179,0.0053103063,0.0025387984,0.024020813,-0.020918017,0.008972253,0.022340132,0.0007086334,0.021267083,0.025171435,-0.0028167572,0.026309125,-0.0069812913,-0.0012984879,0.011053711,-0.020943874,-0.006389821,-0.009599276,0.018577993,0.008590867,0.046697084,0.003946369,-0.0014423154,0.0026341446,0.017802292,-0.014777067,-0.012611574,-0.0262057,-0.0024967813,-0.025623925,-0.016599959,0.0032805605,-0.0041273655,-0.008739542,-0.0035617515,-0.017530799,-0.02926971,0.008636116,-0.015772548,-0.010775752,-0.0056432104,0.012863676,-0.05018773,-0.03012298,0.00733682,-0.0014334272,-0.010045303,0.0056852275,0.03888838,-0.008390478,-0.0152942,-0.033768766,-0.009663917,0.0042566485,-0.00756953,-0.0066160667,-0.0018455173,0.018267712,-0.022908978,0.011273493,0.019043412,0.022805551,0.038552243,-0.022676269,0.0076018507,-0.014001368,0.00741439,0.019961322,-0.007925059,-0.009204962,0.006897257,-0.034156613,-0.032605216,-0.031027962,-0.018616777,0.016923167,0.014234077,0.019495903,-0.023813961,0.004602481,0.033199918,-0.0005090525,0.004466734,0.0035165024,0.025106793,0.030769395,-0.0072010728,-0.0031609735,0.006548193,-0.009379494,0.015927687,-0.04289616,-0.0012483906,-0.01179709,0.0017323946,0.011861731,-0.0031868303,-0.03387219,-0.0047867093,0.0151261315,0.015630336,0.03203637,-0.008765399,-0.025791993,-0.027511459,-0.025921276,-0.0026955542,0.018849486,0.004192007,-0.0026163682,-0.020762878,0.0013114162,-0.036897417,-0.048662186,-0.008177161,-0.03234665,-0.018733133,0.02488701,-0.021991068,0.017556654,0.002726259,0.011215315,-0.036483712,-0.039379656,-0.008590867,-0.038293675,-0.016599959,-0.0056011938,0.0145185,0.02496458,0.029243855,-0.011157138,0.025934204,0.013949654,0.0070911823,-0.006645155,0.0046574264,-0.015035633,0.000052672793,0.011512667,0.011641949,0.010601221,0.04217217,0.036768135,-0.01506149,-0.004424717,-0.0034033796,-0.0071170386,-0.016768027,-0.020788735,0.009851377,0.010523651,0.0153071275,0.009941876,-0.011971622,0.021189513,-0.0048675113,-0.0013421209,0.01859092,-0.008500368,0.019715684,-0.02312876,0.023865674,-0.005462214,0.026865043,-0.0070782537,-0.02065945,-0.00064924394,0.021848856,0.01321274,0.008655509,0.008868826,-0.007976772,0.0066904044,-0.034208328,0.022146208,-0.020413814,-0.010497794,-0.01714295,-0.012863676,-0.011738912,-0.05347152,-0.0240596,-0.008235338,0.00457016,0.015022705,-0.006923114,0.0033322738,0.007575994,-0.031855375,0.001384946,-0.031079676,0.00806727,0.018603848,0.023684677,0.026709903,0.015656192,-0.01797036,0.01806086,0.010956749,0.007123503,0.006522336,0.038707383,-0.012895997,-0.015552766,-0.0025129416,0.003742748,-0.037052557,-0.026076416,0.025701495,0.0144021455,-0.0053135385,-0.012740857,-0.027459746,-0.015927687,0.004945081,-0.021202441,-0.0037201233,-0.026153985,0.0051131495,-0.016651673,0.014686569,-0.0046606585,0.010795145,0.022391846,0.013652303,-0.029554134,-0.020142319,-0.0031835982,0.012210796,-0.008384014,0.021099014,0.0023885067,-0.002403051,0.02597299,0.003468021,-0.019482974,-0.024757728,-0.011163602,0.024861155,-0.011170066,0.030691825,0.01537177,-0.008681365,-0.013665232,0.011654878,-0.010866251,-0.009185569,-0.0004755197,-0.0047899415,0.011105425,-0.01029094,-0.023529537,-0.006554657,-0.00065853616,0.018345283,0.00029836132,-0.00903043,0.022029852,-0.034466892,-0.002889479,-0.023258043,0.001708154,0.01797036,-0.009799665,0.015539838,0.029295567,0.03475132,-0.031208958,0.007375605,0.022107422,-0.0007207537,-0.023219258,0.008778327,0.0151261315,-0.027718313,-0.00861026,0.0072010728,-0.028183732,-0.027770026,0.011460953,0.010633541,0.012398256,-0.027795883,0.009347173,0.006961899,0.015281271,0.007446711,-0.02012939,0.009935412,0.0030640112,0.016755098,0.0149451345,-0.0011336518,0.013089921,0.0001875616,0.016729243,0.0018584456,-0.011713056,0.007983236,0.008810649,0.00983845,0.008429263,-0.02665819,-0.0037653726,-0.024938725,-0.020323316,0.013910869,-0.0174403,0.0040853485,-0.0043891636,0.026231555,-0.0016839133,0.03795754,-0.025171435,-0.019560544,-0.029528277,-0.03190709,-0.010620613,-0.021577362,-0.011105425,0.02389153,0.008791256,-0.023943244,-0.013471306,0.0073885336,-0.037207697,-0.0016459364,0.018720204,-0.03687156,-0.0019053108,0.008170697,-0.03296721,0.045249112,0.0039302083,0.009618668,-0.0012483906,-0.014027225,-0.00028826107,0.00422756,-0.018332355,-0.011557916,-0.030097123,0.017323945,-0.015332985,0.01080161,0.026322054,0.0084227985,-0.040129498,-0.01036851,-0.002645457,0.006040756,0.01144156,0.027304607,0.0076406356,-0.024163025,0.002967049,-0.0016903775,0.023620035,-0.005303842,-0.014311647,-0.0149451345,-0.015048562,0.011835875,-0.012921853,-0.010413759,-0.018694347,-0.01590183,0.0122883655,-0.01459607,0.004718836,0.023542466,0.004599249,-0.04289616,0.0012871756,0.01790572,-0.020646524,-0.014919278,-0.0031044122,-0.017233446,-0.005659371,0.0062346812,0.0049062963,-0.032760356,-0.017660081,-0.0042113992,0.000011709975,-0.017168805,0.017233446,-0.008131912,0.0007506504,-0.036587138,-0.017879862,-0.02681333,-0.005452518,-0.0005336971,0.010736967,-0.011771233,0.008151304,0.04439584,0.0075178165,-0.0327345,0.023736391,-0.02696847,0.009198498,0.0051680948,0.22753839,0.008267659,-0.0064900154,0.06091823,0.03164852,-0.0041370615,0.023684677,0.004078884,-0.017608369,0.01287014,0.019482974,0.00244022,-0.0042566485,-0.0123724,0.012572789,-0.03842296,-0.014479715,0.005465446,-0.013115778,-0.016716314,-0.003052699,0.006748582,-0.008707222,-0.012999423,0.041758467,0.006696868,0.027227037,-0.016225038,-0.020788735,-0.010782217,-0.010788681,-0.013342024,0.028623294,-0.013128706,-0.014531429,-0.0058500636,0.000103931554,-0.009773808,0.0047931736,0.033639483,0.02028453,-0.007711741,-0.0055171596,0.014634855,0.011732448,0.02235306,0.0045022867,-0.00089366996,-0.025055079,0.023464896,0.0023820426,-0.0068649366,0.01156438,0.0027763562,-0.0041887746,-0.004489358,0.014285791,0.008306444,-0.0024773888,0.020775806,0.0026422248,0.033018924,0.0073885336,0.027252894,-0.0043406826,0.023193402,-0.0013655535,0.001423731,0.023219258,0.0027650439,0.009612204,-0.005200416,0.009043358,0.0024887011,-0.026632333,-0.028752578,0.0019311674,0.041448187,0.030536685,0.04354257,-0.0036328572,-0.023878602,-0.016780956,-0.0007260058,-0.0140789375,-0.0342859,0.018616777,-0.00036906305,0.007685885,-0.020853376,-0.0071881446,0.016354322,-0.053833514,-0.015113203,-0.002112164,-0.031286526,0.0032078389,0.01897877,0.010704647,0.015074418,-0.007950915,0.019767398,0.03803511,0.008623187,0.010297405,0.014053081,-0.005543016,0.024318164,0.012281901,-0.0053814123,0.012857212,-0.024925796,0.0063251792,-0.008855897,-0.011215315,0.0012750553,0.022947764,-0.025080936,0.016069898,0.003949601,-0.02727875,-0.024550876,0.0034357004,-0.017957432,0.023607107,-0.0022915443,-0.0076406356,0.012042727,-0.019935466,-0.04586967,-0.005413733,0.035552874,-0.012023335,-0.011758305,0.0036328572,0.0030446188,0.0035391268,-0.031570952,0.0028700866,0.032889638,-0.031027962,0.0037783007,0.0069554346,-0.008034949,0.019198552,-0.03749212,-0.010433152,-0.00814484,-0.0020184335,0.007123503,-0.008558546,-0.0059179375,0.00879772,0.006467391,0.01475121,0.014880493,-0.00078701135,-0.023451967,-0.00002194279,-0.01475121,-0.015035633,-0.0008112519,0.03480303,-0.009172642,-0.027899308,-0.024835298,-0.16072485,0.008015557,0.01360059,-0.00087023736,-0.007950915,0.0062379134,0.0054719104,-0.007033005,-0.023620035,-0.00042663448,0.018254785,0.0041370615,-0.030950392,-0.00683908,-0.012883068,-0.0004314826,0.0040821163,0.0063962853,0.029037,0.02005182,0.0487139,-0.010439617,-0.013038208,-0.017155876,-0.00045006705,0.006599906,0.0019311674,0.03888838,-0.013691088,-0.034311753,0.0047123716,-0.00039956582,0.015462267,0.014466787,0.032527648,-0.0063154832,0.00080074766,-0.024214739,0.0058500636,0.005042044,0.007621243,0.026709903,-0.011810018,0.0054040365,0.009935412,0.021913499,0.036018293,0.013548877,-0.0003345202,0.007485496,0.00017321925,-0.01983204,-0.005746637,0.0002979573,-0.00039027358,0.043982137,0.01506149,0.050756574,-0.014285791,0.0034098437,-0.013419594,-0.037621405,-0.021305867,-0.0094506005,-0.013458379,0.0031254208,-0.015953545,-0.0024935491,-0.0069812913,0.008493905,-0.016018186,-0.0061668074,0.020698236,0.010381439,0.0065320325,0.002365882,-0.04848119,0.00864258,0.0056496747,-0.0004274425,-0.0028636223,0.051454704,-0.004893368,0.026787473,-0.000051814273,0.0135359485,0.009353638,0.009922484,0.0040433314,-0.0069877557,0.010426688,-0.003175518,-0.00037209314,-0.042585876,0.013089921,0.043232292,0.023529537,0.0135359485,0.016457748,-0.018991698,0.008668437,-0.01813843,-0.0076277074,0.036302716,0.0147641385,0.03027812,-0.031027962,0.016457748,0.05802229,-0.0022576074,-0.0044731977,0.0012071816,0.029709274,0.014234077,0.022443559,0.006228217,0.007950915,-0.01360059,-0.012740857,-0.008830041,0.021008516,-0.026839187,-0.021073157,-0.01959933,-0.009747951,-0.0075178165,-0.09246333,-0.0399485,0.010252155,-0.01002591,-0.026606478,0.025080936,0.02043967,0.021228297,-0.000774891,0.019353691,-0.00987077,-0.0313641,0.030691825,-0.0071170386,0.0027181788,0.012100905,-0.015242486,0.0054880707,-0.024150098,0.025636854,-0.011816482,-0.010097016,-0.0085844025,-0.035216738,0.0023545697,-0.02174543,-0.013393736,-0.0017162341,0.018215999,0.00537818,-0.0137169445,-0.02535243,0.0006395477,-0.018164286,-0.038965948,-0.014932207,-0.014958063,0.004893368,0.029243855,-0.034777176,0.002640609,0.0057304767,-0.013626447,-0.017841078,-0.039121088,0.010051766,-0.0026018238,0.0031916783,0.015009777,-0.012152619,-0.016961953,0.021939354,-0.0077634547,-0.0023432574,0.025003366,-0.02828716,-0.006160343,0.013199812,-0.05409208,0.0052844496,-0.0008476128,-0.009398887,-0.012262509,0.023697605,0.010607684,-0.008649045,0.00620236,-0.0016006873,0.017621297,0.02374932,0.001953792,0.02051724,0.0018826863,-0.0045798565,-0.030846965,-0.018875344,-0.025585141,-0.011932837,0.018396996,-0.0014221149,-0.016263824,-0.009301924,0.01352302,-0.011674271,0.0069812913,-0.0029217997,0.008901146,0.008325837,-0.006884329,-0.06091823,-0.019301977,0.027408034,0.005866224,-0.015837189,-0.025507571,0.025675638,0.00063995173,0.0031932944,0.0011320357,0.01475121,-0.00095992757,-0.01302528,-0.041680895,0.025985919,0.0043406826,-0.03074354,-0.02458966,-0.017556654,0.006470623,-0.027097754,-0.0002765448,0.02535243,0.009896627,0.0033322738,-0.0076923487,-0.008435727,0.016431892,-0.021629075,0.01444093,-0.014608999,0.0036425535,-0.007220465,-0.022107422,0.01002591,-0.0058435993,0.013380809,-0.01627675,0.028830148,0.02942485,0.015992329,-0.026386695,-0.008177161,0.010497794,-0.037440408,0.007950915,0.024706015,0.0025339501,-0.019017555,0.01329031,0.028028592,0.0048222626,-0.0034260042,-0.0038623349,-0.0325535,0.0036199288,-0.0026422248,0.002446684,0.0015295816,-0.018164286,-0.013232133,0.011958694,-0.00056803797,0.028700864,-0.0036037685,-0.015539838,-0.0014059545,-0.025598068,-0.012973567,0.01444093,-0.0075630657,0.035552874,-0.021047302,0.027770026,-0.006974827,0.0019327834,-0.022598699,0.01619918,0.006040756,0.011473882,0.012430578,0.002246295,-0.010775752,-0.017323945,-0.002322249,0.0070265406,0.0039366726,0.038138535,0.03963822,-0.011551452,-0.009709166,-0.01767301,0.010484866,0.008080198,0.004638034,-0.021952283,0.035423588,0.0034518607,0.030071266,-0.0048157983,0.015113203,-0.013122242,0.013141635,-0.046283375,0.019095125,0.017155876,0.031027962,0.0135359485,0.000066207125,-0.018965842,0.031286526,-0.0011498122,0.033536054,0.03397562,0.011357527,-0.0008181201,-0.014621927,-0.026153985,0.033898048,-0.025559284,-0.032165654,0.013988439,0.022857266,0.0011094112,-0.025598068,-0.020116461,0.013975511,-0.0066516194,-0.0048222626,0.009230819,-0.023555394,-0.019340763,0.025572212,0.0022139743,0.0055656405,0.03175195,-0.020452598,0.0413189,-0.00994834,0.0024111313,-0.013936726,0.01981911,0.013729873,0.009735023,-0.0016645208,0.004644498,0.0031238047,0.029321425,-0.00170977,-0.04594724,0.021732502,-0.02073702,0.073174275,0.011027855,-0.013089921,-0.017323945,-0.006273466,0.0313641,0.015320056,0.01989668,0.00806727,-0.009308388,-0.00399485,-0.019780325,-0.019159766,0.003262784,-0.021861784,0.0077052773,-0.016845597,0.024641372,0.0008661973,-0.018797774,0.035294306,0.005096989,0.02243063,-0.011428633,-0.005042044,0.02389153,0.01936662,-0.002244679,-0.038862523,-0.023930315,0.0022527594,0.01490635,0.007530745,-0.009825521,0.001955408,-0.00070338126,-0.002640609,0.011939301,-0.0035520552,0.020387957,0.0003619929,0.006755046,-0.028080305,-0.037000846,-0.010943821,0.0023287132,-0.021706644,-0.0053135385,-0.054867778]},{\"id\":\"3fb6bd7e-8378-4844-9f19-b89f58951fd2\",\"text\":\"Trying to get a hold of Winky lux \",\"vector\":[-0.016845843,-0.0067141177,0.009633885,-0.013912621,-0.026156804,0.023385044,0.0022083258,-0.005119683,-0.0022806472,-0.0064651975,0.026102982,0.007884716,0.0051499573,0.0008754254,0.011093767,-0.013091857,0.020599829,-0.0032477358,0.004224916,-0.032776736,-0.030112617,-0.024125077,-0.021299496,0.0065795663,-0.007978901,-0.028874744,0.0006441651,-0.011605063,-0.0011226637,-0.0167382,-0.007245596,0.005560339,0.009048586,0.0037102564,-0.019913616,-0.02547059,0.0143970065,-0.031108297,0.015796341,-0.008644931,0.012318186,0.0024320176,0.020478733,-0.032453813,-0.016899664,0.029682051,-0.028901653,0.0027465317,0.014989032,0.008396011,0.002976951,0.012116359,-0.023169762,-0.030354809,0.008126908,-0.02625099,0.025806969,0.012237455,-0.00028949586,0.010743934,-0.008967855,-0.017289862,-0.014383551,0.0043090107,-0.0018803566,0.009075495,-0.0046655717,-0.010548835,0.014571923,-0.0049683126,0.017168766,-0.003039181,0.010252821,-0.024569096,0.018245177,0.013078402,-0.0021645967,0.014571923,-0.0038414442,-0.0049380385,0.025376406,-0.019671423,-0.028121255,0.016267272,0.021030392,0.012735295,-0.011510877,0.014881391,-0.018500825,-0.009270595,0.0048135784,0.0069697658,-0.025201488,0.0029685416,-0.0041340934,0.0070034033,-0.025241854,0.018917935,-0.017316774,-0.006976493,0.00690249,0.0022234628,-0.017262952,-0.01804335,-0.008503652,0.007837622,0.0017558965,-0.004642025,0.024501821,0.0042114607,-0.009761708,0.025040027,0.012210545,-0.023573415,0.010629565,-0.007292689,0.025040027,-0.02625099,-0.02452873,-0.014545012,0.0083691,0.020492187,0.006909217,0.00011047936,0.014262455,-0.008678569,-0.02962823,-0.022389363,-0.010986127,-0.000992317,0.025416771,0.008584383,0.0043291934,0.017276408,-0.010064449,0.011080313,-0.003656436,0.02089584,0.007433968,-0.006663661,0.029386038,0.041980054,-0.0005705823,0.0054224236,-0.01848737,0.0144642815,-0.016374912,-0.037351485,-0.014127903,-0.014491192,0.023519594,-0.027852152,0.013926076,-0.016011624,0.0017996258,0.039773412,-0.019859795,0.03514484,-0.024259629,-0.013078402,-0.03501029,0.012910212,0.007070679,0.011335961,0.008840031,0.03936976,0.019227404,0.0002855014,-0.009573337,0.012055811,-0.0011167771,0.004319102,-0.01929468,0.0121230865,-0.0055468837,0.006596385,0.011605063,0.005405605,-0.004776577,-0.0080259945,-0.045424573,0.040096335,0.0006176753,0.036328893,-0.024192352,-0.0067006624,0.021528233,-0.032830555,-0.001449792,-0.010817938,0.016845843,0.016186541,0.007460878,-0.022914113,-0.6690975,-0.02181079,-0.0013993352,0.02766378,-0.012775661,0.019079397,0.0029029478,-0.005903445,-0.03479501,0.04246444,-0.018204812,-0.009236958,0.0002518635,-0.005449334,-0.005809259,-0.018608466,-0.0030307716,-0.013791525,0.014693019,0.004463745,-0.004399833,-0.0027700781,-0.0048707626,0.009802074,0.010535379,-0.005839533,0.03858936,0.0074272407,0.0022234628,-0.0015465008,-0.015836706,0.031996336,0.007729981,-0.009553154,0.052232876,-0.020223085,-0.01940232,0.014154813,0.008019267,0.012587289,-0.032696005,-0.004588205,0.02594152,0.0035723413,-0.018204812,0.0031535497,0.014921756,-0.0054526976,0.004803487,-0.01890448,0.03616743,0.009633885,-0.0047866683,-0.008604566,0.0025262036,0.010918851,-0.00058866263,-0.0057621663,0.008618021,0.011524333,-0.029466769,-0.0014724975,0.0063743754,0.0029735873,-0.021743516,0.03487574,-0.014706475,0.027354311,0.016226906,0.012479648,-0.0041710953,0.036517266,-0.02217408,0.046474073,-0.00052433024,0.02486511,-0.0077434364,-0.022523914,-0.015850162,0.01898521,-0.023492685,-0.014383551,-0.02355996,-0.01715531,0.03525248,0.007918353,-0.02342541,-0.007561792,0.015042853,-0.0012328278,-0.0005466153,0.013011126,-0.002284011,-0.040849824,-0.0003407936,0.012997671,-0.01615963,-0.009499333,-0.0053316015,-0.0171284,-0.011107223,-0.0067948485,-0.01663056,-0.008961127,-0.0005953902,-0.0057016183,-0.017289862,0.035898328,0.038266435,-0.020667104,-0.022456639,-0.0057621663,0.01801644,-0.010595927,-0.011033219,-0.0371362,0.038320255,0.015769431,-0.02037109,-0.017007304,0.021057304,-0.002443791,0.024286538,-0.0026674827,-0.012405644,0.016872752,-0.019469596,-0.010986127,0.015607969,-0.010468104,-0.0036597997,-0.019779064,0.014195179,-0.013347505,0.0017390776,-0.0019257677,0.035467766,-0.019509962,0.018648833,0.0028474452,-0.0313774,-0.009075495,0.0036732547,0.0037909874,0.014531557,-0.026156804,-0.00089729,-0.008618021,-0.022443183,-0.0039457213,-0.01665747,-0.029870424,-0.019429231,0.043863777,0.0120289,-0.0023058755,-0.0066804797,-0.00083463953,-0.002722985,-0.023586871,-0.0036463444,0.022133715,-0.032023247,-0.0211784,0.012580561,-0.021218766,0.01837973,0.021662785,-0.013569514,-0.037297666,-0.009956808,-0.01890448,-0.02860564,0.012997671,-0.009445513,0.004100456,0.0033419218,-0.025901156,-0.00544597,-0.014975578,0.01516395,-0.009411874,-0.03579069,0.0011226637,-0.0026254354,0.009156227,0.00063365325,0.040015604,0.0027902608,0.018097172,-0.01848737,-0.021972254,-0.012587289,0.022241356,-0.006021178,0.007279234,0.013374415,0.016670926,0.011477239,0.034068428,0.0072657787,-0.005752075,0.0033066021,-0.010784299,-0.0039053562,-0.030193347,0.0073801475,-0.02766378,0.025040027,0.0077434364,0.010750662,-0.008059632,-0.0038885372,0.019779064,0.023492685,0.027502319,-0.0118607115,0.015352322,-0.021407137,-0.009136044,-0.007312872,-0.0066703884,-0.0043897415,-0.009364782,-0.0035353396,0.0107573895,0.015069763,-0.00004338759,0.0043863775,0.0025547957,-0.032749824,-0.0015994805,0.018662287,0.0046521164,0.008517107,-0.027932882,0.027260125,-0.019738698,0.020451821,0.007057224,-0.001259738,0.015258135,0.026600823,-0.005896718,0.027636869,0.005025497,0.009512788,0.013038036,0.005556975,0.0010352053,-0.01524468,0.012425827,-0.014921756,0.01976561,0.0023277402,-0.017276408,-0.013038036,0.0058529885,0.013966441,0.021460958,0.006441651,-0.013576242,0.021756971,0.0027583048,0.019523416,0.01217018,0.011383054,0.0043830136,0.0009469059,0.0011899394,-0.0044132876,-0.013993352,0.00598754,-0.008914034,0.03040863,-0.017558966,0.005893354,-0.0022083258,-0.003972632,0.0277176,0.0047463025,-0.01948305,0.01940232,0.0040735453,-0.0014548376,-0.025618598,0.005970721,0.03048936,0.0032527815,0.007931809,0.019200493,-0.005291236,0.0113426875,-0.014249,-0.0057386197,-0.01153106,0.035440855,-0.02269883,0.030785374,0.0071715927,0.019577237,0.0044771996,-0.04494019,0.000929246,0.010925579,0.0058260784,-0.010575744,-0.0017054398,0.012869847,-0.013307139,-0.0167382,-0.0070504965,-0.015998168,-0.0068318504,-0.032938197,0.020142354,-0.018420095,-0.00967425,0.036571085,-0.0028356719,0.010320097,-0.026573913,-0.03239999,-0.009876077,0.11065512,0.02159551,0.005715073,0.012809299,-0.0068957624,0.011658884,-0.004346012,-0.030731553,-0.0022133715,-0.0134887835,0.007763619,-0.027825242,-0.0039490853,0.024044346,0.031996336,-0.0107573895,-0.019805975,-0.0024000616,0.009775164,-0.012392189,-0.013697338,0.0053921496,-0.018191358,0.011827073,-0.004739575,-0.0038044425,0.020626739,0.019388866,-0.008335463,-0.00381117,-0.0027683962,-0.02677574,-0.0023142851,-0.0118001625,-0.013966441,0.0072254133,-0.0011857348,0.003276328,0.0226181,-0.00006033792,0.028982384,0.018917935,-0.0015986395,-0.006239824,0.014423916,-0.019523416,0.0026035707,0.0031417767,-0.001009136,-0.001480907,0.032830555,-0.009122589,0.0107573895,-0.0051465933,0.023600325,0.034902647,-0.0038818095,-0.002675892,-0.021434048,-0.007561792,0.003592524,-0.010797755,0.014423916,-0.011578153,0.010273004,-0.03522557,-0.038320255,0.012345096,0.00073961256,-0.026937202,0.019509962,0.0011865756,-0.019886706,0.021151489,0.010622838,0.0075079715,0.018298998,0.0025463863,-0.003498338,0.011510877,0.0047227563,-0.026762284,0.002092275,-0.011618518,-0.0262779,0.0061288187,0.026318265,-0.0025009753,-0.017357139,0.017249497,0.022456639,0.012809299,0.023277402,-0.040930554,0.0043527395,0.000071270224,0.020801656,0.024905475,-0.006838578,0.018891025,0.008988038,-0.012358552,0.002379879,0.008907307,-0.005681435,-0.007386875,0.004349376,0.021662785,-0.037324574,0.0016970303,-0.00087963016,-0.0055065183,0.010010629,0.009768436,0.006031269,0.013482057,-0.009109134,0.033799328,0.011827073,-0.0026809378,-0.013751159,-0.060709618,0.010104815,0.030004974,-0.004029816,0.0088736685,-0.015150494,-0.038320255,0.0050019505,-0.0060110865,0.010521924,0.018420095,0.008907307,-0.02777142,-0.007218686,0.018514281,-0.0064685615,0.017881889,-0.003545431,-0.011329233,-0.028928563,-0.0008754254,0.01435664,-0.01044792,0.00576553,-0.022887204,-0.00068747386,0.007514699,-0.008631476,0.022308633,-0.0049683126,-0.002504339,-0.00082959386,-0.012116359,-0.010575744,-0.028955474,-0.0067174817,0.010333552,0.010683386,-0.0019022212,0.011268685,0.011618518,0.00076063623,0.0041509126,-0.009970263,0.0071715927,0.0000779978,0.018339364,-0.019927071,0.025672419,0.0041677314,0.033799328,0.042895004,0.019025575,-0.0028861288,0.016374912,-0.00881312,-0.0016154584,0.018137537,-0.0100442665,-0.0022756015,-0.0007909103,-0.0038717182,0.016966939,-0.032669093,-0.000978021,0.02455564,0.012459465,-0.005577158,0.0020821837,0.015096674,-0.020303816,0.019752154,-0.013394598,0.011221591,-0.0010419328,-0.020492187,0.009088951,0.021084214,0.012964033,-0.007857805,-0.0052105053,-0.006878943,0.0030526363,-0.008658387,0.024596008,0.017976075,-0.036544178,-0.004914492,-0.0050995,-0.01762624,-0.014518103,-0.04402524,-0.019133218,-0.0025329313,0.015338866,-0.011981808,0.016859299,-0.004154276,-0.033691686,-0.009694433,-0.03326112,0.01474684,0.005260962,0.04859999,0.02868637,-0.0062600067,0.007366692,0.029170755,-0.03396079,-0.0097818915,0.0031922334,0.020424912,-0.021366771,0.000027435883,-0.0021780517,-0.0007105999,-0.02364069,-0.032938197,0.01153106,-0.009109134,0.0073532374,-0.025013115,-0.008416194,-0.0037068927,0.022456639,-0.004218188,0.008840031,-0.0039053562,-0.005136502,-0.01086503,0.0100442665,-0.0029248123,0.016792022,0.005691527,0.00277176,-0.002632163,0.0027011205,-0.013717521,0.0011714386,-0.017774248,0.004790032,-0.016926574,0.024649827,0.0030913197,-0.010273004,-0.00051423884,-0.016253816,0.026869927,0.02447491,-0.029843513,0.007185048,-0.0023041938,-0.018097172,0.01665747,0.018258633,-0.011477239,-0.024596008,-0.005291236,-0.0005121365,0.011140861,-0.00040050084,0.012607472,-0.01707458,-0.014383551,-0.0075416095,-0.0063441014,-0.008456559,0.020330725,-0.03595215,-0.00717832,-0.038104974,-0.008920762,-0.021111123,-0.007729981,-0.0034714276,0.016078899,0.014531557,-0.017141856,0.019859795,-0.0106901135,-0.020155808,-0.0047799405,0.004302283,0.023734877,-0.030247169,0.0027683962,-0.001102481,-0.02272574,-0.0052845087,0.016644016,0.00892749,0.00037632362,-0.009115862,0.019671423,0.028201986,0.008200912,-0.03788969,0.0066838437,0.017720427,-0.009088951,0.004880854,0.00093933736,-0.007837622,0.032615274,-0.011887621,0.0189583,0.016913118,-0.0023243765,-0.016724747,-0.022497004,0.012452737,-0.0123854615,-0.011712705,-0.014666109,-0.009553154,-0.0019392229,0.04265281,-0.0047160285,0.01652292,0.013374415,0.035198662,-0.0028154892,0.025551323,-0.0042753727,0.007010131,-0.030031886,-0.02857873,-0.013367687,-0.01801644,-0.008920762,0.020720925,-0.018971756,-0.032830555,-0.013233136,-0.008147091,-0.02962823,-0.0038986285,-0.035602316,-0.011201409,0.019523416,0.0032510997,-0.008470015,0.022793017,0.008954399,0.02031727,-0.00340247,-0.009775164,0.031538863,0.010313369,0.009640612,-0.0022789654,-0.026923748,0.01521777,0.0074406955,0.018756473,-0.0011361189,0.02544368,-0.022281721,0.010030812,-0.022362452,-0.0038649905,0.0022318724,0.014558468,0.0189583,-0.02724667,0.019415775,0.023156306,0.0023327859,-0.003733803,0.0040870006,0.01746478,-0.004679027,0.014639199,-0.0077770744,-0.01319277,0.012620927,0.0057318923,0.0248382,0.0052811448,0.004423379,0.020868931,-0.0076156124,-0.00003203481,0.0028794012,0.007958719,-0.014249,-0.005166776,0.02125913,-0.01743787,-0.02029036,0.012829482,0.011793436,-0.008544018,0.0009073814,-0.0009048586,0.014571923,-0.01574252,0.003198961,0.0010991172,-0.012782388,-0.005133138,0.0035723413,0.004440198,0.0013564469,-0.0021645967,-0.0045949323,-0.012964033,-0.001260579,0.004682391,0.0061220913,-0.015042853,-0.008106725,0.009055313,0.025618598,0.024596008,0.22217137,0.009835712,-0.0011638701,0.028201986,0.010488287,-0.0076828883,0.008671842,0.016401824,0.029655142,0.0041677314,-0.007339782,-0.006697299,0.005513246,-0.011208137,-0.019967437,-0.014962122,-0.03226544,-0.0069226725,-0.011376326,-0.0371362,0.0009199956,0.0034125613,0.012977488,-0.007951992,0.02120531,-0.010656475,0.0119952625,0.008416194,0.0073330547,-0.012324913,-0.01319277,-0.0044368342,0.0011848938,-0.01338787,-0.00358916,-0.007481061,-0.02952059,0.013024582,0.032157797,0.020048168,0.007433968,-0.020653648,-0.019698333,-0.010629565,0.006909217,-0.011194682,-0.021245675,-0.023304313,-0.008880396,0.008073088,-0.024797834,-0.0106901135,0.028175075,0.04058072,-0.0028844469,-0.004036544,0.012795844,0.008382556,-0.045720585,0.00053652393,-0.012075993,0.009943353,0.015581059,0.02167624,-0.018662287,0.013219681,0.002014908,-0.014558468,0.019509962,0.0007942741,-0.0057588024,0.00010070336,0.002033409,0.003700165,-0.031834874,-0.03043554,0.027287036,0.018473916,0.019577237,0.030031886,0.0007244755,-0.011376326,0.0155676035,0.0021931888,-0.01798953,-0.012271093,0.008779483,-0.009122589,0.012055811,0.007010131,0.004830397,-0.011813618,-0.0042450987,-0.00041542764,0.02538986,0.0070034033,0.022577735,0.01854119,-0.009021675,-0.006663661,-0.011430146,0.005684799,0.013710794,-0.006710754,-0.0085642,-0.015648335,0.009802074,0.0189583,-0.01130905,-0.023627236,0.0002042449,-0.025847334,0.0035824326,-0.0015877072,0.0011596654,-0.0033721959,0.011268685,-0.02159551,-0.01671129,-0.0023462411,0.00648538,-0.025699329,0.026116438,-0.0019022212,0.021931889,-0.013535877,-0.003575705,0.0083691,0.012506558,-0.028794013,0.023694512,0.004894309,0.018312454,-0.019617602,-0.012459465,-0.0014262454,0.036678728,0.012634382,0.017949164,0.0007282598,-0.008470015,-0.011450329,-0.001607049,0.004080273,0.016428733,-0.018864114,0.018298998,0.00065930217,0.014854481,-0.0052037775,-0.018796839,-0.015042853,0.010441193,-0.014410461,0.023223583,-0.0070639513,-0.01968488,-0.0069495826,0.020667104,0.019254314,0.00011352779,-0.011840529,-0.00016619207,-0.014060628,-0.012486375,-0.007030314,-0.17373285,0.022362452,0.0049245832,-0.01615963,0.02857873,0.005415696,-0.0014279274,-0.0018315817,-0.028121255,0.012405644,-0.0132264085,-0.0047631217,-0.0230083,-0.020303816,-0.012883302,-0.0022705558,0.00903513,-0.0012151678,0.019927071,-0.016051989,-0.022335542,0.00544597,0.014908302,-0.014289365,0.012203817,-0.0011941442,-0.01527159,0.015042853,0.013542605,-0.004766485,-0.016307637,-0.021716606,0.00093176885,-0.0102999145,0.012748751,0.0117328875,-0.0018181265,0.0044368342,-0.013778069,0.02259119,-0.0018786747,0.015096674,0.0058260784,0.012062538,-0.033153478,0.040338527,0.01987325,0.007669433,-0.009990445,-0.017114945,-0.0031131844,-0.0029433132,0.011510877,-0.0033957425,0.009277323,0.026816105,-0.011127406,0.024448,0.0072052306,-0.0080259945,-0.014652654,-0.005408969,0.005449334,-0.004554567,-0.007581975,-0.00025859108,-0.03675946,-0.0049985866,-0.024246173,0.02594152,0.008517107,-0.0029651779,-0.001826536,-0.017505145,-0.0011537788,0.014760295,-0.02943986,-0.002598525,0.0016785294,-0.0005949697,-0.008974582,0.034768097,-0.009351326,-0.0013774706,-0.026587369,0.011934714,0.015513783,0.0059471745,-0.00028739352,-0.011699249,0.015365777,0.018662287,0.0067813937,-0.030274078,0.018796839,0.015365777,0.0064618336,-0.0004295135,0.0117328875,-0.013630062,0.013643518,-0.017733883,-0.007023586,0.003609343,0.020586373,0.018702652,-0.0045781136,0.03040863,0.017491689,-0.0057722577,-0.014275909,0.005990904,0.0071446826,0.03517175,-0.0031384127,-0.01979252,0.020034712,-0.008133636,0.022187535,0.012062538,0.044778727,0.00048606715,-0.010326824,-0.016321093,-0.014208634,-0.0049245832,-0.10387372,-0.03431062,-0.008658387,0.012567107,-0.014841026,0.017760793,-0.012499831,0.017209131,0.000001476584,0.043890685,0.000016726954,-0.010770844,-0.000660984,0.009183137,0.0008228663,0.016065445,-0.0008729026,0.017289862,0.0067141177,0.02253737,-0.017276408,0.024098165,-0.01876993,-0.010138452,-0.02868637,-0.02395016,-0.03982723,0.02259119,0.0041710953,0.005869807,-0.012116359,-0.00945224,0.026506638,-0.04251826,-0.012910212,0.013286957,-0.02442109,0.0061994586,0.005200414,-0.061247826,-0.0025161123,0.0023681056,-0.009539698,-0.022994844,-0.036597997,0.025430225,0.0013875619,0.021191854,0.007655978,-0.017908799,-0.012540196,0.020196173,-0.034768097,-0.011154316,0.04028471,-0.013024582,-0.00016072592,0.007676161,-0.0022671921,0.0138588,0.022281721,0.0077097984,-0.011483967,-0.012392189,-0.0155676035,-0.008766027,-0.0015835025,-0.023936704,0.004833761,0.0005491381,-0.004759758,0.009095679,-0.026816105,0.026681554,-0.03218471,0.017774248,0.0035521586,-0.0056410697,0.016684381,-0.0067477557,-0.020694014,-0.008476742,0.0074474234,-0.019671423,0.01762624,0.00039608584,-0.00080478593,0.010737207,0.010454648,-0.037512947,-0.0092638675,0.004742939,0.02475747,0.012977488,-0.012533468,-0.027340855,-0.014249,-0.009606974,-0.002551432,0.020384546,-0.024999661,-0.030704644,-0.06506909,0.029870424,0.017168766,-0.01929468,0.01086503,-0.021434048,-0.0100442665,-0.001512863,-0.0022133715,0.011679066,-0.016509464,0.024501821,-0.0042652814,-0.01153106,-0.031781055,-0.034525905,0.02361378,-0.012755479,0.010219183,-0.0061826394,0.00093765545,-0.012217272,0.0222279,0.006455106,0.02594152,0.01289003,-0.028820923,-0.013394598,0.007608885,-0.00633401,0.028228896,-0.03401461,-0.003942358,0.012291276,0.0067982124,-0.026466273,-0.021904977,0.017478235,-0.015998168,0.0024555642,-0.021824246,-0.026143348,0.0027162575,0.007608885,0.0037775321,0.00680494,-0.017034214,0.010918851,0.01837973,0.013845345,0.024676738,0.017949164,-0.018137537,-0.00013097744,-0.02162242,-0.02020963,0.0051600486,-0.011685794,0.012217272,0.0036665273,0.007359965,0.01244601,0.022550825,-0.0071917754,0.02960132,0.009909715,-0.006112,-0.0014052218,0.009310961,-0.049138192,-0.011840529,-0.0012277821,0.009613702,0.001905585,-0.0056780716,0.011174499,-0.005873171,-0.0076021575,-0.0075685196,0.025820425,0.014679564,-0.00984244,-0.026923748,0.017451324,0.030247169,0.00494813,-0.01582325,0.0062835533,-0.014706475,0.005193686,-0.038481716,0.0043291934,-0.012149997,-0.00065635884,0.0138588,0.008180729,-0.017343683,0.000020484935,0.007972174,0.0035992516,0.006710754,0.0056175236,0.021218766,-0.024151986,0.004349376,-0.0026338447,-0.012627655,-0.023775242,0.013845345,0.00092504127,-0.002204962,-0.017666606,0.0049044006,0.011934714,0.008792938,0.012190362,0.017114945,-0.013475329,-0.016724747,0.024488365,0.02452873,0.016684381,0.008322008,-0.018635377,-0.01890448,-0.003653072,0.006347465,-0.015500328,0.019590693,-0.004187914,0.016173085,-0.015406142,-0.011120678,-0.013253319,-0.002489202,0.018447004,-0.023492685,0.018864114,-0.026210625,0.058556795,0.004739575,-0.020572918,-0.0064080134,-0.014289365,0.013912621,0.008268187,-0.02355996,-0.022806473,0.003922175,-0.010858303,-0.0045142015,0.036463447,-0.022846838,-0.020115443,-0.012910212,0.00029264943,0.0036665273,-0.005876535,-0.016590195,0.0093244165,-0.0002863423,0.015863618,-0.0040129973,-0.0057924404,-0.021555144,0.013818434,0.025201488,-0.01968488,-0.006663661,0.0029029478,0.0038347165,-0.0010284777,0.0031148663,0.015554149,-0.03770132,-0.002692711,0.012055811,0.0062297327,0.009055313,-0.008799666,0.022752652,0.0017113264,-0.020855475,0.006710754,-0.013522422,0.0027818514,-0.011261957,-0.026035707]},{\"id\":\"79a6349a-c6e1-4344-ad58-5cf9dca78abe\",\"text\":\"I miss the sliding scale that approximated the our pay while Bounties are live.\",\"vector\":[-0.012915788,-0.013181086,0.0125597315,-0.020344112,-0.035884947,-0.0025639585,-0.025636094,0.022284972,-0.03691821,-0.034293164,0.034795832,0.0150521295,0.003178331,-0.012434064,0.0026931164,-0.0072468044,0.013404494,0.0063810977,-0.015080055,-0.0054490664,-0.023457864,0.007183971,-0.027912065,-0.009613535,-0.019296886,-0.020637335,0.02954574,-0.008077604,-0.0008499985,0.0061367447,0.018277586,0.0047299713,-0.03353916,0.022913307,-0.036750656,-0.022913307,0.002209647,0.017006952,-0.0150102405,0.010549057,-0.0028152927,0.017453767,-0.014242275,-0.013404494,-0.006967544,0.0022218646,-0.018877996,-0.020902632,-0.0037281248,0.02246649,-0.0019146784,0.019115366,-0.047781434,-0.027437324,0.0312213,0.02168456,-0.0015394223,0.008552346,0.014926462,-0.0144377565,-0.031053744,-0.012168767,-0.0036862358,0.0079659,-0.006433459,0.0007841105,0.0047404435,-0.0006942236,-0.0014416813,0.00078192883,0.026054984,-0.012189711,0.004977815,0.0021991748,0.03686236,0.006129763,0.011079652,0.0034942443,0.025119463,0.0016965063,0.018459106,0.025370797,0.02010674,0.005302455,0.016602024,0.01125419,0.018473068,0.009641461,0.0014521535,-0.0065870523,0.019659923,0.0041784323,0.038928885,0.036750656,0.0074562496,0.0016485084,0.0011161685,0.021237744,0.0027856214,-0.025901392,-0.0098229805,0.020679224,-0.010730577,-0.017523583,-0.042587195,-0.01079341,-0.0053199083,-0.0139490515,0.01750962,-0.0010384992,-0.0063706255,0.016979026,0.025733836,-0.022717824,-0.006402042,0.0006121909,-0.011973285,-0.0028955801,-0.0019530767,-0.02672521,0.02274575,-0.0075888983,0.04705536,0.00345061,0.011749877,0.011959322,0.0029392145,-0.0009459942,0.02056752,-0.0019984564,0.020036926,0.032813083,-0.010179037,-0.014619276,-0.023597494,0.011903469,0.0058016325,0.001058571,-0.004373914,0.0051802783,0.024281682,0.028624179,-0.0041714506,-0.013648846,0.0045379796,0.02682295,0.012448028,-0.0014442994,0.0285404,-0.009857888,-0.0039585144,-0.007693621,0.0090899225,-0.010995874,0.005152352,-0.028414734,-0.005847012,0.011575339,-0.009466924,-0.013690735,0.0056759655,0.013418457,0.00782627,0.002515088,0.012825029,0.027995843,0.0056340764,-0.011247208,-0.0058435216,-0.008901422,-0.018137956,0.024993796,-0.018724402,0.031333003,-0.02422583,0.010123186,0.011903469,0.004869601,-0.012713324,-0.0010672979,-0.009020107,0.0024976342,0.032031156,0.039487403,0.0022672445,-0.007749473,0.025440613,0.000048870552,-0.00903407,-0.002811802,-0.008182326,-0.0067197005,-0.009390127,-0.0064229867,-0.63671345,-0.028358882,-0.016615987,0.003951533,0.026976544,0.0006981507,-0.0038537919,0.010933041,-0.018305512,0.019087441,-0.0058155954,0.0042447564,-0.0040597464,0.0051383893,0.0005109591,-0.025552316,0.017886622,0.0032516369,-0.01880818,0.0084336605,-0.018473068,0.0143958675,-0.004925453,0.020036926,-0.009110867,-0.014018866,-0.0048556384,-0.015848022,0.005438594,-0.0030858263,-0.0142352935,0.018794218,0.011372875,0.007937973,0.047362544,-0.0141934045,-0.011135504,0.010953985,0.01264351,0.041861117,-0.040101778,-0.0031992756,0.000033434873,-0.009515794,0.0024627266,0.0009625753,0.024840202,0.012608602,0.014758906,-0.032198712,0.006939618,0.014291145,-0.014409831,0.030579,0.015121944,-0.008929348,0.008210252,-0.026264431,0.0034157024,-0.018305512,-0.024910018,-0.0037595415,-0.032087006,-0.03557776,-0.032226637,0.00806364,0.01811003,0.012922769,0.018123992,0.0019583127,0.007553991,-0.00379794,-0.005693419,0.010304704,-0.00532689,-0.02362542,0.02010674,-0.023974495,0.0007714566,0.011114559,-0.013069381,-0.026348209,-0.0024208375,0.0036373653,0.01991126,0.013341661,-0.011519487,-0.008342901,0.03437694,0.023052936,-0.0020298732,0.03384635,0.014340016,-0.01894781,-0.003187058,0.01806814,-0.004558924,0.0048137493,0.030020481,-0.043927643,-0.010360557,0.0068942383,0.0051767877,0.0004003458,0.024379423,0.0036618004,-0.0265018,0.0089852,0.053394567,-0.032170784,0.02046978,-0.010814355,-0.04283853,0.009145775,-0.023806939,-0.024840202,0.008671032,-0.012468972,-0.028931366,-0.006307792,0.0143958675,0.020386001,0.027116174,0.0051767877,-0.03144471,0.021838155,0.033148196,-0.014340016,0.016113319,0.0025534863,0.00022777167,-0.02788414,0.026627468,-0.005539826,0.0073305825,-0.011694024,-0.0015141143,-0.023569569,0.0038712458,-0.034432795,-0.012915788,-0.013879236,-0.017593399,-0.020064851,-0.013746588,-0.019310849,-0.019562183,0.009746184,0.018514957,0.006730173,-0.022871418,-0.024616795,-0.018445142,-0.008077604,-0.014856648,-0.0022131377,-0.016602024,-0.0043599512,-0.04627343,0.0012697616,-0.011030781,0.007882122,-0.024295645,0.0023422956,0.005351325,0.005271038,-0.011931396,0.01107267,-0.01607143,-0.022396674,-0.00049699604,-0.013795458,0.00024980705,-0.00025744308,-0.012378212,0.004332025,-0.009117848,-0.018682513,-0.022675935,-0.0011039508,0.021084152,0.0031486598,-0.022340823,0.0063252454,0.04998759,-0.0040004035,-0.0049813055,0.031528488,-0.016197097,0.0035134435,0.0150102405,0.009236534,-0.00764475,0.015163833,-0.0020979429,0.0059447535,-0.013963015,0.0038014306,-0.0034261746,0.027479213,0.0033965032,0.029015144,0.022019673,0.01816588,0.019939184,-0.039040588,-0.001727923,-0.026697284,0.019562183,0.028959291,0.013739606,-0.01301353,0.017174508,-0.03959911,0.016378615,0.013648846,-0.022438563,0.019282922,0.031249227,0.015401205,0.0114985425,-0.013683754,0.013599976,-0.0022166285,-0.012406139,-0.0020543085,-0.011191356,0.01005337,0.009767128,0.0019443497,-0.0027908576,0.0024889074,-0.004792805,0.010486224,0.01885007,-0.021656636,0.03686236,0.0084336605,0.042363785,0.005344344,0.0054490664,0.0070233964,0.02194986,0.009285404,0.010416409,0.006957072,0.022648009,-0.00055023003,-0.033706717,-0.0038747366,-0.0037735046,-0.008622161,-0.013453364,-0.0025412687,0.014633239,-0.028512476,-0.0008342901,0.007637769,0.028414734,0.01917122,-0.009271442,0.026585579,0.0037071803,-0.025677983,0.028791735,-0.0043878774,-0.01885007,-0.0052221674,-0.011938377,0.0022131377,0.010465279,-0.021195855,-0.010206964,-0.0067790435,0.023290308,-0.0010297723,0.014842684,-0.00824516,0.0029479414,0.001271507,-0.016322764,-0.01894781,0.012294434,0.025845539,-0.0060145683,-0.015903873,-0.0042866454,0.0094948495,0.004743934,0.016685802,0.0060843835,0.005738799,-0.022229118,-0.010730577,-0.0050476296,-0.0077006025,0.027688658,-0.024002422,-0.0071560447,-0.002103179,-0.009166719,0.006744136,0.009138793,-0.0045030722,0.042503417,0.02524513,-0.024351496,-0.007470213,-0.031975303,-0.015066093,0.0047544064,-0.0067092283,0.011735913,0.0076587135,0.0038468104,0.003330179,-0.010102241,-0.0020682714,0.039012663,0.009362201,-0.009725239,0.0066114874,-0.024630757,-0.0062554306,0.09411072,0.017342065,0.011330986,0.008824625,0.005525863,-0.0037316156,-0.0049394164,-0.024463201,0.0025203242,0.01264351,0.016755618,-0.0037700138,-0.012301415,-0.014661165,0.0005903737,-0.011659117,-0.004461183,-0.0434529,0.023276346,0.004716008,0.0013116506,0.026194615,0.01264351,0.036108356,-0.0038363382,0.032031156,0.024742462,0.013886218,0.0016554899,-0.044681646,-0.0069954703,-0.0023457864,0.0014207367,-0.0015743299,0.012496898,-0.004475146,-0.019618034,-0.0068802754,0.009899777,-0.008978218,0.0046636467,0.02630632,0.0105560385,-0.009843925,0.017272249,-0.031528488,-0.0068488587,0.0005694292,-0.014968351,0.0057562524,0.018179845,-0.0073585087,0.0018309002,-0.02014863,0.016727692,0.015401205,0.0075749354,0.0009407581,0.012154804,-0.030662779,-0.03747673,-0.017411878,-0.0028362372,-0.011421746,-0.00020617264,-0.022382712,-0.007609843,-0.009564665,-0.036834434,0.018640624,-0.029015144,-0.010549057,-0.023052936,-0.012950696,0.022522341,-0.012161786,0.020064851,0.004618267,0.02190797,0.015163833,-0.0150521295,0.0027856214,0.016336726,0.00602155,-0.032589674,-0.01662995,0.017439805,0.010381501,-0.008461587,-0.016825432,-0.023597494,-0.008405735,0.016015578,-0.01107267,0.0035483511,-0.010227908,0.01922707,0.034795832,0.020958485,0.006224014,0.027521102,-0.020776965,-0.024658684,0.015498946,0.012196693,-0.008210252,0.011875544,0.011219282,0.009648443,-0.037113693,-0.011114559,-0.011002855,-0.006175143,-0.005253584,0.032533824,0.009243515,-0.0024906527,0.019031588,-0.016266912,0.0060006054,-0.005571243,-0.028931366,0.031025818,0.020050889,-0.026362171,-0.031612266,-0.016225023,-0.05118841,-0.013488272,-0.008140437,-0.016155208,0.0023614948,-0.005117445,-0.02622254,-0.014493609,-0.01079341,0.008866514,-0.0016232004,-0.0052396213,-0.010367538,-0.013690735,0.008391771,-0.0037281248,-0.022103451,0.023653347,-0.029685369,-0.021838155,-0.0018780255,-0.01894781,0.03289686,0.009306349,-0.008287049,-0.029685369,0.004332025,0.016420504,-0.023011047,-0.019143293,-0.003024738,0.030579,0.0081055295,-0.012859936,0.008447624,0.021656636,0.005072065,0.016657876,-0.013914144,0.016238986,-0.017900584,-0.016657876,0.01978559,0.01199423,-0.017705102,0.0026145745,-0.005072065,0.007477194,0.016965063,-0.011240226,-0.003256873,-0.025231168,-0.01829155,0.009362201,-0.027199952,0.0020647808,-0.031109596,-0.010018463,-0.017453767,0.002075253,0.016336726,0.02622254,0.005780688,0.033790495,-0.009068978,0.015973689,0.007637769,0.020204483,-0.008084585,-0.03312027,-0.006374116,0.000032344014,0.0011109323,0.010960966,0.014730981,-0.016965063,-0.02056752,-0.018445142,0.009432016,-0.027549027,0.0004215085,0.0019234052,0.001296815,-0.0025918845,-0.021642672,-0.03342746,0.0042971177,-0.007142082,0.014661165,0.0043843864,0.015317427,-0.014786832,-0.015066093,-0.0046252487,0.015806133,0.006258921,-0.0068942383,0.023499753,0.016043503,-0.00634619,-0.050741594,-0.0035221705,0.010821336,-0.0014268456,0.015596687,0.02700447,-0.030718632,-0.0075749354,0.007016415,0.002399893,-0.015638577,-0.038789254,0.015387242,0.007693621,0.0055502984,-0.014116608,-0.01852892,-0.0130624,0.029852925,0.0057737064,-0.0063112825,0.0139490515,0.00236324,0.0062833563,0.016825432,-0.0030352103,0.011666099,0.001218273,0.008957273,-0.028875513,-0.012650491,-0.005302455,0.0066114874,0.014493609,0.030327667,-0.021517005,0.020972447,-0.009061996,0.008021751,0.0036792543,-0.024546979,-0.010248853,0.018347401,-0.02366731,-0.0019443497,-0.020735076,-0.011358912,-0.0049917777,0.017900584,-0.02608291,-0.028149437,-0.016657876,0.019352738,0.021014336,0.017677177,-0.021740414,0.007693621,-0.016602024,-0.010849263,-0.024546979,0.00039118258,0.020204483,-0.043145716,-0.009543721,-0.009592591,0.0070338687,0.02288538,0.011749877,-0.0032690908,0.022773676,0.01713262,-0.02848455,0.03831451,-0.0025988661,-0.0025307965,-0.025328908,0.004733462,-0.017607361,-0.008084585,-0.0017401407,-0.012622565,-0.0481724,-0.013963015,0.010199982,0.014926462,0.018961774,-0.00091283204,-0.0036862358,0.022717824,0.009829962,-0.02644595,-0.017607361,0.008671032,0.008126474,0.003372068,0.022829529,-0.004450711,0.010967948,-0.018864032,0.013027492,-0.0025988661,-0.026250467,-0.0067964974,-0.005260566,0.009941666,-0.016602024,-0.045323946,-0.01385131,-0.0111704115,-0.006744136,0.041861117,0.011268153,-0.021921933,0.0012470718,0.0061576893,0.017034877,0.011142486,0.001512369,-0.028931366,0.0038886995,-0.006786025,-0.0032359285,-0.030690705,-0.005061593,0.032198712,0.020553557,-0.0332599,-0.037169546,-0.015331389,-0.04253134,-0.00463223,-0.014842684,0.021852117,0.020916596,0.0057143634,-0.009857888,0.045407724,0.0071560447,0.0042133396,-0.018514957,-0.02630632,0.0035239158,-0.016336726,-0.0048975274,-0.0023318233,-0.0020316185,0.0039689867,0.0359408,0.0142352935,0.037532583,0.011191356,-0.0050092316,0.01107267,0.014242275,0.03108167,0.019604072,0.0047718603,0.022312896,-0.0281634,-0.012050081,0.0020857253,-0.004845166,-0.0068628215,-0.017481694,0.009543721,-0.008831606,0.012922769,-0.013020511,0.0015996378,-0.019352738,-0.017984362,0.01028376,0.016951099,-0.009697313,0.008950292,0.01278314,-0.014730981,0.00500225,0.019450478,-0.02042789,-0.000053697608,0.013467328,-0.0052500935,0.0070792483,0.01153345,0.013243919,0.001820428,0.009425035,-0.037085768,-0.023932606,-0.009110867,0.0007012051,0.0076307873,-0.022913307,0.0136209205,-0.012147822,-0.010032426,0.009543721,-0.012587657,-0.0006929146,-0.012385194,0.0023614948,0.0030648815,-0.006730173,-0.041218817,0.008552346,0.012001211,0.0032080025,0.018612698,0.22340824,-0.02302501,-0.00055153907,0.026110837,0.0012016919,0.011358912,0.0015786933,0.009369182,0.008971237,0.02672521,0.018012289,-0.008740847,-0.012769177,-0.0021887026,-0.0039305887,-0.0031608774,-0.018542884,0.01838929,-0.021126041,0.012078008,0.019282922,0.022382712,-0.018752329,-0.014521535,0.014535498,-0.01390018,0.005414159,-0.014409831,0.0045240168,0.019631999,-0.012203675,0.00069858704,0.013313734,-0.010290742,-0.014060755,-0.00903407,-0.03705784,-0.024239793,0.013160141,0.053617977,0.024896055,-0.009920722,0.015457056,-0.0019618035,0.0026582088,0.01871044,-0.003668782,0.0043843864,0.012664454,0.0017706847,-0.019115366,-0.004604304,0.041665636,0.029769147,-0.02274575,0.008035715,0.011114559,0.009962611,-0.02362542,0.044988833,-0.003864264,-0.013292789,-0.0058295587,0.0054909554,-0.030495223,0.015317427,-0.0013046692,-0.004604304,0.014703054,-0.0005253584,0.02278764,0.012406139,-0.021614747,-0.002747223,-0.034069754,-0.014326053,0.02996463,0.022689898,0.030969966,0.016252948,-0.0014573897,-0.0027262785,0.01709073,-0.037029915,0.006674321,-0.041805264,0.032114934,0.0047648787,-0.033455383,0.018459106,-0.0070338687,-0.016741654,-0.01288088,-0.020665262,-0.0036583098,0.009250497,0.015024204,0.036192134,-0.019618034,-0.00542114,0.007910048,-0.009271442,0.011603265,-0.004684591,0.0049813055,0.00057510164,-0.008224215,0.019017626,0.018584773,-0.016825432,-0.017579434,-0.031472635,0.0101511115,-0.009760147,0.0013954288,-0.0017488676,0.008712921,-0.0023143697,-0.008007789,0.005965698,-0.0035884946,-0.029657442,0.0028920893,-0.01880818,0.015736317,-0.008280068,-0.013579031,-0.008726884,-0.020274296,-0.04493298,0.01978559,-0.009997519,0.0025918845,-0.02278764,-0.02904307,-0.008684995,0.0069815074,-0.028512476,-0.025789687,-0.0038153937,0.0027786398,0.03719747,0.008796699,-0.020651298,0.009920722,-0.028051697,0.029517813,-0.0005899374,-0.013509217,0.014109626,-0.01649032,-0.01806814,-0.020455817,-0.006220523,0.036303837,-0.030662779,-0.022354785,-0.021014336,0.05141182,0.0054735015,-0.039403625,-0.005794651,0.019645961,-0.026697284,-0.022075526,-0.0015167324,-0.18006703,-0.0010821336,-0.0026843895,0.0028205288,0.017621323,-0.0156246135,0.018123992,0.011966303,-0.022340823,0.008880477,-0.012852955,-0.005763234,-0.015526872,0.0027873667,0.00940409,0.005564261,-0.035186797,0.012580676,-0.010137148,-0.0038852089,0.044402387,0.02376505,0.01792851,-0.017453767,0.018333439,-0.0034680637,-0.0022218646,0.012175748,0.024253756,-0.0073585087,-0.02630632,0.002839728,0.0071036834,0.007477194,0.014263219,0.009809017,-0.01829155,0.007896084,0.026152726,0.016211059,0.030020481,0.010458298,-0.005721345,0.017635288,-0.012776158,0.04557528,0.0043843864,-0.0049394164,-0.010674724,-0.018598735,0.00041539967,-0.015834058,0.0016825432,0.0013884472,0.017104693,-0.007386435,0.022661973,0.017760955,-0.014179441,-0.006943109,-0.018961774,-0.022815565,0.001058571,-0.010905114,-0.013976977,-0.0005567752,-0.0006584434,0.0044437293,0.008447624,-0.009096904,-0.0037036897,-0.016113319,0.020832818,0.022913307,0.018193807,0.016699765,-0.022159304,0.001391938,-0.008789717,0.0056340764,0.008678013,0.044151053,-0.018305512,-0.0011833655,0.0041155983,0.016797507,0.016518246,0.006883766,-0.0074073793,-0.011714969,-0.002399893,0.004475146,0.00787514,-0.02046978,-0.027255803,0.026836913,-0.006175143,-0.003923607,0.024951907,-0.018054178,0.011407782,-0.0131322155,-0.016825432,0.030886188,0.002904307,-0.0016319273,-0.008412716,-0.0025918845,0.010311686,0.0029165247,-0.009508813,0.019436516,0.0021974293,0.016923174,-0.014116608,0.019562183,0.003372068,-0.019045552,0.042140376,-0.025161352,0.07288694,-0.024546979,-0.03381842,0.005016213,0.003626893,-0.0072468044,-0.11617228,-0.018347401,0.01209197,-0.0017357772,-0.0018012288,0.018375328,-0.012503879,0.029908776,-0.0037036897,0.019701812,0.0007828015,-0.012210656,-0.008999162,0.0008408353,0.021656636,0.0048067677,0.03507509,-0.005127917,0.017579434,0.026473876,-0.000079796446,-0.010967948,0.022620084,0.009690332,-0.004164469,-0.009257479,-0.020581484,0.025468538,-0.008342901,0.004377405,0.02422583,-0.02148908,0.011959322,-0.0006881148,-0.010186019,-0.0066289413,-0.03278516,-0.0026477366,-0.008307993,-0.021475116,0.007393416,8.778018e-7,-0.0047648787,0.0016389088,-0.008691977,0.007910048,-0.00838479,0.009850906,0.028135475,-0.032589674,0.015317427,-0.01575028,-0.011882525,-0.03761636,-0.0036303836,0.0061960877,-0.0034628275,0.00001802647,0.008552346,0.0028100566,-0.0055572796,0.003469809,-0.011044744,0.033036493,-0.003867755,-0.009906759,-0.038984735,0.002867654,-0.0075051202,-0.0010690433,-0.0070199054,0.045268092,-0.015066093,0.01602954,0.00073000387,-0.01315316,-0.031947378,-0.02046978,-0.006192597,-0.017621323,-0.024882091,0.0025639585,-0.0070897206,-0.0062030694,0.028372845,-0.015861984,-0.011631191,0.0045624147,0.016602024,-0.019729739,0.0016703256,0.0010524623,0.017244322,-0.022075526,0.0058190865,-0.008887459,-0.004674119,-0.01181271,0.021475116,-0.026236504,0.0058190865,0.027674694,-0.03233834,0.025356835,-0.0015621122,0.00059560983,0.029936703,0.012078008,0.01176384,-0.02482624,-0.020860743,-0.015317427,-0.019576145,0.023569569,-0.038063176,-0.020497706,0.004366933,-0.025971206,0.023751087,-0.0079659,0.027493175,0.016462393,-0.0024976342,-0.038286585,-0.014786832,0.0017855205,0.011037763,0.03811903,-0.0052047134,0.01816588,-0.0032586185,-0.015722355,-0.010611891,-0.014549461,0.012015174,0.023513716,0.006272884,-0.013474309,-0.0015394223,0.009760147,0.0393757,-0.00201591,0.00011803111,-0.018193807,0.00047125173,-0.019143293,-0.025622131,-0.023932606,-0.021391338,0.010646799,0.017202433,0.015861984,0.02422583,0.024100162,-0.011519487,-0.013997922,-0.016560135,-0.037253324,0.011652135,0.00454147,-0.0010262815,-0.029769147,0.020804891,0.007749473,-0.0024557451,-0.019282922,0.02074904,0.00007456032,-0.021433227,0.010479243,0.033511236,-0.010981911,-0.006405533,-0.0023824393,-0.014535498,0.0030631362,0.010737558,0.019799555,0.013355623,-0.017872658,-0.045044683,0.025119463,0.0031329514,-0.015135908,-0.018975737,-0.007386435,0.024742462,0.030215964,-0.018919885,0.0030299742,-0.0036443467,-0.008140437,-0.018822143,-0.01649032,0.0017759209,0.0070303776,0.010779447,0.014144533,0.0029933213,0.008335919,-0.0031137522,0.031277154,-0.0077704177,-0.0046985545,-0.0056829466,0.021670599,-0.0006841877,0.024197904,-0.029824998,-0.0094948495,0.03256175,0.011561376,0.01940859,-0.0035361333,-0.015080055,0.018082103,-0.0010201727,0.009096904,0.007819288,-0.036750656,-0.02960159,0.027199952,0.010583965,0.0022637537,0.002534287,-0.020818854,0.045798685,-0.019310849,0.007889103,-0.004489109,-0.0049952683,-0.017844733,-0.01885007,-0.01890592,-0.011568357,-0.012078008,0.0074422867,0.002825765,-0.0021887026,0.017062804,-0.012531806,0.04747425,0.0003503844,0.0050057406,0.0022585175,0.0032673453,0.020581484,0.01125419,0.013320716,-0.0013465582,-0.0055607706,0.021000374,0.0047404435,0.013292789,-0.0034872629,-0.017411878,-0.00032398556,-0.007463231,0.030411445,-0.020302223,-0.03825866,0.009096904,0.01769114,0.041190892,-0.0028641634,-0.0011999465,-0.006967544,-0.015792169,0.0034488644,-0.004105126,-0.027674694,0.010849263,-0.013914144,-0.032031156,0.0056445487,0.02014863,-0.014381905,-0.01880818,0.021377375,-0.0056305854,0.00569691,0.012294434,0.008936329,-0.006433459,0.0010245362,0.0030997891,-0.015247611,-0.023499753,0.0057248357,-0.02148908]},{\"id\":\"6d046a1b-b05a-44e0-9255-75b99fe0a63e\",\"text\":\"I do not have any suggestions at this time. I am perfectly satisfied with the\\nMorning and Evening ClubEarly Bird\\nDrinks at this time. Michelle \",\"vector\":[-0.022180228,-0.013277734,-0.016020522,-0.042139787,-0.015465355,0.031512313,-0.005845772,-0.018730262,-0.0061365734,0.0031327256,0.0042761043,-0.0045338604,0.0009327129,-0.010805921,-0.016588906,-0.005211296,0.03539848,-0.0069131455,0.03304563,-0.0019827378,0.0054855747,0.015756156,0.017487748,-0.01829406,0.0124383755,-0.015584319,-0.0014837488,-0.009080939,-0.024744568,0.013423135,0.037830636,-0.014275712,-0.0019182988,0.002641998,-0.005680544,-0.025075024,-0.0019496921,0.009199903,0.010567992,0.005323651,0.0021958821,0.010680348,-0.0044909013,-0.0034037,-0.03212035,0.021902643,0.011057068,0.016536033,-0.0073030842,-0.00054318755,0.009992998,-0.010852185,-0.013482617,0.010779484,-0.014844097,0.026753742,-0.0035656234,0.03624445,0.00960306,-0.012808486,0.0022223187,-0.014857315,-0.01784464,-0.0045338604,0.012273147,-0.0131191155,-0.031142201,-0.007534404,0.01096454,0.010634083,0.009999608,-0.005664021,0.004818053,-0.003299606,0.016972236,-0.020382544,-0.023541708,-0.0067247855,-0.0074154395,-0.017580274,0.016615342,-0.025881337,-0.021360695,0.016350977,0.011367696,0.015782593,0.03592721,0.021466441,-0.014156748,-0.0042034043,0.009933516,-0.00036164312,0.021955516,0.0072568203,-0.044492636,0.008717437,0.0012747352,0.014870534,0.00771285,0.012960496,-0.019457268,0.010422592,-0.020779092,0.004530556,-0.042298406,0.0021925776,-0.0038432067,-0.013337216,-0.009497314,0.0018422939,-0.014447549,-0.014949843,0.0053666104,-0.020739438,-0.015095244,-0.010779484,-0.014989498,-0.024440547,-0.04272139,-0.022510683,0.009173467,-0.0012284713,0.010997586,-0.0045041195,0.014698696,0.010905058,-0.0131191155,-0.0073163025,-0.0023627626,-0.0076533677,0.0039952165,-0.0013408264,-0.0027873989,-0.004471074,-0.019906687,0.023449179,-0.033970907,0.021611841,0.0015341433,-0.012583775,0.017646367,0.03032267,-0.01270274,0.007541013,-0.0007435267,0.0024734654,0.0043355864,0.005627671,-0.0032963015,-0.025022151,-0.0026436504,-0.014037783,0.010065699,0.01013179,-0.0064835525,0.008525773,-0.021598624,0.029000845,-0.0110240225,-0.019430831,0.0068999273,-0.018783135,0.032701954,0.0014688782,0.016826835,0.01640385,0.011876599,-0.010990976,-0.0055747977,0.009014848,-0.0064769434,0.028075567,-0.01632454,-0.00039324298,0.0035755371,0.03711685,0.02578881,-0.0001290845,-0.008671173,-0.024255492,-0.004378546,0.0073030842,0.028260622,0.019761287,-0.0044644647,-0.006926364,0.034975495,-0.030824963,0.0154124815,-0.006513294,-0.0033871771,0.0014482248,0.0038200747,0.0060671777,-0.64335877,-0.020620473,-0.010746439,0.0020091743,0.03999843,0.0064769434,0.012663085,0.009893862,-0.017976822,0.012920842,-0.014619387,0.017249819,-0.002260321,0.0154124815,0.010336673,-0.019021064,0.019721631,-0.02101702,-0.033838727,0.004603256,-0.022960104,0.031485878,0.0049766717,0.002718003,0.022299191,-0.03198817,-0.005647498,-0.013396698,-0.022061262,0.023766417,-0.013945255,0.017990042,0.014011347,-0.00204222,0.046396066,-0.0066421716,-0.027282473,0.020223925,-0.0014655737,0.024255492,-0.033838727,0.007811987,-0.009259385,-0.010931495,0.00334587,0.010059089,0.016046958,0.00853899,0.015200989,-0.0072766477,0.030957146,-0.00017225035,-0.020369327,-0.008109397,-0.0044479417,-0.012233492,0.035477787,-0.019972779,-0.014407895,0.025075024,-0.008155662,0.006245624,-0.010971149,-0.007666586,0.011843554,-0.015518228,-0.006381111,-0.015200989,0.01066052,-0.017553838,0.007501358,0.010098744,-0.027123854,0.012207055,0.008036697,0.01920612,0.025193987,0.004368632,0.00017823986,0.01641707,-0.009080939,-0.026436504,-0.009543578,0.0001233015,0.028419241,-0.016218795,-0.019906687,-0.026132485,-0.028842226,0.00771285,0.017527401,0.003516055,0.041981168,-0.013145551,-0.026039956,0.036852486,-0.030983582,0.014487204,0.015769374,-0.023938254,-0.009094157,-0.0061993604,0.022365281,0.023449179,0.016681435,0.016549252,-0.029238774,-0.0017117637,0.014830879,-0.005343478,0.020911274,-0.0011004194,0.0064472025,-0.0015283604,-0.025035368,-0.0308514,-0.010799312,0.012411939,-0.0067413086,0.0045636017,0.008552209,0.0071246377,-0.010330064,-0.027493965,0.01632454,-0.0021066589,0.003833293,0.013238079,-0.00038332932,-0.0094840955,0.014222839,0.012729176,0.009840989,-0.019113593,0.004523947,-0.010171445,0.016853271,0.00068569684,0.024771005,-0.03159162,-0.0038993843,-0.015465355,0.025920993,-0.030534161,-0.009279213,-0.05052016,0.00808957,-0.0064868573,-0.01973485,0.000069189286,-0.008724046,0.004414896,-0.019629104,0.013813073,-0.0022223187,-0.01459295,-0.022048045,-0.027679019,-0.012960496,0.005839163,0.024361238,0.0051617273,-0.035504226,-0.012147574,-0.0031955123,0.0029625406,-0.0018422939,0.0018654258,0.011328042,-0.025696281,0.012874577,-0.0076401494,0.004755266,-0.0047453525,-0.014090656,-0.014526859,-0.0149101885,0.003839902,-0.039681192,-0.0027824421,-0.008525773,-0.015200989,0.0024437243,0.005217905,0.048273057,0.011314823,0.0038828615,-0.00030546554,-0.012081482,0.02646294,-0.005003108,0.022946885,-0.03333643,0.0046924795,0.00631502,-0.016377414,-0.008129225,0.008010261,0.0062918877,0.012008782,0.015994085,0.0018274233,0.010072308,-0.02759971,0.028974408,-0.035504226,-0.00087323075,-0.028842226,0.016549252,0.025233643,0.00008498923,-0.001249951,-0.011460224,-0.025656627,0.0078714695,-0.011612235,0.0033078676,0.01156597,0.002518077,0.011037241,0.007250211,0.030375542,-0.008340717,-0.026595123,0.006866882,0.009629496,0.013138942,0.010191272,0.015782593,0.021360695,-0.019034283,0.017408438,-0.00015428178,0.0032186443,0.0021297908,0.0031062893,0.023184814,-0.006566167,0.022153791,0.0022289278,-0.0034764002,-0.00085588184,0.016152704,0.0022223187,0.01693258,-0.033785854,0.0027857467,-0.005118768,-0.000023015766,-0.011552752,-0.007772332,-0.020699782,-0.022722175,-0.011684935,-0.007084983,-0.004385155,-0.020144615,0.013720546,0.022999758,0.04153175,-0.016073395,0.02260321,-0.0015845379,-0.030296233,-0.0028452286,0.014209621,0.026158921,-0.032939885,0.020527946,-0.0012309498,0.00378042,-0.008248189,0.03264908,0.0035094458,0.028392805,-0.0031707282,-0.0031128984,0.022722175,-0.002088484,0.019166466,0.015333172,-0.015861902,0.029027281,0.023396306,-0.0070717647,0.014183184,0.0070585464,-0.006866882,-0.014103875,0.021122767,0.011519707,0.027004888,-0.01792395,-0.012180619,-0.005829249,-0.013945255,0.02040898,-0.016919363,0.007904515,0.012596994,0.0038465112,0.0016308018,-0.0069660186,-0.008340717,0.019113593,-0.0036416284,0.0064306795,-0.014791224,-0.0031938602,-0.0129406685,0.022867575,-0.006754527,-0.0020736132,-0.018016478,-0.0045107286,0.012603603,-0.014738351,-0.020184271,0.009325476,0.013079461,-0.024837095,-0.017963605,-0.019073937,0.009794725,0.12530904,0.03024336,0.0062357103,0.037830636,0.003088114,0.021043457,-0.009536969,-0.051789112,0.017976822,0.0151084615,-0.01270274,-0.0051782504,-0.019985996,0.014817661,0.024400894,-0.018492334,-0.016298104,-0.040923707,0.009265995,-0.013813073,0.012887795,-0.000098827084,0.00027923557,0.016536033,0.01436824,0.027784765,0.013839509,0.002336326,0.005155118,-0.03592721,-0.003205426,0.0051716412,-0.0205676,0.017408438,-0.009246167,-0.013469399,0.010045871,-0.010098744,0.027758328,-0.017368782,0.03159162,0.016813617,0.0018009868,-0.01595443,0.003017066,-0.014936625,-0.003615192,0.0039489525,0.003939039,-0.011552752,0.0056904573,0.023792854,0.0062423195,0.013205034,0.00616301,0.019391175,-0.041716803,0.005548361,-0.0032351671,0.01194269,-0.0204222,-0.014632605,-0.011387524,0.006344761,-0.023581361,-0.028524987,0.0040513943,-0.010263973,-0.030534161,0.007904515,-0.026938798,0.023026194,-0.006176228,0.025207207,0.026555467,0.025075024,-0.0007600495,-0.010561383,0.021307822,0.023792854,-0.017117636,-0.023303779,0.015452136,-0.0019265602,-0.025498008,0.0052575595,0.00884301,-0.0038597295,-0.008935538,0.014857315,0.005584711,-0.0023726763,0.03608583,-0.0110768955,-0.0008765353,-0.005505402,0.01717051,0.013251297,-0.016126268,0.013958474,0.018730262,0.010191272,0.003093071,-0.025061805,0.006357979,0.015531446,0.01966876,0.017553838,-0.01829406,-0.020065306,0.015478573,-0.011916254,0.014923407,0.012517684,0.017249819,0.059693627,-0.015491791,0.002118225,0.001684501,0.0059515177,-0.01088523,-0.03865017,0.036429502,0.0020703087,-0.005723503,0.021294603,0.014236057,-0.023502052,-0.016522815,-0.007230384,0.010290409,0.013786637,-0.012226883,-0.035477787,-0.032252535,-0.015623974,-0.006800791,0.020329671,-0.009127203,-0.015386045,-0.010548165,0.0066289534,-0.014222839,-0.0072766477,0.016443506,-0.030481288,-0.00092692993,0.0025560795,-0.009259385,0.017910732,-0.00009939506,0.0136148,0.01632454,0.015544664,0.0011780767,-0.01958945,-0.01625845,-0.0035259686,0.031062892,0.026502594,0.008353936,0.006073787,0.013694109,0.004315759,0.011969127,-0.011037241,-0.026436504,-0.010059089,0.004474378,0.017051546,0.007131247,-0.010488683,0.020818748,0.006110137,0.003116203,0.0062390147,0.013251297,-0.026978452,-0.03857086,-0.03502837,0.0033029106,-0.00068817526,0.010078917,-0.001297041,0.006496771,0.0032698652,0.014196402,0.01157258,0.0050295447,-0.014394676,0.03687892,-0.019325085,0.018783135,-0.0055318386,-0.006661999,-0.01428893,-0.0019447353,-0.020884838,-0.020673346,0.013694109,0.015703283,0.021506095,0.029688194,-0.0014705305,0.018479116,0.024440547,-0.02526008,-0.02646294,-0.005429397,-0.0017431569,-0.01497628,-0.02095093,-0.020805528,0.012735786,0.0122599285,0.015253862,-0.032226097,0.011764244,0.002575907,-0.008591863,0.0042628865,-0.03093071,0.017368782,0.0038531204,0.018241188,0.029450266,-0.003086462,-0.020699782,0.031803112,-0.012471421,0.017804986,-0.0071048103,0.011731199,0.005343478,0.020382544,0.025127897,0.01641707,-0.005396351,-0.030560598,0.03190886,0.00786486,-0.0021909252,-0.012663085,0.006232406,0.004371937,0.002575907,-0.009008239,-0.0154257,0.005204687,-0.0017745503,-0.035795026,0.030137615,-0.0054723565,0.016985454,-0.0048742304,-0.013733764,0.00578629,-0.01179729,0.014817661,0.00703211,-0.0068074,0.0043058456,-0.04454551,-0.00733613,-0.0043289773,0.010726611,-0.009583233,-0.019192902,0.013786637,0.025669845,-0.016364196,-0.017606711,-0.0021066589,-0.030216923,-0.0018637736,-0.0033491745,-0.004748657,0.004438028,-0.0020686565,-0.0018984714,0.009180076,-0.017289473,-0.00877031,0.007990433,-0.0042628865,0.0028254013,-0.0076996316,-0.010819139,0.019919906,-0.030401979,0.0017745503,-0.025431916,-0.0012235144,0.015253862,-0.00012608973,-0.0143550215,-0.0068999273,0.02184977,0.013694109,0.0071709016,-0.020435417,-0.02322447,-0.02796982,-0.010052481,-0.01776533,-0.005882122,0.0040613078,-0.023991127,-0.004520642,-0.013601582,0.032411154,-0.007342739,0.0073229116,0.003187251,0.013839509,0.011057068,0.017183727,-0.015927993,-0.040262796,0.023409525,-0.041082326,-0.007666586,0.013628018,-0.008644736,0.013429744,0.015214208,0.00189021,0.015848683,-0.020726219,0.0038663386,-0.022471027,0.04190186,-0.010686956,-0.026172139,-0.0101648355,0.012762222,-0.021413568,0.016959017,-0.014645823,-0.00003960312,0.046766177,0.018545207,0.0060010864,0.0238986,-0.011764244,-0.006427375,-0.00982777,-0.010905058,-0.035134114,0.0066124303,-0.009028066,0.0073625664,0.024665259,0.005250951,-0.00028150747,-0.013046415,-0.040024865,-0.008228362,-0.008056524,0.027652582,0.013799855,-0.020792311,-0.009041284,0.037328344,0.0046230834,0.008327499,-0.015571101,-0.00034532684,0.008492727,-0.022299191,0.0033590882,-0.032173224,-0.03592721,0.010369719,0.019073937,-0.0024734654,0.027864074,0.021889426,0.0031211597,0.012768831,0.020316454,-0.011030631,0.013449571,0.0025379043,0.009669151,-0.022087699,-0.021109547,0.0063778064,-0.015980866,-0.0092329485,0.02306585,-0.0019976082,0.022100918,0.001385438,-0.043117937,-0.0011888165,0.013865946,0.0041042673,0.009867425,0.0045933425,-0.00005400895,0.00038828616,0.021413568,-0.015597537,0.0050791134,0.013879164,-0.02759971,-0.01843946,0.005981259,-0.0128150955,-0.0013565231,-0.013072851,0.0016968931,-0.0033475223,-0.010819139,-0.0013160422,-0.005102245,-0.020369327,-0.0025395567,0.008942148,-0.043382302,0.026039956,-0.0025907774,0.0056508025,0.00079020363,-0.0055615795,0.004365328,-0.03902028,0.018175097,0.0049733673,-0.01625845,-0.028022693,0.0057433303,0.021823334,0.01640385,0.027004888,0.23031482,-0.0077062408,-0.024559513,0.046528246,0.0048874486,0.00046057347,0.018637735,0.009265995,0.01292745,0.02660834,-0.019073937,-0.003111246,-0.021638278,0.009715416,0.00793756,-0.004438028,-0.04523286,-0.028524987,-0.010032653,-0.007607104,-0.0023925037,-0.015267081,-0.010462247,0.007897905,0.031274386,-0.0064934664,-0.0025643408,0.013879164,-0.0008839706,0.01648316,-0.016126268,0.010521729,0.0091073755,-0.0031492484,-0.001637411,-0.005736721,-0.0028534902,-0.021902643,-0.0006212578,0.013799855,-0.046237446,0.006169619,0.0053732195,-0.020078525,0.006519903,0.017580274,-0.018399807,-0.0031674237,0.015901556,0.027811201,-0.019761287,-0.025154334,0.047294904,0.006265451,0.018399807,-0.0056508025,0.006020914,-0.009100767,-0.03243759,-0.005799508,-0.007613713,0.024784222,-0.006562862,-0.0059977816,0.00412079,-0.002207448,-0.010118572,0.011856772,-0.005911863,-0.013760201,0.014421113,-0.02660834,-0.001661369,0.00204222,-0.037143286,-0.014341803,0.028604297,0.0258549,0.009867425,0.022404937,0.00016202686,0.017421655,0.0045008147,-0.011228905,-0.00975507,-0.021202076,0.030877836,0.036270883,0.02140035,0.0055913203,-0.010019435,-0.017871076,-0.014103875,0.006169619,0.024823878,-0.01693258,-0.0031740328,0.02026358,-0.019325085,-0.013462789,-0.00092527765,0.01579581,0.01292745,0.01497628,-0.013773419,0.0032434287,-0.0039291256,0.004325673,-0.0038068565,-0.026595123,-0.014685478,-0.027996257,0.008578645,0.00012278518,0.010786094,0.007679804,0.026476158,-0.004867621,-0.0061035277,-0.020792311,0.009378349,-0.009265995,-0.008003651,-0.0021116158,0.02396469,-0.0190475,0.0028848834,-0.009821162,0.018875664,-0.06820618,0.011499879,-0.0030649821,0.00062414934,-0.03849155,-0.021532532,-0.027361782,0.0143550215,-0.015901556,-0.013601582,-0.00092362537,0.009100767,0.030587034,-0.0038299884,0.0030154136,0.018175097,-0.03658812,-0.008043306,-0.024744568,-0.022722175,0.00043041934,0.0055120112,0.0061431825,0.0104688555,-0.014949843,0.032622647,-0.0055549704,-0.018558426,-0.027004888,-0.011929472,0.0222331,-0.017500965,-0.005059286,0.03227897,-0.01965554,-0.017421655,0.017223382,-0.16813616,0.032569773,0.0029708021,-0.027493965,0.0015845379,-0.024982495,0.04681905,0.0170912,-0.027996257,-0.00020467637,0.020435417,0.017474528,-0.021558968,-0.00008271734,0.017514184,0.01467226,-0.012339238,-0.003691197,0.006120051,0.0067809634,-0.00029720413,0.00027799635,0.0058523812,-0.011995563,0.0014928363,0.01693258,0.016840054,0.032543335,-0.008856229,-0.014460768,-0.0222331,0.011017413,0.022114135,0.0059482134,0.023462398,-0.00038766654,-0.004355414,0.01126856,0.0023445874,0.030428415,0.03296632,0.0101648355,0.01867739,0.007759114,-0.017051546,0.0291859,0.017117636,0.011823726,-0.031565186,-0.005505402,0.000040919786,-0.02465204,0.0050691995,0.002458595,0.0068338364,-0.007673195,-0.024810659,0.022708956,0.012094701,-0.0026684345,-0.00009128855,-0.026449721,0.0060903095,-0.015927993,0.013918819,-0.017302692,-0.0063183242,0.021334259,0.007990433,0.0019083851,-0.010984368,-0.020091742,-0.0029889771,-0.007098201,0.024982495,-0.010349891,-0.032860573,0.00430915,0.0050824177,-0.0073163025,-0.00004561846,0.031538747,-0.038306493,0.0067743543,-0.0039225165,-0.0026353889,0.014473986,0.0007526142,0.016350977,-0.016377414,0.017567057,-0.026912361,0.005052677,-0.028842226,0.010145009,0.02177046,-0.0029443656,0.014619387,-0.00018588167,0.0034400502,0.017580274,0.021347476,-0.013429744,0.032569773,0.026489377,-0.003810161,-0.005693762,0.011394133,-0.010501902,-0.021003803,0.021030238,0.014698696,0.037328344,0.036667433,-0.010739829,0.037619144,0.0072237747,-0.016456723,0.016760744,0.016959017,0.027731892,-0.00028956233,-0.0066289534,-0.006450507,-0.011539534,-0.004725525,-0.10014147,-0.01323147,0.003522664,-0.02244459,-0.008314281,0.009966562,0.00669174,0.017329128,-0.0052608643,-0.0034400502,-0.0033425654,-0.01776533,-0.014236057,0.004031567,0.04528573,-0.024440547,-0.010554774,-0.030375542,-0.02979394,0.0041009625,-0.0019496921,-0.0056375843,-0.039205335,-0.01020449,-0.012649867,-0.03182955,-0.018029695,0.03434102,0.034816876,0.00082572765,-0.016245231,-0.015227426,0.007236993,-0.022550337,-0.013561927,0.0005142726,-0.0146061685,-0.017672803,0.028445678,-0.03352149,0.0029741067,0.013641236,0.008915711,-0.04028923,0.0062885834,-0.016588906,-0.013694109,0.036852486,-0.007402221,-0.00095006183,-0.013086069,-0.0039291256,-0.016747525,-0.025286516,0.010515119,0.0056739347,0.0042827134,0.018888881,-0.02336987,-0.017183727,-0.012405329,-0.022114135,-0.026740523,0.0018356848,0.015848683,-0.0068801004,0.0030897665,0.0006311715,-0.020237144,0.0042761043,-0.011499879,0.027916947,-0.013158769,0.014513641,-0.011400742,0.0014564862,-0.014500422,-0.015187771,0.012649867,-0.0034499636,-0.014883752,-0.0020521337,0.0051716412,-0.015571101,0.03706398,0.027057761,0.0037341563,0.030401979,0.0055681886,-0.0074683125,-0.013489226,0.0073096934,0.026436504,-0.018479116,-0.02995256,0.01776533,0.001203687,-0.024519857,0.0491719,0.003010457,-0.014936625,-0.023277342,-0.05189486,0.02533939,-0.0037407654,-0.0065760803,-0.012801877,-0.02329056,-0.00291132,0.011909645,-0.005640889,0.00091701624,-0.011982345,0.003410309,-0.00020570905,0.010938103,-0.00960306,-0.015623974,0.016892927,0.0062885834,-0.0031310734,0.012643258,-0.020382544,-0.007329521,0.03214679,0.024718132,-0.005102245,0.019496921,-0.022193445,0.019351522,-0.019721631,0.0049039717,0.02873648,-0.033019193,-0.012332629,0.038095,-0.015002716,-0.02412331,-0.004015044,0.021902643,-0.0025511226,-0.01058121,-0.014156748,-0.0076864134,0.0055020973,-0.023052631,-0.008783529,0.00015314584,-0.037830636,0.005201382,-0.005588016,-0.011532925,-0.003069939,0.018465897,-0.0055120112,-0.025630191,-0.0013705675,-0.014275712,0.0063183242,-0.005885427,-0.012590385,-0.03624445,0.012676303,-0.0023875467,0.002007522,-0.023158377,0.019391175,0.013680891,-0.0009897166,0.001496967,0.003810161,-0.018862445,-0.020250361,0.0025114678,0.017580274,0.028551424,0.02820775,-0.047162723,0.01632454,0.0005064243,-0.008129225,0.019483704,0.0065463395,0.00665539,-0.0019860424,-0.0012458202,0.0075806673,0.036165137,-0.0071114195,0.0015407525,-0.015914775,0.002688262,-0.014791224,0.0014283974,0.008968584,0.01088523,0.030560598,-0.0033640452,-0.020924494,0.0049733673,-0.012782049,0.025061805,0.010872012,0.0010657216,-0.0013086069,-0.006186142,0.002182664,0.022206664,-0.024559513,-0.017289473,-0.009365131,-0.0035854508,0.018056132,0.004183577,0.0143550215,0.018545207,-0.0016968931,0.007620322,0.01020449,-0.016668215,0.0063183242,0.0038233793,0.01640385,0.020607255,0.013515662,-0.01707798,-0.005647498,0.014090656,0.011480052,-0.022153791,0.017712457,0.002435463,-0.004454551,-0.008254798,-0.008149052,-0.025141114,-0.006179533,-0.008505945,-0.0059944773,0.03003187,-0.0014705305,0.06979237,-0.0011648585,-0.009543578,0.013000151,-0.0036019736,0.026383631,-0.0034830093,0.0059614317,-0.03711685,0.016826835,0.0004050155,-0.0107728755,0.0033673497,-0.03357436,-0.019073937,-0.011969127,-0.010363109,0.014090656,0.0018109005,-0.023396306,0.005346783,-0.0047916165,0.031062892,0.00808957,-0.019681977,0.0019001237,0.011043849,-0.002823749,-0.009418004,-0.03190886,0.012544121,0.01580903,-0.02449342,0.0012805181,0.021730807,-0.03357436,-0.008697609,0.0035325778,0.021651497,0.03198817,-0.034949057,-0.020752655,-0.03243759,0.00071750325,-0.0063546747,-0.011995563,-0.02162506,0.014394676,-0.034446765]},{\"id\":\"9fd57f0e-cb32-4c5f-9047-ebdb0d9c3205\",\"text\":\"i posted a video on tik tok🫣\",\"vector\":[-0.039732594,-0.0070932787,-0.014774999,-0.02422844,0.033234153,0.009907564,-0.02486805,-0.028296363,0.0051040906,-0.014672661,0.004720324,-0.0029198213,-0.008046298,-0.018152142,0.013188765,-0.0143016875,0.0031868585,-0.011602532,-0.0095941555,-0.0025024754,-0.01813935,-0.0023569642,-0.0005076907,0.0018053002,-0.011167597,-0.01935461,0.02277013,-0.018062597,0.012888148,-0.014404025,0.0011816801,-0.020314025,-0.021017596,-0.040014025,-0.029754674,-0.023512077,-0.023972595,-0.035792597,0.018714998,-0.017307855,0.008033506,-0.020505907,-0.0062170126,0.008282954,0.0032636118,0.032722466,0.00976685,-0.005251201,-0.009459837,-0.0061018826,0.012523571,-0.0055166394,-0.042802725,-0.017282272,0.02578909,0.011519383,0.015082012,-0.017896298,-0.0129457135,0.0044740746,0.013674869,0.013073635,-0.011071655,0.0020083764,-0.0048578405,-0.0039687823,0.009632532,0.025840258,0.000101338264,0.026108894,0.021362986,0.00915922,0.019034805,0.010304123,0.015887922,0.018906882,-0.0070612985,-0.0005296773,0.013073635,0.02573792,0.016335648,-0.03435987,0.005631769,0.022220064,0.038760386,0.014647077,-0.0016038229,0.0075793825,-0.032338697,0.0015302678,0.014595908,0.026684543,0.026403116,0.00028902394,-0.024254024,0.03650896,-0.03031753,0.028194023,-0.0029230192,-0.00446448,-0.0022450322,-0.006111477,-0.051782854,-0.009747662,-0.009702889,-0.023499284,0.012139805,-0.0027551216,0.019776752,-0.0024129301,-0.04817545,0.023435323,-0.00828935,-0.037174154,-0.0043621426,0.02578909,-0.012542759,-0.027145064,-0.027605582,0.002972589,0.045514673,0.01547857,0.019866297,0.013278311,0.026006557,0.011640908,-0.010924545,-0.016489156,0.021119934,-0.005698928,0.03673922,-0.0030557385,-0.00034079238,0.017013635,-0.016079804,0.0064056977,-0.03459013,-0.005989951,-0.02184909,-0.040960647,-0.019610453,0.033643503,-0.010073863,0.005817256,-0.0073363306,-0.0040455353,0.016898505,0.0044293017,0.0036521752,0.027963765,0.032364283,-0.014404025,0.0026303977,0.008091071,-0.021478115,0.04704974,0.015580908,0.011365876,-0.026403116,-0.010694285,-0.0048610386,0.022347985,0.0041478733,-0.028501038,0.0013391841,0.030931557,0.01872779,-0.026403116,-0.01797305,-0.00050449267,0.016476363,0.033413246,-0.024497077,0.016591493,-0.027554413,0.029498829,0.0033227757,0.032901555,-0.00006331143,-0.013457402,-0.03786493,0.027733505,0.030394284,0.024100518,-0.032594543,0.008692305,0.0076817204,0.004883425,-0.028245194,-0.028296363,0.012421233,0.0031228976,-0.0018132953,-0.0057596914,-0.6185288,-0.02555883,0.045079738,0.0068822075,-0.011660096,0.024369154,-0.002038758,0.0010657507,-0.027093895,0.008954545,-0.010137824,-0.003214042,0.012549155,0.011762435,-0.009191201,-0.020147726,0.03308065,-0.011839188,-0.029242985,0.00068358355,-0.010016298,-0.00930633,0.00567974,0.0033899348,0.005999545,0.013559739,0.021235064,0.00704211,-0.039860517,0.034308698,-0.020070972,0.016783375,0.0021762743,-0.019329024,0.054801814,-0.023460908,-0.0030589364,-0.0055038473,0.014672661,0.0085771745,-0.03696948,-0.007988733,0.006009139,0.003030154,0.008442856,-0.0070676943,-0.0072467853,-0.013252727,0.0076241554,-0.0013831573,0.030112855,-0.0067606815,0.008334123,0.0024305193,-0.006111477,-0.021529285,0.023384154,-0.00025844257,0.021542076,0.016655454,-0.021746753,-0.009773246,-0.009645324,0.009587759,-0.020390779,0.009728474,0.013789999,0.004931396,0.04704974,-0.032594543,-0.008455649,-0.0024353163,-0.030598959,0.0036361848,-0.008871395,0.023934219,0.03223636,-0.024573829,0.0135853235,0.0058908113,0.013041655,0.025776297,-0.027477661,-0.025712335,0.014288895,0.01339344,-0.053522594,0.030266361,-0.0057948697,-0.0007787256,0.035383243,0.023077141,0.008801038,-0.02278292,0.012101428,0.0054750647,-0.013470194,-0.020697791,0.01912435,0.01941857,-0.0012384455,-0.007739285,-0.0007463453,0.02099201,0.015440194,-0.0035370453,-0.0047874833,-0.0061146747,0.009702889,-0.03018961,-0.011954318,-0.022450324,0.0058428408,-0.020186102,-0.0040359413,-0.029115062,0.028884804,-0.00216668,0.04236779,-0.020915259,0.00999711,-0.018791752,0.011122824,0.0034954706,0.025430907,0.033438828,0.011487402,-0.0092359735,-0.02608331,0.0018660632,0.00874987,-0.017640453,0.040295452,-0.0055901944,-0.009114447,-0.016412402,0.011071655,0.007963149,0.013035259,-0.029396491,-0.024816882,-0.0032236362,-0.021119934,0.019904675,-0.0065208273,-0.001515077,-0.01593909,-0.0037896913,-0.004342954,0.010080259,-0.008218993,-0.037813764,-0.010988506,-0.010521591,-0.006050714,0.003220438,0.006530422,-0.010342499,-0.022539869,-0.0030061686,-0.0066903243,0.038223114,-0.02475292,-0.013726038,-0.010566363,-0.004963376,-0.010496005,0.0061914283,-0.006984545,-0.020083765,-0.021900259,-0.0023649593,-0.0044197077,-0.008775454,-0.0040935064,0.025418116,0.006741493,-0.002783904,0.0109693175,-0.0063321423,0.0066263634,-0.0033899348,-0.021171102,-0.0031149024,0.0047171265,0.012248538,-0.0103297075,0.045872856,-0.004822662,-0.0078096422,-0.004032743,0.0069141877,-0.015785584,-0.0015142775,-0.011832791,0.017525323,0.020262856,0.021068765,0.008788247,0.0023185876,0.027272984,-0.016079804,0.028935973,-0.0402187,0.0009450243,-0.03164792,-0.020122143,-0.009120843,0.019968634,0.029396491,0.022181686,-0.011711266,-0.0015214732,0.008321331,-0.011500194,0.019226687,-0.0066263634,-0.008135844,-0.015900712,-0.005586996,-0.026108894,-0.016041428,-0.003943198,0.00048890215,-0.009325519,0.020646622,-0.0025488473,0.023947012,-0.0044165095,-0.010086656,-0.020377986,0.037967272,0.009069675,0.025072725,0.00008205001,0.002460901,-0.0045028566,-0.011602532,0.0030557385,0.0016222118,-0.016847337,0.013559739,0.012382857,-0.005625373,0.014327272,0.007611363,0.015222726,-0.013828375,-0.026044933,0.0085963635,-0.02161883,0.028705712,-0.0331574,0.0048610386,0.01726948,-0.020454738,-0.008922565,0.02225844,0.03420636,0.037174154,0.009638928,0.020070972,-0.012075843,-0.0024273212,-0.017474154,0.008282954,0.009101655,-0.005196834,-0.011986298,0.0024593018,0.01234448,-0.011039674,0.02109435,-0.026326362,0.03031753,-0.0055038473,0.00507211,-0.008948149,0.013598116,-0.001851672,0.012670681,-0.037813764,0.023563245,-0.0030509413,-0.003402727,-0.042930648,-0.015900712,0.004963376,-0.001853271,0.008903376,-0.010892564,0.031110648,0.011564155,-0.007432272,-0.0064152917,0.0021538879,0.037737012,-0.014071427,0.023089934,-0.0005352739,-0.0021986605,0.018305648,-0.022347985,-0.009351104,0.0146598695,0.013546947,-0.004621185,0.0049601784,-0.024010973,0.004512451,0.008014318,0.012101428,-0.015926298,-0.009696493,-0.00753461,-0.0009937945,0.005801266,-0.0035018667,0.025072725,-0.0060858927,-0.010719869,0.011276331,-0.03338766,0.008321331,0.10136545,-0.0064696586,0.009248766,0.015632076,-0.020019803,0.004000763,-0.014595908,0.0027023538,-0.019866297,-0.007739285,0.020326817,-0.003933604,-0.009325519,-0.0116089275,0.0071380516,-0.011333896,0.0015422604,0.013751622,0.006233003,-0.025725128,0.0065144314,-0.012958506,0.005612581,0.018906882,0.017435778,-0.030522207,0.017461363,0.041242074,0.008992922,0.004451688,-0.01170487,-0.012139805,0.0052160225,0.008212597,-0.004023149,0.019853504,0.012037467,0.010125032,0.018126557,0.011871168,-0.0018292856,0.0112891225,0.02816844,-0.028321946,-0.010304123,-0.004630779,0.006850227,0.011500194,-0.013713246,-0.0029981735,0.040602464,0.014915713,-0.0070740907,-0.01971279,-0.0030077677,0.017525323,-0.013175973,-0.016898505,-0.015248311,-0.0113274995,-0.0067159086,-0.037762593,-0.011365876,-0.010169804,-0.013291103,-0.011551362,-0.0012288514,-0.00631935,0.00259362,-0.0066263634,-0.01749974,0.0116856815,-0.05377844,-0.012600324,-0.002969391,-0.0014735024,0.029473245,0.02585305,0.001733344,0.0379161,-0.0110076945,-0.012613116,-0.0051040906,-0.023384154,-0.0076689282,-0.009261558,0.0059835548,0.00074794434,-0.017179934,0.0010601542,0.03013844,0.012689869,0.017512532,-0.0036777596,0.011877564,0.0032316314,0.010841396,0.011749642,-0.0036265906,-0.012741039,-0.0006492045,-0.026275193,-0.014186557,-0.018177725,-0.007975941,-0.00484185,0.028040517,0.042163115,-0.023614414,-0.009722077,0.027426492,0.011493798,0.015427401,0.0069461684,0.015273895,0.014033051,-0.025008764,-0.0014782994,-0.010527986,-0.018996427,-0.01843357,-0.006354529,0.026160063,0.008430065,-0.003648977,0.01211422,-0.010380876,-0.038274284,-0.026940389,0.005977159,0.009837207,0.00976685,-0.029575583,0.004272597,-0.017921882,-0.005308766,0.015568116,0.017320648,0.0022642207,-0.030496622,-0.030803634,0.010220974,-0.017870713,-0.008692305,-0.015350648,-0.044209868,-0.015964674,0.0073043504,0.011058863,0.020390779,-0.0061434573,0.0008007122,-0.006185032,-0.023857467,0.005708522,-0.030215193,-0.0056157787,0.0036649674,0.0065048374,0.017819544,0.035587918,-0.0077137006,0.029933764,0.005922792,0.009754058,-0.0015182751,-0.010777434,-0.011826395,-0.039323244,0.024957595,0.0033131817,-0.002723141,0.016796168,0.03262013,-0.0029981735,-0.0035626297,-0.0037129382,0.000045747132,-0.026070518,-0.009715681,-0.03586935,0.022322401,0.02214331,-0.006856623,0.004272597,0.031033894,0.009843604,0.0023281816,0.037020646,0.0095557785,0.025085518,-0.017525323,-0.00049889606,-0.015657661,0.05377844,-0.00060123374,-0.021900259,-0.005730909,-0.010093051,0.019149933,0.013175973,0.0005940381,-0.003892029,0.0051680515,-0.027247401,0.037429996,-0.020493116,-0.004451688,-0.0035498375,-0.026249608,-0.03650896,-0.03297831,-0.008717889,-0.030240778,0.02040357,0.019252272,-0.041625842,0.01912435,-0.0059643667,-0.011807207,-0.02278292,-0.003700146,0.0034251134,0.010086656,-0.0015470575,0.009990714,-0.0062489933,-0.016847337,0.03372026,0.0007207609,-0.00078632095,0.004154269,0.038223114,-0.0008111059,-0.006907792,-0.0067670774,0.004829058,-0.026965972,-0.02463779,0.017717207,0.019559285,-0.025405323,-0.03727649,-0.006709513,-0.019943051,0.025072725,-0.0123061035,-0.0013271915,-0.0023873455,-0.021836298,-0.022923635,-0.0016757791,0.001516676,0.004029545,0.025200648,-0.015951881,-0.0052192206,-0.025686752,-0.014045843,0.021695582,0.008321331,-0.0033835387,0.004090308,-0.0025232628,0.02765675,-0.013112012,-0.0031260955,0.004410113,-0.008564383,0.03198052,-0.017179934,0.0051584574,-0.00055885955,0.017576493,0.009146428,-0.016207727,-0.006728701,-0.039041817,0.004813068,-0.005817256,0.018177725,0.011487402,0.0059611686,0.0029278165,0.015376233,-0.008980129,-0.0041478733,-0.021478115,0.007342727,-0.023857467,0.014493571,-0.013930714,0.012741039,0.01895805,0.010201785,0.03425753,0.0085579865,0.036662467,-0.020672206,0.010131428,-0.00901211,-0.004445292,0.0024992775,-0.006997337,0.011602532,-0.038402207,0.018062597,-0.0102913305,-0.014531947,-0.032261945,0.004387727,0.031494413,-0.01692409,-0.004640373,0.042725973,0.010879772,-0.010009902,-0.023166686,-0.0051808436,0.025801882,0.004074318,0.022616621,0.0133038955,0.002899034,0.004947386,-0.027631167,0.0051136846,-0.018407986,-0.0077712657,-0.0049281977,0.00033039873,0.00035658278,-0.002350568,-0.020851297,-0.0031133033,0.0078032464,-0.011173992,0.013994674,-0.029703505,0.015325064,0.0032588148,0.014122597,0.013201558,0.0075601945,-0.0036074023,-0.0027039528,-0.0052256165,0.0017029626,0.0041606654,-0.01237646,-0.016322857,0.01859987,0.027324155,-0.031724673,-0.02099201,0.00779685,-0.039655842,-0.027119478,-0.0021538879,0.007349123,-0.0022066557,-0.023857467,-0.013700454,0.0048514446,-0.010962921,0.008244578,-0.02439474,-0.02701714,0.0056445613,-0.022539869,0.0051136846,-0.015849544,-0.022271233,-0.012843376,0.0008514813,0.009082467,0.016297271,0.0031117043,-0.0009034496,0.017320648,-0.021529285,0.016412402,-0.0026271995,-0.007106071,0.027810259,-0.016335648,-0.009210389,0.013572532,-0.007483441,0.00753461,-0.0037129382,-0.0031101054,-0.0119479215,0.021439739,0.003090917,0.0011377069,0.0028510632,-0.0048066718,0.031110648,-0.017896298,-0.004496461,0.02637753,0.01593909,-0.017717207,0.01055357,-0.00008319932,-0.017231103,-0.0017397401,0.009760454,0.026300777,-0.006479253,-0.010771038,0.009082467,-0.028756881,-0.022872467,0.0062106163,-0.016450778,-0.0047235223,0.013316687,-0.011653701,0.004586006,-0.041804932,0.0052895774,0.007483441,0.002649586,0.0013623701,-0.004643571,-0.026479868,0.009101655,0.014467986,0.00531836,-0.02040357,0.0040039606,0.007816038,0.0037800972,0.006600779,0.25379738,-0.0009474228,0.0031324916,0.057462595,0.00863474,0.015261103,0.0052735875,0.021222271,-0.016310064,0.013163181,-0.009197596,0.00961974,-0.0029134252,-0.010061071,0.0008770657,-0.013917921,0.0129073365,-0.027170647,-0.026812466,-0.031954933,0.010035486,-0.017704414,0.0030045696,-0.008346915,0.021222271,-0.010803019,0.0046659573,-0.011481006,0.028552206,0.008084674,-0.020697791,-0.008954545,0.022667792,0.017627662,-0.03650896,-0.010016298,0.0014175364,-0.011679285,0.030036101,0.016194934,0.02214331,0.0018228895,0.011301915,-0.027145064,0.0024369154,0.011468214,0.0017973051,-0.03563909,-0.0036841556,0.008673117,-0.014020259,0.009728474,0.031903762,0.014250519,-0.011615324,0.0059004053,0.025955388,0.022578245,-0.020416362,-0.0045828084,0.007604967,0.049480256,0.0037449186,0.013649285,-0.030982725,0.007464253,-0.010515194,-0.008410876,0.008532402,-0.014647077,0.013163181,-0.026057726,0.0019652029,0.0052480027,-0.016540324,-0.04707532,0.026556622,-0.000067209054,0.03310623,0.04221428,0.02271896,0.0062585874,0.0043141716,-0.03778818,-0.01721831,-0.027861428,0.022168895,-0.01101409,-0.009849999,-0.008737077,0.004442094,-0.004135081,-0.0044484898,0.0063833115,-0.0013439812,-0.004256607,-0.023793506,0.0048514446,0.005951574,0.021465324,-0.0088969795,-0.01623331,0.029140648,-0.002966193,0.0026367938,0.0052607954,0.003588214,-0.005820454,0.01774279,-0.044849478,0.026863635,-0.026275193,0.0073299347,0.005299172,-0.011340291,0.02678688,0.009338311,-0.007656136,0.014647077,-0.00019737976,-0.012977694,-0.02364,0.010508798,-0.00433336,-0.002783904,-0.0017045615,-0.016143765,0.017192727,-0.024087725,-0.012517175,0.025635583,0.012331688,0.011199577,0.008941753,-0.005628571,0.00043013797,0.03182701,-0.017870713,0.007227597,0.01790909,-0.0056381654,0.012696265,0.0026224025,0.0024465097,0.022629414,-0.01547857,0.02752883,-0.005612581,-0.012312499,-0.009178408,-0.03187818,-0.0030125647,-0.0029310144,0.016501946,0.028245194,-0.007048506,-0.015836753,-0.03760909,-0.031519998,0.0064504705,-0.013112012,0.003828068,0.033029478,-0.0073107462,-0.017538115,-0.0069013955,-0.15995376,0.013738831,0.019917466,0.008532402,0.021631623,-0.012760227,0.026249608,-0.024714544,0.0062585874,-0.0061466554,0.020134933,0.008941753,-0.005743701,-0.03389935,-0.0015094804,-0.008954545,-0.014135389,-0.0075793825,0.025405323,0.0050337333,0.03786493,-0.02468896,0.016732207,0.011666493,-0.021439739,0.02701714,-0.011858376,0.013726038,-0.03704623,-0.021644413,-0.016962467,-0.0039943666,0.026684543,-0.0011912743,0.01797305,0.0061626458,0.01744857,-0.029549997,0.0025200648,0.0052863797,0.014506362,0.027452076,0.0126387,-0.0065943827,0.004755503,0.010464026,0.00042534087,0.008922565,-0.016067011,-0.0014463189,0.005945178,-0.029601168,0.023819089,-0.0018132953,-0.0047235223,0.010962921,-0.0013056046,0.008545194,-0.006530422,-0.017832337,0.0071380516,-0.013342272,0.005507045,-0.011730454,0.0014479179,-0.015887922,-0.019213894,0.0024864853,-0.007822434,0.018689414,-0.028142855,-0.012011882,0.010125032,-0.012657889,0.003209245,0.013112012,-0.01999422,0.007822434,0.012741039,0.006799058,0.017154349,0.047663763,-0.02678688,0.012254935,0.014276103,-0.0014814974,-0.016399609,-0.0047235223,-0.012357272,-0.013470194,0.015900712,0.0017397401,-0.03786493,0.0070676943,-0.015222726,0.023115518,0.0008474837,0.009754058,-0.008890584,-0.049122076,0.004272597,0.002536055,-0.017295064,0.03929766,0.014276103,0.0031228976,-0.008967337,0.012920129,0.019508116,-0.002294602,-0.0146598695,-0.0056637498,0.041421168,0.0074258763,0.0457961,0.039451167,0.008730682,0.0025904218,0.004000763,-0.0044612824,0.03681597,0.00053687295,-0.034078438,-0.0043141716,-0.013598116,-0.01219737,-0.07480883,-0.03704623,0.028526621,0.01999422,-0.0020547484,0.01825448,0.006818246,0.031289738,-0.02353766,0.030522207,0.0076817204,-0.027784673,0.008954545,0.0046275808,0.03714857,0.0109309405,-0.0036585713,-0.004688344,-0.014570324,0.013355064,-0.0039591882,-0.03018961,0.0019060388,-0.016898505,-0.0025248618,-0.012414837,-0.020621037,0.02440753,0.008263766,0.019022012,-0.029805843,0.01170487,0.008717889,-0.025597205,-0.002286607,-0.00033659494,-0.000019862899,-0.011001298,0.014429609,-0.033643503,-0.014813376,0.00079831365,-0.015133181,0.0019396184,-0.012958506,-0.006965357,0.009408669,0.00843646,0.008986525,-0.037174154,-0.011039674,0.0020579463,0.00094902184,-0.0049665743,0.022245647,-0.032543376,0.012529966,0.056490388,-0.011986298,0.022156103,-0.0021810713,0.0017765177,-0.013994674,0.026070518,0.0019348213,-0.005801266,-0.0008826623,-0.0130032785,0.031673506,-0.0032252353,-0.010361687,0.013674869,-0.020058181,0.030650128,-0.010822207,-0.016182141,-0.01686013,-0.023320192,0.031085063,-0.014058636,-0.02793818,-0.039783765,0.009076071,-0.0038504542,0.031929348,-0.017819544,0.025571622,0.0065687983,-0.02765675,-0.015926298,-0.009690097,-0.012709058,-0.016796168,-0.03632987,-0.039860517,0.00973487,-0.017410195,-0.0020803327,-0.0036873536,0.029857012,0.004758701,-0.00077192974,-0.038274284,0.022667792,0.02225844,0.002222646,-0.007464253,-0.024842465,-0.012018278,-0.035587918,-0.008673117,-0.002475292,-0.01634844,0.011122824,-0.009517402,0.02063383,-0.02237357,-0.01697526,-0.008775454,0.0015238717,0.02365279,0.001483896,0.0050944965,-0.01286896,0.001973198,0.008980129,-0.0015174756,0.017474154,0.011717661,0.023269024,-0.019610453,-0.01935461,0.0035690258,-0.018164935,0.022910843,0.03686714,0.023793506,-0.02260383,0.04039779,0.010828603,-0.0146214925,0.002104318,0.0020243668,-0.042111944,0.02880805,0.0046371752,-0.0041702595,-0.020377986,-0.018881297,0.0059036035,0.014685454,0.018216103,0.02475292,0.007406688,0.009581363,0.0042885873,-0.002908628,-0.0057692854,0.013457402,0.0050273375,0.007521818,-0.014736623,0.0062106163,0.025917012,0.00026783685,-0.03356675,0.013764415,0.00817422,-0.03663688,0.0005232812,0.031903762,-0.025085518,-0.0010265746,-0.00395599,0.03077805,0.005612581,-0.0034794803,0.0016485957,0.01173685,0.01226133,-0.016246103,0.014109804,0.018126557,0.013124804,-0.008052695,0.025955388,0.0136237005,0.024356361,-0.010400064,0.013431817,-0.008340519,-0.003038149,-0.033234153,0.0015814366,-0.0032332302,0.017307855,0.03095714,0.0067606815,-0.019508116,-0.011212369,-0.004518847,0.00023065948,-0.0025456492,0.0077009085,-0.01208224,-0.017243896,0.004889821,-0.011103636,-0.026121687,-0.021030389,0.0071828244,-0.0037289283,-0.007841622,-0.014391233,-0.032364283,0.032824803,-0.007163636,-0.014877337,-0.015785584,-0.010726266,-0.01831844,0.035101816,0.003952792,0.0015542532,0.020940842,-0.0043045776,0.021337401,-0.0036329867,-0.01646357,-0.0045380355,-0.00866672,-0.009606947,0.006053912,0.013124804,-0.020787336,-0.009587759,0.0009138433,0.004522045,-0.019853504,0.021478115,0.001915633,0.03865805,-0.0011840786,-0.018740583,-0.010003506,-0.000089145695,0.029191816,0.017525323,0.01014422,-0.019034805,-0.0029182222,-0.0066391556,-0.0112315575,0.011417044,-0.013048051,-0.009024902,0.012331688,0.01831844,0.006683928,-0.0025296588,-0.015235518,0.023115518,0.0023569642,0.007464253,-0.00037297278,0.004365341,-0.01698805,0.015644869,-0.0028350728,-0.048124284,-0.04172818,0.0046499674,-0.0025472483,-0.023141103,-0.021695582,0.01726948,-0.030445453,-0.018216103,0.0015390624,0.021465324,0.013175973,0.0003967583,0.013598116,-0.045719348,-0.0009754058,0.009779642,0.013866752,0.0029933765,0.0061146747,-0.059253503]},{\"id\":\"592192a7-cae9-4d84-881e-9ac90e428e4f\",\"text\":\"I posted a beautiful video exactly how you requested on TikTok and your message says you cannot find it. Can someone please help\",\"vector\":[-0.049629048,0.005809452,-0.016843343,-0.00426089,0.022249231,0.022461962,-0.011800352,-0.017907001,-0.004167038,0.0077146515,-0.00031636015,-0.029607244,-0.0049397545,-0.022874912,0.02335043,-0.018307438,0.01793203,-0.006838698,0.0036258237,0.017631702,-0.03303598,-0.0055059963,0.009247571,0.004727023,-0.0048365174,-0.006869982,0.015667062,-0.028606154,-0.0059252027,-0.020384701,-0.013777505,-0.021410817,-0.038717166,-0.038266674,-0.034437504,-0.026128456,-0.0038291703,0.0028499789,0.018432574,-0.026153482,0.028756317,-0.0021460871,0.015854767,-0.001444542,-0.031884726,0.05070522,-0.024051193,0.00043172017,0.0065696547,0.02372584,0.004232735,-0.0045330618,-0.023638243,-0.045024034,0.0027717687,-0.009047353,0.014015264,-0.0028624923,-0.023325402,-0.0077584493,-0.00011604435,-0.004573731,0.0037697305,0.008859648,-0.010123525,-0.0053527043,0.007989951,0.039893445,0.0071077407,-0.0027874107,0.023976112,0.019633882,0.02435152,-0.00879708,0.03218505,-0.02228677,-0.0068574683,0.015992416,-0.0033599092,0.023125185,0.015216572,-0.021686118,0.010029673,0.028706264,0.013101769,0.0144407265,-0.00917249,0.02183628,-0.01883301,-0.016455421,0.011299807,0.013477177,0.019095797,-0.004057544,0.007201593,0.014052805,-0.010774233,0.044498462,-0.00510556,-0.0043641278,-0.021298194,0.0010096934,-0.02393857,0.004711381,-0.011643931,-0.028305827,0.009691805,-0.011837892,0.011575106,-0.008352847,-0.03045817,0.027830308,-0.018545197,-0.024977202,-0.026328674,0.036314547,-0.014928758,-0.024501683,-0.032885816,-0.014090345,0.013714937,-0.011775324,0.016342798,-0.02142333,0.024001138,0.0070451726,-0.013852586,-0.013389582,-0.014615918,-0.020472296,0.06677272,0.020785136,-0.0068449546,0.0075895153,-0.009253828,0.02845599,-0.038516946,0.011443713,-0.004864673,-0.031809643,0.0073955543,0.032084942,-0.009435276,0.02317524,-0.024101248,0.008828364,0.0037947576,-0.0269043,0.011005736,0.007577002,0.026028346,0.0135898,-0.007921127,-0.0030924303,-0.0057750395,0.031859696,0.009710575,0.0008384131,-0.0053089065,-0.015954876,0.0048208754,0.016530503,-0.0067823865,-0.019408638,0.014716026,0.021598522,0.0083090495,-0.033711713,-0.018132247,0.0074456087,-0.006241172,0.02445163,-0.0104175955,0.016305257,-0.038066458,0.00012415866,0.021235626,0.011331091,0.005900176,0.00020882116,-0.00905361,0.012851496,0.024689388,0.027154572,-0.023100158,0.009028583,0.027429873,-0.025064796,0.005080533,-0.026854247,0.0043484857,0.004717638,0.0076270564,-0.025265016,-0.6098642,-0.015904821,0.045174196,0.031884726,0.004680097,0.04752676,-0.0065070866,0.030157844,-0.020372186,-0.007921127,-0.024126275,0.0072579044,-0.01879547,0.0006894227,0.0038979952,-0.009416505,0.02152344,-0.01810722,-0.018582737,0.002804617,-0.01704356,-0.012507372,-0.001069133,0.020985354,0.0050210934,-0.0052087978,0.0021632935,-0.0044517233,-0.022887425,0.033736743,-0.024389062,0.025652938,-0.011381145,-0.009479073,0.04467365,-0.02973238,-0.026103428,-0.017156184,-0.009716832,0.04397289,-0.03073347,-0.015166517,0.0062630707,-0.026028346,0.0020897759,0.0035132011,-0.007770963,-0.024464143,0.023450539,-0.009166232,0.03791629,0.014052805,0.026103428,-0.00023267527,-0.008534295,-0.01317685,0.03318614,-0.024414089,0.017719297,0.01514149,-0.00034764424,-0.00424212,-0.015792198,-0.0015845381,-0.011112101,0.008646917,-0.004370385,0.012432289,0.0195588,-0.0007441698,0.0051556146,-0.0070576863,-0.0060378257,0.021060437,-0.00875954,0.027980473,0.014553349,-0.019646397,0.02152344,-0.016130067,-0.0013084563,-0.003051761,-0.010060957,-0.017456511,0.015579467,0.026153482,-0.0380164,0.008878419,0.0014883396,0.016430393,0.011531308,0.032885816,-0.00041255867,-0.0074831494,0.0073830406,0.029907571,-0.015304167,0.011218468,0.01952126,-0.0032754422,-0.0077647064,-0.012338437,-0.008790824,0.010060957,0.028380908,-0.009291369,-0.0054966114,-0.00069450634,0.018770441,-0.014791109,0.0010753899,-0.01174404,0.010818032,-0.009791914,-0.0074831494,-0.029206809,0.018357493,-0.018983174,0.011887947,-0.014253022,0.021673603,-0.009679291,-0.0016330285,0.01317685,0.029657299,0.046325453,-0.006682277,-0.007476893,0.031083852,0.030608334,0.030533252,-0.012100678,0.013464664,-0.0010746078,-0.01400275,0.009122435,-0.003835427,0.0028249517,-0.006457032,-0.03486297,0.0057687825,-0.0018332466,0.0021820639,0.0020475425,0.0029532162,-0.0027483057,-0.026053375,-0.00905361,-0.051055603,-0.004289046,-0.012926578,-0.026428783,-0.022449449,0.020297104,-0.0076270564,0.00691378,-0.012457317,-0.0015399584,-0.00012278998,-0.012325924,0.03313609,0.021535954,-0.0118504055,0.011706499,-0.0043641278,-0.010861829,-0.0003810791,0.02228677,-0.009297626,-0.01759416,0.011956772,-0.0036758783,-0.023137698,-0.016442908,0.009942077,0.008158886,0.0026700953,-0.0053714747,-0.012989146,-0.00559672,0.018582737,0.005671802,-0.025540315,0.0007117126,0.0011582928,0.018983174,-0.018532684,0.052607294,-0.009441532,0.026378728,0.024827039,0.004198322,-0.004611272,-0.000030673054,0.0075644883,0.013414609,0.033311278,0.010154809,-0.007020145,0.008446699,0.030508226,-0.021260655,0.023475567,-0.0151164625,0.010523961,-0.015679576,-0.006269328,-0.023200266,0.027154572,0.029582217,0.008183912,-0.019821586,0.014365645,-0.030082762,0.020722568,0.029657299,0.010586529,0.010248661,-0.0137649905,0.017256293,-0.014891217,-0.0017534721,0.013840073,-0.017256293,0.01459089,0.007189079,0.018570224,0.018332465,0.003297341,-0.003603925,-0.016743235,0.03576395,0.018395033,0.027504954,-0.018307438,-0.034687776,0.019683937,-0.024501683,0.036414657,-0.021235626,0.0033911932,0.023525622,-0.002743613,-0.01969645,0.007464379,0.024051193,0.0063756937,-0.007326729,0.00087673607,0.0055059963,0.002207091,0.0010464522,-0.032710623,-0.012338437,-0.0050398638,-0.0029313173,-0.032485377,0.018782957,0.022374367,0.023963599,-0.008115088,0.015717117,-0.0018176045,-0.020584919,-0.021485899,0.007326729,-0.00047747314,-0.002989193,-0.0018207328,-0.010430109,-0.011650188,-0.040969618,0.036439683,-0.021435846,0.028981563,-0.005049249,0.01500384,-0.009278855,0.00905361,0.005333934,0.0034443762,-0.043096934,0.024414089,-0.013902641,-0.011700243,-0.029557189,-0.010780491,0.027605064,-0.015566953,0.0115125375,-0.0019505618,0.015992416,-0.011024507,0.0075206906,-0.0059533585,0.008421672,0.031309098,-0.0058626346,0.022949994,0.014152913,0.01614258,-0.012156989,-0.017544108,-0.004705124,0.030508226,-0.0018770442,-0.0007543371,-0.008972271,-0.02262464,-0.012250842,0.011706499,-0.006757359,-0.00041529603,-0.019959237,-0.0077459356,0.00874077,-0.022787318,-0.01119344,0.01696848,0.016405366,-0.01651799,-0.027054464,-0.009810684,0.014916245,0.105915345,0.01810722,-0.0073642703,0.0066760206,-0.029932598,0.02197393,-0.015216572,-0.023275347,-0.015191545,-0.009879509,-0.012031853,0.0062005026,-0.006663507,0.011143385,0.020985354,-0.015529413,0.00581258,0.022036498,-0.0069200364,-0.022737263,-0.0060065417,0.009479073,-0.010179836,0.02407622,0.0053433194,-0.0063537946,0.018257383,0.02186131,0.0055716927,0.014703513,-0.014227995,0.0063287676,0.018194815,0.023237808,0.0055059963,0.012407262,0.011568849,0.024814524,0.02131071,0.021573495,0.010711665,0.006469546,0.023162726,-0.017356401,0.020509837,-0.007307959,-0.009766887,0.0024104377,0.0042859176,0.012657535,0.01879547,0.006863725,-0.0033692943,0.00236664,0.012244585,0.013301986,-0.035313457,-0.024964688,0.0006409324,-0.018745415,0.003481917,-0.01683083,-0.010123525,-0.0099358205,-0.008115088,-0.02044727,-0.002358819,-0.02052235,-0.005240082,0.00606911,-0.012582453,0.0025340097,-0.055510454,-0.0058219656,0.0044767503,-0.007839788,0.01952126,-0.0071202544,0.0017957056,0.0008986349,0.0058626346,-0.041720435,0.02248699,0.016255204,0.006669764,-0.004245248,0.008121344,0.006100394,-0.033411387,0.028981563,0.04059421,0.025302555,0.043096934,0.010843059,-0.004279661,-0.0013546002,0.009016069,0.04605015,0.0013045458,-0.014227995,0.01693094,-0.041069727,-0.012013083,-0.029757408,-0.021673603,0.0085843485,0.020835191,0.04094459,-0.028030528,-0.031033797,0.026929328,0.01162516,-0.00663848,0.012413519,0.032160025,0.034437504,0.011775324,0.013026687,-0.006494573,-0.021148032,-0.017731812,-0.015304167,0.00557795,-0.02545272,-0.004386027,0.025515288,-0.01260748,-0.03831673,0.001313931,0.0103049725,0.011256008,-0.027079491,-0.013965209,0.002544959,-0.02279983,-0.015191545,0.014065318,0.032535434,-0.013815045,-0.020747595,-0.031984832,0.0054528136,-0.03959312,-0.013339528,-0.019471206,-0.035814002,-0.021898849,0.02513988,-0.002882827,0.036464714,-0.0076207994,0.022862399,-0.0063381526,-0.028606154,-0.0014813007,-0.01796957,0.000530656,0.018870551,0.003266057,0.0017628573,0.02252453,-0.022474475,0.00453619,0.014177941,0.010348771,-0.013377069,-0.0056655454,-0.010911884,-0.024101248,0.01618012,0.036064275,0.0048396457,0.03346144,0.0051618717,-0.012544912,0.0028484147,-0.005787553,-0.015091435,-0.0030236053,-0.017982084,-0.009917051,0.008315306,-0.01979656,-0.001575935,0.016505476,-0.009729346,0.0025918852,-0.010167323,0.029932598,0.0045455755,0.047952224,-0.012207044,-0.0009017633,-0.023475567,0.03486297,-0.01724378,-0.0063131256,-0.008277765,-0.013815045,0.017443998,0.0059971563,-0.0051681283,-0.008859648,-0.000065989836,-0.028155664,0.04840271,-0.0024573638,-0.024313979,-0.013652368,-0.017318862,-0.03438745,-0.015166517,0.0022305541,0.0116564445,-0.008940987,0.0044704936,-0.027504954,0.010818032,-0.007846044,-0.005074276,-0.02600332,-0.012031853,0.020722568,0.025728019,0.027705172,0.02983249,-0.02448917,0.0160675,0.04079443,0.018908093,-0.008991042,0.0054496853,0.042020764,-0.03210997,-0.0128640095,-0.0151164625,-0.010974452,-0.026278619,-0.00614732,0.023663271,0.0053558326,-0.0095041,-0.014515809,-0.007476893,-0.021560982,0.03618941,-0.032710623,0.010136039,0.0071077407,0.015028867,-0.042296063,0.0017378301,-0.016755749,-0.00060378254,0.03556373,0.011775324,-0.0073955543,-0.00028722687,-0.00006999811,0.0106428405,-0.0077146515,0.001575935,-0.011487511,0.00272015,0.01256994,0.0002737356,-0.013602314,-0.013126796,0.033961985,0.02252453,-0.032435324,0.0055716927,0.0013921411,-0.002268095,0.006438262,-0.028030528,-0.015792198,-0.023337916,0.015016354,-0.000837631,0.039292794,-0.0037916293,0.00074612506,-0.013164337,0.0034600182,0.004786463,-0.0032222592,-0.004727023,-0.0049084704,-0.012619994,0.017156184,-0.02655392,0.024601793,0.03145926,-0.002476134,0.007038916,0.023951083,0.03879225,-0.03110888,0.002637247,0.0077146515,0.024401575,-0.04680097,0.009866996,0.02020951,-0.03073347,0.016167607,-0.0030079633,-0.02376338,-0.03038309,0.0058438643,0.005618619,0.014077832,-0.010142296,-0.0036602363,0.010355027,-0.020196997,-0.012801441,-0.021160545,0.033236198,0.027780255,0.015429303,-0.010893113,-0.007996208,0.022499504,-0.023412999,0.015441817,0.006272456,0.0016690051,0.0036915203,0.004063801,0.004289046,-0.019070769,-0.033636633,-0.0081651425,-0.0070827133,-0.02044727,0.02472693,-0.018732902,-0.000044677563,0.015166517,0.02407622,0.020997869,0.022787318,-0.033511497,-0.0079398975,-0.029982653,-0.008603119,-0.001728445,-0.032535434,-0.010999479,0.02238688,-0.00551851,-0.021123005,-0.027204627,0.017569134,-0.025302555,-0.018207328,0.0125261415,-0.019045742,-0.00054551597,0.001514149,-0.019571314,0.015429303,-0.014741054,0.0285561,0.002920368,-0.03236024,0.00078053755,-0.014703513,-0.007877329,-0.01614258,-0.008290279,-0.03486297,0.0015172774,0.002252453,-0.020497322,0.010861829,-0.02228677,0.0048146183,-0.015241599,-0.0111559,-0.010161066,-0.0022540172,0.018720388,-0.030207898,0.0014148221,-0.004414182,0.009723089,-0.008646917,-0.014465754,0.010480164,0.0012357208,0.009892023,-0.026528891,0.015679576,-0.03073347,-0.002812438,0.011856663,-0.014115373,-0.022099067,0.020609945,0.014628431,-0.004601887,0.005017965,0.020359673,-0.014115373,-0.015429303,0.020947814,0.0015947055,-0.018194815,-0.014453241,-0.0063913357,-0.042070817,-0.028781345,0.013902641,0.002468313,-0.020547377,0.02107295,-0.00432033,-0.004886572,-0.039442956,-0.010849316,-0.039167657,-0.01638034,-0.0023556906,-0.006309997,-0.017881975,0.00086656876,0.021648576,0.011668958,-0.058313508,0.024676874,-0.0015876666,0.014465754,0.012081908,0.22524531,0.0088408785,-0.009141205,0.04770195,0.016618099,-0.013402096,-0.013577286,0.031534344,-0.02928189,-0.0061285496,-0.011931744,-0.00445798,-0.004188937,-0.001083993,0.006650993,-0.04497398,-0.01638034,-0.01400275,-0.0071077407,-0.020547377,0.0010261175,-0.008240224,0.008008722,-0.01696848,0.044823814,-0.0054152724,-0.000868133,-0.0075644883,-0.005581078,-0.0055529224,-0.02252453,-0.013990236,0.0282808,0.002391667,-0.0011317013,0.0032316444,0.0035976681,-0.015216572,0.0160675,0.046375506,-0.0074581224,-0.014378158,0.01596739,-0.027580036,0.02162355,-0.007858559,-0.018194815,-0.010830545,0.0003605489,0.018883064,-0.026854247,-0.018745415,0.034988105,0.023976112,-0.012732617,-0.0027467413,0.014478268,0.01158762,-0.004511163,0.016054984,-0.0002105809,0.04014372,0.021573495,-0.014528322,-0.012056881,0.007370527,0.009479073,-0.007170309,0.025978291,-0.011550079,0.00819017,-0.010830545,0.0024964688,0.01759416,-0.022036498,-0.036815096,0.0070138886,0.006272456,0.029807461,0.019270988,0.0014476704,0.0019943595,-0.016467934,-0.035088215,-0.007526947,-0.011593876,-0.0038072714,0.0065508843,-0.018682847,-0.018707873,-0.00096589566,-0.0024949047,-0.022086553,-0.008715742,-0.005396502,-0.004917856,0.0075332043,0.009134948,-0.015128977,-0.007358013,0.007020145,0.005233825,0.0072453907,-0.001214604,0.006663507,0.0015728066,0.004016875,0.00094556104,0.012050624,-0.026303647,0.0074518654,-0.013977722,0.019621368,-0.007908613,-0.015566953,0.033436414,0.01541679,-0.013477177,0.0013710244,0.006040954,-0.02321278,-0.025227474,-0.022812344,0.00011770632,0.026979383,-0.016980993,0.0018254255,0.011356117,-0.001690904,-0.031434234,0.017306348,0.0066134525,-0.00012846022,-0.010974452,-0.008753283,0.018432574,0.026528891,-0.012050624,0.013689909,0.005443428,0.0014163863,-0.009979619,0.024664361,0.02808058,0.028130636,-0.045549605,-0.008872163,-0.037415747,-0.015216572,-0.019308528,0.0013366119,-0.0223118,-0.016855856,0.010542732,0.034337394,0.0077334223,-0.0056905723,-0.024714416,-0.04121989,-0.005903304,-0.012876524,0.0034756602,0.0020725697,-0.015904821,-0.00432033,-0.009810684,-0.15296659,0.019371096,0.01706859,-0.01897066,-0.0144157,0.0024260797,0.02044727,-0.016167607,-0.025427692,0.0063287676,0.0117690675,-0.013051714,-0.0013858844,-0.01779438,-0.03686515,-0.013527232,-0.011462484,0.0036852635,0.03283576,0.029657299,0.033987015,-0.0015556004,-0.01160639,-0.015166517,-0.014202968,0.025114851,-0.03706537,0.016543016,0.0038135282,-0.03566384,0.00663848,-0.011068304,0.01793203,0.0038854815,0.02262464,-0.013602314,0.006757359,-0.017869461,0.0012411955,0.028706264,0.02321278,0.0050836615,0.00095729256,0.0055435374,-0.0045455755,0.028706264,0.0040106177,0.01555444,0.021611035,-0.0141404,0.001728445,-0.040368963,0.022887425,0.0080525195,-0.013402096,0.01431559,0.011825379,0.03236024,0.004464237,-0.021923877,-0.011781581,-0.024601793,-0.022637153,-0.009241315,-0.0217612,-0.010355027,-0.011562592,-0.00069998106,-0.012795185,0.0062630707,-0.006807414,0.00033786797,-0.00056545954,0.018470116,0.0019427408,0.004051287,-0.036264494,0.0038072714,0.004767692,0.024927147,-0.0012623123,0.021335736,-0.008452956,0.01655553,0.016980993,0.020297104,-0.003704034,0.0051618717,0.010380055,-0.004429824,-0.011087075,0.020847704,-0.0142154815,-0.014753568,0.0037916293,0.013852586,-0.006594682,0.016893398,0.01641788,-0.03203489,0.01748154,-0.0077584493,-0.011130872,0.034262314,0.0288314,0.02111049,-0.027905392,0.018732902,0.024952175,-0.0012865574,-0.009885767,0.0070702,0.007433095,0.019446177,0.00494914,0.024539225,-0.002527753,-0.005249467,0.0058970475,-0.009773144,0.027304737,-0.024551738,-0.02197393,-0.005427786,0.00139918,-0.020397214,-0.08269005,-0.033236198,0.017894488,0.018745415,-0.00082042476,0.0019114567,0.012926578,0.0062286584,-0.011506281,0.021636063,-0.010373797,-0.011212211,0.010367541,-0.010060957,0.012544912,-0.013514718,-0.0069388067,0.004564346,0.0029219321,0.011168413,0.001560293,-0.031509317,0.0089222165,-0.01400275,0.017431485,-0.03083358,-0.029857516,-0.005218183,0.015954876,0.026228564,-0.029356971,0.007908613,-0.0054371716,-0.039442956,-0.0074268384,-0.0020897759,-0.018732902,-0.0006890317,0.03794132,-0.0280055,-0.0048990855,-0.013777505,-0.015429303,-0.026954355,-0.01969645,-0.0053120353,-0.01431559,0.013427123,-0.001483647,-0.0009713704,-0.0029985781,0.017806893,-0.011137129,-0.008252738,0.031584397,-0.027229656,0.019220933,0.01655553,-0.0160675,0.0080525195,-0.005333934,0.017156184,-0.027780255,0.024501683,0.004783334,-0.0127826715,0.016505476,-0.016955966,0.0048459023,0.0016643126,-0.017681757,0.032585487,-0.009222544,0.016167607,-0.028405936,0.0007101484,-0.024464143,-0.002682609,0.031334125,-0.004232735,0.004066929,-0.030232925,0.0006338935,-0.012826469,0.000799308,-0.003197232,-0.0037853725,0.023650758,-0.025502775,-0.020609945,0.010492677,0.006970091,-0.014090345,-0.030032707,-0.044373326,0.0044360813,-0.012482344,0.004802105,-0.017331375,-0.0044673653,0.012006826,0.008415415,-0.047276486,0.013527232,0.025928237,-0.011612647,0.0032222592,-0.02283737,0.0040856996,-0.020384701,-0.008578092,0.0077146515,-0.017494053,0.017494053,0.01651799,-0.002774897,-0.017343888,-0.0038166565,-0.000048319223,-0.012889037,0.007332986,-0.0079398975,-0.006438262,-0.0062067597,-0.01910831,0.013614828,0.00153683,0.018119734,0.0137649905,0.022499504,0.0007938333,-0.014265536,0.010542732,-0.023237808,0.017719297,0.0565616,-0.004135754,-0.014065318,0.035413567,0.009698062,-0.002036593,0.004817747,0.016317772,-0.038617056,0.008384131,-0.009009812,0.0011927051,-0.0054653273,-0.01427805,-0.0028155663,0.018207328,0.02107295,0.038041428,0.0025496518,-0.019996777,0.010930655,0.018219842,-0.027955445,0.018232357,-0.00862189,0.0007938333,-0.012344694,0.024501683,0.013064228,0.0014695692,-0.02435152,0.03521335,0.015892308,-0.020622458,0.013689909,0.010186093,-0.025077311,0.006084752,-0.0020240794,0.021410817,0.00039144192,0.017819406,0.03193478,-0.012482344,0.01404029,-0.000891596,0.011963028,0.028981563,0.0388423,-0.032885816,0.004232735,0.017581647,0.03576395,-0.0015329195,0.027479928,-0.008434186,0.017406456,-0.03428734,0.0018739158,-0.0070702,0.011024507,0.018670334,0.010705409,-0.014015264,0.0057406267,0.006563398,0.016217662,0.009378964,0.017494053,0.014065318,-0.009322653,-0.01103702,-0.0050054514,-0.04457354,-0.04442338,0.013126796,0.00877831,-0.016155094,-0.021360762,-0.02044727,0.008828364,-0.0059752576,-0.00424212,0.015742144,-0.002635683,-0.021873822,0.04322207,-0.00691378,-0.02480201,0.011518795,-0.03093369,0.01938361,0.013189364,-0.0018614022,-0.004849031,0.006488316,-0.013702422,-0.003910509,0.003104944,-0.00864066,-0.0053433194,-0.008709485,0.008928474,-0.022849886,0.0030392474,0.01174404,0.065821685,-0.0010910319,0.008834622,-0.017156184,-0.010849316,0.038567003,0.029031618,0.010699152,-0.02517742,0.01838252,-0.014766081,0.00793364,0.016167607,0.009241315,0.0016611841,0.0048552877,-0.0014539271,0.02079765,-0.01327696,-0.0009807555,0.021223113,-0.0015477794,-0.002429208,0.012889037,0.012050624,-0.0064320047,0.014390673,0.0035976681,-0.022749776,-0.030483197,0.021786226,0.0041482677,-0.008721999,-0.00720785,0.019646397,-0.03894241,-0.017256293,0.016080013,0.035688866,0.012594967,0.033711713,0.019396124,-0.03483794,0.013402096,-0.021223113,0.009366451,-0.012156989,-0.0015024175,-0.045649715]},{\"id\":\"543abd02-a3cb-4dc5-be6d-bc63b9b4fd46\",\"text\":\"I didnt post because the product did not work at all\",\"vector\":[-0.022497524,0.022328367,-0.014716425,-0.005208001,-0.006408346,0.007091469,-0.02094911,-0.035314213,0.010468049,-0.023967864,0.0083731385,0.01558822,-0.010116729,-0.023421366,-0.016590133,-0.0006481538,0.020168398,-0.0013646198,-0.008952166,-0.0046745143,-0.00817796,0.0068442435,-0.022042107,0.007670497,0.005188483,-0.013070423,0.03096825,-0.02701264,0.015015698,0.018086499,0.012445853,0.000897819,-0.024631469,-0.023629555,-0.030864155,-0.012380794,-0.014781484,0.011522011,0.0051624593,0.0094270995,0.007820134,0.0015028709,0.00560161,-0.015223888,-0.03632914,0.036199022,0.008379644,0.0021339466,-0.0080478415,0.010669733,-0.0045574075,-0.009088791,-0.030031396,-0.006922315,0.016954467,0.0025194234,0.034403384,-0.0075403783,0.013922701,0.0015321476,0.010220824,0.00741026,-0.0030480304,-0.0033538095,-0.009537701,-0.029224658,-0.01419595,0.0015053106,-0.016902419,0.012022967,0.006268468,0.019712983,0.014234985,-0.0029406825,0.021482596,-0.0027080954,0.01803445,0.016342908,-0.02010334,-0.0036791062,0.02498279,-0.0035717583,-0.014599318,0.0055430564,0.021547657,0.010539615,0.028730208,0.009524689,-0.0076639913,-0.016225802,0.0025828562,0.013740534,-0.005774017,0.0044142767,-0.008704941,0.022562582,0.005848835,0.042470742,-0.02603675,0.012250675,-0.014143902,-0.009381558,-0.029042494,-0.020558754,-0.029901277,0.0051136645,0.009264451,-0.035392284,0.022770772,-0.025555313,-0.008021818,0.039295845,-0.0019615393,-0.011326833,-0.003887296,-0.001146671,-0.0005639832,0.0032269438,0.0016703987,-0.017123621,0.004707044,0.0066523184,0.028001543,-0.005995219,0.022575594,0.0048794514,-0.024137018,-0.009381558,0.0102663655,0.011899355,0.019153472,0.03687564,0.018385772,-0.010825875,0.005071376,0.027455045,-0.023473414,0.005012823,-0.0024055694,-0.017422894,0.0005790282,0.03648528,-0.007768086,-0.004085727,0.002595868,0.0011352856,0.009433606,0.00977842,-0.0067596664,-0.011339844,-0.0062391916,-0.024332196,0.010767322,-0.018685045,0.015783397,0.0024511109,-0.0023730397,0.017865296,-0.014482211,-0.015991587,-0.0001457736,0.02262764,-0.015197864,-0.013584392,0.009973598,0.025021825,0.041455816,-0.025451217,-0.017878309,-0.02616687,0.0036010349,0.017787226,-0.008763494,0.014898591,-0.009492159,0.0065254527,0.006096061,0.0112682795,-0.014104866,-0.002334004,-0.0029406825,0.01767012,0.015002686,0.00003451195,-0.000008856712,-0.013102952,0.0039328374,-0.007481825,0.018958295,-0.01990816,-0.0020054544,0.01336319,0.005591851,0.004778609,-0.644556,-0.03005742,0.03466362,0.02067586,0.000971824,0.033856884,0.004983546,0.008613857,-0.008861084,0.019192507,-0.026700357,0.010708769,0.0021697292,-0.0018899741,0.014221974,-0.0062326854,0.03375279,-0.02951092,-0.017553013,0.008288561,-0.020519719,-0.0019696718,0.008809036,0.0049022217,-0.010611179,0.0035392286,0.0024364726,0.02010334,-0.028001543,0.034897834,-0.017006513,0.04629623,-0.006688101,0.020779956,0.068494484,-0.023694614,-0.0049575223,0.023707626,0.0076509793,0.023603532,-0.03653733,-0.013545357,-0.0043296996,-0.015197864,-0.02352546,-0.00897819,0.02651819,0.0054975147,0.01635592,0.022354392,0.01767012,-0.02735095,-0.011255267,0.03375279,0.024097983,-0.022263309,0.038515136,0.010585156,0.012504407,0.015041721,-0.015809422,-0.010715275,-0.02672638,-0.014091855,-0.024449304,-0.013402225,-0.011736707,0.008509763,0.027168784,0.0003362755,0.014586306,0.00047249353,-0.012406818,0.021326454,0.0055202856,0.015926529,0.011567553,0.017162656,0.008809036,0.0058455826,-0.008216996,-0.0043069287,-0.028548041,-0.0061058197,0.027455045,0.023707626,-0.011365868,-0.002841467,-0.0058423295,-0.0021892472,0.009823961,0.031046322,0.0023421366,-0.0019094918,0.011548034,0.026140846,-0.007390742,0.026960595,0.0030415244,-0.029094541,-0.01297934,-0.005774017,0.018698057,0.0099410685,0.0055658272,-0.0017777467,-0.014781484,-0.0018265411,0.015575208,-0.017722167,0.009420593,-0.005120171,-0.009082285,-0.010955994,-0.0028317082,-0.033908933,-0.00017718507,-0.035132047,0.001950154,-0.002101417,0.01629086,-0.01277115,0.022380415,0.020818992,-0.014599318,0.01851589,0.008887107,0.012205134,-0.025932657,0.02143055,0.025984704,-0.013870653,0.025932657,-0.015978577,-0.0014304924,0.0017631083,0.022575594,-0.0003072021,0.018763116,-0.017227715,-0.020090327,0.0060407603,-0.013102952,0.043980118,-0.0015158828,-0.018906247,-0.018567938,0.01012974,0.014091855,0.03882742,0.008926143,-0.022328367,-0.013727522,-0.0022689449,0.0005656097,-0.01747494,-0.013031388,-0.02339534,-0.017761203,-0.021274406,0.031410653,0.046530444,-0.0050193286,0.0014801002,-0.008184466,0.0033668212,-0.016824348,0.0042386167,0.0026609274,-0.022068132,0.016043635,-0.0085357865,0.008347115,-0.015145816,-0.02088405,0.0032236907,-0.0012816691,-0.01781325,0.0009872756,0.015340994,-0.0046419846,0.01920552,-0.019335639,0.013141989,0.03778647,-0.010331425,-0.0018753357,0.026179882,-0.023863768,0.016525075,-0.004404518,-0.008639881,-0.0062717213,0.0064538876,-0.004811139,-0.02074092,0.02046767,-0.0064343694,-0.008451209,0.023135105,0.008431692,0.006287986,0.00062741607,-0.0026316505,0.016915431,0.00010450158,-0.0027991785,0.0076444736,0.023564495,0.0123873,0.006167626,-0.0008717953,0.0046257195,-0.012855727,-0.008438198,0.016967477,-0.004385,0.0028593584,-0.009134333,0.012784162,-0.031046322,-0.031306557,-0.010988524,-0.020779956,0.019712983,-0.0068442435,-0.00260888,0.012907775,0.011918873,-0.004882704,-0.033102196,0.019075401,0.012237663,0.0025665914,0.0062554562,-0.013415238,0.019153472,-0.0119969435,0.032841958,-0.008483739,-0.012985846,0.03778647,0.0008299133,0.024045935,0.004980293,0.012621514,0.024241114,-0.03117644,-0.011964414,0.022523547,0.000047701717,0.010181788,-0.023824733,0.008171454,0.01822963,-0.026882524,-0.0054161907,0.019270578,0.036199022,0.02768926,0.00077989895,-0.0030610424,0.028417923,-0.0118342955,0.012081521,-0.0025584588,-0.0046387315,0.005399926,-0.014234985,-0.04070113,0.011450445,-0.017696142,0.025854586,-0.04947113,0.044500593,0.011873331,0.021300431,0.024462314,0.025672419,-0.0029569473,0.0052372776,-0.0074232714,-0.0023811723,0.0071044806,0.008321091,-0.01475546,-0.024306173,0.015015698,-0.008470727,0.011034066,0.011951402,0.025138931,0.004193075,0.013662463,-0.00568944,-0.0011369121,0.03937392,-0.019088414,0.013675475,-0.0010311906,-0.008438198,-0.008568316,-0.015471113,0.0000011626818,0.010071187,-0.0017777467,0.0018444326,-0.006766172,0.011151172,0.021534644,0.015822433,0.014989674,0.005107159,0.0056634163,0.009876009,0.004791621,-0.0082365135,-0.0024088223,0.023824733,0.0147294365,-0.028157687,-0.015601232,0.019036366,0.002703216,0.0836403,0.01203598,0.005907389,0.023902804,-0.013610416,0.01357138,-0.027168784,-0.018320713,-0.00090676465,0.0048306566,0.01803445,0.006811714,0.016837358,-0.002195753,-0.0077290507,-0.024032922,0.018450832,-0.0027601428,-0.00005204748,-0.021378502,-0.004368735,-0.0052730604,-0.00076648046,0.017162656,0.003805972,0.0064473813,0.01747494,0.00078925124,0.011040571,0.008151936,-0.009453123,0.0070133978,0.001049082,0.029693086,-0.0074427896,0.024683516,-0.0050681233,-0.011860319,0.013831617,0.0029065264,0.022120178,-0.0015240152,0.008282055,-0.019647922,-0.017136632,-0.020402612,0.01078684,0.027116736,0.010825875,-0.004014162,0.011463457,-0.023499437,-0.010546121,-0.004371988,0.0025064114,0.006528706,-0.026336024,-0.025230015,0.006694607,0.018528903,-0.01928359,-0.02178187,-0.0025112908,-0.004411024,-0.04140377,-0.035548426,-0.014612329,-0.0029797181,-0.005813053,-0.0018411796,0.0037344065,0.027246855,-0.03640721,0.020428635,0.019439733,-0.006470152,0.011222738,-0.014234985,-0.002098164,0.023551485,-0.0023958106,-0.031098368,0.009231921,-0.0102923885,0.0022299092,0.020975133,-0.0002443792,-0.0040597036,-0.008704941,0.00012981374,0.018802151,0.007839652,0.04418831,-0.028964423,0.01475546,-0.013428249,0.018802151,0.009967092,0.00035091385,0.006564488,0.011788754,-0.014534258,-0.01955684,-0.028730208,-0.005266554,0.008223502,-0.005406432,0.0065937648,-0.02797552,-0.00012483263,0.028730208,-0.004716803,-0.027611187,-0.01176273,-0.00076485396,0.00957023,0.0009945948,0.031410653,-0.007709533,-0.017318798,-0.026622286,-0.012022967,0.02776733,-0.022029096,-0.029224658,0.005894377,-0.0065124407,-0.043173384,-0.04036282,0.0069288206,0.0022852097,0.010513591,-0.0060667843,-0.025802538,-0.022289332,-0.026049763,0.0070329155,0.017136632,0.019804066,-0.03216534,-0.019712983,-0.016381944,-0.021274406,-0.031306557,-0.020688873,-0.029875252,-0.014716425,-0.00086040987,-0.009342522,0.01635592,0.0008766747,-0.0054584793,-0.037239973,-0.022887878,-0.017852286,-0.048326083,0.0069353264,-0.0033180267,0.02701264,0.018880222,0.018047463,-0.0041150036,0.026531203,0.012296217,-0.013441262,-0.014039807,-0.008301573,-0.019439733,-0.021209348,0.031020297,0.019817077,0.0073321885,0.06027098,0.010363954,-0.011190208,0.01614773,0.003002489,-0.019582864,-0.0052567953,0.016199777,0.010728287,-0.0067726783,0.0042581344,0.012745126,0.0012572719,-0.011495987,0.0018200353,0.017878309,0.02275776,0.002407196,0.030291632,-0.006004978,0.0013540477,-0.008867589,-0.0113203265,-0.021560669,-0.008574822,-0.0053576375,-0.0099410685,0.01725374,0.01037046,0.0091018025,-0.016954467,-0.019778041,-0.04273098,0.0076639913,0.007800616,-0.012959822,-0.0074362834,-0.03898356,-0.031540774,-0.026140846,-0.003405857,-0.0008291001,-0.017227715,-0.0016736517,-0.016512062,0.01754,-0.020753931,-0.024605446,0.0008465848,-0.034741692,0.032035224,0.008867589,0.03167089,0.049497154,-0.020220445,-0.020753931,-0.00069206883,-0.017852286,-0.018463843,0.010611179,0.046920802,-0.019244555,-0.016225802,-0.00016518975,-0.02846997,-0.01990816,-0.0366154,-0.01878914,0.013792582,0.005312096,-0.013493309,-0.031957153,-0.02971911,-0.0071370103,-0.029562969,0.009511677,0.0019566598,0.0027764076,0.000075936456,0.008015311,-0.0045541544,0.019387687,0.023343295,-0.014000772,-0.0013093194,-0.035938784,0.010097211,0.0028788762,-0.003692118,0.006492923,-0.012471877,0.001751723,0.022705713,-0.012192122,-0.007826639,-0.026075786,-0.010910452,0.020897062,-0.0029569473,-0.007696521,0.006470152,-0.005754499,0.0026755657,-0.0102923885,-0.0299273,-0.031566795,-0.015653279,0.009674325,0.006574247,0.017305786,-0.0049640285,0.003776695,-0.041559912,-0.015236899,0.009316498,-0.010240342,-0.011424421,-0.026427107,0.0076379674,-0.021599704,-0.0074297776,0.008874095,-0.0056536575,-0.005090894,0.0144041395,0.0017533494,-0.011743212,0.028053591,0.021131277,-0.010064681,-0.011034066,0.016199777,0.0018005174,-0.029562969,0.019270578,-0.010598168,-0.04525528,-0.040050536,-0.018606974,-0.011287797,-0.005178724,-0.015614243,0.021742834,0.023057032,0.008900119,-0.034689646,-0.005299084,-0.0035652523,-0.010539615,0.013317648,0.014117879,-0.010969006,-0.015223888,-0.00945963,0.025932657,0.0007445229,-0.023343295,0.015419066,0.0045346366,0.036172997,0.016056648,-0.04119558,-0.03591276,-0.020558754,-0.0069158087,0.015575208,0.0015898878,-0.009264451,-0.014547271,-0.042965192,-0.025880609,0.0247746,-0.016473027,-0.008880601,-0.02693457,0.01802144,-0.000056774446,-0.003796213,0.021612715,0.036511306,0.024254125,-0.005796788,-0.014690401,0.000901072,-0.044240355,0.0075468845,-0.013480297,-0.004085727,0.0051657124,0.0004196328,-0.0015142563,0.043589763,-0.00042003943,-0.0033863392,0.009349029,-0.012075015,0.0015882613,-0.0050518583,0.022458486,-0.033310387,-0.024423279,-0.002434846,0.015210875,0.017878309,0.0020656344,-0.014221974,-0.016811335,0.006444128,0.009641795,0.00426464,0.013063917,-0.003906814,0.033362433,-0.02136549,-0.02059779,-0.013805593,0.0026365302,-0.0045086127,-0.013493309,0.01137888,-0.0070133978,0.010188294,-0.005591851,0.010090705,-0.032061245,-0.021677775,0.011469963,-0.00097101077,-0.032269437,0.020845015,0.008672412,-0.022510534,0.0072345994,0.013415238,-0.009466135,-0.0045476486,0.026414096,-0.005100653,-0.013740534,0.016381944,0.01968696,-0.02623193,-0.019634912,0.000051945823,-0.0030155007,0.013870653,0.012667055,-0.005312096,-0.0049575223,0.0026202654,-0.0002760956,0.018411795,0.024891706,-0.021261396,-0.00051762845,-0.034741692,-0.012465371,0.012198628,0.0027129748,-0.056835845,0.026830476,0.015458101,-0.010552626,0.0022673183,0.21589294,0.0074753193,-0.008164948,0.028548041,0.010481061,0.008945661,0.00027914526,0.017566023,0.008672412,0.007384236,0.031046322,-0.00062416313,-0.014013784,-0.008223502,0.0042353636,-0.009609266,-0.0028805027,-0.0040434385,0.007839652,0.0008392656,0.016746277,-0.014234985,0.007481825,0.003887296,0.042574838,0.0032562204,-0.033830862,0.004358976,0.0013174518,0.0075273667,-0.015562196,-0.024956767,0.02296595,0.0015069372,-0.008861084,0.0050388467,-0.014326069,-0.0083731385,-0.007566402,0.014898591,0.00015370271,-0.0047428263,0.01635592,-0.011138161,-0.023915816,0.030942226,-0.0042451224,-0.014065831,0.014898591,0.0072215875,0.0006664517,-0.03375279,0.0075403783,0.018294688,-0.01629086,0.0011247135,0.011164184,-0.0077420627,-0.011001536,-0.002797552,-0.0010076066,0.01579641,0.016603146,-0.00053104694,-0.026075786,0.023837745,-0.025373146,0.002094911,0.025932657,-0.0010848646,0.0050290874,-0.00370513,-0.019778041,0.009862998,-0.012517419,-0.03034368,0.01134635,0.030916203,0.03549638,0.01795638,0.017891321,-0.003685612,-0.016056648,-0.024826648,-0.006922315,-0.025984704,0.020272493,0.025138931,0.0044468064,-0.0051559536,-0.0012580851,0.00060301885,-0.028339852,-0.029771158,-0.0040239207,-0.020779956,-0.012022967,-0.015158828,0.0102923885,0.005861847,-0.019049378,0.029979348,0.001849312,0.013428249,0.006421358,0.010409496,0.009440111,0.03437736,0.0024559903,0.0024803877,0.01502871,-0.036927685,0.00046598757,0.00022648786,-0.005464985,0.013200542,-0.007208576,-0.031722937,0.012998858,-0.03370074,0.0059984718,-0.006805208,-0.0075208605,-0.010181788,0.007267129,-0.0006111513,-0.014612329,0.011047077,0.042054363,-0.019608887,0.0035815171,0.010214318,-0.015601232,-0.008880601,-0.009928057,0.00080958224,0.00010058785,0.009921551,-0.012829703,0.009648302,-0.012114051,0.03937392,0.017136632,-0.011769236,0.011730201,-0.0026121328,0.04197629,-0.012946811,-0.037057806,-0.00945963,-0.012211639,0.012296217,-0.0077160387,0.008295067,0.03794261,-0.002948815,-0.027298903,-0.03599083,-0.020337552,-0.0014394381,-0.01843782,-0.022718724,0.045359377,0.0017566024,-0.023863768,-0.010071187,-0.16384546,0.013376202,0.013662463,-0.0034091098,0.021222359,0.0038580194,0.021183323,-0.0144041395,-0.009349029,0.021027181,0.020480683,0.020962123,-0.013441262,-0.005891124,-0.013467285,0.008887107,-0.021092242,0.020897062,0.02282282,0.01635592,0.037474185,-0.0033277858,0.0046289726,-0.026336024,0.00074167654,0.01851589,-0.0069288206,0.016681217,-0.015900504,-0.039686203,-0.010650216,-0.008327597,0.007078457,0.015692314,0.042418696,-0.016199777,0.0020558755,-0.015249912,0.022705713,0.013974748,0.0070199035,0.009635289,0.0014410645,-0.0133501785,-0.015184852,0.022003071,0.020975133,-0.0017842526,0.0064473813,-0.013233071,0.021391513,-0.034975905,-0.00036189263,0.010539615,0.013057412,0.024540387,0.0071174926,0.007514355,-0.015249912,0.014313057,-0.0058228117,-0.015965564,-0.02143055,-0.0118342955,-0.0026186388,0.0033668212,0.0033066415,0.011671647,-0.020975133,0.011873331,-0.029094541,-0.0035587463,0.019101424,0.012328747,0.017383859,-0.0017549759,-0.018281678,-0.011665141,0.025086885,0.011125148,-0.003783201,0.013597404,-0.006668583,0.018346736,0.002753637,0.01005167,0.028053591,0.010468049,-0.0013621801,-0.0021290672,0.009134333,-0.029328754,-0.019452745,-0.00645714,0.03305015,0.019231543,-0.0011604961,0.022276321,0.0031846552,-0.018502878,0.017709155,0.011326833,-0.039217774,0.012998858,0.038515136,0.00758592,-0.03396098,0.030395728,0.025607359,-0.0017566024,-0.0023014743,0.027090713,0.02610181,0.027272878,0.016473027,0.026388071,0.00013327,0.003991391,0.005578839,-0.014013784,0.044422522,-0.010669733,-0.015223888,0.025412181,-0.01608267,-0.017383859,-0.10659324,-0.049991604,0.010513591,-0.0016354293,-0.012250675,0.017513977,0.007709533,0.033492554,-0.025230015,0.041585937,-0.020220445,-0.024878696,-0.014091855,-0.013727522,0.033154245,-0.023083057,0.01976503,-0.0046875263,-0.020064304,0.0042809052,-0.010572144,-0.02943285,0.0045313835,-0.027194807,0.012634525,0.0034546515,-0.007579414,0.0076314616,0.021339467,0.004489095,-0.007839652,-0.01203598,0.015067745,-0.008321091,-0.015458101,-0.005194989,-0.015523161,0.016134718,0.028860327,-0.022705713,0.02059779,-0.011606588,-0.015301959,-0.01131382,-0.0033473035,0.0109950295,0.00057821494,0.019023353,-0.0018265411,-0.0083731385,-0.011892849,0.013753546,-0.010448531,-0.015653279,0.016199777,-0.013389214,-0.00758592,0.033102196,-0.017696142,0.0026950836,-0.010975512,-0.0044370475,0.017579036,0.008926143,-0.009212404,0.012374288,0.012048991,-0.0016736517,0.0119709205,-0.017084586,-0.0035424815,0.008256031,-0.027585164,0.0074492954,-0.0072411057,-0.010207811,-0.023187151,-0.02826178,0.015770387,0.009316498,-0.014560282,-0.011801766,0.00076851354,-0.018802151,0.02262764,-0.0018102764,0.0060928077,0.014651366,-0.022848843,-0.013493309,-0.005071376,0.016095683,-0.0015378403,-0.010793346,-0.023291247,0.0015549185,-0.009732879,0.007690015,0.0031862815,0.004251628,-0.009440111,-0.024254125,-0.03013549,0.029328754,0.02421509,-0.010884429,-0.014417152,-0.015718339,0.0018200353,-0.0010173656,-0.016121706,-0.03466362,-0.024709541,-0.0014817266,-0.012907775,0.00093929435,-0.005891124,-0.014651366,0.03076006,0.009030238,0.023356305,-0.042288575,0.010702263,-0.02163874,-0.0022103915,-0.0023437631,0.0009287222,0.02010334,-0.015679304,0.029562969,-0.0051364354,-0.0107543105,-0.004898969,-0.022952938,0.010799852,0.0004485029,0.005978954,-0.012081521,-0.00082300074,0.013610416,0.0076314616,-0.008587834,-0.020688873,-0.010533108,-0.003965367,-0.0255423,-0.02964104,-0.01057865,-0.0036530823,-0.02351245,0.020688873,0.008926143,0.02107923,0.012927293,-0.010045163,-0.020975133,-0.009856491,-0.03856718,0.017032538,-0.0036758531,-0.011398397,-0.03265979,0.028313829,0.006798702,0.012361276,-0.032113295,0.020025268,0.004303676,-0.0104550375,0.0030203802,0.010682745,-0.012068509,-0.0029520679,-0.010884429,0.026075786,-0.010090705,0.024956767,0.00006582176,-0.013636439,-0.0034579043,-0.008093383,0.03297208,-0.0015036842,0.012946811,-0.020441648,0.023004986,-0.0023437631,0.034481455,-0.014261009,0.012810186,-0.0043492173,0.011105631,-0.028912375,0.0007148396,-0.011391892,-0.00057130243,0.0021746086,0.028365877,0.017305786,0.009993116,-0.028105639,-0.008717952,0.030681988,-0.0035197109,-0.0037409125,-0.008041335,-0.0095637245,0.019986233,-0.034897834,-0.04169003,-0.0054259496,0.0017858791,0.0021339466,-0.026218917,0.01482052,0.013766558,-0.006779184,0.010838888,0.016381944,-0.025893621,-0.038124777,0.021820905,0.021352477,0.002091658,0.00059366657,-0.02143055,0.039504036,-0.016785312,0.012868739,-0.01914046,0.034299288,-0.010838888,-0.0030642953,-0.0010230582,-0.0038287425,0.0020233458,0.006515694,0.0020184664,-0.0074427896,0.009583242,0.0063075037,0.053192522,-0.019231543,-0.007989288,-0.012374288,0.008308079,-0.0037376597,0.021118265,0.002734119,-0.005982207,-0.008334102,0.023057032,-0.009088791,0.03508,-0.011879837,-0.015978577,0.013636439,0.009088791,0.0027308662,-0.010799852,-0.002208765,0.018906247,0.012777656,0.009017225,-0.0030057419,-0.014378116,-0.016928442,-0.015822433,0.010689251,-0.014560282,-0.054441664,0.00838615,0.0116196,-0.012465371,-0.0027747813,0.020155387,0.006896291,-0.007898205,0.027429022,0.01134635,-0.0038157308,0.008015311,0.06110374,-0.020415623,-0.013935712,0.0002543414,-0.009849985,-0.022978961,0.008613857,-0.033440504]},{\"id\":\"d5d6eddc-0917-4897-853e-3a0b18096432\",\"text\":\"That thing is nothing but crap. Sheds everywhere, even found hairs falling in food. Terrible quality \",\"vector\":[-0.004990051,0.009630377,-0.007544983,0.0030568517,-0.010673075,-0.000065725144,-0.01214969,-0.043132693,-0.008458153,-0.0050677676,0.020219259,0.014248037,-0.010815555,0.0006233516,0.0049997657,0.014623667,0.023431545,0.0016263811,0.007506125,-0.015931897,-0.01787481,0.0031361873,-0.029584106,0.003778968,0.014481187,-0.002503121,0.031267963,-0.0241569,0.017304888,0.020672606,0.019804772,-0.0064958096,-0.022213984,-0.0073442156,-0.016851543,-0.0015462359,0.009597996,-0.007991853,-0.0015559504,-0.004565848,0.021501584,0.0011544148,0.0030374224,0.009850575,-0.014157368,0.008276815,-0.005501685,-0.010006008,-0.006175229,0.0027281754,0.013470871,-0.0030260887,-0.034091666,-0.01449414,0.011366048,0.006110465,0.0055761635,-0.01402784,0.04002403,0.0010354114,0.0105565,0.0017923383,-0.034868833,-0.008302719,-0.0057413112,-0.0029564677,-0.019442094,-0.004157836,-0.024415955,-0.008237956,0.009474944,0.03489474,0.001667668,-0.019869536,0.011301284,-0.0010248872,-0.01712355,0.029454578,0.009772859,-0.02458434,0.04776978,-0.004410415,-0.010316874,0.0032673338,0.044583403,0.0021841594,-0.008250909,0.03992041,-0.0033806707,0.0061978963,0.0023914035,0.0027524617,-0.016385242,0.013289533,-0.018651975,0.015038156,0.020439457,0.03761482,-0.023729458,-0.027408043,-0.010893272,-0.005375396,-0.012991619,-0.002025488,-0.028081587,0.0052976795,-0.011994257,-0.006962109,0.016618391,-0.021903118,-0.0037854444,0.019364377,0.030931193,-0.025219025,-0.0007844516,0.012318076,0.047096238,0.0009795525,-0.014377565,-0.02181245,0.0072600227,0.021890165,0.034739304,-0.005142246,0.013924218,-0.0010572692,-0.015323116,0.011320713,0.0025500748,0.022758001,0.025011782,0.015970754,0.045153324,-0.0005666833,-0.014079651,0.019727055,-0.046137735,0.008898547,0.020491268,-0.015517408,0.013263627,0.028910562,-0.021462725,0.0017777664,-0.016177999,0.036993086,-0.0024982637,0.009520279,-0.0114826225,0.019247802,0.016216857,-0.025503986,0.032692768,0.005683024,0.01604847,0.027174892,0.008995692,0.00019459499,-0.015232447,-0.00020289286,0.008088999,0.002163111,0.0021501584,0.0075126016,-0.00037886825,0.017045833,0.019195992,0.013237721,0.012000733,-0.0036915368,0.006061892,0.012259788,0.0032252376,0.01834111,-0.004481655,0.015361975,-0.00069823477,0.0070527783,-0.007959472,-0.016709061,-0.026656782,0.00008232087,0.025089499,0.007868802,-0.011379001,-0.03165655,-0.0019655814,0.0016547152,0.023574024,-0.0046208976,0.015802369,0.0044784173,-0.009934768,-0.011515005,-0.6548916,-0.02898828,0.009617425,-0.0027314136,0.00060594635,0.01880741,0.019493906,0.01003839,-0.018664928,0.0017437654,-0.0038955428,0.014662526,-0.0020173925,0.0058125514,-0.0049317637,-0.01282971,0.018328156,-0.024726821,-0.016190952,0.00039910694,-0.012156166,0.02528379,-0.025892569,-0.014157368,-0.0089115,-0.009267701,0.009177031,-0.0096627595,-0.009086362,0.01501225,-0.021980835,0.031034816,-0.018988747,-0.0009916958,0.06626633,-0.028884657,0.0068520107,0.025296742,0.032485526,0.025348553,-0.04002403,-0.0098635275,0.0023282587,-0.010226205,-0.022201031,-0.0010532214,0.021773592,0.027900247,-0.011288331,-0.015089966,-0.017006975,-0.0017146218,0.00008459772,0.008186145,-0.00806957,0.0073830737,0.043288127,-0.0118453,-0.0065800026,0.009384275,0.013950123,0.008781972,-0.0054077776,-0.0017275745,-0.023574024,0.011268902,-0.013950123,0.0019315805,0.023276111,-0.022822766,-0.00047560918,0.030698044,-0.007136971,0.0101873465,-0.01604847,0.02444186,0.024312332,-0.0012928474,0.01336725,0.000987648,-0.0022699714,-0.020063827,-0.0013430394,0.01966229,0.006826105,-0.013587446,-0.00143128,-0.011871206,0.0057445494,-0.016864495,-0.0009026455,0.019027606,-0.006006843,-0.0056409272,-0.008024235,0.025607608,0.0023574026,0.009792287,0.012933332,-0.009008645,-0.022278748,0.004559372,0.003503722,-0.00032806915,0.01268723,0.011974827,0.00045496572,0.013108194,0.0010483641,-0.013639257,0.012810281,0.025685325,-0.0023412115,-0.009831145,-0.032874107,-0.02097052,0.013898312,-0.0042226003,0.005275012,-0.022952292,-0.0055211144,-0.00073264056,0.032174658,0.00041934563,0.018535402,0.017654613,-0.02299115,0.0032398093,-0.008076047,0.010407544,-0.008160239,-0.001506568,0.028781034,-0.02449367,0.019584574,0.010129059,0.000038934177,0.0024270236,0.01175463,-0.02973954,-0.009183507,-0.008969787,0.008905023,-0.0013430394,-0.011087564,-0.042718206,-0.0030147552,0.01161215,0.00003488644,0.019934298,-0.033418123,-0.010284492,-0.017887764,0.005938841,-0.006949156,0.0021485393,-0.025685325,-0.011586245,-0.014131462,-0.020607842,0.014766147,0.023910796,-0.01646296,-0.0015106157,-0.020219259,-0.0109580355,0.020335834,-0.0005266107,0.0018927222,-0.01975296,0.018069101,-0.018651975,-0.009734,0.040697575,-0.020711465,0.012441127,-0.0087690195,-0.025711231,-0.017382605,-0.008905023,0.020387646,0.031371586,-0.0232243,-0.0056765475,-0.0037142043,0.008710732,0.000019833915,0.019869536,-0.016177999,0.022965245,-0.006839058,-0.0027297945,-0.022058552,-0.003979736,-0.013237721,-0.039143242,0.019675244,0.010368685,0.027511664,0.00089131185,0.022680284,-0.010472307,0.0024561672,-0.004106025,0.011799965,-0.009934768,0.00051163405,-0.008328625,0.0075644124,0.028547885,0.002193874,-0.035257414,-0.0029516104,0.006670672,-0.017278982,0.03240781,0.013755832,0.010174394,0.014209179,-0.012447603,-0.023094773,-0.0019121513,-0.02073737,0.00452699,-0.0060165576,-0.004439559,0.01350973,0.0051325317,0.0148309115,-0.001463662,-0.020944614,-0.001871674,0.012810281,0.0041125016,0.016320478,-0.010653646,0.01341906,-0.00007194854,0.015310164,-0.009908862,0.014455281,0.017615754,-0.0021015855,0.002807511,-0.0041675507,-0.008736637,0.033703085,-0.0017146218,-0.0148309115,-0.00036490356,0.01726603,0.0034778162,-0.021980835,0.008088999,0.02678631,-0.03476521,0.0012815138,0.009798763,0.020245165,0.0051681516,-0.011793489,-0.01576351,0.051785138,0.0071110656,0.02439005,-0.0028997993,-0.016851543,-0.005566449,-0.0011527957,0.005919412,0.0039279247,-0.013924218,0.01306286,-0.023133632,-0.004326222,0.008503487,0.012661324,0.026294105,0.016968116,0.001497663,-0.030335367,-0.008088999,-0.007201735,0.009993055,-0.0030228505,-0.02270619,-0.009818193,-0.01819863,-0.0052005337,0.035257414,0.01057593,0.03463568,0.01740851,-0.0042646965,-0.013587446,0.017006975,0.02683812,-0.018146819,0.016411148,-0.004413653,-0.0073247864,-0.01880741,0.0058643627,-0.008432248,0.007946519,-0.012946284,-0.008976263,0.014131462,0.009118744,-0.001994725,-0.010407544,-0.015413785,-0.026060956,-0.010498213,-0.0067289593,0.0033223832,0.015893038,-0.011515005,0.008114905,0.02252485,-0.027330326,-0.014908628,-0.011851776,0.0112365205,0.07336444,0.049557265,-0.03227828,0.028133396,0.014468234,0.002313687,-0.00517139,-0.026281152,0.012143213,-0.0225119,0.013898312,-0.018600164,0.024739774,-0.0044363206,-0.012363411,-0.007642129,-0.009157602,0.005310632,0.0025986477,-0.0019979633,-0.0021323483,-0.015167683,0.007778133,0.0017842428,-0.012039592,0.033288594,-0.004063929,0.013302485,0.030698044,-0.011877682,-0.0013519444,-0.026449539,-0.012790851,0.0036267731,-0.027485758,0.027926153,0.011230044,0.0025905522,0.015646935,-0.009980102,0.015750557,0.036889464,0.018690834,0.005666833,-0.009118744,-0.0038178263,-0.0010435068,0.015258352,-0.009306558,-0.023470404,0.026514301,0.01426099,0.001608571,0.009772859,0.022745049,0.006162276,-0.018418826,-0.0018635785,-0.009889433,-0.028781034,-0.012182072,-0.029299146,-0.006774294,-0.00022606616,-0.035594188,-0.0215793,-0.013898312,-0.01599666,-0.02753757,-0.0020724419,0.008328625,-0.004695376,-0.012097878,-0.004322984,0.008509964,-0.0017971956,-0.004031547,-0.028366547,0.005822266,0.028910562,0.008095476,-0.0034842927,0.016320478,0.0013818977,0.01975296,-0.0013835168,0.019027606,-0.010174394,-0.02213627,-0.0073442156,0.01637229,0.012635418,0.007065731,-0.018639022,0.0040412615,-0.008451677,0.013444966,0.00942961,0.0014280418,0.008432248,-0.0051098643,-0.009261224,-0.031811982,0.01320534,0.048754193,0.012246835,-0.0010864128,-0.004582039,-0.0062108487,0.00049908605,0.013244198,-0.012823233,-0.024338238,0.015323116,-0.015970754,0.00055332575,-0.006499048,0.03546466,-0.010394591,0.0046856613,-0.015905991,-0.020983472,0.013166482,0.0037886826,0.003986212,0.006469904,-0.002195493,-0.013742879,-0.051629703,-0.011508528,-0.023625836,-0.00694268,0.0030843762,-0.026967648,-0.04378033,-0.0038081117,-0.022032646,0.014144415,-0.013198864,-0.040049937,-0.04396167,-0.0044071767,-0.029894972,0.00731831,-0.015711699,-0.02388489,-0.03691537,0.026112767,0.0015802368,0.01273904,0.0090928385,0.0020060588,-0.021980835,-0.01830225,-0.0023250205,-0.03401395,0.0006237564,0.0073636444,0.04447978,0.030335367,0.047795687,-0.006981538,0.015983706,-0.0026067432,-0.009410181,-0.0118841585,-0.0066965776,0.0022910195,-0.04067167,0.028729225,0.030387178,-0.011663961,0.027796624,-0.012311599,-0.017240126,0.007065731,0.0019364378,-0.018742645,0.0015446168,-0.0021582537,-0.0024367382,-0.011268902,0.01651477,0.030413082,0.0011212233,-0.0022715905,0.006019796,0.03199332,0.013406107,0.001608571,0.020840993,-0.0053365375,0.0150770135,-0.01744737,-0.008380436,0.0056733093,-0.012978666,0.0063954256,-0.029532295,0.029195523,-0.00056101644,-0.010822032,-0.030076312,-0.012700182,0.0034421962,-0.007570889,-0.012939808,-0.0017971956,0.022019694,-0.022783907,0.0014158987,-0.050723013,-0.012110831,-0.037459385,0.0065281917,0.011184709,-0.032951824,0.0012191787,0.0032203803,-0.0147531945,-0.0059323646,0.0023104488,0.0232243,-0.022071505,0.013354297,0.029299146,-0.029584106,-0.030490799,0.019740008,-0.005459589,-0.025180167,0.0050418624,0.035594188,-0.0127325645,0.010692504,0.009980102,-0.010349256,-0.008535869,-0.038676944,-0.002265114,0.01876855,0.0062399926,-0.013587446,-0.015646935,-0.022809813,0.015750557,0.0034940073,-0.009189984,-0.014805006,-0.0173567,-0.010316874,0.01463662,-0.018496543,0.036008675,0.0049997657,-0.0071887826,-0.015465597,-0.03240781,-0.006877916,-0.005670071,0.031371586,0.01356154,-0.0027994155,0.0074478374,0.0042355526,0.00882083,-0.019636385,-0.0070722075,0.017019928,0.024001466,-0.026708594,-0.008704255,-0.016255716,0.009669236,0.019999063,-0.025788948,-0.01955867,-0.00653143,-0.0009495993,-0.0087690195,0.00045334664,0.022019694,0.0077198455,-0.025607608,-0.015051108,-0.017667565,-0.0036138203,-0.007007444,0.012615989,-0.018949889,-0.0040121176,0.020154497,-0.0154008325,-0.0028220827,0.011819394,-0.019532764,-0.015698746,0.02036174,-0.015789416,-0.013755832,0.012518844,0.0054919706,-0.016113235,0.025011782,0.013768785,-0.016501818,-0.008529393,-0.029350957,-0.025827805,-0.026941743,0.0004986813,0.0059647462,-0.0077522276,-0.017525086,0.023004103,0.0044687027,0.010329827,-0.01057593,0.0025500748,0.022628473,-0.020504221,-0.0021113001,0.0010499832,-0.009112268,-0.0023444497,0.021669969,-0.00792709,-0.0005602069,-0.012557702,0.00701392,-0.0024270236,0.016812684,-0.015724652,-0.03696718,-0.0111588035,-0.010491736,-0.011191186,0.017045833,-0.019468,-0.0030617088,-0.004254982,0.011780536,-0.017978432,0.008419295,0.012039592,-0.022265796,-0.0018765313,-0.023004103,-0.01622981,-0.018056149,0.0024594055,0.016035518,-0.0010847937,0.008114905,-0.015374927,0.0032203803,-0.011715773,0.01297219,-0.008846736,-0.013846502,0.01257713,0.014364612,0.0051811044,0.008127858,0.0056053074,0.018872174,-0.0015964278,0.001805291,-0.020258117,-0.0029856113,0.013192387,0.0052393917,-0.034791116,-0.036630407,0.021644063,0.024713868,0.008885594,0.02045241,-0.0075773653,0.0006431855,-0.01665725,0.0051519605,0.010407544,-0.018354062,0.017188314,-0.0009552661,-0.0014369469,-0.0090928385,0.011527957,-0.0036041057,0.004523752,0.037044898,-0.008192621,-0.00746079,-0.031941507,-0.009151125,-0.011715773,-0.014623667,0.0011689867,0.016968116,0.007914137,0.029532295,-0.007655082,-0.03453206,-0.02181245,-0.003743348,-0.00090750284,-0.014299848,0.02279686,-0.028832845,-0.0007071398,-0.00874959,0.025063593,-0.022965245,-0.021229574,-0.011404906,-0.008535869,-0.029946784,0.030205838,-0.011942445,-0.014545951,-0.0065281917,0.0043618423,-0.00078971364,0.01613914,0.006622099,0.019455047,-0.04634498,-0.013522683,-0.006910298,-0.021890165,-0.04442797,-0.003438958,0.029376863,-0.0077004163,0.0006322566,0.2153267,0.0012005591,0.012071974,0.056681283,0.0055632107,-0.00994772,0.010569453,-0.0025112166,-0.013522683,0.014507093,0.022874575,-0.0018425302,-0.014856817,0.0020206308,0.010051343,-0.008522917,-0.02054308,-0.0025937904,0.002877132,-0.026760405,-0.0096627595,-0.0071952585,0.028884657,-0.0013592304,0.025491033,-0.005585878,-0.017227173,-0.01336725,0.0147791,0.024713868,0.005514638,-0.019765913,0.00860711,-0.020530127,-0.0052652974,0.0030827571,-0.016333431,0.007888231,0.008976263,0.018185677,0.01243465,-0.014416423,0.021501584,-0.01787481,-0.018651975,0.009513803,-0.0087690195,0.0076874634,0.0045723245,0.016488865,-0.01721422,-0.00912522,-0.0074089793,0.0013333248,-0.0075385068,-0.004967384,-0.0033385742,-0.008943882,-0.0032754294,-0.023574024,0.013393155,0.04274411,-0.018949889,0.029480483,-0.047795687,0.019740008,-0.004034785,-0.0073765973,0.0021258718,-0.009060456,0.011696343,-0.0073118336,-0.019999063,-0.010504689,0.0033223832,-0.009882957,-0.02209741,0.022887528,0.024571387,0.027900247,-0.017019928,-0.015815321,-0.035620093,-0.010018961,-0.016255716,-0.038832378,0.015944848,0.005287965,0.01923485,-0.025763042,-0.00035782,0.0027832245,-0.0031086626,-0.012836186,0.026086861,0.02218808,-0.007823467,-0.0060295104,0.0024108326,0.007065731,-0.013393155,-0.013049907,0.00081683346,0.01819863,0.005566449,0.010951559,0.015569218,0.009526756,0.015595124,-0.019338472,-0.005702453,-0.02186426,0.010854414,0.0027670336,0.022252843,0.0033644796,0.009779335,-0.010601835,0.022265796,-0.02317249,0.02585371,0.0073830737,0.0154008325,0.0096627595,-0.036423165,-0.01871674,-0.01146967,0.027200798,-0.014040793,-0.041163873,0.004481655,-0.01885922,0.016722014,-0.011981304,-0.011955398,-0.026255246,0.0042938404,-0.018470638,-0.009423134,0.00350696,-0.00019924989,0.0045723245,0.031552926,-0.021385008,0.017473275,-0.0023557835,0.022071505,-0.011223568,-0.007816991,-0.007609747,-0.032666862,-0.012557702,-0.014558903,-0.011074611,0.022110363,-0.020348787,-0.053054508,-0.033703085,0.0015098063,-0.0022424466,-0.025516938,0.0072729755,0.023366781,0.025698278,0.0009123601,-0.001318753,-0.16320479,0.014558903,0.0159578,-0.0021388247,0.010886796,-0.0067613414,0.0030746616,-0.0046370886,0.0035976293,-0.0033677178,0.024143947,0.017382605,-0.024079183,-0.027952058,0.0033580032,-0.010439925,0.0059453174,0.010381638,0.04541238,0.0012823234,0.00585141,-0.021229574,0.030853476,-0.0082444325,0.018069101,0.025529891,-0.002367117,0.013626304,0.027615286,-0.03678584,-0.018082054,-0.014701384,0.021786544,0.021877212,0.020504221,-0.010899749,0.0051972955,-0.016475912,-0.0023768316,0.013082288,0.0057413112,-0.0015106157,0.018729692,-0.0037757298,-0.015867133,0.04264049,-0.00019479738,0.016916307,0.011217091,-0.005462827,0.014843864,0.0079206135,0.0031977128,0.015841227,0.010647169,0.021449773,0.007065731,0.042614583,-0.0036850604,-0.0071564005,-0.0074672666,-0.009060456,-0.010841461,-0.011456717,-0.008030712,-0.0295582,-0.0075838417,0.0078040385,-0.028651508,-0.002891704,0.014416423,0.001769671,-0.000031218176,0.011897111,-0.0019510096,0.014610714,0.0034324815,0.016605439,0.016307525,0.0056895004,0.009520279,0.01655363,-0.02758938,0.0147791,0.0042841258,0.006233516,0.01585418,-0.0150770135,0.0049090963,-0.006981538,0.022641426,0.00043189363,-0.010543548,-0.024856348,-0.000102559556,0.040516235,-0.007972424,0.0055729253,0.004653279,-0.005122817,0.016320478,0.0022926386,-0.045308758,0.042485055,0.037744347,0.013950123,-0.016177999,0.0072146878,0.023107726,-0.017006975,-0.014183274,0.0024464526,0.02927324,0.036190014,0.0051163407,0.032692768,0.012013686,-0.023910796,0.020102685,-0.019584574,0.023586977,-0.006023034,-0.021307291,0.021087095,-0.028858751,-0.005145484,-0.12227406,-0.006259422,-0.015724652,0.016100282,-0.018431779,-0.0027945582,-0.011774059,0.020918708,0.012881521,0.022887528,0.0021873976,-0.040930726,-0.019597527,-0.023120679,0.0015899515,-0.025011782,0.02223989,-0.014714336,-0.0078428965,0.017848905,-0.0055599725,-0.020465363,0.002603505,-0.0047601396,-0.0057154056,0.005145484,-0.020037921,-0.0020530126,0.002347688,0.015051108,0.013587446,-0.006382473,-0.011217091,-0.02055603,-0.013315438,0.007829944,-0.011670438,-0.0048864293,0.042329624,-0.032666862,-0.001839292,0.01093213,-0.008827306,-0.01923485,0.018677881,-0.017162409,0.028547885,0.042329624,0.0038566845,-0.002177683,-0.016165046,0.0046759467,-0.013716974,-0.0039052574,0.028470168,-0.010174394,0.01876855,0.024972923,0.0011017942,-0.005893506,-0.021009378,-0.002279686,-0.024519576,0.033236783,-0.000744379,0.011741678,-0.01880741,-0.00980524,0.004879953,-0.034402534,-0.008095476,0.008477582,-0.045619626,0.005326823,-0.008859688,0.004002403,-0.019519811,-0.018315203,0.022356465,-0.014040793,-0.0053656814,-0.012849139,0.023846032,-0.029195523,0.016307525,0.0072405934,0.011197662,-0.005909697,-0.020258117,-0.00008743114,-0.00678077,0.025957333,0.02252485,-0.015089966,-0.0003908091,0.014908628,-0.012862092,-0.0070851604,0.03222647,-0.014040793,-0.010750792,-0.022719143,-0.03499836,0.001463662,-0.0034130525,-0.0058740773,0.0069038216,-0.01792662,0.008341578,0.012259788,-0.0069880146,0.00093502743,-0.020374693,0.0034324815,-0.008205574,-0.019506859,-0.038625132,-0.014377565,0.032122847,-0.017110597,0.01463662,-0.0060554156,0.010420497,-0.0080436645,0.025413318,0.02059489,-0.015167683,0.009351893,-0.013639257,0.018431779,-0.0032624768,0.0055373055,0.0020675845,-0.031267963,0.00008899964,-0.003181522,0.020206308,-0.010783173,-0.007629176,0.027356232,0.0069038216,-0.015944848,-0.021372056,-0.021786544,0.008723685,-0.0128556155,-0.039480016,-0.00994772,-0.018690834,-0.011184709,0.034117572,0.003963545,0.05282136,0.009228842,-0.0011584626,0.0019218659,0.003181522,-0.021333197,0.03743348,0.01222093,-0.009701618,-0.029247334,0.0025468366,0.021877212,0.004559372,-0.007946519,0.03626773,0.017486228,-0.012622465,-0.012680753,0.008380436,-0.03152702,0.00989591,-0.014014888,0.02603505,-0.013354297,0.029661823,-0.0069167744,-0.033962138,-0.0075967945,-0.013406107,0.009630377,-0.017525086,0.013768785,-0.0450497,0.019157134,-0.001166558,0.003200951,-0.010653646,-0.0048993817,0.009850575,0.0015680937,-0.028651508,0.0074154558,-0.0071045896,0.013328391,0.010679551,0.021164812,-0.011223568,-0.0022537804,0.0026617923,0.037278045,0.02617753,-0.00418698,-0.013600399,-0.016812684,-0.021423867,-0.0031021864,-0.010517642,0.0057056914,0.008147286,0.025711231,0.01703288,-0.03906553,0.009300082,0.011670438,0.0063371384,0.027278515,-0.012395793,-0.0028560837,-0.021307291,0.005310632,0.009371323,0.020957567,0.0005541353,-0.0035943913,0.01975296,0.030516705,0.0070592547,-0.013937171,0.017887764,-0.0049285255,0.008399866,-0.02467501,-0.029195523,0.004611183,-0.0012232263,0.010303921,-0.011106992,0.023120679,-0.021760639,0.043495372,0.0017583373,0.0053041554,0.008186145,0.034221195,0.013224769,0.019455047,0.0034260054,-0.011579769,-0.012162643,0.02293934,-0.007130495,0.04344356,-0.019247802,-0.027693003,0.004624136,-0.010783173,0.0024934064,-0.0190017,0.011204138,0.016994022,-0.0025581704,0.035309225,0.003659155,-0.018120913,0.009552661,0.02087985,0.02660497,-0.012467032,-0.03251143,0.014442328,0.010452878,-0.018885126,0.006233516,0.007473743,-0.014520045,-0.0014369469,-0.0018603402,-0.0070722075,0.030205838,0.011534434,0.029610012,-0.024364144,-0.024972923,0.0071045896,0.010524118,-0.024843395,0.0049609076,-0.018936936]},{\"id\":\"5cd4bea6-b234-4541-9896-89f32a81d7ab\",\"text\":\"I returned the glasses so I have nothing to post!\",\"vector\":[-0.027893426,-0.0065191407,-0.003223625,-0.011136456,-0.016377911,0.0062838634,0.0034670718,0.00028020868,0.020508334,-0.023697648,0.020168489,0.01445648,0.022011494,-0.033383228,0.01569822,-0.010175741,0.01214292,-0.0068426467,0.009718258,-0.01704453,-0.0011077637,0.012378197,0.004153297,0.0022155275,0.011691973,-0.010822753,0.005172832,-0.011855359,-0.01042409,-0.018717613,0.023945997,-0.02276961,-0.015018531,-0.030507617,-0.0039997133,0.016430195,-0.006002838,0.007130208,0.00001675993,-0.022063777,-0.010986141,0.00075974944,-0.0023102919,-0.0010301549,-0.008881716,0.03722609,-0.00045135652,0.00094437675,-0.025592936,0.0016926891,0.01609035,-0.0138944285,-0.05698938,-0.009286916,0.0057871668,0.01111685,0.01759351,0.020665186,-0.0031141557,-0.004277471,0.005656457,-0.023279376,-0.021750074,0.0035553006,-0.0014672151,-0.01610342,-0.01678311,-0.009522193,-0.026900033,0.019148953,0.00860069,0.009698651,0.017502014,-0.030847462,0.011339056,-0.025802072,0.0060289796,0.0022253306,-0.0056401184,-0.010535193,0.031161165,-0.016064208,-0.022900319,0.026377194,0.020181559,0.024834821,0.031997707,0.031161165,-0.0126330815,-0.03204999,-0.008463445,0.028154844,-0.010450231,0.004793774,-0.020103134,0.04705545,-0.015515228,0.03667711,-0.014142777,-0.026651684,0.013816003,-0.015057744,-0.029252805,-0.016168775,0.0036108522,-0.0021125937,-0.022285985,-0.014822467,0.0077706845,-0.026926175,-0.008992819,0.016874608,0.027422871,-0.017815717,-0.010254167,-0.007744543,0.02032534,0.0036043169,-0.006966821,-0.034847174,0.010378341,-0.024390409,0.00035209893,-0.01649555,0.041644074,0.0073458785,-0.017789574,0.0042251875,-0.011129921,-0.007241311,0.0020815502,0.033906065,0.013234345,0.01703146,0.012933713,0.0041108164,-0.019135883,0.02316174,-0.010594011,-0.008816361,0.0055812993,0.037827354,-0.0010383242,-0.0015293021,-0.0019050922,0.009169278,0.01990707,-0.0039049487,-0.00056613586,-0.0055388184,-0.014521834,-0.00180706,0.024900176,-0.016390981,-0.0005890101,0.007136743,0.012397804,0.00090271304,0.005548622,-0.023893712,-0.0041010133,0.0060191764,0.017462801,-0.021580152,0.030716753,0.025187736,0.01581586,0.0054636607,-0.033357088,-0.00743084,-0.0024115918,0.0030765769,-0.016691614,0.0032563026,-0.012672294,0.028285554,0.008077852,0.013985925,-0.00607146,-0.042611323,-0.03312181,0.005019248,0.011835753,-0.009835896,0.012175597,0.0064668567,0.00695375,-0.012384733,0.008868645,-0.012162527,-0.012848752,0.021449443,0.005375432,-0.019475728,-0.6328435,-0.024338124,0.022599688,0.003362504,0.018482335,0.021527868,0.008352342,-0.0021469048,-0.017240593,0.00047994926,-0.0067184726,0.0076726526,-0.009620225,0.00071114185,-0.003689278,-0.005800238,0.0093522705,0.0024181274,-0.0028282285,-0.002571711,-0.038088772,0.0059178765,0.0027661417,0.017907213,0.015515228,-0.01568515,0.006725008,-0.0014206498,-0.04308188,0.02059983,-0.02346237,0.0037088844,-0.029984778,0.021475585,0.05359093,-0.0038199876,-0.0038592005,-0.0069210725,-0.0016412222,0.011842288,-0.03257283,0.017462801,-0.00023119258,-0.02373686,-0.010306451,-0.0057414183,0.0023151934,0.012541585,0.012155991,0.032102272,-0.0035095522,0.008117065,-0.009594084,0.015227666,0.0048754676,0.0057544895,0.047787424,0.009358807,0.011652759,-0.010966534,-0.026900033,0.0017972568,-0.025514511,0.0057283477,0.020024708,-0.0028903156,-0.012874894,0.008790219,0.020429907,-0.02084818,0.029252805,-0.0055812993,-0.02087432,0.037278373,0.03984028,0.016377911,0.008626833,0.002258008,0.004012784,-0.0075484784,-0.0035781749,-0.0049146805,-0.04214077,0.0037121521,0.015384518,-0.011286773,-0.006711937,-0.01247623,0.0008749373,0.022482049,0.020704398,0.032285266,-0.0032710072,0.0027792125,0.0038297907,0.027762715,-0.0128422165,0.03450733,0.03385378,0.011182205,-0.008123601,-0.0057316152,0.019201238,0.016809253,0.0037056168,0.025671363,-0.007744543,-0.021998422,0.010345664,-0.025017815,-0.0011649491,0.00045339885,-0.002107692,0.0009721525,-0.014887822,-0.025396872,0.016874608,0.003777507,0.005048658,0.00095417997,0.004705545,0.007953678,0.018586902,0.014770183,0.0037938457,0.02524002,0.0040487293,0.013247416,-0.023985209,-0.011835753,-0.0046695997,0.0013634644,-0.0022367677,-0.013985925,-0.003676207,-0.011103779,-0.008260846,-0.015436802,-0.0010554799,-0.031056598,-0.027632006,0.009254239,-0.030246198,-0.00092150253,-0.0011682169,-0.03693853,-0.0059440183,0.018443123,0.0059472863,0.045852922,0.013933642,-0.0026239948,-0.021253379,0.0004668783,0.008914393,-0.008770613,-0.024246627,-0.016482478,-0.019684864,0.006378628,0.013018674,0.022978745,-0.009705187,-0.036075845,-0.01139134,-0.041931633,0.011090708,0.014626402,-0.023200952,-0.016443266,0.02044298,0.009162742,-0.0069994982,-0.020691328,-0.0338015,-0.0036239233,0.012051424,-0.027344445,0.0077314717,0.0017368036,-0.010665902,0.021567082,-0.021737004,0.0124174105,0.008090924,0.02318788,-0.009398019,0.031893138,-0.025671363,-0.011803076,0.0109338565,-0.01581586,-0.0033559685,0.00313703,0.0065256758,-0.0016534763,0.023083312,0.029017527,0.020142347,0.013933642,0.0131624555,-0.0116789015,0.024442691,0.0039605005,0.006551818,-0.03220684,0.0029801785,-0.001304645,-0.011790005,0.020377625,0.0011437088,-0.015659008,-0.014221203,-0.008476516,-0.019318877,0.0073850914,-0.0018250325,0.024102848,0.0016109956,0.008319665,-0.017122956,-0.0087183295,-0.0028412996,-0.032363694,-0.012763791,-0.00027122238,0.0036827426,0.008267381,0.011639688,-0.022965673,-0.012182133,0.0006523225,0.019384231,0.0037186877,0.00053795165,-0.0062087053,0.022939531,0.0036435297,0.038846888,-0.009306522,-0.005607441,0.028285554,-0.0040716035,0.034115203,0.001769481,0.019998567,0.019318877,-0.02729216,0.00019249029,0.02972336,0.0006008556,0.014168919,-0.02988021,-0.007607298,0.021371016,0.0010701847,-0.0012686999,0.012450088,0.019684864,0.060074124,-0.0050029093,0.014665615,0.00079201837,0.004404913,0.007515801,0.01418199,0.0032285268,-0.011214882,-0.008594155,-0.00730013,-0.0025112578,-0.024194343,0.020691328,0.0027661417,0.03916059,-0.024089776,0.037356798,-0.011933785,0.014234274,0.005718544,-0.010541728,-0.026847748,-0.012267094,0.004388574,0.017828787,-0.027161451,-0.0056793313,0.006306737,-0.026337981,0.025671363,-0.00926731,0.0039180196,0.002006392,0.0041010133,-0.026926175,-0.0050878706,0.03761822,-0.015031602,0.0046990095,0.026560187,0.028024135,0.010646296,0.0026288964,0.019188168,-0.0050225155,0.023240164,0.01963258,-0.006061657,-0.012254023,-0.009698651,0.0073720203,0.037487507,0.0058394508,0.006613905,0.008646439,-0.006613905,-0.022534331,-0.010613618,0.011920714,-0.0026060224,-0.022678113,-0.014077422,-0.010705115,-0.008633368,0.10948235,0.004565032,-0.011502444,0.020155419,-0.0056237797,0.018037923,-0.010241096,-0.006966821,-0.0038951456,-0.019122813,-0.00028878648,0.0134761585,-0.018573832,0.01924045,0.021305662,-0.008633368,-0.008228168,-0.022965673,0.0072217043,-0.022678113,-0.031265732,0.011757327,-0.028311696,0.0149531765,-0.0059538214,-0.0074504465,-0.0046728677,-0.0048133805,0.007528872,-0.002220429,-0.02086125,0.020495262,-0.02073054,0.02386757,-0.0138944285,0.00082224497,0.0046630646,-0.00996007,0.0075615495,-0.017462801,0.010548264,0.005885199,0.027579723,-0.00784911,-0.010064638,0.01364608,0.0018920213,0.048623964,0.018626116,-0.016469408,0.019044386,-0.0094568385,0.004783971,-0.0058917343,0.013802932,0.023344731,0.00086186634,-0.03160558,-0.0009484614,0.023514654,-0.021933068,-0.016874608,-0.01733209,-0.017136026,-0.025423015,-0.027187593,-0.0076399753,-0.017619653,-0.021567082,-0.0265994,0.023436228,0.030089347,-0.031684004,-0.00702564,0.013972854,0.025697503,0.025710575,-0.012214811,-0.0028265947,0.016482478,-0.025749788,-0.03670325,0.018090207,-0.011469766,0.015881214,0.003249767,0.0062511857,0.005110745,-0.031135023,-0.00068704225,0.03139644,0.029749501,0.017214453,-0.023200952,0.008535336,-0.02033841,-0.0046630646,0.017005317,-0.010966534,0.006362289,0.0018593438,-0.007842575,0.0044964096,-0.022821894,-0.008522265,0.035631433,0.020586759,0.010378341,-0.01541066,-0.012352056,0.023423158,-0.0016763504,-0.0056924024,-0.009130064,0.015266879,-0.002297221,-0.010110387,0.009391484,0.014391125,-0.011476302,-0.00825431,-0.019005174,0.03531773,-0.0046892064,-0.018965961,0.028468547,0.0008071317,-0.04216691,-0.0024573402,0.010868502,-0.008332736,0.03233755,-0.042062342,-0.00709753,-0.020129276,-0.013789861,0.0038167199,0.012267094,-0.0028200592,-0.022625828,-0.01214292,-0.010247631,-0.009659438,0.0015734166,-0.025135454,-0.033513937,0.0018544422,-0.022730397,-0.021854643,0.024364267,0.008077852,0.009319593,-0.02373686,-0.008666045,-0.012489301,-0.046035916,-0.03029848,-0.027579723,0.01760658,0.025566794,0.025148524,-0.014744041,0.014364983,0.014900893,-0.008476516,-0.016299484,-0.0053002737,-0.005068264,-0.020756682,0.01773729,0.0004147987,0.005447322,0.024991672,0.032938816,-0.018521547,-0.002282516,-0.00138062,-0.00906471,-0.012829145,0.005881931,-0.009090852,-0.0012450088,0.017423587,0.03372307,0.008038639,0.007443911,0.015972711,0.003878807,0.002697519,-0.01869147,-0.000057185443,-0.0113651985,0.011247559,-0.015332234,0.018443123,-0.008960142,0.0066302437,-0.0078752525,-0.03244212,-0.0015840367,0.011247559,0.020220773,-0.028311696,-0.014338842,0.003287346,-0.011972998,-0.0049375547,-0.0099862125,-0.011371734,-0.027135309,0.010554799,-0.031684004,-0.040964384,-0.0038363263,-0.0075354073,0.020181559,-0.008411162,-0.002184484,0.0036173877,-0.052074697,-0.015083886,-0.010953463,0.029514223,0.000891276,-0.0038657358,0.01663933,-0.02823327,-0.012410875,0.023697648,0.011502444,-0.014221203,0.002686082,0.03615427,-0.03257283,0.01282261,0.004960429,0.006113941,0.007626904,-0.014116635,0.024220485,0.014495693,0.007626904,0.013319307,-0.008751007,-0.026089633,0.010247631,-0.04747372,-0.01692689,-0.0071563497,-0.00009461127,0.0013234345,0.0024311983,-0.019802501,0.007953678,-0.0036598684,-0.021750074,0.008273916,-0.04174864,0.021174952,0.007064853,-0.009404555,0.016743898,0.0008206111,-0.018769896,0.01802485,-0.038088772,-0.014155848,-0.012495836,-0.021737004,0.014247345,-0.026926175,-0.007175956,-0.024730254,0.0062805954,0.030429192,-0.011508979,-0.021985352,-0.011208347,0.0055747638,0.001154329,0.013182062,0.005983231,-0.026847748,-0.02100503,-0.03027234,0.011783469,-0.022521261,-0.008489587,0.0075354073,-0.020063922,0.002712224,-0.01609035,0.015998853,0.0051630284,-0.0046990095,-0.0126330815,0.022821894,0.0042251875,0.0032530348,0.0084046265,-0.020665186,-0.012463159,-0.031710144,-0.00361412,0.0104110185,-0.018586902,0.021122668,-0.023397015,-0.011221418,-0.019750219,0.0038853423,-0.0007630172,0.0028135239,-0.014391125,0.027632006,0.00825431,0.001117567,-0.014351912,-0.03395835,0.001642856,0.00087902194,0.02797185,0.015449873,-0.012482765,-0.013286629,-0.002408324,-0.015842002,0.031448726,-0.031866997,0.007051782,0.006901466,0.031448726,0.015345305,-0.045225516,-0.013286629,-0.009646367,0.0012237685,0.012979462,-0.008469981,0.024311982,0.0058394508,-0.012123314,0.020625973,0.02946194,-0.01186843,0.016704684,0.0027056884,-0.0062087053,-0.01363301,-0.0017956229,0.012162527,0.022168346,0.013593797,-0.008071316,0.006336147,-0.007894859,-0.004757829,-0.010600547,-0.023070242,-0.01541066,0.014443409,-0.034925602,-0.0073720203,0.031814713,0.012776862,-0.0013021942,0.005346022,-0.0043232194,0.003944162,0.032808106,0.0043460936,-0.014691757,-0.031945422,-0.005332951,0.014482622,-0.010312987,-0.01302521,-0.0010007452,0.008032104,0.020299198,0.0018119616,-0.022299055,0.016194917,-0.016966105,0.017240593,-0.017175239,-0.019214308,0.0059538214,0.017580438,0.00081121636,-0.018351626,0.028285554,-0.006538747,0.017162168,-0.015632866,-0.0066661886,-0.018260129,0.0023919854,0.0039997133,-0.017685007,-0.028965244,0.026664754,0.018704541,-0.020246914,0.0063230763,0.011495908,0.0016828859,0.0065975664,0.021188023,-0.009894716,-0.00743084,0.0026485028,-0.0050519253,-0.032625113,-0.0024932853,-0.008326201,0.016129563,-0.029827926,0.016717756,0.010888108,-0.0063949665,0.02358001,-0.01893982,0.022299055,0.011600476,-0.0019099938,0.012554656,-0.05144729,0.0037121521,0.031474866,-0.006479928,-0.03301724,0.0070844595,0.009038568,-0.007836039,0.006711937,0.23172195,-0.002333166,-0.00318768,0.00777722,0.005094406,0.017475871,0.016469408,0.019567225,0.012502371,0.037304517,0.002372379,-0.0035781749,-0.026364123,-0.006136815,0.006035515,-0.019724077,-0.008770613,-0.00045544122,-0.017959496,-0.022743467,0.021893855,0.0067380792,-0.011195276,0.0011477935,0.05142115,0.0058133085,0.006499534,-0.01569822,0.021723934,0.028729966,-0.00860069,-0.033540078,0.020717468,-0.009195419,0.0027873819,0.0045094807,-0.0041925097,0.006764221,0.02388064,0.012606939,-0.0139989965,-0.0002912373,0.015449873,-0.009541799,0.009378413,0.014626402,-0.016966105,-0.010182276,-0.005960357,0.015188454,-0.019279664,-0.01649555,0.0132604875,0.00777722,-0.002094621,0.011103779,0.013920571,0.004584639,-0.006349218,-0.020469122,0.008162813,0.03476875,0.009398019,-0.013149384,-0.023645364,0.0050976737,-0.012829145,-0.006901466,0.015632866,-0.014691757,0.022560474,-0.0020292662,-0.016312556,0.032102272,-0.00298508,-0.014783254,-0.029644934,0.0042251875,0.042480614,-0.0002397704,-0.0071955626,-0.03123959,0.0035193556,-0.039761856,-0.009999284,-0.04321259,0.027422871,0.016665472,0.02946194,0.0051042093,0.0055780313,0.0062185084,-0.024756394,0.0017841858,0.019135883,-0.01922738,-0.010332593,0.009097387,-0.0089274645,0.019318877,-0.01610342,0.0036925457,0.018338555,0.01582893,0.019148953,-0.013267023,-0.013802932,0.013286629,-0.017214453,-0.00805171,-0.00048240006,-0.03014163,-0.009639832,0.011221418,-0.010463302,0.02577593,-0.0071236724,-0.014691757,0.0068818596,-0.011430553,0.0123128425,0.024860963,0.01883525,-0.002774311,0.01623413,-0.008770613,0.0066988664,0.001681252,0.027187593,-0.019018244,0.016939962,-0.015110028,0.0038657358,-0.016038066,-0.025279233,0.008234704,0.022821894,0.006185831,0.007862181,0.026664754,-0.016887678,0.023658434,0.029671075,-0.021501727,0.000061168,-0.010123457,0.023945997,-0.026756251,-0.010214954,0.014168919,-0.024612615,-0.021893855,-0.016194917,-0.01580279,0.019763289,0.008646439,-0.029827926,-0.013332377,-0.014129706,0.02359308,-0.011247559,-0.0077249366,0.040938243,0.0033314605,-0.032259125,-0.017789574,-0.1639621,0.022011494,-0.0052675963,-0.0077314717,0.011325985,-0.009620225,0.03476875,-0.0114632305,-0.010888108,-0.0019590098,0.04054611,0.022272913,-0.007626904,-0.022965673,-0.02920052,-0.017567368,-0.01950187,0.010790076,0.015319163,0.0226389,0.03233755,-0.019475728,0.0218285,-0.016874608,-0.00531988,0.011273702,0.009371877,0.03165786,-0.008156278,-0.0072347755,-0.011182205,-0.0038493972,0.050297048,0.022874177,0.033330943,0.012600404,-0.004421252,0.0059080734,0.022403622,0.0037088844,0.008973213,0.03040305,0.010064638,0.008208562,-0.022795752,0.031971563,0.0270046,0.015214596,0.0039082165,-0.021514798,0.0063655567,-0.033775356,0.00048485087,0.002560274,-0.0015194989,0.02237748,-0.007613833,0.020495262,-0.013881357,-0.014142777,0.008032104,-0.017698077,-0.009718258,-0.032494403,0.016482478,0.001017084,-0.0049244836,-0.016273344,-0.021619365,0.0074700527,-0.025122382,-0.013659151,0.029357372,0.007175956,-0.0000669376,0.021723934,-0.01043716,0.030037062,0.009652902,-0.004130423,-0.010633225,0.02810256,0.0028886818,0.009175813,-0.010208419,0.013489229,-0.01513617,-0.0015627964,-0.0021305662,0.018573832,0.010659367,-0.017423587,0.0006637596,-0.002432832,0.007117137,0.020965816,-0.012227882,0.0015342038,-0.006816505,-0.013881357,-0.012927177,0.014430338,-0.0071824915,0.01377679,0.04462425,-0.021789288,-0.02126645,0.019148953,0.021031171,-0.0048852707,-0.008469981,-0.002449171,0.028756108,0.008476516,0.037722785,0.03476875,-0.008888252,-0.011267166,-0.01364608,-0.009731328,0.0132604875,-0.010358734,-0.00851573,0.012528514,-0.015240737,-0.009391484,-0.10603161,-0.044127554,0.0018609777,-0.0022678112,-0.0048003094,0.011195276,-0.0007381007,0.012227882,-0.004584639,0.02726602,0.0020243647,-0.0052970056,-0.015306092,0.004130423,0.012561191,-0.028756108,0.0009762372,-0.01882218,-0.016194917,0.008698722,-0.0059799636,-0.0035945135,-0.011489373,0.0050780675,0.011247559,-0.027815,0.0017400713,0.04078139,0.026285697,0.009398019,-0.009424161,-0.013077494,0.01377679,-0.025148524,-0.007940607,-0.008685652,0.009260774,0.008568013,0.043839995,-0.020246914,-0.002434466,0.009875109,0.0018560761,-0.022482049,-0.0032415977,0.01111685,-0.010875037,0.024978602,0.0031942155,0.003587978,-0.051734854,-0.006401502,-0.0121037075,-0.015057744,0.028285554,-0.014704828,0.014796325,0.021985352,-0.019318877,0.008790219,0.010025425,0.030220056,0.0008512462,0.009182348,-0.0010718186,-0.016286414,-0.0037677037,-0.011901108,-0.011325985,-0.02469104,0.015188454,0.030507617,-0.019802501,-0.0021322002,0.009698651,-0.008868645,-0.018168632,-0.003940894,0.0027808463,-0.01363301,-0.010992676,-0.0123128425,0.03764436,-0.005607441,0.016286414,0.0027399997,0.014757112,0.0234493,-0.011437088,-0.0011371734,-0.012796468,0.044205982,-0.015397589,-0.034847174,-0.016547833,0.028442405,-0.012293236,0.0075876913,0.012829145,0.0033559685,-0.016521692,-0.0013544781,-0.037827354,0.027056884,-0.010116922,-0.017750362,-0.019554153,-0.012600404,0.003976839,-0.017854929,-0.026651684,-0.04023241,-0.015645938,0.0046238517,-0.010574405,0.0025553724,-0.019488798,-0.022730397,0.025017815,-0.020076992,0.01690075,-0.00955487,-0.0070321755,0.0023495047,0.024429621,-0.018273199,-0.0035814426,0.01194032,0.0015170481,0.016024996,-0.031318016,-0.030507617,0.009169278,-0.022416694,0.014574119,0.0045617647,0.014155848,0.0004227638,-0.006123744,0.015567511,-0.00388861,-0.01233245,-0.026534045,-0.043291014,0.018103277,-0.002246571,-0.021070385,0.012613474,-0.020639043,-0.016456336,0.008907858,0.008992819,-0.0044081807,0.020822037,-0.005872128,-0.012600404,0.008371949,-0.022312125,0.024704112,-0.023423158,-0.0072543817,-0.023723789,0.0091431355,0.008835968,-0.013554584,-0.023789145,0.00851573,0.021318734,-0.015580582,0.0031288606,0.010685508,-0.029488081,-0.010267238,0.00361412,0.033069525,0.030769035,0.053460218,-0.00047259685,-0.005819844,-0.0025733449,0.0056629926,-0.005885199,-0.016273344,-0.017619653,-0.005770828,0.040415403,0.020913534,0.026520975,0.0058165765,-0.017645793,-0.013659151,0.012704971,-0.035971276,-0.0022547403,-0.012188668,-0.0017302681,0.014443409,0.016011924,-0.0029131898,0.012397804,-0.0041500293,-0.0009656171,0.005172832,0.016691614,-0.002962206,-0.0035912457,-0.0121037075,0.06608677,-0.009600619,-0.029017527,-0.0047872383,0.020233843,0.004303613,-0.016848465,0.008835968,0.025514511,-0.007888324,0.018181704,0.0016763504,-0.024089776,-0.02605042,0.01609035,0.015789717,0.0033723072,-0.019135883,-0.0006037149,0.022965673,-0.009443767,0.013698365,-0.018273199,-0.0077706845,-0.0031860461,0.011600476,0.0011559629,-0.01922738,-0.0006241383,0.0069341436,0.011718114,-0.045800637,0.02836398,-0.0138944285,0.0452778,-0.010286844,-0.009790148,0.0031435655,-0.0011739355,-0.0022384017,0.007992891,0.016521692,0.0057054735,0.0040487293,0.0069733565,-0.024625685,0.01131945,-0.020220773,0.002472045,-0.014417267,0.0002634615,0.013077494,-0.026076563,0.010927321,0.032808106,-0.0016877875,0.037043095,0.009992748,-0.0027955512,-0.030089347,-0.0021371017,-0.011012282,-0.022743467,-0.043578576,0.023671506,0.016534762,-0.014547977,-0.0022939532,0.036886245,0.0010015622,0.005483267,0.021331804,-0.0017220988,0.004604245,-0.0007515801,0.019998567,-0.019985495,-0.012901036,0.011345591,-0.0061433506,-0.009077781,0.0046107806,-0.05866246]},{\"id\":\"3f711590-4653-4c82-92c3-c70915f7317f\",\"text\":\"Happy to be involved we have included our G-fuel, in our other sites . Stryker grib. Withdoctor5459. \\nWe take g-fuel seriously thank you\",\"vector\":[0.004832397,-0.019384896,-0.021196181,-0.037387133,0.0052644787,0.018154329,-0.00636715,-0.0039613214,0.015776152,-0.010404518,0.011842485,-0.002551008,-0.0064017167,-0.006484676,0.002284846,-0.012685907,0.029423008,-0.0029882742,-0.0011899519,-0.009160124,0.0055237273,0.0052264556,0.0029779044,-0.0051746056,-0.0076806773,-0.0010300818,-0.011641999,-0.022343788,-0.0048116576,0.016633403,-0.004818571,-0.016094165,-0.020739902,-0.0049879467,-0.01717264,-0.010432171,0.00073151366,0.0018544929,0.014130787,-0.0054545943,0.020781383,0.013190578,0.012312589,-0.008869765,-0.032105368,-0.013674509,-0.0006632448,-0.012215802,0.00008890073,0.02050485,0.00927765,-0.0011441513,0.0076806773,-0.03683407,0.0024645918,0.0063498667,-0.014310533,0.009733927,0.014338186,-0.012623687,-0.018665912,-0.010653396,-0.016177123,-0.0036225696,-0.008620886,-0.0020860885,-0.018237287,0.0023643489,-0.00639826,0.0054753344,0.02864872,-0.00247669,0.017891623,0.007176006,0.0074317986,-0.021749245,-0.00493264,-0.013135271,0.0075908042,0.0032060433,0.006885648,-0.018983925,-0.0043173563,0.028814638,0.025275027,-0.030446177,0.018652085,0.011911618,-0.007888076,-0.01765657,0.0040200846,0.022482054,0.000520658,0.027196925,-0.008095475,0.021790724,-0.01721412,0.0168408,0.0049222703,-0.045295946,0.0051573226,0.018762698,0.008316701,-0.0153890075,-0.027349018,0.008365094,-0.009768494,-0.013729815,-0.00025600818,0.02184603,-0.021583324,-0.0045835185,-0.02111322,-0.012167409,0.00018633506,0.006370607,0.010307731,0.007176006,0.0045212987,-0.01558258,0.007466365,0.0018026432,0.030501483,0.023118079,0.0059972885,0.023090424,-0.0060733347,-0.014490278,0.013805862,-0.0153198745,0.0062945606,-0.0058763055,0.008800632,-0.002651251,-0.02274476,0.03744244,-0.02607697,0.00988602,-0.015375181,-0.0036536795,-0.0038299686,0.027528765,-0.0028569216,0.005102016,-0.02262032,-0.010992148,0.033902828,-0.008593233,0.0075908042,-0.020366585,0.0064915894,-0.0046146284,-0.0114346,0.011282507,0.0031904883,-0.01137238,-0.0025924877,0.024445431,0.002450765,0.014227573,-0.0024645918,-0.034815382,0.028676372,-0.036281005,0.020532504,0.027279885,0.024749616,-0.01920515,0.0018337531,0.0037850323,0.00854484,0.03506426,-0.031552304,0.009291477,-0.011199547,0.0071414397,-0.022039603,0.0048116576,-0.024155073,-0.012409375,0.025275027,0.0027393955,0.010674137,0.007825856,0.011807918,-0.010204032,0.026795954,-0.0078051165,0.0098238,-0.02969954,0.02486023,0.01635687,-0.00028322928,-0.008123129,-0.6247412,-0.008109302,0.03771897,-0.016550442,-0.0057173,0.021680111,0.00996898,0.024929363,-0.0049395533,0.037746623,-0.008904331,0.05060536,-0.029671887,-0.009706275,0.009685534,-0.0126997335,0.012727387,-0.00706885,0.012257283,-0.00638789,-0.025689825,0.02494319,-0.018168155,0.007424885,0.019951787,0.022717107,0.028054174,-0.013819688,-0.014780637,0.0075493245,-0.018845659,0.010964495,0.0130108325,-0.011109674,0.043526143,-0.026312023,-0.010985235,0.014061654,0.006892561,0.0034099857,-0.033183843,-0.018444687,0.03381987,0.00106292,-0.013985608,0.010045026,0.020200664,0.00490153,-0.02473579,0.0060664215,0.018776525,-0.005776063,0.00012443941,-0.026381155,0.01753213,0.009623315,0.04789535,-0.016979067,-0.011870137,0.01859678,0.0037504658,0.019315762,-0.007673764,-0.032824352,-0.032050062,0.001089709,-0.038272034,0.014116961,0.001679068,0.018818004,0.018099021,-0.0015330245,-0.009118644,0.0048773335,0.008869765,0.04800596,0.00020826318,0.008337441,-0.01501569,0.028455146,-0.008143868,0.0035983732,0.011980751,-0.0046595647,0.024929363,-0.00035236232,-0.016426003,0.011199547,0.009471222,-0.018237287,0.017891623,0.0059212423,-0.0052955886,-0.008302874,0.012990092,0.00640863,-0.0055617504,0.0038092288,0.038769793,0.0018544929,-0.026104623,0.006270364,0.014407319,0.006038768,0.00082225073,0.020836689,-0.03633631,0.0071137864,-0.00085120014,-0.042337053,-0.003055679,-0.01493273,-0.01566554,0.010445997,-0.01558258,-0.027169272,-0.01131016,0.009678621,-0.014186094,-0.021832203,0.00047096863,0.023145732,0.0038921884,0.020311277,0.009056424,0.0060456814,0.027418151,-0.028455146,-0.033847522,-0.009602575,0.010584263,-0.012229629,0.02148654,-0.015803806,0.0010646484,0.015859112,0.007494018,-0.013418717,0.023546703,-0.009291477,-0.0060871616,0.007563151,0.0133564975,-0.004707958,-0.023795582,0.010722529,0.002131025,-0.003109257,0.019536989,-0.01928811,0.018126674,0.008766065,-0.019716734,0.028164787,-0.0018683196,-0.024155073,-0.028289227,-0.017504478,0.023339303,0.0031213553,0.023408437,0.025454774,-0.01778101,-0.00986528,-0.0024645918,-0.012409375,-0.0064051733,0.02412742,-0.005724213,-0.0065572658,0.0064501096,-0.011476079,-0.002343609,0.030446177,0.014780637,0.0038195988,-0.007742897,0.0072797057,0.011814831,0.0054062014,-0.009457395,-0.005834826,-0.020974955,0.03332211,0.010508217,0.013978695,0.008952725,0.02335313,0.00049818977,0.00077731424,-0.013225145,0.008026342,-0.0048116576,0.028303053,-0.016080339,-0.01713116,-0.009568009,-0.012803433,-0.022164043,0.010321558,0.03003138,-0.01713116,0.020726075,-0.025039976,0.03453885,-0.018417034,0.0062427106,-0.02111322,0.03340507,0.0045212987,-0.011662738,-0.00640863,-0.01838938,-0.0002843095,0.005302502,0.0077290703,-0.024749616,0.0012547642,-0.028026521,-0.010978322,-0.002996916,-0.0037297257,0.011607432,-0.0029398813,-0.01279652,0.03470477,-0.0051953457,0.03141404,-0.0024594069,-0.007957209,-0.00020437446,0.016439829,0.014642371,0.009775408,0.0013878451,-0.0050985594,0.0037539224,-0.022675626,0.042143483,0.0054027447,0.016426003,0.019799694,0.03641927,0.013349584,0.020449543,0.00856558,0.010895362,-0.018997751,-0.007494018,0.018776525,-0.01765657,0.024417778,0.018334074,-0.014600892,0.009671708,-0.011628172,0.011365467,0.005834826,-0.01206371,0.0154581405,0.0026875457,0.030639749,0.018900964,-0.021071741,-0.0036536795,0.013667596,-0.011828658,-0.018983925,-0.000015244368,0.000082041435,-0.0017231402,0.004735611,0.0021275682,-0.0149050765,0.00246632,0.008095475,0.01708968,-0.0065434393,-0.024929363,0.003066049,0.0000802591,-0.03503661,0.009671708,0.019398723,-0.0033235694,0.014697677,-0.0042585935,-0.0042447667,-0.020269798,0.018831832,0.008793719,-0.010335385,-0.004051194,-0.0025233547,0.012333329,-0.005133126,0.022067256,-0.030529136,0.024473084,0.0154581405,-0.0010879807,0.019536989,-0.024970843,-0.010708703,0.034483545,-0.003982061,-0.012844913,0.0006930584,-0.00919469,-0.00052757125,0.036502227,-0.0017819033,-0.012056797,-0.034566503,0.015126302,0.0060456814,-0.017877797,-0.00779129,0.0015753685,-0.028676372,-0.01501569,-0.026643861,-0.006892561,-0.0064985026,0.09733927,0.018942444,0.010231685,0.0027359389,0.012333329,0.026090797,-0.014213746,-0.007106873,0.005095103,0.0057518664,0.007355752,0.01782249,-0.015969725,-0.0061355545,0.012547641,-0.0029191412,0.0063844332,-0.010625743,-0.0099275,-0.0011381021,0.018237287,0.0149050765,0.015942072,0.0022571927,0.033543337,0.007245139,0.011289421,0.025012322,-0.0074594514,-0.0070861336,0.003150737,0.002699644,-0.010902275,0.009533442,-0.02351905,0.025620693,0.00913247,-0.0128379995,0.01409622,0.016702535,-0.0031386386,0.016909935,0.009090991,-0.015983552,0.012430115,-0.006578006,0.009982807,-0.00035517084,0.00994824,-0.02839984,0.040456638,-0.010923015,-0.0077636368,-0.037580702,-0.0039613214,-0.0078051165,0.014642371,-0.022412922,-0.024500739,-0.014573238,-0.023297824,-0.020905823,-0.0042862464,-0.021707764,-0.022772413,-0.01790545,-0.02900821,-0.013874995,0.020186838,-0.009713188,-0.015278395,-0.03332211,0.00087626086,0.013771296,0.028344534,0.0026650776,-0.002720384,-0.006816515,0.0011078565,-0.005980005,-0.01202223,-0.0074525382,-0.0024196552,-0.029450662,0.0049360967,-0.025440946,0.0011985935,-0.019426376,-0.005969635,0.0068061445,0.026394982,0.003816142,0.0043277266,0.000039724473,-0.0026080427,0.007286619,0.014365839,-0.022675626,-0.0057276697,-0.003975148,-0.00055392826,-0.015776152,-0.0008918158,-0.026699169,0.00913247,-0.0024058288,0.0027826035,0.02067077,-0.012250369,-0.009478135,0.02050485,0.016232431,0.0126997335,-0.0108400555,-0.0054338546,0.0004670799,0.011282507,-0.0075700646,-0.022385268,-0.029146476,-0.009809974,-0.0466233,0.033488028,-0.0072243996,0.007984863,0.014670025,0.005133126,-0.0017127703,-0.014476452,-0.0017283252,-0.021210007,0.025219722,-0.03271374,-0.0038057722,-0.016232431,-0.0020031289,-0.03730417,0.006878734,-0.006899474,-0.019716734,-0.038548566,0.00033140637,-0.004697588,-0.010798576,-0.015969725,-0.030086685,-0.0077636368,0.009747754,-0.012326416,0.01407548,-0.025924878,-0.00026335355,-0.028206268,0.015513447,-0.015983552,-0.014573238,-0.041894604,0.0135638965,0.049305663,0.04936097,0.020891994,-0.015306048,0.011807918,-0.010224772,0.009650968,-0.0007734255,-0.020491024,-0.008855938,-0.0127343,-0.004400316,0.0031386386,0.018748872,-0.0016678338,0.010307731,-0.00988602,0.008399661,-0.01708968,-0.0062219705,-0.013916475,-0.044134513,-0.0033927024,0.0044659926,0.0021621347,0.006692075,-0.024749616,-0.025482427,0.017919276,-0.0034203555,0.019910306,0.009180863,-0.003109257,-0.017393865,0.006923671,0.018292595,-0.006878734,-0.0013273538,-0.026464116,-0.02425186,0.006287647,-0.025205895,0.008641626,0.023104252,0.0028206268,0.015361355,-0.012423201,0.008330528,-0.0041963737,-0.026381155,0.0018873311,-0.027183099,-0.023242518,0.002678904,-0.006318757,-0.03133108,-0.013259711,-0.0077083306,-0.025938705,0.013888821,-0.00033551114,0.0014699406,0.0063325837,0.016536616,0.039046325,0.013833515,0.014614718,0.0358109,0.021887511,-0.005793346,0.01826494,0.013024659,-0.002067077,0.0072658793,0.04463227,-0.035506714,-0.02551008,0.0033667774,0.03003138,-0.0026218693,-0.0064017167,0.01790545,-0.0077636368,0.009090991,-0.02123766,-0.005112386,-0.0388251,-0.015167782,-0.0006399124,0.020961128,-0.003957865,0.00563434,-0.009346783,0.038106114,0.0018130131,0.033128537,-0.0053820047,0.009056424,0.0027912452,0.0022226262,-0.018776525,-0.0048220274,-0.0047286977,0.033377416,0.0007643518,0.0026564358,0.0026477943,0.008365094,-0.0015719117,0.003944038,-0.0041756337,0.027127793,0.015292222,0.014352012,0.013743642,-0.009616401,0.022025777,-0.01489125,-0.013584636,0.014600892,-0.02551008,-0.005140039,-0.0002897105,0.0014154983,-0.023408437,-0.004203287,0.008662366,-0.013550069,0.018693566,-0.00425168,0.01851382,-0.037580702,-0.025316508,-0.0005310279,-0.000012091526,-0.014628544,0.008261395,-0.0016972154,0.004773634,0.0102178585,-0.01822346,0.02046337,-0.006259994,0.013605376,-0.03169057,0.004981033,0.02934005,-0.038797446,-0.004618085,0.0011666195,-0.03605978,-0.017310906,-0.012229629,0.019426376,0.010522044,0.025689825,0.03265843,0.015153956,0.016343042,-0.012914046,-0.0327967,0.016536616,-0.01859678,0.010508217,0.006256537,-0.03702764,-0.0038749052,0.022509707,0.011144241,-0.0031541935,-0.017670397,-0.018970098,-0.0024628635,0.013715989,-0.02111322,-0.014054741,-0.015070996,-0.015209262,-0.032686085,0.02705866,0.02335313,-0.02197047,0.012354068,-0.005261022,0.012070623,0.010093419,-0.0110128885,0.006298017,-0.008351267,-0.020007093,-0.02205343,0.0070273704,-0.011303247,0.019882653,-0.003088517,-0.03141404,-0.035008956,-0.025966357,-0.015278395,0.013439457,-0.012831086,0.03116516,-0.0036813328,-0.0051089292,-0.005565207,0.029727194,0.00069435465,0.0070031737,0.007957209,-0.0052160854,0.010169465,-0.018292595,0.0155964065,-0.013757468,-0.039737653,0.0038783618,0.011482993,0.018002236,0.008496447,0.018278768,-0.008987291,0.013868081,-0.006692075,0.005955809,0.009153211,0.029616581,0.010072679,-0.025482427,-0.017960755,-0.015140129,0.010784749,-0.019716734,-0.016508963,-0.004120327,0.003916385,0.010176379,-0.0088766785,0.00067793555,0.005181519,0.004649195,0.015900591,-0.0060456814,-0.026408808,-0.011441513,0.03564498,-0.0013627844,0.0008645947,0.019758213,0.011178807,0.0021880597,0.011904704,-0.009740841,-0.009768494,-0.008510273,0.0064328266,0.0026391526,-0.010452911,-0.0008935441,-0.012844913,0.014186094,0.009402089,0.008095475,-0.023283998,-0.019661428,0.0073350123,-0.008213001,-0.002210528,-0.019329589,-0.007051567,-0.010798576,-0.014296706,-0.0023004008,0.0020169555,-0.03652988,0.004362293,0.02714162,-0.009830714,0.011870137,0.2373751,-0.019398723,0.013169838,0.05818234,0.016107991,0.004113414,0.0058659357,0.0056723636,-0.0153890075,-0.00850336,0.030695057,0.022551188,-0.02774999,-0.011911618,0.013646856,0.0057587796,-0.04421747,-0.01851382,-0.022772413,-0.0006403445,0.0030176558,-0.0015546285,-0.0010585992,-0.015872939,-0.00044633998,-0.00009365362,-0.022634147,-0.0024836033,0.028814638,0.02042189,-0.02184603,-0.0056516235,0.011206461,-0.0031282685,0.01583146,0.0003018088,0.027169272,-0.011863224,0.037525397,0.0057103867,-0.015734673,0.0017819033,-0.017241772,-0.0041445238,-0.0003391838,-0.007300446,-0.036751106,-0.008952725,-0.0148359435,0.036142737,0.0104252575,-0.022592667,0.02217787,0.024390126,0.005924699,-0.0044072294,0.0028448233,-0.010024286,-0.010605004,0.005347438,0.012049884,0.030695057,-0.0022260828,0.03583855,-0.01562406,0.02819244,-0.0080125155,0.014656198,0.015070996,-0.019716734,-0.011565953,-0.0028344532,-0.012367895,0.02103026,-0.0071276133,-0.023574356,0.0036744194,-0.0009955153,0.023104252,0.013598463,0.0028413667,-0.0082199145,0.008378921,-0.012810347,-0.01051513,-0.026837435,-0.018112848,0.025178242,-0.008337441,0.004528212,0.006802688,0.002248551,-0.009139384,-0.012132843,0.0015174695,-0.010674137,0.0384103,0.0155964065,-0.001471669,-0.0015719117,-0.030059032,0.044936456,-0.024072114,0.011130414,-0.034400586,0.0015693193,-0.010549697,0.030584443,-0.020200664,0.004120327,0.012865653,-0.036225695,0.01916367,-0.008213001,0.0113309,0.023173384,0.009443569,-0.0036744194,0.024320992,-0.024486912,0.004863507,-0.019053057,0.025938705,-0.005119299,0.006526156,0.0028793898,-0.0043934025,-0.029312396,-0.011158068,-0.010584263,0.013722902,0.0022502795,-0.007328099,-0.033432722,-0.023588182,-0.017186467,-0.0072105727,0.009222344,-0.017559784,-0.0038334252,-0.01334267,0.021569498,-0.016854627,-0.023048945,0.003124812,-0.035949163,0.0041583506,-0.0015866025,0.01753213,-0.0074801915,-0.023283998,0.010694876,-0.01639835,-0.00081922614,0.05013526,-0.024182726,-0.042032868,-0.038465604,0.010155639,0.006536526,-0.024984669,-0.014670025,0.04396859,-0.03376456,-0.022205522,0.021583324,-0.1778654,0.036723454,0.001997944,-0.010535871,0.028538106,-0.009602575,0.04772943,0.0066886186,-0.0038783618,-0.011386206,0.048476066,-0.008925071,-0.03478773,-0.021624805,0.023767928,-0.014365839,-0.045517173,0.014462626,0.016384523,0.028427493,0.019523162,-0.007169093,-0.0020342388,-0.0009903304,0.009768494,-0.019702908,-0.016260084,0.0323819,-0.029201783,0.01476681,-0.024113594,0.011904704,0.033792216,0.0009972437,0.017117333,-0.016080339,0.0008460152,-0.029284742,-0.005340525,0.021638632,0.018292595,0.009955153,0.0005936797,0.015997378,-0.019550815,-0.0054303976,0.03152465,0.0070861336,-0.006000745,-0.023698796,0.017255599,-0.008911245,-0.020131532,0.0074871047,-0.004120327,0.026312023,-0.010176379,-0.00039989126,-0.0018043715,-0.0014146342,-0.00427242,-0.01269282,-0.0026408809,-0.04565544,0.0028206268,-0.031579956,-0.036668148,0.004687218,-0.010238598,-0.0007418836,-0.031137507,-0.013349584,-0.00012271109,0.00049127644,0.023118079,0.004341553,-0.016716361,0.017380038,0.011870137,-0.03304558,-0.0005193617,0.00990676,-0.018361727,-0.010860795,-0.026643861,-0.020186838,0.0022312677,-0.003985518,0.0040753908,-0.022454401,0.01708968,-0.02530268,-0.0076184575,-0.01822346,0.015955899,0.02046337,-0.0040097144,0.008060909,0.006052595,0.0128725665,-0.009733927,-0.0032820895,-0.0410097,0.00282754,0.017933102,0.0083927475,0.017062027,0.026353503,0.042779505,-0.025357988,-0.01627391,0.022647973,0.014739158,0.014365839,0.016412176,0.023767928,-0.0073903184,-0.023850888,0.031137507,-0.008696932,0.024320992,0.011711132,-0.008973464,0.012367895,-0.010888449,0.009332956,-0.08965169,-0.03193945,0.014110047,0.013225145,-0.007576978,0.014794464,0.021749245,-0.01269282,-0.0029053148,0.027736163,-0.01476681,-0.027653202,-0.01619095,-0.003698616,0.026630035,0.013391064,0.0003752626,-0.04073317,-0.026712995,0.009899847,-0.0108400555,0.0076115443,-0.013370324,0.010653396,-0.001137238,-0.020726075,-0.013259711,0.015734673,0.030141992,0.00427242,0.033128537,-0.023145732,0.036225695,-0.02909117,-0.024099767,0.0014854955,-0.01493273,-0.033709254,0.007438712,-0.024113594,0.01826494,-0.012008403,-0.017974582,-0.006885648,-0.022509707,0.026547074,-0.014988036,0.03243721,0.024970843,-0.0130453985,-0.03265843,-0.023118079,-0.018624432,-0.025523907,0.015789978,0.008890505,0.017144985,0.0053508948,-0.013660682,-0.02184603,-0.013128358,-0.0106326565,-0.027874429,-0.011994577,-0.00066410896,-0.010445997,-0.011524472,-0.010653396,0.013785122,0.017933102,-0.010439084,0.0024352102,-0.031745877,0.0037228125,-0.032934964,-0.008558666,0.010605004,-0.03218833,0.029312396,-0.022371441,-0.017490651,-0.014255227,0.0031922166,-0.018582953,0.048310146,0.03265843,-0.00028819824,0.01340489,0.0088075455,-0.041037355,-0.00088663085,-0.00639826,0.01639835,-0.0071829194,-0.028814638,0.0062841903,0.006000745,-0.008994204,-0.01753213,0.012582207,0.010902275,-0.013273537,-0.06664422,0.037636008,0.009498876,0.0030625924,-0.010964495,-0.035589673,-0.012305675,0.010764009,0.0282754,0.017711876,0.021528019,0.029146476,0.016813148,-0.0077498103,-0.002051522,-0.032852005,0.021818377,0.0086001465,0.033958133,0.009699361,-0.0005824456,0.026989527,0.0098238,0.018818004,-0.0041445238,0.033792216,-0.00353961,0.019066883,-0.017366212,-0.022717107,-0.019523162,-0.011932357,-0.013750555,0.0065503526,-0.0045454954,-0.025012322,-0.016177123,0.02611845,-0.0022347246,-0.010625743,-0.031718224,-0.006163208,-0.007245139,-0.015872939,0.018804178,0.01212593,-0.009879107,0.0050086863,0.0040166276,0.009934413,0.0067508384,0.004486732,-0.0067888615,-0.040871434,-0.020601636,0.0080816485,0.0051780622,0.022081083,-0.0033252977,-0.039433468,0.039433468,-0.022910679,0.006992804,0.0017412876,0.035617325,0.016591921,-0.0129071325,-0.0028292683,0.04056725,-0.030999241,-0.014960383,0.00091082737,0.004597345,0.018859485,0.026491769,0.0047390675,-0.004417599,-0.011206461,-0.026865087,0.028731678,0.018486166,-0.019592294,-0.0323819,0.02701718,0.012526901,0.023505222,-0.0009428014,0.03506426,0.019841174,0.01872122,-0.041313887,0.008240654,-0.0046008015,0.009056424,0.034511197,0.00779129,0.013515503,0.011724958,0.021666285,0.017324733,0.026339676,0.012091363,0.005793346,-0.0035845465,-0.023505222,0.019619947,-0.020656943,-0.017062027,-0.01652279,0.011586692,0.040152453,0.01652279,0.0036329397,0.025288854,-0.011137327,0.005755323,0.013619202,-0.006163208,-0.012616774,0.015651712,0.033294458,-0.003608743,0.003050494,-0.005489161,0.0336816,0.0019028861,-0.00044504376,-0.01941255,0.0008542247,0.015306048,-0.027597897,-0.015306048,-0.001360192,-0.020739902,0.0062634507,-0.008510273,-0.018195808,0.019136017,0.004597345,0.07748427,0.02335313,-0.0011951369,-0.01350859,-0.012547641,0.01051513,-0.0065019596,-0.004915357,-0.043996245,-0.0106672235,-0.0037608356,-0.018195808,0.0042551365,-0.013397977,-0.020961128,-0.004745981,0.027210752,0.0211547,-0.0035741765,-0.009844541,0.025233548,-0.012450855,0.008496447,-0.0041272407,-0.0024300253,-0.010252425,0.02103026,-0.011586692,-0.01193927,-0.03428997,-0.0038507085,-0.0011234113,-0.03218833,0.008344354,-0.008800632,0.007245139,0.00061441964,-0.0009056424,-0.0010516859,0.01912219,-0.0036917026,0.027127793,-0.026906567,-0.017158812,0.009014945,-0.0045904317,-0.033183843,-0.011289421,-0.0049188137]},{\"id\":\"5b8948c1-78c5-4252-98bb-28b4bccb5c78\",\"text\":\"Would love to see Projects that are specific to my field and demographics.  Wellness, yoga, breathwork, ice bathing.  Would love samples or trial products to be used in place of some payments.  Would also love collaborator posts enabled for multiple curators to work together on IG for great collaboration content \",\"vector\":[-0.0126722315,-0.013960141,-0.015908688,-0.008301346,-0.016842924,0.010636933,-0.019018356,-0.0067998967,0.0002777681,-0.009202216,0.00758065,-0.009188869,0.014600759,-0.028961288,0.010163143,0.0035133911,0.03371254,-0.0038270273,-0.011591188,-0.008968657,-0.014854337,0.013459658,-0.007740805,0.014694183,-0.025211,0.000970103,0.02372957,-0.020326287,-0.013459658,0.0012253494,0.04382897,0.0073070526,-0.013553082,-0.03413962,-0.00031050804,-0.01586865,0.010503472,0.012825713,0.010056373,-0.018204238,-0.02108702,0.010183162,0.0057655647,-0.01625569,-0.01269225,0.007006763,-0.017710427,-0.026772508,0.0024773912,0.009148831,0.029334981,-0.011551149,-0.037075784,0.000783256,0.0149744535,0.016442537,0.019018356,0.008855213,0.018938279,-0.007073494,-0.00013930112,0.010810434,-0.017109849,-0.011537803,-0.013266138,-0.02559804,-0.0063127596,0.013733256,0.022154717,-0.0055820546,0.020553172,-0.010503472,-0.0056120837,-0.0025374491,0.0054852944,-0.026892623,0.011217494,-0.00816121,-0.0024306795,0.0064929337,0.0021537454,-0.028400745,-0.03253807,-0.0018384411,-0.005608747,0.028187206,0.0032164378,0.007013436,-0.00067606923,-0.021460714,0.004043903,0.00080869725,0.0020036006,0.014534028,-0.023569416,0.02214137,0.009562563,0.010603568,-0.0021170434,-0.0105301635,-0.014467297,0.012805694,-0.044202663,-0.032457996,-0.043001506,0.0066764443,0.0038036713,-0.0076340353,0.051996853,0.01773712,-0.014227065,0.017883928,-0.008021075,-0.026505584,-0.013759948,-0.029334981,0.011971555,-0.0149744535,-0.020966904,-0.015841957,0.0041039614,-0.014093603,0.02542454,-0.03144368,-0.0054852944,0.0039004313,-0.026452199,-0.009128811,0.009088772,-0.036408477,0.00023710386,0.008528232,0.013112657,-0.000668979,-0.02400984,0.02954852,-0.012645539,-0.008995349,-0.008101152,-0.0028427439,0.0091555035,0.05138293,-0.012925809,-0.016829578,-0.0049748016,0.024690498,0.012745636,-0.02355607,0.0033415586,-0.012685577,-0.03590132,-0.017189926,0.0021921159,-0.0035801223,-0.0026175266,-0.0076340353,0.021927832,0.024730537,-0.03755625,-0.0038970949,-0.0028060419,-0.03483362,-0.01095057,-0.0004946441,0.008214596,0.0148943765,0.039931875,-0.00025336957,0.014854337,0.014427259,0.0057855844,0.024770575,-0.022034602,0.0024223381,-0.016736154,0.019258589,-0.0059023635,0.017443504,-0.0031230145,-0.035741165,0.01075705,0.0072336486,0.020673288,0.011471072,-0.0039371336,-0.03074968,0.02437019,-0.008641674,-0.0057755746,-0.018884895,-0.012091671,0.0041173073,0.003633507,0.011591188,-0.64019126,-0.015641764,0.0303226,-0.017510233,0.008127845,0.021420676,0.018818164,0.022221448,-0.009415755,0.02930829,-0.009722718,0.011237513,-0.033872694,0.0034666795,0.022034602,-0.011697957,0.02641216,-0.022128025,-0.008107826,0.0061726244,-0.034459926,-0.008968657,0.003331549,-0.011798054,0.006422866,-0.0032865056,0.0023422607,0.012859078,0.012278518,0.027132856,-0.023542725,0.031710606,0.015228031,0.0056487857,0.062940754,-0.0024840643,-0.015534994,0.022234794,0.004480992,0.02813382,-0.052130315,0.003054615,0.0036601995,-0.016429191,0.0048813783,0.029201519,0.022248141,0.02211468,-0.0000120493905,0.017336734,0.015881997,0.011557822,-0.002729301,0.015041185,0.042147346,-0.008247961,0.010843799,-0.008247961,-0.0008833526,0.03470016,-0.0020770046,0.014840991,-0.027239624,-0.057762418,-0.033125307,0.0053818612,-0.014187027,-0.008274653,0.006589694,-0.006776541,0.012465365,0.014921068,-0.009048734,-0.00042186552,-0.013519716,0.035767857,0.0076073427,0.024717191,-0.025371155,0.008094479,-0.006349462,-0.017817197,0.00070943474,0.00073654426,0.03216438,-0.002290544,-0.0027543253,-0.009782775,0.023582762,0.011691284,0.00572219,0.028907903,0.0023105636,-0.013639832,0.0155083025,0.0029945571,0.02553131,0.0317373,0.027760128,-0.0016707793,-0.007914306,-0.011484418,-0.016055496,0.014534028,0.01488103,-0.010076392,-0.03074968,0.008735098,0.021914486,-0.025691465,0.0009859516,-0.011084031,-0.026145235,-0.004410924,0.0027977005,-0.029681982,-0.0029395039,-0.015668457,-0.006789887,-0.0023205732,0.017443504,0.015841957,0.0058689984,-0.0020653268,0.004704541,0.024476958,-0.0071001863,-0.011911497,0.01921855,-0.0023522705,-0.009322331,-0.025411194,0.0026275362,0.0003307359,-0.014680836,0.016509268,-0.0012203446,-0.0065529915,-0.00816121,-0.033338845,-0.025798233,-0.010523491,0.013299503,0.022701912,-0.00858829,-0.012865751,-0.020473095,0.022034602,-0.0090754265,-0.026091851,-0.011711304,-0.015134608,-0.013880064,0.024597075,0.010616914,-0.016482575,0.021941178,-0.03811679,-0.019498821,-0.031150067,0.015441571,0.025571348,-0.005475285,-0.007146898,-0.011497765,-0.004898061,-0.0018668019,0.010957243,0.0026475554,-0.013920102,-0.0076140156,-0.0043341834,-0.0038570561,0.018257622,-0.003066293,0.014400566,0.000044365737,-0.014307143,-0.02126052,0.011991574,-0.0076607275,-0.0030028985,-0.011517784,0.012665559,0.02986883,0.0026141899,-0.006115903,0.015334801,-0.0120649785,0.021874446,-0.018404432,0.008881906,-0.0018668019,0.025077539,-0.0046111173,0.014600759,-0.0027876906,-0.007080167,0.012678904,0.0077941897,0.0044075875,-0.024557035,0.030989911,-0.020953558,0.01823093,-0.030295908,0.004741243,-0.034326464,0.040892802,0.009669333,0.0038704025,-0.0000328442,-0.02768005,-0.0030629565,-0.0038837485,0.012058306,-0.02207464,0.015254724,-0.013606466,0.036862247,-0.0040839417,-0.017403465,0.015228031,-0.028267283,0.0033115298,0.023983149,-0.004601108,0.02179437,0.011704631,-0.005802267,0.017923968,0.02546458,0.013799987,0.00668979,0.00384371,-0.010343317,0.017483542,-0.011330937,0.035207316,0.01341962,0.018671354,0.016829578,0.0032197745,0.0081545375,0.025931695,-0.0041039614,0.00886856,-0.02288876,-0.0003784903,-0.009882872,-0.016028805,-0.002205462,-0.013539735,-0.0064629046,0.0048046373,-0.033952773,-0.008861887,0.004480992,0.02158083,0.02789359,-0.0067264927,-0.0062927403,-0.0000044476524,-0.0061492687,0.0066731074,0.0155083025,-0.00055345084,-0.01956555,-0.029601905,-0.01685627,-0.017376773,-0.02074002,-0.0024773912,-0.020793403,-0.008047768,0.013266138,0.016122228,0.004731233,-0.012091671,0.019098435,-0.016882962,-0.0134463115,-0.009308985,0.00071193714,0.01477426,0.015828611,-0.008474846,-0.02069998,-0.008328038,0.0074738804,0.010476779,-0.00077324634,0.0044976743,0.0027309693,0.0134463115,-0.00011365137,0.017590312,-0.016455883,-0.0014755909,0.0031430337,0.006459568,0.012999213,-0.0068165795,-0.0066764443,0.031577144,0.02976206,-0.001693301,-0.017830543,-0.021781024,-0.028427439,0.03251138,-0.009896219,0.0055453526,0.009268946,0.017003078,-0.0026408823,0.0105301635,-0.015561687,0.006242692,-0.00033699194,-0.002258847,-0.010036354,-0.030989911,0.013039253,0.104153864,0.03205761,0.009876199,0.02372957,-0.0009484154,0.012612173,-0.0200994,-0.022301525,0.007126879,-0.005151639,0.0070868405,-0.03363246,-0.018484509,0.006986744,0.008681713,0.011864785,-0.009055407,-0.007360438,-0.023742916,0.0019368695,0.014800953,-0.04537713,0.010283259,0.040892802,0.047966298,0.00798771,0.0606452,0.0087684635,-0.0063427887,0.005698834,-0.023676185,0.021353945,-0.005959085,0.019125126,-0.0060992204,0.020032668,0.004561069,0.014173681,0.029041365,-0.0064061834,0.018404432,0.040599186,-0.006259375,-0.010590222,0.0029912204,-0.0076607275,-0.032271147,0.018004045,-0.008528232,0.010937223,0.019952592,0.007834229,-0.013052599,-0.02218141,0.021500753,0.0067698676,0.003670209,-0.014654145,-0.0067431754,-0.048793763,-0.011557822,-0.009722718,0.000022886674,-0.0064195297,-0.015174647,-0.017149886,-0.00689332,-0.013186061,-0.025798233,0.004494338,-0.016122228,-0.017043117,-0.0028477486,0.0052450625,0.027760128,-0.017323388,0.01932532,0.00024565376,0.010536836,-0.0040772688,-0.005899027,-0.018217584,0.007080167,-0.034433234,-0.018110814,-0.0014830981,-0.01702977,-0.01389341,-0.037743095,0.018818164,0.011390994,0.007867594,0.043989126,-0.012512077,0.016709462,0.016415846,0.021006944,0.02179437,-0.011944863,-0.015041185,0.0036735458,-0.01767039,-0.015948728,-0.018938279,-0.015428225,0.035047162,0.0002072834,0.0155083025,-0.021434022,-0.015094569,0.029895522,0.003047942,0.019632282,0.01844447,0.019859169,0.0037202574,-0.018524546,0.012472038,0.006986744,-0.015735188,-0.008321365,-0.02016613,0.032885075,0.009195542,-0.02098025,-0.005071562,0.0033398904,-0.01956555,0.011491091,0.016215652,-0.023849687,-0.004284135,-0.026225314,-0.02591835,-0.035714474,0.0036034782,-0.0019585572,0.012338576,0.0077141123,-0.013252792,-0.0056054103,-0.010129778,-0.0046611656,-0.02559804,0.023289146,-0.039051026,0.012592154,-0.0007795024,-0.043108273,0.045003437,-0.0043542027,0.0018868211,0.0057455455,-0.024850653,-0.017123194,-0.005802267,-0.020673288,-0.008781809,0.03360577,0.009375717,0.013452985,-0.01604215,0.025811581,0.0023889726,0.018097468,-0.014547375,0.01911178,-0.0077808434,-0.009335677,-0.011097378,-0.0013004219,0.0053851977,0.010316624,-0.013639832,-0.01883151,0.009148831,-0.021607522,-0.0074471883,-0.002844412,-0.021554137,-0.044763207,0.014760914,-0.008214596,-0.0023589435,-0.021687599,0.0017333397,0.010289932,0.017310042,0.015855303,0.002035298,-0.0055720448,-0.004394241,0.016629385,-0.0078542475,0.030189138,-0.02211468,-0.010977262,-0.037609633,-0.027760128,0.029174827,0.038517177,0.006169288,0.0071068597,-0.01200492,-0.017016424,0.03360577,-0.018751433,0.009602602,-0.01251875,-0.017256657,0.013513043,0.012078324,-0.02239495,-0.0071402253,-0.011344283,-0.0080811335,-0.030189138,0.035981394,-0.004450963,-0.0011477745,-0.0030746344,-0.030909834,0.0141336415,0.026665738,0.0250375,0.025237693,0.00038787437,-0.004674512,0.020072708,-0.013539735,-0.0120649785,0.031123374,0.04241427,-0.011844766,-0.03558101,0.023422608,0.017216617,-0.051569775,-0.010009661,0.022208102,0.019191857,0.013045926,-0.018844856,0.007246995,-0.03160384,-0.0022204765,-0.012438673,0.02976206,-0.002355607,-0.012391961,-0.01144438,0.009802795,0.0107637225,0.022715257,0.0022755298,0.0142804505,-0.029521829,0.003947143,-0.008901926,0.011190802,0.013599793,0.02383634,-0.0124453455,0.014547375,0.01936536,-0.0041840384,0.000560124,-0.0016599356,-0.0036635362,0.02655897,-0.01741681,-0.020005977,-0.015855303,-0.03515393,-0.013219426,-0.021954523,-0.015134608,-0.007433842,0.001753359,-0.0011127407,0.02909475,0.0078542475,-0.027319703,0.0048346664,0.0014914395,0.010663626,-0.0038937584,0.009756084,0.01911178,-0.026745815,-0.010863819,-0.0026542286,0.0035934683,0.015775226,0.002704277,0.0140535645,0.008835195,-0.005481958,-0.037369404,0.00071360543,-0.00052926084,-0.013613139,-0.011691284,0.012545442,-0.02965529,-0.042013887,-0.018471163,0.016282383,-0.042147346,-0.014040219,0.012612173,0.014627452,-0.0057655647,0.0200994,0.018257622,0.0011577841,-0.002193784,0.00017464774,-0.025264386,0.0058289594,-0.0007156908,0.011064013,0.008348058,-0.010129778,0.009295639,-0.028053744,0.033952773,0.0010910531,-0.018658008,-0.004157346,-0.002132058,0.024036534,0.007947671,-0.006049172,0.008247961,-0.007760824,-0.030295908,0.027866898,0.004097288,-0.0026358776,0.0031096681,0.038837485,0.023903072,0.013025906,-0.010770395,-0.0021470725,-0.0468986,-0.012265172,-0.024383536,-0.0038570561,-0.015668457,0.046951987,0.011557822,-0.025517963,-0.0142804505,-0.00966266,-0.031657223,-0.03691563,-0.008788482,0.01827097,-0.013559755,-0.0050215134,-0.025371155,0.011898151,0.0064495583,0.01971236,-0.003229784,-0.0064929337,0.01580192,-0.008795156,0.017536927,-0.02426342,-0.026118543,0.010910531,0.024143303,0.014987799,0.005622093,0.017550273,-0.0072803604,-0.0070668207,0.0058756713,-0.0016490917,-0.017536927,0.023969803,0.018257622,-0.024917385,-0.004374222,0.008101152,-0.008861887,0.019832475,0.0108371265,0.0015656779,0.005638776,0.0032131013,-0.015454917,-0.004053913,-0.021927832,0.007940998,0.020019323,0.0022371593,0.013493024,0.02655897,0.01337958,-0.010336644,-0.0011811401,-0.0040338933,0.009095445,-0.012725616,0.022248141,-0.020846788,-0.015308109,-0.00927562,0.0024023186,-0.015895342,-0.005235053,-0.01073703,-0.0047145505,0.023435954,-0.0066397423,0.0050348598,-0.02433015,-0.020179477,-0.021273866,-0.0052183704,-0.028480824,-0.03259146,-0.011684611,-0.004330847,-0.0063794907,0.018911587,-0.005959085,-0.030989911,0.017897274,0.0070868405,-0.00955589,0.0011919838,0.20766711,0.005378525,-0.0070267823,0.028080437,0.0039738356,0.0056054103,0.028240591,0.0143605275,-0.00048588566,0.016415846,0.026745815,-0.021006944,0.0065930304,-0.016576,-0.022288179,-0.029681982,-0.035394162,0.008067787,-0.017336734,-0.01410695,0.009716045,0.02563808,0.014240412,0.001656599,0.010563529,-0.002198789,0.010636933,-0.0022154718,0.013553082,0.014520682,-0.018257622,0.023008876,0.013853371,-0.018738085,-0.0029945571,-0.027733436,0.0034433235,-0.010636933,0.032244455,0.018284315,-0.0069200126,0.004007201,-0.0023305828,-0.014080257,0.0138266785,0.016108882,-0.0185112,0.00670981,0.018658008,0.014921068,-0.010483452,-0.009135485,0.01653596,0.0380901,-0.005378525,-0.001145272,0.016589345,0.010196509,-0.0032598132,0.02074002,-0.00014482728,0.008608309,-0.009462466,0.022928799,-0.0025391174,-0.010176489,0.0057288627,-0.015775226,0.013853371,0.010903858,0.026438853,-0.024890691,-0.02102029,0.001342963,-0.01572184,-0.03264484,0.03534078,0.023289146,0.047379065,0.02729301,0.0063895006,0.01629573,0.004868032,-0.0037035746,-0.019071741,-0.03448662,-0.0061826343,0.008908599,-0.03424639,-0.01608219,-0.018297661,0.0001744392,-0.019231897,-0.023435954,0.006746512,0.0069934167,-0.005959085,0.019178512,-0.0057622283,-0.020513132,-0.013126003,0.07788851,-0.002157082,0.010283259,-0.0032598132,0.006282731,-0.016282383,0.010576876,0.015948728,0.008441481,0.025931695,-0.030536141,0.0087684635,0.000056877816,-0.01400018,0.008454828,0.00089669885,-0.02711951,0.006986744,0.0012762318,-0.01123084,-0.0119849015,0.0093823895,-0.00093173265,0.015334801,-0.016936347,-0.016495923,0.004988148,0.0070267823,-0.022501718,0.0032064281,0.021287214,0.0029795426,-0.03833033,-0.018604623,0.0062627117,0.021180443,-0.024797268,0.012805694,-0.0024890692,-0.022741951,0.00463781,0.014921068,-0.013693217,0.03488701,-0.026225314,-0.019658975,-0.0063828276,0.0014697519,0.0011928179,-0.010777068,0.009455794,-0.016722808,-0.01202494,0.030215831,-0.0020453075,0.0035167276,-0.023209069,0.015708495,-0.013439639,-0.023075607,-0.0132861575,0.031790685,-0.021607522,-0.015628418,0.0027343058,-0.16923001,0.02190114,0.0065162894,-0.024450267,0.013186061,0.020232862,0.003271491,-0.018391084,-0.0017416811,-0.009696025,0.024463613,-0.007126879,-0.010957243,-0.007567304,-0.0066597615,0.006362808,-0.008534905,0.024877345,0.029014671,0.0053284764,0.015708495,-0.018884895,-0.001433884,-0.014827645,0.02429011,-0.003873739,-0.020152785,0.022087986,-0.010403375,-0.0140535645,0.014320489,0.009415755,0.057602264,-0.015534994,0.016269036,0.024770575,0.002625868,-0.011237513,-0.0057321996,-0.001289578,0.025971735,0.013426293,0.0019585572,0.015895342,-0.028614286,-0.012125037,0.03413962,-0.009982969,0.00028319,-0.02655897,0.0030863122,-0.016415846,0.0013287825,0.010503472,-0.0040639224,-0.0070201093,0.032751612,-0.0010910531,0.0045777517,-0.016909655,0.0012078325,-0.016335767,0.00035054667,-0.010943896,-0.019832475,-0.01586865,-0.021594176,0.02683924,0.0016699452,0.0069133393,-0.007453861,0.011090705,0.02059321,0.017830543,0.016696116,-0.003476689,-0.03494039,0.0016415844,-0.0035133911,0.014307143,-0.00856827,0.044976745,-0.013032579,0.01685627,-0.0022638517,0.019805783,-0.012018267,0.0034600063,-0.025451232,0.00668979,0.02291545,0.007013436,-0.011878132,0.0026358776,-0.01251875,0.021447368,0.010783742,0.011164109,0.0056487857,-0.012418653,-0.0013304509,0.02768005,-0.0114510525,0.029948907,0.018004045,-0.0045043477,-0.0010318293,0.03317869,0.0087684635,-0.0024590401,-0.015414879,0.006029153,0.0061359224,0.014373873,0.013986833,0.030189138,0.00033386392,-0.008715078,0.021527445,-0.005205024,0.0380901,0.0083880965,-0.010390028,-0.0016641062,-0.0062627117,0.0061859707,-0.10741034,-0.024770575,0.021954523,-0.0066864537,-0.010536836,0.025291078,0.0014872688,0.017003078,-0.04073265,0.032564767,0.0074471883,-0.01311933,-0.006169288,0.004517694,0.007847575,0.0010718679,-0.023876378,-0.005331813,0.012772328,0.014307143,-0.0065630013,-0.0061459322,-0.012452018,-0.008314692,-0.013633159,0.022288179,-0.019792438,0.025905004,0.0018517873,-0.0043108277,-0.023929764,-0.012018267,0.0025157616,-0.02531777,0.0014480643,0.007747478,-0.01269225,-0.021740984,0.008601636,-0.022341564,0.022061294,0.015962074,0.013773294,-0.00798771,0.0044676457,-0.0082346145,-0.0035100547,0.015534994,0.036648706,-0.011043993,0.0069133393,0.021434022,-0.031336915,-0.020499786,0.022835374,-0.01819089,0.0073737837,0.0011235845,-0.0036635362,0.009442448,-0.005168322,0.007033455,0.0018384411,0.030375985,-0.0029962254,-0.007907633,-0.010043027,-0.003573449,0.0033482318,-0.0037369402,-0.016148921,-0.0077274586,-0.01105734,0.02291545,-0.03435316,-0.009282293,-0.013960141,-0.0097627565,0.018044082,-0.014307143,-0.010116431,-0.010590222,0.008381424,-0.02623866,0.024356842,0.0046878583,-0.004210731,-0.015308109,-0.0034366504,-0.041239806,0.0016374137,0.01269225,-0.005405217,-0.019805783,0.015401532,0.0048947246,-0.013039253,-0.014867684,0.006596367,0.013920102,-0.033018537,-0.02295549,-0.051463004,0.031016605,0.009595929,0.00936237,0.023849687,-0.009389062,0.023155684,-0.007573977,-0.0037469498,0.0036401802,-0.00561542,0.048046377,-0.00668979,-0.026158582,0.003006235,-0.044069204,0.022301525,0.006466241,0.01221846,-0.0142804505,0.004941436,-0.0036134878,0.008561597,-0.008788482,-0.0022438325,0.028934594,-0.014934415,0.014320489,-0.00212038,-0.018351046,0.0041673556,-0.015094569,0.0012728953,0.035847936,-0.003024586,-0.030722987,0.004807974,0.016228998,-0.0031313559,-0.0003638929,-0.027973667,-0.032377917,0.014867684,-0.025758196,-0.033418924,-0.005044869,-0.021620868,0.010616914,0.0032064281,-0.009529198,0.04086611,0.013880064,-0.015548341,-0.0282139,0.004727897,-0.03240461,0.0007486393,0.009996315,0.01337958,-0.012125037,0.026171928,0.0023155683,0.014093603,-0.012758981,0.0056788144,0.0060525085,-0.013719909,-0.0018334363,0.037209246,-0.024837306,-0.03656863,-0.011104051,0.0052750916,0.01904505,0.026625698,0.003730267,0.008655021,0.009142158,0.000076532204,0.03480693,0.0069133393,0.0074071493,-0.025678119,0.01024322,0.018604623,0.0050148405,-0.032110993,0.020713326,-0.014907722,0.007567304,-0.0011919838,-0.004050576,0.0046177907,-0.0015715169,0.02733305,0.015094569,0.011417687,-0.023782955,0.008314692,0.035661086,0.031150067,0.005752219,0.009649314,-0.0064895973,-0.02291545,0.007747478,-0.021981217,-0.026879277,-0.014093603,0.02074002,0.00011281722,-0.0059791044,-0.013533062,-0.0047145505,-0.01904505,0.008341384,0.010810434,-0.01706981,-0.014307143,0.02866767,0.0011494427,-0.016282383,-0.00094507885,-0.001024322,0.017296694,0.01872474,-0.003670209,-0.014160334,0.013159368,-0.0010343316,-0.014026872,-0.03144368,-0.00197524,-0.011390994,0.027706742,-0.026078505,-0.017496888,0.009629294,-0.012765655,0.0652363,0.01872474,-0.0024323477,-0.009529198,-0.025878312,-0.00059557485,0.0155083025,0.013252792,0.00818123,-0.011571169,0.010249893,-0.00076740736,0.012705597,-0.025784887,0.009142158,0.0023622802,-0.013880064,0.023716224,0.027626665,-0.018698048,0.015575034,0.015561687,0.023102298,0.017310042,-0.023796301,-0.021767678,-0.027439818,-0.01572184,-0.027706742,-0.031123374,0.012418653,0.005695497,-0.01928528,0.0018467825,0.0046544927,-0.018030737,0.002597507,0.014787607,-0.008695059,0.011043993,0.009836161,0.011190802,-0.012892444,-0.014293796,-0.027519897,-0.0008650016,-0.010576876,-0.0027059452,-0.025731502]},{\"id\":\"7943032e-43da-4529-b72a-5b0685772ea1\",\"text\":\"I need sensitive stomach treats. My dogs got diarrhea on just a little treat made with oat flour\",\"vector\":[-0.012213313,-0.00020671789,0.014521341,0.0011926527,-0.037642833,0.02865801,-0.012020977,-0.03775274,0.017955907,-0.011986632,0.02717428,0.02210486,-0.02226972,0.01026248,-0.015276945,0.02629503,0.029235017,0.026404936,-0.014301528,-0.005440351,-0.02865801,0.01373826,0.016101241,0.011904202,-0.009857202,-0.023890834,0.017818524,-0.00765908,-0.035417233,0.0139305955,0.020648604,0.00797506,-0.026624748,-0.0025570337,0.00011044273,-0.003094543,0.001112799,0.0027270445,-0.001811733,-0.024179338,-0.0030069617,0.007865154,0.01397181,-0.0155517105,-0.00021251371,0.009719819,-0.017200302,-0.023464948,-0.015057133,-0.023396257,0.045363735,0.012055323,-0.009204634,0.002328635,-0.008153657,0.017997121,0.0153868515,-0.0136627,0.012075931,-0.006742051,0.0022599439,0.0042485567,-0.023162706,0.005124371,-0.005471262,0.019783095,0.0001861105,0.01113486,-0.001258768,-0.007446137,0.027517734,-0.012336957,-0.014177884,-0.012666675,0.029674642,0.0021620586,-0.013374196,-0.007837677,0.026432412,-0.016321054,0.035005085,-0.021733927,-0.020813463,0.036076672,0.016142456,0.005028203,-0.0033933502,0.02233841,-0.010166313,-0.01909618,0.027023157,0.023794666,0.007569781,0.03157052,-0.014033632,0.0018718379,-0.024797559,0.058305174,-0.02368476,-0.023959525,-0.01578526,0.0077002947,-0.0027030027,-0.017035441,0.011512662,-0.011450839,0.0039840955,0.0022290326,-0.004626359,-0.012213313,0.0003185559,0.0020521525,0.004554233,-0.031460617,-0.030389031,0.03135071,0.020703558,-0.017639926,-0.0059761433,-0.014342743,0.010118228,-0.010022061,0.035719477,-0.021390472,0.01649965,0.0016434394,-0.01698049,-0.008641366,0.013243683,0.018903846,0.029015206,0.028850347,0.039593667,-0.009527483,-0.034867704,0.018931322,-0.011904202,0.012611723,0.00955496,-0.008181134,0.0118904635,0.03286192,0.004334421,-0.013154384,-0.0013334699,0.0071713715,-0.005581168,0.007762117,-0.008826832,-0.0034568897,0.015524234,0.0011093644,-0.0011754798,-0.010042668,-0.00008623978,0.023780927,-0.0048976894,0.020593653,-0.011505793,0.018203195,0.010159443,-0.03275201,0.010791403,0.0024694523,-0.000022579581,0.020827202,0.014590032,-0.01704918,0.002017807,-0.005107198,0.0025037979,0.04088506,0.0015446956,0.019714404,-0.010935655,0.00053021096,-0.009603044,-0.0022582265,-0.033603784,0.0071576335,-0.03418079,0.0014802975,0.019425899,0.008126181,0.004674443,-0.008689449,0.012652937,-0.015180777,0.009218372,-0.015153301,0.00923211,0.005378529,0.0059417975,-0.011231028,-0.63877416,-0.035884336,0.014521341,-0.014727415,0.016362268,0.041242257,-0.011746212,-0.018230671,-0.017378898,0.00079553114,-0.0056189485,0.027449043,-0.012419387,0.017433852,0.02533335,-0.023629807,0.030251648,-0.023671022,0.01373826,0.00079810707,-0.0064466787,0.0047980873,0.0004452055,-0.012714759,0.01957702,0.010241873,-0.0010149139,-0.024536531,-0.0014957531,0.04192917,-0.019274779,0.043083183,-0.014521341,0.028328292,0.05030951,-0.0077002947,-0.015359375,0.0073156236,0.020511223,0.03945628,-0.009925893,0.0031992972,0.034318175,0.0050110305,-0.034867704,0.022310935,0.03165295,0.011018084,-0.00016024393,0.016376005,0.008950477,0.015620401,-0.030361554,0.01200037,0.016018812,0.0058559333,0.033548832,-0.024825037,0.008311647,0.0083047785,0.010447946,0.023107754,-0.022791773,-0.02541578,-0.036186576,-0.001586769,-0.027668856,0.00860702,0.029015206,-0.0026343113,0.028630534,0.023973264,-0.018271886,0.03956619,0.008552067,0.02170645,0.0034328478,0.006539412,-0.008950477,0.002297724,0.029757071,0.0047912183,-0.0055605606,0.0045645367,0.031790335,0.0077346405,-0.003508408,-0.003942881,-0.008909262,-0.030828655,-0.011677521,0.050034743,0.0070545967,-0.0081399195,-0.009032906,-0.0016477326,0.0015275228,0.016114978,0.04445701,-0.021184396,-0.022942893,0.026583534,0.010028929,-0.002929684,-0.003264554,-0.0010131967,-0.020332625,0.0068107424,-0.00014586168,-0.00876501,0.018986275,-0.020483745,0.002979485,-0.039676096,0.0076934258,-0.026981942,0.0063436413,0.011059299,-0.036983397,-0.02494868,-0.008297909,-0.008119311,0.035994243,-0.017955907,-0.028630534,0.0078102006,-0.020016644,-0.017337684,0.024921203,-0.025003633,-0.023574853,-0.010152574,0.0029588777,-0.017104134,-0.030141743,0.0072263246,0.027737547,-0.0048873858,0.006120395,-0.030801179,-0.00256562,0.0032302083,-0.00671114,-0.01721404,0.002017807,0.007274409,0.02180262,0.0025364263,-0.019522067,0.016733201,0.0019834612,-0.009541222,-0.01397868,-0.00091101835,0.005904017,-0.0046916157,0.031295758,-0.03148809,-0.00908099,-0.007617865,0.012563638,0.008792486,-0.013855035,-0.0058937133,-0.018807678,-0.0370933,0.0016116697,-0.0013454908,0.000708379,-0.015744045,-0.024041954,-0.033906024,-0.012824666,0.014122931,-0.0013429149,0.034950133,-0.022997847,-0.018368054,-0.014356482,0.021761404,-0.0058250222,-0.015620401,-0.011450839,0.0019920478,0.020552438,0.025360828,-0.0058937133,0.033576306,-0.029949406,0.02178888,-0.004901124,-0.0015215123,-0.009898417,0.017241517,0.0036269007,-0.041956645,-0.017433852,-0.007617865,0.021541592,-0.0061856518,0.024041954,-0.015853953,0.024825037,-0.010825749,0.026432412,-0.028218387,0.008442161,-0.021569068,0.030883608,0.02503111,-0.008078096,0.0026892645,-0.026473626,-0.008565805,-0.0041798656,0.027091848,-0.003702461,0.0074255294,-0.0026995682,-0.010832618,0.0060723107,0.0013935748,-0.002498646,0.014438911,-0.006309296,0.034592938,-0.008984822,0.016321054,-0.01847796,-0.003396785,-0.023932049,0.010331172,0.0029039248,0.007885762,0.027558949,-0.0013592291,0.024151862,0.012082799,0.028960252,0.0042348187,0.0055399532,0.011073038,-0.011794296,0.010063276,-0.006996209,0.029180065,0.018148242,0.024289243,0.0061925207,-0.02306654,-0.0016211147,-0.007150764,-0.023506163,-0.007610996,0.023602331,-0.02384962,0.023794666,0.0058215875,0.019631974,0.020428792,-0.009438185,0.0018924453,0.018821416,-0.008057489,0.0064535476,0.011492055,-0.004272599,0.0060997875,-0.020277672,-0.0009728405,-0.00086508103,-0.009781641,0.0037574142,-0.0028300816,-0.013442887,0.0049560773,-0.015977597,-0.0044786725,0.011066169,0.010358648,-0.030251648,-0.02243458,-0.005684205,0.008565805,0.011361541,0.022462055,-0.006996209,-0.0016168215,-0.013374196,0.014878536,0.010866963,0.027188016,-0.015276945,0.003994399,-0.0155517105,0.015620401,0.01641722,-0.025017371,0.03574695,0.04214898,0.031845286,0.0042829025,-0.0071713715,-0.009101598,0.008586412,-0.0091290735,-0.028520627,-0.0041420856,0.00034474445,-0.03126828,0.019370947,0.012412518,-0.014672462,-0.011471447,0.0018443614,0.011698129,-0.007308754,0.0035169946,0.02637746,0.0052995337,0.0024248029,-0.019453377,-0.028163433,0.015167039,0.07396679,0.021211874,-0.010880702,0.004100871,0.026665963,0.02020898,-0.005931494,-0.030059313,0.009087859,-0.032175004,0.016101241,-0.0023440905,0.0077483784,-0.009589305,-0.012364434,-0.019535806,-0.011389017,-0.024536531,-0.0014725698,0.0065325424,0.003647508,0.010152574,0.012357565,0.0032508157,0.029262494,0.009953369,0.0047603073,0.041269735,0.009390101,0.010461685,-0.009087859,-0.0037539795,-0.010475423,0.011656914,-0.02384962,-0.016994227,0.014974703,0.039071612,0.011251635,-0.012920833,0.017942168,0.017859738,0.007075204,-0.0044889767,-0.016568342,-0.020099074,-0.025621856,0.010571591,-0.005543388,-0.019865524,0.025456997,0.03000436,-0.013594008,-0.017626187,0.029949406,0.0075766505,0.0005675619,0.0032353601,-0.010193788,-0.02461896,-0.011711867,-0.018560389,-0.018024597,0.0015034808,-0.0074186604,-0.011478316,-0.034373127,-0.007968191,-0.025539426,-0.0066218413,-0.024289243,-0.01215836,-0.016788153,0.01847796,0.020154027,0.003506691,0.0070683346,-0.007191979,0.0003099695,-0.005378529,0.008036882,-0.0118149035,0.017653665,-0.015304422,0.010880702,0.003561644,0.019796833,0.0076865563,0.0023784363,0.00038552991,0.0015103499,0.0017189998,-0.0050831563,-0.0021603415,0.008030013,0.002596531,0.009994584,0.03695592,-0.009218372,-0.008311647,0.001787691,0.008648234,-0.03404341,-0.015098347,0.0025501645,-0.002436824,0.011382149,-0.011100514,0.012330089,-0.005708247,0.030224172,0.02945483,-0.012920833,-0.014301528,-0.0020332625,0.029152587,-0.0099465,0.015936382,-0.013621485,-0.0040253103,-0.016513389,-0.013484102,0.035994243,-0.01500218,-0.016018812,0.0017722355,0.018299362,-0.010317434,-0.011450839,-0.02596531,-0.0004722527,0.016142456,-0.011093645,-0.013827559,-0.02243458,-0.019439638,-0.024811298,0.020030383,0.00076805457,-0.019054966,0.013786344,-0.0035822513,-0.010296826,-0.007240063,0.00017988535,-0.036433864,-0.03547219,-0.011972894,0.0028060395,0.028218387,0.01358027,-0.012982655,-0.027668856,-0.00021251371,-0.021417947,-0.008613889,0.010214396,0.022778034,0.011038692,0.04632541,0.0370933,0.0007388608,0.034455556,0.0075491737,0.0007491645,0.0066149724,-0.016169932,-0.023355043,-0.026185123,-0.009197765,0.008696319,-0.020964585,0.013058216,-0.0069824704,-0.038082458,0.00046538355,-0.013010132,-0.015194516,-0.005794111,-0.029317446,0.014191623,-0.022709344,0.02533335,0.044347104,0.023258874,0.020497484,0.028328292,0.01887637,0.011869856,-0.00290049,0.030691274,0.008105573,0.005162151,-0.0036269007,-0.0057357233,0.0054987385,-0.028355768,0.0061478713,-0.025484473,-0.003319507,0.012247658,0.006374553,-0.009980846,0.017722355,-0.020593653,0.017749831,-0.0018289059,-0.014136669,-0.0014330723,-0.014480126,-0.03047146,-0.015744045,-0.025498211,-0.009376362,0.022517009,-0.006797004,-0.038961705,0.014019894,-0.029537259,-0.008929869,-0.023547377,0.0016623294,0.009094728,-0.026734654,0.03418079,0.0077483784,-0.0029571604,-0.031707905,0.012728498,0.0068107424,-0.0023681326,0.009362624,0.00035740942,0.0064638513,-0.022929156,-0.0077758553,0.011443971,-0.028877823,-0.019769356,0.016485913,0.009589305,0.0070545967,-0.026542319,-0.017035441,-0.022530746,0.03670863,0.0083047785,0.0053957016,-0.03530733,0.018299362,-0.034922656,0.012034716,-0.008710057,0.04651775,0.02233841,0.0031443443,-0.026281292,-0.02604774,-0.013456626,-0.011904202,0.017571235,0.019783095,-0.024522794,0.036681153,-0.0034362823,0.017268993,-0.01057846,0.00272361,-0.012831535,0.028190909,-0.0044821072,-0.013786344,-0.002515819,-0.0014493865,0.024454102,-0.011265373,-0.0080643585,-0.0162661,-0.025539426,0.012075931,0.019467114,0.03277949,-0.013841297,-0.0019302255,-0.007830808,0.013291767,-0.03418079,-0.017900953,-0.0033813291,-0.008297909,-0.027847452,-0.0024059128,-0.018230671,-0.00465727,0.008909262,0.000015294547,0.013367327,0.022091122,-0.023492424,0.012350696,-0.028822869,0.0010389559,-0.04091254,0.0070408583,-0.0037127647,-0.023863358,0.002328635,-0.000077224046,-0.017873475,-0.027119325,-0.0058868444,0.0023818708,0.0095206145,-0.010873833,-0.0043172482,0.041599452,0.036983397,-0.012639199,-0.026913252,0.017172825,-0.000933343,-0.009912155,-0.011876726,0.0040699597,-0.0134360185,0.001957702,0.024234291,0.011169205,0.01097687,-0.0008376045,-0.007301885,0.016664509,-0.0020933673,-0.0033212244,-0.022242242,0.0050797216,-0.007789593,-0.009403839,0.019467114,-0.020731034,0.0022101426,0.009300802,0.007954452,-0.0010947676,-0.017722355,-0.0066458834,-0.0147411525,-0.012687283,-0.012687283,-0.025553163,-0.022942893,0.028245863,0.017282732,-0.01967319,-0.028328292,0.003939446,0.007439268,0.010173181,-0.021033276,-0.02020898,0.0083940765,-0.020181503,-0.025869144,0.039758526,-0.04643532,0.027188016,0.008613889,-0.012364434,0.0017859738,-0.037780214,0.010028929,-0.03783517,-0.004808391,-0.012014109,0.013758867,0.0049629463,0.016362268,0.010928785,0.01397181,0.0011102231,-0.04099497,-0.012694152,0.008105573,0.005512477,0.016554603,-0.0031494962,-0.01981057,0.011808034,-0.014754891,0.014164146,-0.0067489203,0.0134360185,-0.012900226,0.00525145,-0.034537986,0.009307671,-0.026789607,-0.018615343,0.01089444,-0.006570323,-0.0036372044,-0.0004782632,-0.0016099523,-0.014782367,-0.019398423,0.011972894,0.00820861,-0.012185836,-0.0016339943,-0.017543757,-0.015249468,0.011629437,0.0010174899,0.013243683,0.00090414926,-0.02163776,-0.0007916672,-0.0068347845,0.01373826,0.00592119,-0.0114096245,-0.0210058,-0.019631974,-0.0046607046,0.007714033,-0.04918297,-0.029674642,-0.025360828,-0.0017670837,0.0078994995,-0.03679106,-0.048441105,0.0052068005,-0.012075931,-0.013463494,-0.0011832076,0.20519465,0.0026995682,0.011340934,0.024866251,-0.0045679715,-0.0023183313,0.014047371,-0.004767176,-0.03165295,0.021747665,0.0461056,-0.006103222,-0.015510496,-0.0012433125,-0.0063436413,-0.00205387,-0.036186576,0.004688181,-0.028383246,-0.03758788,0.016568342,0.014383958,0.00062509085,-0.0070477272,0.029702118,0.007075204,-0.015853953,0.00039626294,-0.0034878007,-0.0041558235,0.0033143552,0.010042668,0.005794111,0.010317434,0.01972814,0.004708789,0.02328635,0.0016451566,0.027971098,0.034592938,0.0020573044,-0.0032508157,0.028328292,-0.0036372044,-0.028932776,0.019906739,-0.002869579,-0.00062552013,0.002754521,0.013545924,0.0008109867,0.0044958456,0.024783822,-0.00077749963,-0.013037609,-0.01230948,0.01681563,-0.0072057173,-0.014988442,0.02857558,-0.018986275,0.016142456,-0.004001268,0.038577035,-0.025511948,0.0068759993,-0.029180065,0.0009848615,0.0014820148,0.008119311,-0.011114253,-0.018972537,0.013642092,-0.004365332,-0.036900967,-0.007308754,-0.013236813,0.022558223,-0.0045267567,0.041242257,-0.011478316,0.0045645367,-0.013676438,0.015579186,-0.026995681,-0.027490258,0.0024814731,0.011952287,-0.009376362,0.0013128625,0.01783226,-0.003027569,-0.0047190925,0.000030428098,0.03412584,-0.032642107,0.00019222831,0.021967478,0.010612805,0.0052136695,-0.033136684,-0.0016030832,-0.033411447,0.029784547,-0.008050621,-0.0014914599,-0.014136669,-0.01066089,0.014713677,0.0040527866,-0.024014479,-0.017392637,-0.012282005,0.0018787071,-0.020593653,0.031158373,0.013690176,-0.014851059,0.01192481,-0.0017061202,0.027421568,-0.028328292,-0.007768986,-0.00021702157,-0.029015206,-0.010447946,0.002548447,0.008242956,0.015441804,-0.037120778,0.014425173,0.0041729966,-0.008785618,0.0036509426,-0.031240802,-0.00305848,0.009568698,-0.0107501885,0.0055846027,-0.006402029,0.0062886886,-0.01026248,-0.011711867,-0.019357208,0.010358648,-0.03687349,0.00043039393,-0.010228135,-0.022036169,-0.02194,-0.0031666688,-0.00923211,-0.00052548846,0.020909632,0.018230671,-0.026569795,-0.031103421,-0.025525687,0.022228505,0.018835155,-0.014933488,-0.011952287,0.030389031,0.0021551896,-0.013511579,-0.00041729966,-0.1753002,0.024976157,-0.0008242956,-0.008586412,0.004585144,0.008627627,0.010798273,0.004609186,-0.0015146432,-0.004296641,0.021101967,-0.009486268,-0.038989183,-0.012247658,0.002297724,-0.017900953,-0.005162151,-0.00963052,0.005038507,0.014960965,0.019838048,-0.010736451,0.016829368,-0.03632396,-0.0018289059,0.03536228,0.0070339893,0.0059658396,-0.030169219,0.0032594022,-0.006693967,-0.003252533,0.027009418,0.01839553,0.015208254,-0.02533335,-0.015290683,-0.039758526,-0.02163776,0.021981215,0.0017997121,0.019370947,0.017241517,-0.011567615,-0.0032920307,0.0046847467,0.0056979433,-0.006577192,-0.015331898,-0.013710784,0.006508501,-0.010921917,0.020154027,0.032065097,-0.0064466787,-0.0075903884,0.014246576,0.01706292,0.008119311,-0.026198862,-0.00019727282,-0.034455556,0.020840941,0.015414327,-0.008950477,-0.014713677,-0.02461896,0.014177884,0.004770611,0.012481209,-0.0027991706,-0.0025913792,0.018766463,0.004327552,0.007075204,0.0060036196,-0.022310935,-0.0017979947,0.019137396,0.0027081545,-0.031543046,0.02676213,-0.04665513,-0.0013145797,0.010392994,0.019645711,0.0007264105,0.017502543,-0.005934928,-0.013147515,0.034565464,0.009912155,-0.009795379,-0.016485913,0.010447946,0.028767915,-0.0027493692,0.033741165,0.011849249,0.009644259,0.004674443,0.015853953,-0.03291687,0.035994243,0.019315993,0.002898773,-0.0014356482,0.013003263,0.02707811,-0.009836595,-0.018381791,0.023780927,0.010557853,0.025786715,0.0070339893,0.018656557,-0.00017044028,-0.005361356,0.022146076,-0.0047946526,0.018368054,-0.0026635053,-0.011574484,0.019865524,-0.008201742,0.009891547,-0.114412226,-0.02717428,-0.015908904,-0.01634853,-0.042423747,-0.0012510403,0.021830095,0.007624734,-0.014397697,0.013985549,0.0029726159,-0.0065256734,-0.0037436758,0.006814177,-0.004990423,0.008579544,-0.011931679,-0.007246932,0.007439268,0.010743319,-0.01871151,0.0013454908,0.00698934,0.0050178994,0.015373113,-0.006281819,-0.01334672,0.015139562,0.016101241,0.0078994995,0.036021717,0.008084966,0.010070144,-0.019206088,-0.0030790875,-0.011849249,0.021472901,-0.003544471,0.03679106,0.00042094887,0.0063848565,-0.0043859393,-0.0021998389,0.011869856,0.015070871,0.014329005,-0.016224885,0.016142456,0.030746225,-0.023492424,0.0024454102,-0.027119325,-0.018725248,-0.011560746,0.033906024,-0.006996209,-0.0061719134,0.027421568,-0.0025570337,-0.010839487,-0.01658208,-0.018010858,-0.007988798,0.02107449,0.023245135,0.013394804,-0.018505435,-0.013229945,-0.009657997,-0.019947954,0.0063917255,-0.008414684,-0.02108823,0.01192481,-0.004327552,-0.006827915,-0.013889381,-0.027531473,-0.008490245,-0.009307671,-0.00954809,-0.011423363,-0.014988442,-0.017433852,0.017104134,0.01744759,-0.010681497,0.03624153,-0.019412162,-0.025718022,-0.0076865563,-0.0021998389,0.018972537,-0.00797506,-0.025718022,0.02243458,-0.00595897,-0.018684033,0.025992788,-0.015579186,-0.0069824704,-0.018134503,-0.035939287,0.022091122,0.008421553,0.0019662885,-0.0094450535,-0.012604853,0.005904017,-0.007446137,-0.0070477272,0.0061993897,-0.008318516,0.02787493,-0.008160527,-0.012323219,-0.023506163,-0.044511963,0.029152587,-0.0099465,0.0055949064,0.010928785,-0.0008406098,0.016073763,0.0007388608,0.027297923,-0.002127713,0.034400605,-0.022462055,0.03964862,-0.020346362,0.0075148284,-0.010846356,-0.0329993,-0.0031529306,0.02992193,-0.022640653,-0.016005073,0.0031683862,-0.0008238663,0.003130606,-0.026803344,-0.008675711,-0.025718022,0.028795393,-0.015689094,-0.003647508,-0.0023234831,-0.020703558,0.0078102006,0.0133604575,-0.010983739,0.024742607,0.03132323,-0.0035822513,-0.011182943,-0.027682593,-0.010386124,0.00085434807,0.021885049,0.0055399532,0.0045336257,0.0109150475,-0.0011505793,0.006374553,0.0041558235,-0.0039016658,0.02115692,0.0027253274,-0.017928429,0.026404936,-0.010647152,-0.021198135,0.0064775897,0.011265373,-0.027847452,0.021143181,0.015991334,-0.014988442,-0.0083940765,-0.0016245493,0.020085337,0.0027682595,-0.009506876,-0.017296469,0.049292877,0.0065565845,-0.0008938455,0.0031220196,-0.008593282,0.022997847,0.006838219,-0.040170673,0.010496031,0.017900953,-0.008112443,0.02652858,0.008881785,-0.013291767,0.0073911836,0.0040768287,0.0029417048,0.03173538,0.02052496,0.005732289,0.0075423047,-0.011182943,-0.0024127818,-0.02802605,-0.007439268,-0.004255426,0.008297909,0.014851059,-0.008517721,0.017461328,0.0072881468,-0.007954452,0.0011385583,0.005969274,0.0014201927,-0.016856845,-0.012261397,0.0010853226,-0.014061109,0.019082444,-0.010640282,0.004547364,-0.013229945,0.02092337,-0.020401316,0.0025930966,0.009046644,-0.023643546,-0.011698129,-0.04066525,-0.017667402,0.02020898,0.017708616,-0.008030013,0.032944348,-0.025924096,0.07028494,0.006542846,0.025443258,-0.015043395,0.029757071,0.016485913,0.002383588,0.007143895,-0.006735182,0.00426573,0.0029983753,-0.010839487,0.024454102,-0.011766819,-0.015208254,-0.0015120673,-0.014507603,0.007755248,0.019686926,-0.01698049,0.017200302,0.022448316,0.0015781826,-0.0096099125,-0.0032971825,-0.008792486,0.020676082,-0.018381791,-0.0210058,-0.04113235,0.013181861,0.011265373,-0.03396098,-0.027737547,-0.013745129,-0.0054678274,-0.024426626,0.019838048,0.0054334817,0.014493864,-0.009616782,0.016705723,-0.030608844,0.0053647906,-0.015455542,-0.018038336,-0.00078179286,0.0016829368,-0.023231398]},{\"id\":\"07cdbe9f-10f3-4091-8f8d-bba1e0a68c15\",\"text\":\"I forgot where to post\",\"vector\":[-0.015183643,0.014731525,-0.012678154,-0.0146184955,-0.035591766,0.007987426,-0.018825708,-0.032778587,-0.0074662333,-0.011679726,0.025921457,-6.8681186e-7,0.0053657666,-0.00685085,0.0051805237,-0.00500156,0.015032938,0.01446779,0.0006824947,-0.005843003,-0.020897917,0.011447387,0.013777053,0.0050706337,0.013714259,-0.0034097265,0.029965404,-0.017896354,0.0061287163,-0.004373618,0.024715807,-0.007208777,-0.026499163,-0.034411237,-0.036169473,-0.009299825,-0.016615352,-0.010091032,0.0021397131,-0.024539983,0.013726817,0.019541563,-0.001447407,-0.002012555,0.0015086313,0.021576095,-0.010687578,-0.012414418,-0.011604372,0.020496035,-0.02946305,0.0025824124,-0.031020347,-0.000048420236,0.0138272885,0.018235443,0.00859025,0.016489763,-0.005252737,0.017431676,0.0031161634,0.0019654592,-0.012006256,-0.005632642,0.00004341632,-0.007296689,0.005695436,-0.008251161,-0.028784873,0.005576127,0.034310766,0.010511753,0.008207206,-0.015372027,0.008540015,-0.0037456756,0.024866514,-0.0033877485,-0.004885391,0.013211905,0.018034501,-0.020257417,0.012100447,0.03122129,0.025720514,0.00478492,0.02828252,0.014367319,-0.0141663775,-0.028433226,0.001467815,0.028985815,0.011001549,-0.007133424,0.0077488073,0.008728397,-0.0041601174,0.0269764,0.011817873,-0.032879055,0.005503914,0.0093500605,-0.027277812,-0.01729353,-0.013550994,-0.009846134,-0.0021161654,0.0072276155,0.0204458,-0.0001577705,-0.017745648,0.027353164,-0.006492923,-0.03252741,-0.03340653,-0.008420706,-0.004885391,-0.0015290393,-0.005990569,-0.021425389,0.026700106,0.0056263627,0.0030753473,-0.0061915107,0.034084704,0.008012543,-0.020081593,0.0042323307,-0.0023736218,-0.004828876,0.025871221,0.017092587,-0.019102003,-0.007868117,-0.008062779,0.015258997,-0.0046247947,0.019591799,-0.01304864,-0.029940287,0.0033751896,0.035767592,-0.0030408103,-0.006480364,-0.02391204,0.013613788,0.020144388,-0.00015070614,0.011579256,-0.021262124,0.006207209,-0.020483477,0.008357911,-0.012138124,0.026599634,0.009833575,-0.0021397131,0.0064678052,-0.0117048435,-0.030970111,-0.008709559,0.022568244,0.01794659,-0.014819437,-0.010304532,0.038103536,0.022216598,-0.03207529,-0.023409687,-0.005729973,-0.0067441,0.014756643,-0.022354744,0.010342209,-0.013098875,0.02382413,0.00014962687,0.014744084,-0.031623174,-0.001761378,-0.0072904094,-0.0073029683,0.024828836,0.06199046,0.003196226,0.00619465,0.00652432,-0.036621593,0.001902665,0.00003264809,0.006342217,0.01966715,-0.00014530976,-0.008615368,-0.65989196,-0.030543111,0.034813117,0.0090109715,0.012985846,0.022781745,-0.013613788,0.009469369,-0.020408124,0.008835147,-0.0040722056,-0.00042660825,-0.031070583,0.02097327,0.0054756566,-0.030191464,0.016678147,-0.03503918,-0.007974867,-0.011824152,-0.008778633,0.011039224,0.013098875,0.03827936,0.0057990467,-0.017469354,0.012860257,0.006882247,-0.0204458,0.019127121,-0.016012527,0.016665587,0.0076169395,0.009883811,0.05967963,-0.002915222,-0.013174228,0.016050205,0.00990265,0.02848346,-0.0011915205,-0.018474061,0.023359451,0.00079081475,-0.0046907286,-0.012364183,-0.0007448965,-0.029061167,0.042122368,-0.0066938642,-0.0009952885,0.0058241645,-0.016967,-0.000016814625,-0.008527456,-0.0019607497,0.00619779,0.02197798,0.02405019,0.0017127125,-0.0121444035,0.033883765,-0.036043886,-0.0034065868,-0.034386117,-0.013550994,-0.0249921,0.011761358,0.026273103,-0.002368912,0.018863386,-0.0063641947,-0.025971692,0.021337477,0.010172664,-0.005959172,0.0066813054,0.002566714,-0.007981146,-0.0041255807,0.012050211,0.011780197,-0.016376734,-0.03154782,0.027277812,0.011208769,-0.014128701,0.009387737,0.003965455,0.0245651,0.02162633,0.03579271,0.0036075283,0.009061207,0.015635762,-0.0022919893,-0.0023846107,0.041243248,0.028684402,-0.016565116,0.0012990555,-0.00093327917,-0.010681298,0.02425113,0.0200188,-0.008533735,-0.0023406548,0.016288823,0.015409702,-0.026901046,-0.0021585515,-0.009299825,-0.018361032,0.0092370305,-0.013199346,-0.03292929,0.02011927,0.004100463,-0.0068885265,0.0038147492,0.018662443,0.0018445804,0.01032965,0.0013116144,-0.003993713,0.02642381,0.017193059,0.007459954,-0.017343765,-0.008018822,0.00750391,-0.017984265,0.018549414,0.013789612,0.006530599,-0.004546302,0.0054222816,0.009858693,0.008401867,-0.022078449,-0.039485008,0.0152841145,-0.017707972,-0.007912072,-0.024941865,-0.022568244,-0.022681274,0.0062794224,-0.024238572,0.010386165,-0.004062786,-0.028634166,-0.02838299,0.013676582,-0.028106695,-0.01729353,-0.008659324,-0.035516415,-0.039560363,-0.006976438,0.005032957,0.00412872,-0.030367287,0.010951313,-0.007102027,0.002021974,-0.010976431,0.009940326,-0.011554138,-0.020835124,-0.0062260474,-0.0008312386,-0.0035196163,-0.009092604,-0.007742528,-0.010492915,-0.022141244,-0.028081577,-0.0025196183,0.0056357817,0.0051208693,0.02152586,0.003185237,0.0018555693,0.01065618,-0.021299802,0.0028178908,0.020847682,-0.00891678,0.0069827177,0.0048257364,0.008703279,-0.008973295,-0.0038555653,0.012634198,0.023145951,0.024226012,0.013676582,-0.02521816,0.0021601215,0.0024929307,0.0010737813,0.01881315,-0.014128701,-0.000271585,-0.02490419,-0.021877509,-0.008163249,0.01577391,0.0055070533,0.0060376646,-0.006750379,-0.004766082,-0.01012243,-0.011667167,0.015522732,-0.005720554,0.007384601,-0.017042352,0.016364176,0.0010596525,0.012100447,-0.0030078434,-0.010423841,0.02077233,0.01729353,0.025067454,-0.0047880597,0.005642061,-0.015949734,-0.024276247,0.008740956,0.01184927,0.019001532,0.013877524,-0.0070517915,0.016012527,0.0013477211,0.02338457,-0.017707972,-0.0023955996,0.0127158305,-0.0055949655,0.026474046,0.030266816,0.029538404,0.009167957,-0.0054285605,-0.031874347,0.02219148,-0.025080014,-0.0025714235,-0.026775457,0.022279391,-0.0056295022,0.0048885304,-0.026222868,-0.008075337,0.011441108,0.027202459,0.018210325,-0.008496059,0.008540015,-0.00630454,0.034059588,-0.02762946,-0.0073029683,0.003034531,0.002792773,-0.03285394,-0.018235443,-0.021689126,0.015296673,0.0033155351,0.0042888457,0.0045808386,0.02554469,-0.014317083,0.0030659281,-0.014116142,0.0072652916,-0.051365677,0.013324935,0.010405003,-0.010825724,-0.027679695,-0.00034654562,0.012345345,0.0112590045,0.02077233,0.017431676,0.025607485,-0.0075541455,-0.033004645,-0.007233895,-0.010524312,0.04252425,-0.024389276,0.021061184,0.019177357,0.0033186749,0.01435476,0.009337502,-0.017406559,0.012853978,0.00836419,0.01142227,-0.014819437,0.0022166362,0.006003128,-0.010285694,-0.010298253,0.020282535,0.0075855423,0.01826056,-0.00565462,-0.00989637,0.009877532,0.027679695,0.018021943,-0.020508595,-0.020558828,-0.034486588,0.01033593,0.08725885,0.011616931,-0.002023544,0.027001517,-0.012018815,0.009908929,-0.018499179,0.0030659281,0.015685998,-0.0035918297,0.0052025015,-0.0113657545,-0.0102417385,0.00805022,0.035742473,-0.019328063,0.0075101894,0.00050941814,0.0076420573,-0.03184923,0.007221336,-0.002816321,-0.0047284053,0.03184923,0.028081577,0.0119623,0.001423859,-0.009048648,0.0097958995,-0.013324935,-0.0017519589,0.032225996,0.0064740847,0.023208745,0.022492891,0.0069952765,0.004295125,0.022668716,0.0035133369,0.023547834,0.00445839,0.016803734,0.006373614,-0.021425389,-0.008835147,-0.025067454,-0.0037645139,0.03302976,0.006668747,0.02162633,0.032452054,0.005924635,-0.0018869665,-0.016929323,0.018536855,0.009293545,-0.009890091,-0.019616917,-0.018700121,0.020860242,-0.015974851,-0.02544422,0.0042668674,0.00042974798,-0.01990577,-0.033105116,-0.018624768,-0.009161677,-0.03302976,-0.019767622,-0.021927744,-0.010781769,-0.043353133,0.0021412831,0.026725221,0.011271563,0.025456779,-0.008985854,-0.00500156,0.02153842,-0.004329662,-0.05405327,-0.007208777,0.00086420553,0.0068885265,0.026825693,0.021563537,-0.0024065888,-0.013500758,-0.001794345,0.024276247,0.017205618,0.022919891,-0.005912076,0.005557289,-0.01554785,0.0141663775,0.02054627,-0.0096891485,0.013475641,-0.0062982608,-0.010737812,-0.0022872796,-0.051390793,-0.033356294,0.01163577,0.016916765,0.030116111,-0.004320243,-0.002684453,0.033105116,-0.022254273,-0.001858709,-0.00042150624,0.009714266,0.033356294,0.021488184,0.019415975,0.00054630975,-0.013676582,-0.0035070574,-0.00081083045,0.016967,0.018499179,-0.020207182,0.011384593,-0.016489763,-0.041620012,-0.008709559,-0.0012598091,0.0008979574,0.016941883,-0.007598101,-0.022279391,-0.018963857,-0.015786469,0.024602778,0.009714266,-0.0024709527,-0.014254289,-0.039384536,0.00031475606,-0.033004645,-0.0202323,-0.03250229,-0.035240117,0.00717738,0.001565146,0.019868093,0.018361032,-0.01086968,-0.011459946,-0.025707956,-0.0017048633,0.000728413,-0.028207166,-0.016376734,-0.0016577676,0.012872816,0.0063579152,0.019503886,0.022116126,0.02284454,0.024414394,-0.006788056,-0.0040376685,0.011001549,-0.0011781766,-0.020558828,0.011434829,0.001349291,0.04021342,0.0051711043,0.011579256,-0.009814737,0.021061184,-0.0055070533,-0.0063233785,-0.01686653,-0.025896339,-0.0042260513,-0.0023908901,-0.0052715754,-0.017808443,-0.014116142,-0.0007531382,0.010725253,0.015673438,0.0142794065,-0.014970143,0.021337477,-0.024539983,0.030819405,-0.004640493,0.014970143,-0.023472482,-0.0077550868,-0.010411283,-0.0049073687,0.0058241645,0.019880652,0.014518025,-0.020784888,0.003381469,-0.015924616,0.019328063,-0.02294501,-0.0024803719,0.01566088,-0.009563561,-0.0152841145,-0.00391522,-0.0066185114,0.0009073766,0.014040789,-0.0018351612,-0.009073766,0.03272835,-0.005302972,-0.033255823,-0.0049764425,-0.0076420573,0.015246438,-0.00337205,0.02000624,0.037350006,0.0075541455,-0.00968287,0.021425389,-0.013689141,-0.009475648,0.015572968,0.04576443,-0.03458706,-0.010970151,0.001794345,0.0080062635,0.020797448,-0.017670294,0.006731541,0.037651416,-0.011472505,-0.011572976,-0.002078489,-0.027001517,0.010844563,-0.023020362,-0.015799027,-0.02163889,0.016828852,-0.018612208,0.012923052,0.01817265,0.018712679,0.026499163,0.0056263627,-0.0045054858,-0.014907349,0.0003506665,0.017695412,-0.010750371,0.0239246,-0.015271556,-0.002792773,0.015723674,-0.018863386,-0.030367287,-0.023623187,-0.026775457,0.013739376,-0.028408108,0.0027645158,-0.00554787,-0.014430113,0.0090109715,0.0070392326,-0.014530583,-0.0008830438,0.0043673385,-0.014744084,0.01773309,0.025293514,-0.013915201,0.0030847662,-0.030392405,0.0075290278,-0.021726802,-0.01174252,-0.0032496012,-0.017142823,-0.013839847,-0.015949734,0.010505474,-0.009751943,-0.0017346905,-0.014153819,0.018762914,0.027780166,-0.00500156,0.010078473,0.005858701,-0.0049544643,-0.02491675,0.00024646733,0.0040690657,-0.04531231,0.029312344,-0.018750357,0.0074222772,-0.03295441,0.008659324,0.009733105,0.01642697,-0.010775489,0.0027268392,0.016967,-0.008753515,-0.015309232,-0.019956004,0.0206593,0.004153838,0.021136535,0.006251165,-0.0033877485,0.018649885,-0.017670294,0.025268396,0.009205634,-0.008433265,0.004555721,0.01730609,0.041896306,-0.014015671,-0.03184923,-0.029965404,-0.026021928,-0.0032244835,0.01642697,-0.011290402,-0.004414434,0.00091287104,0.014480349,-0.0063547757,0.022982687,-0.011208769,0.0064301286,-0.01337517,0.010530592,0.0016891647,-0.019956004,-0.012244874,0.027177341,0.0041695368,-0.034561943,0.0033406527,-0.010210341,-0.037425358,-0.006951321,0.008985854,0.00315227,0.0057707895,-0.00815069,-0.028232284,0.024075305,-0.011880668,0.0068571293,-0.0044646696,-0.015158526,-0.022091009,0.011466226,0.008703279,0.0018649885,-0.010932474,-0.015372027,0.0043987357,-0.00707063,-0.0075729834,0.013400287,-0.0032590204,0.02554469,-0.02229195,-0.01793403,-0.0024112982,0.00880375,0.016992118,-0.026474046,-0.007912072,-0.000016802362,-0.009406575,0.010103591,-0.0134882,0.024502307,-0.00587126,0.015095732,-0.011874388,0.0042260513,-0.0013014104,-0.02762946,0.019842975,-0.0078932345,-0.018675003,0.0020737792,0.016188351,0.0038524256,-0.0057174144,0.024276247,-0.04533743,-0.017255854,0.016175792,-0.0004556506,-0.005306112,0.011051783,0.007478792,-0.02185239,-0.008948177,-0.007579263,0.00641443,-0.014153819,0.005491355,0.002989005,-0.017670294,-0.013350053,-0.040740892,0.008031381,0.020847682,-0.024527425,-0.011453667,-0.02010671,0.011152254,0.0413186,-0.009645193,-0.029965404,0.021337477,0.013262141,-0.0007193863,0.005557289,0.22867145,0.00023312356,0.0036263666,0.0092370305,0.022342185,0.024954425,0.017029794,0.018649885,-0.024313925,0.0017707972,0.007353204,0.000054994005,-0.023510158,0.000967816,0.016414411,-0.0027331186,-0.023899483,-0.026624752,-0.0026687547,-0.032879055,0.0044835075,0.018009383,0.01381473,0.006015687,0.049230672,0.0027488172,-0.010492915,0.0005816315,0.015472497,0.018913621,-0.018637326,-0.003001564,0.020307653,-0.0063641947,-0.015560409,-0.009996841,0.0110329455,0.0019623195,0.011215049,0.023999954,0.022806862,0.00057378225,0.027127106,0.009186795,-0.007679734,0.011943461,0.005588686,-0.0058116056,-0.015522732,0.013262141,-0.024590218,-0.023020362,-0.005695436,0.02098583,-0.006097319,0.014153819,-0.0003973697,0.007114586,-0.012973287,0.006530599,-0.0051459866,0.030718936,-0.005368906,0.010568268,-0.026775457,0.0067252615,0.012684434,0.010756651,0.02793087,-0.020081593,0.026323339,0.0054536783,-0.005469377,-0.008376749,-0.0070266738,-0.010612224,0.026172632,0.024753483,0.032828823,0.033557232,-0.0031271523,-0.009111442,0.009437972,-0.015196202,-0.0061287163,-0.036546238,0.018185208,0.013350053,0.0014175796,-0.026674988,0.0030141228,0.0051240087,-0.026373575,-0.0031946562,-0.017356323,-0.01751959,0.008037661,0.019566681,-0.01945365,-0.003252741,-0.011001549,0.016678147,0.037425358,-0.008609088,-0.018210325,-0.0037864917,-0.0003716633,0.018863386,0.00652432,-0.011510181,-0.021337477,-0.027051752,-0.0016718962,0.0206593,-0.005560429,0.006492923,0.008100455,-0.023685982,0.02391204,-0.020810006,-0.020496035,0.0017692273,-0.0013916771,-0.0034317044,0.0013304526,-0.007032953,-0.007579263,0.008828868,-0.00125039,-0.024715807,0.023409687,0.0018163229,-0.00017572571,0.00837047,-0.0056169434,0.017808443,0.004304544,-0.015309232,-0.020734653,0.00880375,-0.018850826,0.022467773,0.018072179,-0.0029230712,0.01566088,-0.02642381,0.017858678,-0.012345345,-0.018536855,0.016326498,-0.017783325,0.0017598082,0.002414438,-0.023020362,0.036621593,-0.022706391,-0.00783044,-0.020508595,-0.012364183,-0.0008634206,-0.005686017,-0.0005207996,0.023874365,-0.019654592,-0.044232253,-0.01130924,-0.15763862,0.0077676456,0.023108276,-0.012200918,0.0176075,0.024514865,0.01772053,-0.007102027,-0.015409702,0.012219756,0.031045465,0.009551002,-0.025846103,-0.028985815,-0.0034756605,0.016150674,0.007233895,0.02675034,0.0035133369,0.02131236,0.03968595,-0.024489747,0.005102031,-0.03302976,-0.008087896,0.009626355,-0.017682854,0.034712646,-0.021262124,-0.029965404,0.013538435,0.01109574,0.039485008,0.012696993,0.024929307,0.008012543,-0.0015572968,-0.01533435,0.0052684355,-0.0033155351,0.02479116,0.028006224,-0.0041915146,-0.003751955,-0.019328063,0.030467758,0.003871264,-0.018675003,-0.005733113,0.007001556,0.013739376,-0.006543158,0.025507014,-0.004684449,-0.0012346915,0.03566712,-0.021802155,-0.006339077,0.009092604,0.005513333,-0.007761366,-0.026373575,0.0030941854,0.010593385,-0.0045714197,-0.025255837,-0.011353196,0.00445839,-0.0062009296,0.025846103,-0.016163234,-0.031171054,0.035290353,-0.0030392406,0.005315531,0.022568244,-0.0393343,0.015585527,0.013450523,0.025846103,0.008678162,0.019616917,-0.020433242,0.033255823,-0.004706427,-0.00057378225,-0.019403415,-0.0026279383,-0.008269999,-0.018034501,0.0028367292,-0.0024929307,-0.012508609,0.0020345328,-0.006599673,0.029990522,-0.014304524,0.01435476,0.007058071,-0.007472513,-0.0059183557,0.014706408,-0.011974859,-0.0006824947,0.03167341,0.010788048,-0.015937174,0.01533435,0.035516415,0.0017912053,-0.010492915,0.013086316,0.0071836594,0.020156946,0.028985815,0.0050298176,0.03086964,-0.02163889,0.019478768,-0.010894798,0.025067454,-0.003993713,0.013977994,0.00067621534,-0.017481912,-0.03380841,-0.0817832,-0.036169473,-0.006543158,-0.0004293555,-0.023786452,0.021337477,0.01858709,0.012426977,-0.0029968545,0.012910493,0.00036950476,-0.038756594,0.011372034,-0.016163234,0.0060627824,0.018662443,0.0036357855,-0.008295117,-0.015145967,-0.0029858653,-0.009488207,-0.02033277,0.00587126,-0.02467813,0.008320235,-0.006480364,-0.018348472,0.01630138,0.027252695,-0.015183643,-0.012213477,-0.009551002,-0.004631074,-0.016477205,-0.010524312,0.010172664,-0.012872816,0.015472497,0.013174228,-0.030819405,-0.021726802,-0.005023538,0.0011483494,-0.025481896,-0.020345328,0.0127158305,-0.009613796,-0.003196226,0.015912056,-0.017318647,-0.017594943,-0.018549414,-0.02858393,-0.0011703274,0.030618465,-0.013513317,-0.006395592,0.024100423,-0.02893558,0.0003997245,0.007886955,0.008998413,-0.003328094,0.009456811,0.026725221,0.0019262128,0.00018720528,-0.020822566,0.012226036,-0.002078489,-0.023296658,0.013626347,-0.017481912,0.007447395,-0.010455239,-0.012665595,-0.00782416,0.0013963865,0.010141267,-0.00543798,-0.013864965,-0.018034501,-0.016992118,-0.020069035,-0.01610044,0.015585527,0.020483477,0.0018759775,-0.018009383,-0.03945989,-0.0066373497,0.023221305,-0.010718974,-0.03129664,-0.020508595,0.020282535,0.0045054858,-0.0036671828,0.00090816146,0.0034850794,-0.008954456,0.00793719,-0.059026573,0.0045431624,0.026348457,-0.005588686,-0.014693849,-0.01794659,-0.0033375132,-0.019064328,-0.035265237,0.004373618,-0.033783294,-0.0021459926,0.01272211,-0.022580804,-0.02260592,-0.0060188263,0.010153826,0.0020690698,0.0020266837,-0.037249535,0.005789628,0.0035133369,-0.027805284,0.0032433218,-0.0062448857,0.019830417,-0.010612224,0.015158526,-0.010725253,-0.010750371,0.007208777,-0.037450477,-0.024602778,0.023459923,-0.0026028208,0.0019623195,0.0034944986,0.029186755,-0.006976438,0.0146184955,-0.01990577,-0.023246422,0.028081577,-0.009469369,0.0032276232,-0.0054411194,-0.018348472,-0.0047346847,0.0036263666,-0.0095761195,0.018712679,0.026574517,0.010888519,0.004357919,-0.002381471,-0.007956028,0.0050517954,0.0076608956,0.023007805,-0.036696944,0.024653012,0.017582383,-0.010894798,-0.022342185,0.018888503,-0.008182088,-0.019642035,0.014266848,0.0020298234,-0.03544106,-0.010298253,0.0047472436,0.007014115,0.014518025,0.014744084,0.012194638,-0.005058075,-0.0027488172,-0.0114850635,0.01044268,0.011905785,-0.012043932,-0.0027535267,0.0247786,0.022543127,0.010618503,0.0014489767,-0.009375178,-0.0029215014,-0.0019623195,-0.0045933975,0.01086968,0.008426985,0.010109871,0.015070614,0.015296673,0.00990265,0.013500758,-0.0060722018,0.018411268,-0.0055541494,0.0038555653,0.0043987357,-0.00869072,-0.028734637,0.022241715,-0.03795283,-0.026951281,0.005686017,0.0072401743,-0.0071397033,0.01751959,0.0033343735,0.013287258,-0.015120849,-0.0011664027,-0.013199346,-0.03752583,-0.03624483,0.004923067,0.0014372028,-0.0058869584,0.01665303,-0.008508618,0.025582368,-0.008546294,0.006426989,-0.005610664,0.0033846088,-0.013563553,-0.0035384546,-0.00013530193,0.002056511,-0.007566704,0.014869672,0.015346909,-0.037123945,-0.0016138116,0.0078053223,0.042072132,0.014091024,-0.03164829,0.0121444035,-0.0023171068,0.010580827,0.024653012,0.0055729877,0.011102019,-0.0013359472,0.016376734,0.006530599,0.028558813,-0.003293557,-0.018499179,0.021613773,-0.0003273149,-0.011547858,-0.005302972,-0.0156232035,0.029915169,-0.017858678,0.030568229,0.017532147,-0.027880635,-0.00597801,0.022204038,-0.032703232,-0.03729977,-0.03511453,-0.017795883,-0.0053626266,0.0112527255,-0.0028539975,0.029111402,0.004056507,0.005061215,0.027780166,0.025080014,-0.0011232317,-0.0043108235,0.0077236895,-0.02381157,-0.01903921,0.0064018713,-0.003131862,-0.0032040754,-0.019742504,-0.025356308]},{\"id\":\"3dd87a4f-7868-41da-b453-16bad88b0368\",\"text\":\"Have not got the tea yet.\",\"vector\":[-0.016999403,-0.03543141,0.0047614956,-0.0070607,0.0023583632,0.013993489,-0.022640288,-0.0022144632,-0.019762285,-0.0045024753,0.014607462,0.0024047312,-0.017024985,-0.020197183,-0.0087683145,-0.002742097,0.029905645,0.0040036216,0.03246387,-0.009542177,-0.003428021,-0.0006175714,0.0015149487,0.008250275,0.0011831789,-0.00010442753,0.004230664,-0.020337885,-0.015886575,0.0035911077,0.012957407,0.005541754,-0.02187282,-0.021783283,-0.02129722,-0.022294927,0.0040324014,0.006983953,0.028345129,-0.004972549,0.0042370595,0.021655371,-0.0071950066,-0.005717632,-0.038808268,0.032668527,0.016551713,0.0017172083,-0.012650421,0.021936776,0.002844426,-0.0316964,-0.017600585,-0.017562212,-0.019391343,-0.013174857,-0.012196336,0.019659957,0.020440215,0.009804396,-0.0027916627,0.009663694,0.00927996,0.0022096664,0.00028120485,0.0040707747,-0.021616997,-0.018738994,-0.010226503,0.017575003,0.022627497,0.044129375,0.0024127255,-0.001144006,0.0316964,-0.0052091847,-0.023829862,-0.00463998,-0.035456993,-0.008761919,0.006958371,-0.023765907,-0.017933154,0.014198147,0.013091714,0.02358683,0.01674358,0.016116815,0.01110909,-0.009158444,0.026477624,0.016692415,0.00060557976,0.031005682,-0.037094258,0.022857737,-0.009945098,0.02037626,-0.009043324,-0.020030899,-0.006593824,-0.0019202674,-0.016871491,-0.012432972,-0.013878369,0.001159995,-0.012746354,0.02004369,0.015003988,-0.02299844,-0.030545201,0.016884282,-0.001291104,-0.0021105353,0.0055769295,-0.017012194,0.017408717,-0.029240508,-0.024392672,-0.02084953,-0.004073973,0.0070031397,0.015067942,0.016206352,0.029598659,-0.006561846,-0.0037733812,0.0041922904,-0.003978039,0.0075787404,0.0063028256,0.009260773,0.013673711,0.025134556,-0.025914814,0.022640288,-0.04725041,-0.0025006644,-0.0020465797,-0.01389116,-0.0008282252,0.028907938,0.006283639,-0.011198628,-0.0155412145,0.016999403,0.020913485,0.014057444,-0.02084953,-0.01641101,0.009842769,-0.013430679,0.021808865,-0.000018736997,0.012746354,0.0034504053,-0.031466164,0.0266567,-0.009382289,0.018918071,-0.0069072065,-0.008467724,0.024891526,-0.021783283,0.008736337,0.028677698,0.034229044,-0.022525167,-0.0046463753,0.0032745274,-0.015080734,0.037452407,-0.014415596,0.003106644,0.011742251,-0.01344347,0.0067792954,-0.008557261,-0.017907573,-0.016590087,-0.043566566,0.030007975,0.016449384,0.00066633755,0.014338849,-0.026477624,0.0073612914,-0.012119589,0.021834446,-0.013980698,0.017677331,0.018291306,-0.010373601,-0.004115544,-0.651631,-0.033742983,-0.004943769,0.002889195,0.000019436511,0.015234227,-0.0037541946,0.019276222,-0.01270798,0.006392364,-0.027168345,-0.0015701103,0.004406542,-0.0076746736,0.024853151,-0.025006646,0.007335709,-0.004815858,0.0028476238,0.008506097,-0.022039104,0.04773647,-0.007303731,-0.0074764113,0.016577296,-0.03325692,0.021898402,0.011045135,-0.04123858,0.025812486,-0.014837703,0.024405463,0.0063348035,-0.0047039357,0.04804346,-0.0037797769,-0.023331009,0.024085684,0.0053370963,0.020823948,-0.024648493,0.003850128,-0.00052963244,-0.020018108,-0.01742151,0.012004469,0.033742983,0.002798058,0.008787502,0.007962474,0.020171601,-0.010635818,-0.014569089,-0.00036414727,0.008333417,0.014556298,0.034254625,-0.014697,-0.011505615,0.005845543,-0.0013966308,-0.0021025408,-0.003735008,-0.028447457,-0.04075252,0.016321473,-0.005087669,-0.005394656,0.016602878,0.006651384,-0.011882953,0.03110801,-0.0065874285,0.016833117,0.017690122,0.0022080676,0.030468455,0.0040771705,0.018380843,-0.010655005,0.005174009,-0.00018826935,-0.013865577,0.012471345,0.024239179,-0.024239179,-0.0013550596,-0.0017331971,0.010379996,-0.017728496,-0.0023855444,0.018444799,0.031517327,0.0007710649,-0.018188978,0.027833484,-0.019762285,0.000058509395,0.03827104,-0.030494038,-0.0035623277,-0.00837179,-0.0009529387,-0.008678777,0.018176185,-0.0024894723,0.0043809596,-0.00062356726,0.027117182,-0.007214193,0.025761321,0.004828649,0.010456743,0.016487757,0.0028684093,-0.027398586,0.016347054,0.008525283,-0.010341623,0.004416135,0.005135636,-0.0036838434,0.024008937,0.004678353,0.0034791855,0.038066383,-0.012823101,-0.00367425,-0.014415596,-0.020146018,-0.003936468,-0.005193196,-0.0062356726,-0.011575966,0.009753231,-0.006990349,0.011991678,-0.016462175,0.008384581,-0.02778232,-0.004623991,0.014697,-0.0015573192,-0.015438885,0.012848683,-0.032156885,-0.011780624,0.0011184238,-0.038910598,0.014083026,0.0008402169,-0.00463998,-0.021744909,-0.025953189,0.0049949335,-0.014991196,-0.015195854,-0.027040433,-0.015400512,-0.0078089805,-0.0010624627,0.01435164,-0.009056115,0.00074708153,0.0044449153,-0.017293599,-0.007047909,0.04604804,-0.016231935,-0.010482325,-0.015976112,-0.024635702,0.010405579,0.0045888154,-0.013341141,-0.030545201,-0.01525981,0.007393269,-0.008327021,-0.0027037237,-0.0042370595,0.020862322,-0.006619406,0.005557743,0.04615037,0.009446245,-0.0016260715,0.032054555,-0.028882356,0.032387123,-0.0004796671,-0.0051836027,0.000021759899,0.027475333,0.0030954517,-0.019787867,-0.00239194,0.010482325,0.022397256,0.0074508293,0.008288648,0.0030906552,0.013596964,0.0048798136,0.015183063,-0.022512376,0.010021845,-0.011249793,0.029700987,0.027066017,0.0007099073,-0.019992525,-0.018956445,0.025275258,0.0037797769,0.017920364,-0.011908536,0.015477259,-0.0025038624,0.0032489453,-0.030673113,-0.004435322,-0.005701643,-0.038808268,-0.028600952,-0.015093525,0.0090049505,0.018662248,-0.00019016802,-0.010776521,-0.017677331,-0.010220108,0.003984435,0.019736703,0.011064322,-0.0049629556,0.0075531583,-0.030033557,0.026247384,0.0073229177,-0.015566797,0.0051612183,0.032310378,-0.011627131,0.024865944,-0.008454932,0.0033800541,-0.00061277475,-0.010559072,0.010686983,0.0054586115,0.0047167265,-0.02266587,-0.003978039,0.006983953,-0.03965248,0.0131492745,0.014952823,0.012068424,0.020926278,0.00016198758,0.023804279,0.007380478,-0.015988903,0.033077843,0.015451676,0.013558591,-0.0073229177,-0.016116815,0.004403344,0.017344764,-0.018815743,0.02721951,-0.011173046,0.024789196,-0.014223728,0.013916742,-0.009785209,0.016372638,-0.0063571883,-0.0107061695,-0.025275258,0.0072525665,0.011083508,0.01064861,-0.0023247865,0.01639822,0.011032344,-0.04497359,0.014658627,0.004026006,0.006069388,-0.008365395,0.005596116,0.0074188514,-0.0071374467,0.00837179,0.022806572,0.0072014024,0.02095186,0.005180405,-0.039243165,-0.016935447,-0.0009041725,0.006619406,0.0047487044,-0.015924947,0.005001329,0.0045984085,-0.009951494,0.00968288,0.00991312,-0.0074252468,-0.010264876,-0.008793897,0.009350311,-0.0064275395,-0.024136849,0.02847304,0.009100884,-0.021975148,-0.031287085,-0.020747202,0.012899848,0.089691356,0.01890528,-0.0145307155,-0.00044329235,0.021578625,0.0019746297,-0.0018051473,-0.016423801,-0.0033672631,-0.0028604148,0.008422954,0.016538922,0.0013142879,0.00688802,0.0060853767,0.0058807186,-0.010418369,-0.022358883,0.006299628,-0.020580918,0.00796887,-0.0068944152,0.0072909403,-0.005906301,0.005020516,0.05011562,0.0064978907,0.034356955,0.018687831,0.0029355627,0.0009897131,-0.012522509,-0.008320626,-0.0018627073,-0.014505133,0.025710158,0.012458554,0.02266587,0.018713413,0.012522509,0.020683246,0.01799711,0.010629423,-0.019775076,-0.019289013,-0.01321323,-0.010718961,0.0047391113,-0.0013494635,-0.0025934002,0.026400877,0.014658627,-0.020222766,0.01332835,-0.006651384,0.022742616,-0.015183063,-0.018061066,0.016717998,0.010156152,-0.036173295,0.00075707457,-0.0059446744,-0.0005911897,-0.0036422722,-0.03417788,-0.014760956,-0.012285873,0.011243397,0.011128277,0.0117166685,-0.0026045924,-0.027884647,0.014326057,0.002072162,0.015976112,-0.002537439,-0.008851457,0.007086282,0.040522277,0.0058231587,-0.038219877,0.0044992776,0.0032265608,-0.0036774478,0.009305542,0.00933752,0.00087299413,0.016641252,-0.0033608675,0.013392306,-0.0030235017,0.040471114,-0.0036422722,-0.0141086085,0.009810791,-0.020977441,-0.006881624,0.004988538,0.015387721,0.009184026,0.006360386,0.0023008033,-0.020440215,0.010060218,0.0061365413,-0.019058773,-0.011684691,-0.022320509,-0.0074188514,0.027142763,-0.02368916,0.0055289627,-0.010910828,-0.016833117,0.01423652,-0.009420662,0.05126682,0.00084101636,-0.0040931595,-0.0078921225,-0.024328716,0.019378552,-0.020453006,-0.0047902754,0.016359847,0.0141597735,-0.010290459,-0.008301439,-0.0011543989,0.010239294,-0.007898519,-0.013955115,-0.000049490653,-0.039012924,-0.0077961893,0.010162547,-0.0033800541,0.0074572247,-0.014338849,-0.0055769295,-0.02870328,-0.012771936,-0.020798367,-0.023151932,-0.021898402,-0.0065394617,-0.020670455,0.011972491,-0.0059286854,-0.01560517,0.010386392,-0.0077833985,0.026835777,0.0070031397,-0.034484867,-0.03028938,0.006200497,-0.003763788,0.022640288,0.015067942,-0.021962358,0.011972491,0.014645835,-0.019352969,-0.005365876,0.008915412,-0.027500914,-0.034126718,-0.004972549,0.022844946,-0.028089305,0.032156885,0.026452042,-0.0040036216,0.024008937,-0.009861955,-0.021003025,-0.0012887056,-0.009606133,0.0040228083,-0.0076938607,-0.013865577,0.010623028,0.020900695,-0.00355913,0.0044289264,-0.00008094383,0.01867504,-0.0036678545,0.032949932,-0.024750823,0.020785576,-0.020785576,-0.0025934002,-0.014223728,-0.014645835,0.0031306273,-0.005714434,0.023215888,0.018470382,0.01936576,0.0038117548,-0.003399241,-0.009957889,0.004831847,0.0030554796,-0.019033192,0.010009054,-0.014249311,-0.025108974,-0.019327387,-0.0114800325,-0.029138178,-0.0045856177,-0.0005160419,-0.026183428,0.014645835,-0.001722005,0.0030906552,-0.0009161642,-0.0035687233,0.009043324,0.015554005,0.035124425,0.022128643,-0.015349347,-0.015387721,0.018048275,0.011268979,-0.011518407,0.00883227,0.019045983,-0.007866541,0.018521545,0.003894897,0.016909864,-0.010399183,-0.019429715,-0.006958371,0.0056216987,0.00039372675,-0.0051548225,-0.0071694246,-0.028984684,0.008902621,0.024431044,-0.014722583,-0.020094855,-0.019634373,-0.026707865,0.024098476,-0.028549787,0.027603243,0.008870644,0.0009809192,-0.009184026,-0.00037853728,-0.010623028,0.0023375778,-0.0023983356,0.029112596,-0.0131492745,-0.006369979,-0.0076171136,-0.027347421,-0.008307834,-0.008358999,-0.008442141,0.026861358,0.00894739,-0.024124058,-0.009753231,0.018278515,0.020005316,-0.0010104987,0.0012407389,0.010399183,-0.006098168,0.022282137,0.0000101179785,0.004416135,-0.00065594475,0.012215522,-0.028038142,-0.005116449,-0.0158482,-0.029777734,-0.0015573192,-0.019557627,-0.02698927,-0.016692415,-0.013916742,0.034561615,-0.010463139,0.00035355464,-0.015899366,0.006625802,-0.011326539,0.006446726,-0.020082064,0.032591783,-0.018073857,0.008589239,0.023804279,-0.014952823,0.03085219,-0.020836739,-0.018764578,-0.02370195,0.016436594,-0.03246387,-0.005471403,-0.022627497,0.024495,0.0074444334,0.01031604,-0.018048275,-0.016590087,0.0034791855,-0.003428021,0.0015125503,0.013967906,-0.030673113,0.01982624,0.027296256,0.016244726,-0.01184458,0.014888867,0.009612529,0.004038797,0.05264826,-0.0012775135,-0.027398586,0.00086420024,-0.010073009,-0.011467242,0.019455299,-0.027245091,0.019097148,0.031619657,0.04589455,-0.021616997,-0.002727707,0.0013062934,-0.016321473,-0.010463139,-0.0013622546,-0.033845313,-0.021220474,-0.014313267,0.001502957,-0.0010025043,-0.0074892025,-0.012835892,-0.025198512,-0.007661883,-0.0016564504,-0.0023855444,0.034894183,0.012215522,-0.013801621,-0.033998806,0.025684575,-0.0019746297,-0.009350311,0.0043393886,0.0011168249,0.0048766155,-0.009369497,0.0014949625,0.0047391113,-0.0396269,-0.0077450247,0.027347421,0.011166651,-0.008422954,0.012049238,-0.006593824,-0.0009129664,-0.019583208,-0.0041059502,-0.0071374467,0.004217873,0.01811223,-0.011416078,-0.025121765,-0.010047427,-0.0007099073,-0.035047676,0.026912523,0.015042361,0.0041507194,0.015349347,-0.00355913,-0.023510084,-0.014556298,-0.017805243,0.026400877,0.0010528693,0.0056216987,0.019097148,0.0023887423,-0.005087669,0.010348018,-0.0022576333,-0.035252336,0.009075302,-0.005516172,-0.022141434,-0.005103658,0.0011344127,-0.0036646568,-0.00848691,-0.005119647,0.007764212,-0.0064243414,-0.028396294,0.019045983,0.025646202,-0.024008937,0.021796074,0.0076171136,-0.010955597,0.00865959,-0.012522509,0.024060102,-0.025799695,-0.016040068,0.0077130473,0.010731752,-0.054950666,0.0053594806,-0.016807536,-0.021054188,-0.013507426,0.24661285,-0.0029755349,0.004361773,0.051752884,0.0049469667,-0.005851939,0.024763614,0.020696037,0.008813084,0.0015845003,-0.0030155072,0.0075915316,-0.020222766,0.0037254146,-0.013302768,0.0077194427,-0.041059505,-0.053518057,-0.0049309777,-0.0018099439,-0.0016980215,-0.012816705,0.007105469,-0.0063891658,0.026963687,-0.007981661,0.010181734,-0.0141086085,0.015976112,-0.0260811,-0.026503207,-0.017677331,0.012477741,-0.010686983,-0.008109572,-0.0014094219,0.0075787404,0.0004079169,0.008115968,0.031721983,-0.011121881,-0.016769161,-0.0054330295,0.009657298,-0.018828534,0.00933752,-0.0049533625,-0.0141214,-0.0012671206,0.012637629,-0.02244842,-0.009184026,0.030340543,0.022793781,0.007527576,-0.03110801,0.015451676,-0.0076235095,-0.027731154,0.0037382056,-0.013878369,0.027475333,0.004038797,0.008800292,-0.027961396,0.020120436,-0.020082064,-0.028677698,-0.0075147846,0.007374082,-0.025774112,-0.012164358,-0.006651384,0.004157115,-0.033922058,-0.013660919,0.03225921,0.013341141,0.0031322262,0.0048926044,0.009791604,0.005295525,-0.017472673,-0.0053882604,0.016551713,-0.039857138,0.010181734,0.0010944405,0.015643543,0.020593708,0.013827204,-0.0020977443,-0.011934117,0.01377604,0.022525167,0.0055769295,-0.00033216947,0.0028939915,0.000940947,-0.0010880448,-0.012893452,-0.0027772726,-0.015797038,0.011185837,-0.012496927,0.012880661,-0.007949683,-0.0017731694,0.014019071,-0.021655371,-0.020913485,-0.03553374,-0.005660072,-0.010136965,-0.011128277,0.015797038,-0.0030282983,-0.013520217,-0.0052603493,-0.0141597735,0.018125022,-0.007278149,0.00554815,0.033282503,-0.008851457,-0.01122421,-0.010770125,0.006315617,0.020900695,-0.028089305,0.013392306,-0.0038853036,0.028882356,-0.026631119,-0.01639822,0.0063411994,0.027347421,0.0022544353,-0.0024574946,-0.015451676,-0.005135636,-0.0107061695,0.01923785,-0.019340178,-0.003312901,-0.025134556,0.0040164124,-0.0037382056,-0.015745873,-0.018700622,0.0063667814,-0.016385429,-0.0190204,-0.018201768,0.04146882,-0.010092196,-0.015707498,-0.008972973,0.0071310513,0.021463504,-0.010917223,-0.027475333,0.03944782,-0.019378552,0.012106798,0.02425197,-0.16116814,0.014735374,0.002172892,-0.016231935,0.0035399434,0.0046591666,0.017754078,0.022832155,-0.008231088,0.004051588,0.038322203,0.017728496,-0.0037222167,-0.0036486678,-0.0029659416,0.00057440135,-0.026247384,0.0012615245,0.036070965,0.005413843,-0.00006755312,-0.01377604,0.004054786,-0.012004469,0.024725242,0.022064688,-0.0051420312,0.026017144,-0.023331009,-0.004476893,-0.014441178,-0.003456801,-0.0020977443,0.0070351176,0.047557395,0.015784245,0.030442873,0.02128443,0.0036486678,-0.00927996,-0.0062612547,0.0046143974,0.008333417,0.0023135943,-0.018291306,0.022960065,0.009011346,0.016564503,0.00871715,-0.021604206,-0.004304213,-0.030238215,0.0009905125,-0.0021648975,0.017357554,-0.0034184277,0.011735856,0.004201884,-0.017383136,0.023778697,0.0065554506,0.0012455356,-0.011262584,-0.0046911445,0.0041794996,-0.005276338,-0.0029947218,-0.017971527,-0.016717998,0.020030899,-0.01731918,-0.009081697,0.026055517,0.0010280865,-0.005279536,0.0079241,-0.0069967443,-0.0029531505,0.0067153396,-0.0064978907,-0.0057815877,0.03609655,-0.0049213846,0.010495116,0.017677331,0.014620254,0.0045152665,-0.00796887,0.01914831,-0.04318283,0.021616997,-0.009618925,0.011128277,-0.02164258,0.009388684,0.03471511,0.013584172,0.0066705705,0.004320202,-0.031159176,0.020657664,0.0028556183,-0.019071564,0.03246387,0.025467126,0.014300476,0.002099343,0.015694708,0.02128443,-0.0061269477,-0.002116931,0.0034024387,0.020977441,0.017677331,0.015617961,0.046943422,0.00082982413,-0.02154025,0.011294561,-0.008403768,0.015323766,-0.009228795,-0.012170753,0.022320509,0.0044289264,-0.004988538,-0.10867338,-0.039703645,-0.0064115506,0.012170753,-0.017971527,-0.0034599989,0.014556298,0.010098591,-0.019775076,0.022972858,0.0060789813,-0.041673478,0.0014278091,-0.007047909,0.02154025,-0.01332835,0.021923985,-0.02063208,-0.011492824,-0.0053434917,-0.0137888305,-0.005263547,-0.0024686868,-0.027935812,-0.0013382712,-0.022077478,-0.03520117,0.0055673365,0.02015881,0.017587794,-0.008672382,-0.017613376,0.0028556183,-0.020197183,0.002068964,0.011550384,-0.025722949,-0.0022800176,0.028012559,-0.03351274,-0.0014206141,-0.0059766523,0.02164258,-0.0149016585,-0.033282503,-0.01133933,-0.01492724,0.026810193,0.014735374,-0.029496329,-0.009356706,0.0062548593,-0.008909017,-0.004281828,0.01537493,-0.022397256,0.008141549,0.0045888154,-0.016257517,-0.029931229,-0.021783283,0.0021856832,-0.0023743522,0.011524802,0.012509719,0.002623779,0.010770125,-0.009350311,0.007508389,0.005189998,0.024354298,0.018304097,-0.025249677,0.001853114,-0.016961029,0.011115486,-0.0040196106,-0.010041032,0.0073293136,0.0013502629,-0.02814047,0.0042370595,-0.013494635,-0.025799695,0.039857138,0.01651334,-0.0018035483,-0.021834446,-0.007310127,-0.014262103,-0.00013120894,0.019276222,-0.0066769663,-0.029189343,-0.024738032,0.03522675,-0.013571382,-0.004844638,0.022896111,-0.021028606,-0.0070990734,-0.03955015,-0.049834214,0.015093525,0.0035975033,-0.04430845,-0.004608002,-0.0031721985,0.010079405,0.0020929475,0.0058551366,0.0031034462,-0.009817187,0.005746412,-0.02539038,-0.008013639,-0.00058519386,-0.013430679,0.03018705,0.0070607,0.0050492957,0.014914449,0.018304097,-0.005062087,0.029700987,0.020759992,-0.003923677,0.030391708,-0.022051897,0.017677331,-0.020900695,0.0007274951,0.022371674,-0.028831191,0.012631234,0.014607462,0.023267053,-0.016027277,-0.011985282,0.02585086,0.018994818,-0.010923619,-0.0016564504,-0.024495,0.0013342741,0.004473695,-0.011723064,0.011607944,-0.013136484,0.021923985,0.025825277,-0.008365395,0.01082129,0.030494038,-0.006107761,-0.028038142,-0.01344347,-0.013916742,0.023203097,-0.009631716,0.00054202386,-0.05556464,0.025556663,-0.00076746737,0.00848691,-0.0056089074,0.019097148,0.012803914,-0.0076363003,0.000933752,0.008889831,-0.020478588,0.011038739,-0.009305542,0.026452042,-0.011806207,0.020708827,-0.00064075534,-0.021028606,-0.015400512,-0.01914831,0.008410163,0.0023951377,-0.019084355,-0.016462175,0.014671418,0.020222766,0.021911195,-0.015963322,0.0038725124,0.017613376,0.010424765,-0.019173894,-0.0007454826,0.012285873,0.0067345263,0.013852786,0.028882356,0.0017044172,0.0016220743,-0.0076235095,0.012637629,0.010264876,0.006766504,-0.003735008,-0.006971162,-0.018304097,-0.0010216909,-0.03144058,-0.02096465,-0.018073857,0.0168587,-0.015362139,-0.012234709,0.015745873,0.02312635,-0.0033800541,-0.014262103,-0.006306024,-0.010846872,-0.015016778,0.030442873,0.0022640286,0.022589123,0.015387721,-0.015758663,0.029087014,0.023970565,0.02402173,0.0036134922,-0.00049125904,0.008966577,-0.019352969,0.0052731405,-0.03177315,-0.020504171,-0.009171235,-0.0076363003,-0.006689757,0.022384465,-0.008710755,0.036070965,-0.011057925,-0.008736337,-0.01201726,0.017728496,0.035022095,0.024546165,0.007438038,-0.024392672,-0.022729825,0.012049238,-0.005525765,0.0014821714,-0.033998806,-0.04418054,-0.0041059502,-0.0014573886,0.027347421,-0.023727532,-0.0137888305,0.015669126,0.0021856832,0.008813084,0.004671958,-0.010437557,0.0020018108,0.0278079,0.012177149,0.0051260428,-0.034356955,0.014940032,0.0028364316,-0.022832155,-0.010104987,0.012816705,-0.005276338,-0.0037094257,0.0024255167,0.051190075,0.017204061,-0.00808399,0.04008738,-0.022832155,-0.018432008,-0.012100402,-0.028114889,-0.00939508,-0.0100154495,-0.018815743]},{\"id\":\"42ef54fb-938c-43ff-94fb-ba7def1ede43\",\"text\":\"Isn’t allowing me to connect \",\"vector\":[-0.037474833,-0.018244669,0.01336905,-0.004616277,-0.024105784,0.03093943,-0.0078515615,-0.0032466303,0.0033941306,-0.03088756,0.012351135,0.0036437467,0.0039419895,-0.017181369,-0.006136666,-0.012448387,0.033143833,0.012915202,0.010548712,-0.027049309,-0.01285685,-0.019359836,-0.008182221,-0.003919297,-0.012396519,-0.0020536599,0.009394643,-0.013537621,0.009589149,-0.0031153387,0.016934995,0.009576182,-0.017259171,-0.008830575,-0.029668657,-0.006266337,-0.0011329978,-0.024676334,0.020189729,-0.010133766,0.014497184,-0.017907524,-0.018465107,-0.0071318885,-0.02837195,0.043569356,-0.009686401,-0.00056771457,-0.019580277,0.0020585223,0.013077291,-0.017207302,-0.021058522,-0.041105613,-0.00761167,0.012934653,-0.010892339,0.022912813,0.007404197,0.0027101177,-0.0039970996,0.018905988,-0.023833476,-0.01810203,0.0019094012,0.01544378,0.0031915202,-0.003403856,0.019567309,-0.0069244155,0.012208497,0.016792357,0.003304982,-0.01615697,0.014834329,-0.0024053915,-0.00621771,0.0052419384,-0.04172803,-0.00096280494,0.029513052,-0.021136325,-0.008700904,0.012370585,0.023275891,-0.0058124894,-0.0017051698,0.014432349,-0.0075403512,-0.029668657,0.019671045,0.027075242,-0.025389524,-0.003013223,0.0018105272,0.004895069,-0.016481146,0.024987545,0.020721378,-0.0029386624,0.006989251,0.009459478,-0.0078061763,-0.0053424328,-0.019541375,0.00054259086,-0.0031639652,0.0010608685,0.017064665,-0.019567309,-0.004337485,-0.0011411022,-0.007365296,-0.013822897,-0.0073134275,0.001898055,-0.0005357021,-0.0007233194,-0.034284934,-0.0018024228,0.01699983,-0.005747654,0.00086149975,-0.00942706,-0.00011275273,-0.014185975,-0.03332537,0.0068790307,-0.00019592432,0.0064316667,0.044062104,0.028475687,0.013239379,-0.0036858898,0.007890462,-0.0044282544,-0.012960587,0.006943866,-0.0058060056,-0.008344309,0.01965808,0.03049855,0.0066650743,-0.02407985,0.0033649548,0.020928852,-0.009835523,-0.008059034,0.004995564,-0.01801126,-0.022938747,0.0044120457,-0.014380481,-0.042324517,-0.019761816,0.029357446,-0.016571917,0.030420747,-0.006457601,-0.02655656,-0.014847295,-0.0017003071,0.007365296,-0.0130319055,0.009504862,0.0235093,0.0027652278,-0.008739806,-0.008752773,-0.0057249614,-0.03402559,0.02881283,-0.016066201,0.013783996,-0.0070216684,0.018361371,0.007144856,0.0037183075,-0.025609965,-0.0024086332,-0.03602252,0.019593243,0.016144002,0.03864187,-0.012772564,-0.0060718306,0.010503327,-0.01038014,0.02160314,-0.007968265,0.0055693565,0.0020115168,-0.018153898,-0.012603993,-0.6701382,-0.019346869,0.019320935,0.013952567,0.004061935,0.022251492,0.0039419895,0.01575499,-0.028994368,0.02085105,-0.01947654,0.011748166,-0.008331343,-0.005951885,0.011177614,-0.021655008,0.03301416,-0.003585395,-0.010885855,0.012694762,-0.009200136,0.0029889096,-0.0073134275,0.004895069,0.00042061936,-0.00993926,0.024040949,0.008882443,-0.020552807,0.014121139,-0.0148991635,-0.0009936017,0.022121822,-0.012811465,0.08112199,0.0060685887,-0.01762225,0.020163795,-0.0051576523,0.008966729,-0.01371916,-0.019995222,0.012545641,-0.0080979355,0.0040230337,0.0038447364,0.0008898652,-0.0053424328,0.009945743,-0.015365979,-0.0045935847,-0.0075403512,-0.022899846,0.021875449,-0.00379611,-0.0064187,0.0246504,-0.006554854,0.015106637,-0.002272479,-0.0022254735,0.010976625,-0.015365979,-0.020526873,-0.009919809,0.009355742,-0.009264972,-0.0020844566,0.013232895,-0.008402661,0.00048140247,0.008817608,-0.013783996,0.007086504,0.00095145876,0.024416994,0.018504009,-0.006885514,0.014134106,0.0044055623,-0.0009320082,-0.024559632,-0.030291077,-0.021382699,0.04146869,0.014497184,-0.00845453,0.013226411,0.0037280328,-0.013291247,0.03150998,0.019761816,0.005621225,-0.026660297,0.02518205,0.0007946383,-0.004726497,-0.008072001,-0.003556219,0.0113461865,0.011028494,-0.011741682,-0.009692885,-0.005297048,0.01978775,0.008571234,-0.012707729,0.021629073,0.03750077,-0.018400272,0.00728101,0.0017586589,-0.0020844566,-0.004911278,-0.004632486,-0.027697662,0.03018734,-0.006123699,0.011145197,0.013926634,0.006415458,-0.008201672,-0.0046940795,-0.021525336,-0.01082102,0.015495649,-0.0062825456,-0.007475516,-0.01017915,-0.011923221,-0.0075533185,0.0034233066,0.03252141,0.0039257808,0.00887596,0.023314793,0.040483195,-0.013524654,0.01371916,-0.010211568,0.0032271796,-0.008026617,-0.008091452,0.0018024228,0.0057573793,-0.012052892,0.006904965,-0.015651254,-0.0153789455,0.0127920145,-0.006943866,-0.01340795,0.0053683673,0.007002218,-0.003779901,-0.012986521,0.009252004,-0.024170619,-0.0056795767,-0.012396519,0.00068765995,0.001841324,-0.0057055107,-0.010743218,-0.0058351816,-0.00878519,-0.013745095,0.011281352,-0.016831256,-0.0070540863,-0.0155604845,-0.0043763863,-0.014510152,-0.008084969,0.012688278,0.00031809843,-0.0051868283,-0.00920662,-0.0029775635,0.010730251,0.01859478,-0.0042305067,0.00047289283,-0.0040197917,0.0153789455,0.011689814,0.011612011,0.028346015,-0.037552636,0.031561848,-0.0063246884,0.02288688,-0.016649717,0.014185975,-0.0059486437,0.0070346356,-0.005844907,0.022108855,-0.0046422114,0.02987613,0.0061496333,0.004700563,0.033273503,-0.00023198899,0.016403344,-0.00812387,-0.030394813,-0.02956492,0.035866916,0.017946426,0.01593653,0.0038188023,-0.010620031,0.003442757,0.0062695784,0.03044668,-0.036307797,0.0051090256,-0.0320546,0.02226446,-0.009705852,-0.0099003585,0.008551783,-0.01403037,-0.006340897,0.014419382,0.01810203,0.025635898,0.010250469,-0.018828185,-0.034259,0.0073588123,-0.0030926464,0.014004436,-0.01478246,0.0047070463,0.020085992,0.0023583858,0.019904453,-0.0192561,0.01677939,0.01801126,0.026258318,-0.0029467668,0.03664494,0.010697833,0.025026446,-0.0066585904,-0.009148268,0.005248422,0.011676847,0.009485412,-0.025596997,0.0016281778,0.023340726,-0.024455894,0.0003154645,0.014289712,0.022679405,0.027282717,0.018724449,-0.016714554,0.00759222,0.002888415,-0.006943866,-0.013433885,-0.000669425,-0.0030505033,0.013343115,0.008739806,-0.014808394,-0.015404879,0.008642552,-0.01991742,0.02363897,-0.008376728,-0.0015609111,0.011534209,0.021330832,0.023444463,-0.013641358,-0.021084456,0.030913496,-0.0033519876,-0.004758915,-0.02151237,-0.015353011,0.028397884,0.0037150655,0.020539839,0.03713769,0.020397201,0.00007911939,-0.006204743,-0.0036372633,-0.015327077,0.038979013,-0.010198601,0.009504862,0.0036923732,0.002261133,0.00986794,-0.027334584,-0.010133766,0.03125064,0.004797816,-0.004940454,-0.011929705,-0.00007380087,-0.028034806,0.009913325,0.0020990446,-0.006441392,-0.00412677,-0.018374339,0.039134618,-0.013537621,-0.005595291,0.019217199,-0.012143661,-0.030135471,-0.035659444,-0.014043337,-0.024844907,0.08397475,0.033662513,0.021655008,0.003922539,-0.0018348404,-0.010205084,-0.015716089,-0.041364953,0.0074819997,-0.01325883,-0.0051090256,-0.013343115,0.0061755674,0.034596145,-0.0022287152,0.002105528,0.027905134,-0.0068012285,-0.023405561,-0.033143833,-0.0135116875,-0.013732128,-0.014095206,0.037734173,0.012558607,0.022588637,0.0032304213,-0.00836376,0.015716089,-0.011871353,-0.00039346953,0.008525848,0.0029435249,-0.007209691,-0.0028965194,0.028890632,0.0051349597,-0.00599727,0.0024621226,0.02850162,0.023911277,0.014043337,0.012377068,-0.013265313,-0.010833987,-0.043050673,-0.030602286,0.00030087656,0.0080331005,-0.006136666,0.025856338,-0.006541887,-0.013142126,-0.011300802,0.00006341708,0.020280497,0.0024896774,-0.028605357,-0.010626514,-0.021045554,-0.02420952,-0.0018818461,0.022446,0.0037863846,-0.02301655,-0.03469988,-0.027982937,0.0017100323,-0.007067053,-0.009401126,0.014963999,-0.009076949,-0.022277426,0.00931684,0.01113223,0.0129735535,0.009277939,0.009355742,-0.017557412,0.036178127,0.027749531,-0.019411704,0.015832793,0.0073847463,0.003167207,-0.020954786,-0.008590684,0.007955298,0.010769152,0.019541375,0.015651254,0.01894489,0.03257328,-0.041416824,0.012584542,0.02169391,-0.013926634,0.027204914,-0.0148991635,-0.0022400613,0.015236308,-0.019709947,-0.0066650743,-0.0011386708,-0.010963658,0.00962805,-0.002037451,0.02098072,-0.03783791,-0.018439174,0.0060912813,-0.015430814,-0.005695786,-0.009764204,0.018076096,0.013537621,0.014821362,0.025687767,0.0008412387,0.003416823,0.001373699,-0.03833066,-0.0068530967,-0.006567821,-0.010055963,0.0067299097,0.008318376,-0.057210714,0.0026209692,0.003066712,-0.016831256,0.022420065,-0.0043569356,-0.03088756,-0.0050863335,-0.010114315,0.007533868,0.025739634,-0.0268159,-0.006678041,-0.044814195,0.0035886366,0.008610135,-0.029357446,-0.0049047945,-0.0407166,-0.013732128,-0.016221805,0.0019077802,0.028423818,-0.00889541,0.031561848,-0.021940283,-0.0025399248,-0.0051090256,-0.019437639,-0.029642724,-0.008499915,0.021732809,0.030861627,0.01991742,-0.0060426546,0.0267381,-0.0010203463,0.010328271,-0.009012114,0.0020617642,0.0043990784,0.0042337487,0.031924926,0.012176079,-0.0026809417,0.054461695,-0.003585395,0.0024053915,0.0009976539,0.0016938236,-0.004645453,-0.030265141,-0.036359664,-0.0005365125,-0.0017635216,0.019372802,0.0028705853,-0.011735199,-0.005715236,-0.01575499,-0.0076635387,0.011748166,0.0025447875,0.020993687,-0.0024929193,0.021395667,0.00025407353,0.00759222,-0.0042758915,-0.01049036,0.0066910083,-0.015210373,0.031535916,-0.016533015,0.029227776,-0.010218051,0.016766421,0.00016279751,0.019126428,-0.00302619,-0.012039925,0.0051803445,-0.026076779,0.022056988,-0.035062958,-0.024883809,-0.009446511,0.008765739,0.0043990784,0.0037831427,-0.0017651424,0.020591708,-0.043802764,-0.0003752346,-0.015988398,-0.009608599,0.0073393616,0.021460501,0.018724449,0.00029743218,-0.00728101,0.005297048,-0.027153045,-0.028864698,0.019619178,0.008350793,0.0021655008,0.007572769,0.006133424,-0.018296536,-0.00390633,-0.03402559,0.012934653,0.027282717,-0.009615082,-0.020902917,0.003458966,-0.03138031,-0.0060426546,-0.0041202866,0.010062447,-0.0030845418,-0.024002047,0.0025480294,0.0048885853,-0.008882443,0.03301416,0.010250469,0.021849513,-0.009809589,0.0026063812,0.011618495,-0.0065354034,-0.0034233066,0.04740761,0.0043861116,-0.013550589,0.008739806,0.01028937,-0.014224876,-0.01544378,-0.01615697,0.018231701,-0.00812387,-0.01650708,0.011475857,0.003611329,0.021836547,0.00028324945,-0.004113803,-0.0015284934,0.0065321615,0.0057087527,0.0042758915,0.014043337,-0.011145197,-0.008506398,-0.012169596,-0.013103224,-0.0072356253,0.005248422,0.014704658,-0.01797236,-0.020565774,-0.034518342,0.001214042,0.021901382,-0.016494114,0.012085309,0.020021157,0.014069271,-0.021784678,0.025571063,0.013064323,0.013589489,-0.01628664,0.012714213,0.0012075584,-0.030239208,-0.0073717795,-0.0027555025,-0.023081385,-0.014004436,0.039549563,0.017907524,-0.0062144683,-0.020617642,0.04637024,0.035659444,0.014380481,-0.014912131,-0.019528408,0.02420952,-0.004577376,0.008837058,-0.009725302,0.019930387,-0.003000256,-0.012370585,0.025026446,-0.0031996246,-0.0041202866,0.000001918468,0.00003945839,0.014263777,0.0036858898,-0.02633612,0.0043990784,-0.013835864,-0.007306944,-0.0010738355,-0.024287323,0.020384235,0.038356595,-0.0024005289,0.002272479,0.010107831,-0.015054769,-0.0059907865,-0.007896946,-0.0043310015,-0.022303361,-0.010574646,0.0015746886,0.00583194,0.011268384,0.011579594,-0.027334584,-0.009991128,-0.013116192,0.0033179491,-0.014549053,0.0053683673,0.03537417,0.008772223,-0.00566661,0.03381812,0.00027980507,-0.0042207814,-0.00067550334,-0.03062822,-0.0007103523,-0.008649036,-0.01575499,-0.003196383,-0.030680088,0.0016257465,0.008201672,-0.002133083,0.01008838,0.023496332,-0.005841665,0.008260024,0.006182051,0.008921345,0.016571917,-0.0006556475,-0.0069568334,-0.02239413,0.0029094864,0.024494795,0.011261901,-0.00011832452,0.008927828,-0.003361713,-0.016066201,-0.00016877452,-0.0006710459,-0.010581129,0.0016573537,-0.027023375,0.024780072,0.011579594,-0.0010462805,0.010432008,0.0041624294,-0.0080979355,0.010730251,0.01806313,-0.012668828,0.005381334,0.03062822,-0.03952363,-0.016066201,0.013103224,0.013135642,-0.017077632,-0.0062015015,0.011514759,-0.021434568,-0.016312575,0.0017375874,-0.0019126429,-0.0039257808,-0.009641017,-0.008357277,-0.009193653,0.011618495,-0.02430029,-0.0025869305,-0.02850162,-0.020047091,0.02332776,-0.006457601,-0.03438867,-0.009699369,-0.00092228287,0.039990444,-0.0040489677,0.24295104,-0.0004352073,-0.016584883,0.022925781,-0.013356082,0.008739806,0.00020514311,0.0054234774,-0.008901894,0.018659614,-0.016066201,-0.014328613,-0.023820508,-0.014821362,-0.0045806174,-0.016960928,-0.05217949,-0.013563556,-0.03488142,-0.025856338,-0.00065483706,0.010983109,-0.00805255,-0.009647501,0.03138031,0.011605528,0.024844907,0.022964682,-0.004700563,0.006762327,-0.027101178,-0.0018040437,0.008616618,-0.017713018,-0.0036210543,-0.011579594,0.017829722,-0.00012642893,0.010159699,0.021369731,-0.00095794233,0.0079747485,0.0136932265,-0.013835864,0.0023048967,-0.0029743218,0.0028932777,-0.008597167,0.0034233066,0.02063061,-0.008402661,-0.021901382,0.013783996,0.016234772,-0.013524654,-0.0126104755,0.01722027,0.0029094864,-0.017998293,0.0006135045,-0.012701245,0.016208839,0.01456202,0.006703975,-0.01810203,0.01814093,-0.014769493,0.024546664,0.01694796,0.017064665,-0.0077867256,0.007767275,0.010808053,0.007845078,-0.028527554,-0.02448183,0.019269066,0.014458284,0.025998976,-0.0014320508,-0.010347722,0.0083378265,-0.00920662,-0.02855349,-0.00020666268,-0.033584714,0.017674116,-0.01969698,0.0047200136,-0.009997611,0.017181369,-0.0035918786,-0.024728203,-0.01285685,0.015780924,0.014821362,0.0044801226,0.008681454,-0.01082102,-0.007559802,-0.01672752,0.03527043,0.044062104,0.006866064,-0.019346869,0.005533697,0.022744242,0.016870158,0.0023891828,-0.0051090256,-0.027593926,-0.019087527,-0.00577683,-0.014989933,0.00122863,0.005429961,-0.008266508,-0.005018256,0.0029175908,0.00024900827,0.01797236,-0.03187306,-0.019230165,-0.008279474,-0.0031202014,-0.0051122676,0.011689814,0.007793209,-0.005468862,-0.04364716,0.036904283,0.001799181,0.0063246884,-0.022601604,-0.000028593404,0.011832451,0.011728715,-0.020124894,0.010613547,-0.0113461865,-0.004979355,-0.013012455,-0.0029240744,0.00004961424,-0.0019920662,-0.031432178,-0.00739123,-0.020267531,-0.032677017,-0.009790138,-0.0133301485,0.002648524,0.027905134,0.009692885,0.017116534,0.0035238015,-0.028786896,-0.011735199,-0.002497782,0.020656543,-0.022938747,-0.009563214,0.06089336,-0.018555878,-0.01814093,-0.010846955,-0.16556355,0.020721378,0.0020050332,-0.0078515615,0.009491895,0.012759597,-0.002063385,-0.0018105272,-0.012863333,-0.005439686,-0.000091124064,0.004350452,-0.003860945,0.006496502,0.004467156,0.008927828,0.005371609,-0.0031526189,0.031535916,0.009044532,0.013667292,-0.015677188,0.011936189,-0.016040266,0.0055499063,-0.012046408,-0.016221805,0.02540249,-0.006013479,-0.018127965,-0.008285958,-0.004865893,0.030602286,0.004788091,0.024416994,0.0091806855,0.010678383,-0.020410169,0.0065127113,0.0153789455,-0.0024896774,0.015015868,0.0072421087,0.0031623442,-0.00020139481,0.014665756,-0.008110902,-0.0037020985,0.008104419,0.0045287493,0.00029256952,-0.010769152,-0.02651766,0.0171295,-0.00099036,0.022847978,-0.0064835353,0.022899846,-0.013226411,-0.010769152,0.00524518,-0.014769493,-0.011261901,0.003138031,-0.0020763522,0.013991469,0.0022497866,-0.011670363,-0.026504692,0.024235455,-0.026102712,-0.014211909,-0.004408804,-0.019074561,0.0014523119,-0.01859478,-0.0148991635,-0.0038317693,0.0064867768,0.002162259,0.006678041,0.017388841,-0.018179832,0.015832793,-0.009051015,0.010386623,0.01403037,-0.018555878,0.0004891017,-0.00847398,0.036774613,-0.01049036,0.0027457771,-0.03514076,0.007255076,0.009375192,0.035166696,0.014121139,0.0017910766,-0.01775192,-0.00011153707,0.006571063,-0.010846955,-0.0061982595,0.012539157,0.012915202,-0.0006301186,0.01135267,0.041053746,-0.003501109,-0.021667974,-0.010302338,0.029201843,0.050026957,-0.0014976966,0.0050603994,0.020436103,0.00174245,0.0058611156,-0.00337468,0.037811976,0.009472445,-0.012461355,-0.004506057,-0.023755673,-0.0015357874,-0.10601877,-0.036333732,0.02930558,0.00761167,-0.029979866,-0.009161235,0.005958369,0.01995632,-0.022977648,0.0310691,-0.0061496333,-0.024494795,-0.008240573,-0.004104078,-0.013978502,-0.006762327,-0.008687937,0.00019896349,-0.00044209606,0.025519194,-0.027775465,-0.008681454,-0.008441563,-0.0022692373,-0.018789286,-0.012124211,-0.010256953,-0.00898618,0.0048496844,0.014976966,0.0011086845,-0.00014831086,0.006058864,-0.025130183,-0.020552807,0.000012466876,-0.008389695,-0.006182051,0.030265141,-0.017324006,-0.010756185,0.005199795,0.0019612694,-0.024559632,-0.030913496,-0.0071772733,-0.007125405,0.028579423,0.01102201,-0.0036729227,-0.001325883,0.014523119,0.000121161065,-0.0063538644,0.0352445,-0.009705852,0.006318205,0.021278962,-0.012461355,0.018802252,0.011540692,-0.03125064,-0.0117676165,0.021888414,-0.02182358,0.014367514,-0.0053229826,-0.0048464425,0.024339192,-0.0024637433,-0.01797236,-0.025584029,-0.020786215,0.02169391,-0.037448898,0.0067299097,-0.017414775,0.004895069,0.0077024396,-0.007546835,-0.026660297,-0.007099471,0.01091179,-0.014354547,0.0310691,-0.004081385,0.008266508,0.011320252,-0.0023875618,-0.0039679236,-0.00847398,0.009200136,0.01008838,0.017103566,-0.014276745,0.0071059545,-0.0017067906,-0.0027571234,-0.002259512,-0.0044412217,-0.01518444,-0.009128817,-0.04372496,-0.00086149975,-0.015327077,-0.014704658,0.010522777,-0.0073134275,0.0010697833,-0.011456407,-0.01722027,0.014730592,-0.002899761,0.015301143,0.0011791929,-0.0026128646,-0.0049015526,0.008435079,0.03970517,-0.0059680943,-0.019852584,-0.016610818,-0.019230165,-0.0246504,0.006496502,0.019541375,0.0033390205,0.003666439,-0.020954786,0.010373657,-0.0027311891,-0.023275891,0.012591025,-0.03125064,0.0032433884,0.029072171,-0.006133424,-0.048393108,-0.0004716772,0.027256781,-0.018893022,0.036541205,-0.0074690324,-0.020124894,0.00038617555,-0.010321788,0.0049469373,-0.008383211,-0.026582494,0.008208156,0.009174203,0.010529261,0.01960621,0.0062987544,-0.00685958,-0.0075792526,-0.03607439,-0.040820338,0.0005219246,0.003416823,-0.004256441,-0.020928852,0.0502863,-0.008331343,0.012163112,-0.018127965,-0.004655178,-0.012428937,-0.00816277,0.017725985,0.027827334,-0.017738951,0.0072356253,0.0006848234,-0.00081773585,0.00083475513,0.031224705,0.029668657,-0.007209691,0.0015925183,-0.0012894131,-0.00012430153,0.025882272,-0.028449751,-0.030213274,0.001953165,0.023833476,-0.0033876472,-0.0031169595,0.025635898,-0.005216004,0.009264972,-0.036307797,0.012558607,0.0017343457,0.009945743,0.0050020474,0.016169937,-0.004626002,0.025700733,0.0066910083,0.02545436,0.00016614058,0.015508616,0.014484217,-0.008486948,-0.016001364,0.020462036,-0.010055963,-0.022199625,-0.017246203,0.034155264,-0.005332708,0.0031574816,0.010957174,0.012227947,-0.002859239,-0.0024248422,-0.0048010577,-0.0257137,-0.026439857,-0.009135301,0.0138747655,0.020124894,0.006182051,-0.017738951,0.022536768,0.007125405,0.0042175394,-0.016468178,0.008091452,0.000092998205,0.03161372,0.0047783656,-0.012921685,-0.01744071,0.0024248422,0.0070087016,-0.012519706,0.0010916652,-0.030965364,0.047329806,0.013835864,-0.008901894,-0.002872206,0.013051356,0.02310732,0.017427742,0.012733663,0.0076246373,-0.005092817,0.04157243,-0.0062533696,-0.0017035488,-0.031561848,-0.007015185,0.022912813,-0.016338509,0.003585395,-0.00015590875,0.006055622,0.0041916054,-0.007488483,0.0120075075,-0.0043472103,-0.009264972,0.0021379457,-0.0013615424,0.00772189,-0.024144685,-0.031120969,0.006781778,-0.0022708583,-0.02730865,-0.0056860605,0.0037474832,0.0060199625,-0.011916738,-0.015664222,0.0065483707,0.009621566,0.018270602,0.025921173,-0.0058643576,-0.027127111,0.02177171,0.013433885,-0.025648866,-0.0025885515,-0.012390036]},{\"id\":\"8fa363c6-193a-4cb4-a8e3-ebb855467dab\",\"text\":\"More enlightenment ..The more videos seen with good tips everyone will come to the healthy plant based puffs unlike the rechargeable and chemicalized ones in the markets \",\"vector\":[0.0030327241,-0.00015539963,0.004685246,-0.01424856,0.018984549,0.0007374611,0.022719214,-0.049281344,-0.022150896,-0.009126927,0.012178257,0.01986409,-0.020242969,0.0053212214,0.014979255,0.0023172516,0.03883511,-0.003941019,0.0156017,-0.004847623,-0.024356514,0.014708628,-0.0081459,-0.0033845406,0.012915717,0.003785408,0.020080592,-0.027401078,-0.012908952,-0.0054362384,0.01240829,0.012969843,-0.0069889664,-0.008903659,-0.01269245,-0.00540241,-0.013835853,-0.0039105737,0.008416529,-0.033206046,0.0049423426,-0.016224144,0.012793935,-0.014843942,-0.041784953,0.011691126,-0.014708628,-0.01851095,0.0015290477,0.021920862,0.028280618,0.011237824,-0.0049626394,0.0063428422,0.0011780772,0.0029583015,-0.010561255,0.024735393,0.0066912756,-0.007909101,-0.0070295604,0.0095802285,-0.03683246,0.011657298,-0.010960431,0.01114987,-0.025614934,0.022245616,0.009607292,-0.010229736,0.006752167,0.007306954,-0.0091878185,-0.014451532,0.016197082,0.008768345,-0.019106332,0.00042666183,0.016224144,-0.0021227377,0.0051656105,-0.0064612417,0.0035147802,0.03631827,0.0025794224,0.0124421185,-0.018916892,0.014681565,-0.0031781867,-0.021541983,-0.0013455282,-0.0050945706,-0.0018267385,0.017198404,-0.027252233,0.021095447,0.003626414,0.007983523,-0.008375934,-0.023909977,-0.00043511897,0.005848946,-0.005537724,-0.016413584,-0.00959376,0.000958192,-0.004759669,0.00649507,0.019201051,-0.018050883,0.00416767,0.0062582707,-0.010635678,-0.03750903,0.01667068,-0.0070904517,-0.008003821,-0.02074363,-0.0069145435,-0.019106332,0.013111923,-0.00245764,0.034342684,-0.013423145,0.0066608298,-0.019471679,-0.0040932475,0.014559782,-0.016941309,-0.005852329,0.03558757,0.008362403,0.01734725,-0.011231059,-0.0312034,0.030608019,-0.0027384164,0.006281951,-0.0093434295,-0.008923956,0.0071445773,0.023436379,-0.019119862,-0.008781876,-0.017469032,0.01138667,-0.0012398142,0.014762754,-0.010425941,0.0076925987,0.00905927,-0.019945279,0.01424856,-0.0078346785,0.009823794,0.012584198,-0.008896893,0.012475948,-0.026386224,0.01764494,0.01832151,-0.027901739,-0.007929399,-0.0029329301,0.008484186,0.024924831,0.042596836,0.004346961,0.007110749,0.002007721,0.0043097497,0.049930852,-0.033178985,0.03160934,-0.00239844,0.0101350155,-0.0096614165,0.019065738,0.015912922,-0.012841295,-0.007997056,0.018497419,0.022759808,0.018091477,-0.008660094,-0.022705683,0.04010706,-0.009079567,0.0024136628,-0.01580467,0.012814232,0.011136339,-0.010453003,-0.017103685,-0.6720233,-0.01250301,0.037454907,0.010967197,0.025330774,0.011867034,0.000482056,0.0021616407,-0.0036365627,0.023923509,-0.008247386,-0.009208115,0.0056967176,0.0032289294,0.014207966,-0.013341957,0.0391328,-0.040675376,0.022218553,0.020811288,0.0012939398,0.014099715,-0.031825844,0.0061297226,0.028253555,0.0069145435,-0.00882247,-0.0029024845,-0.017414907,0.0022326803,-0.006146637,0.03556051,0.02229974,-0.0014546252,0.061107785,-0.011352842,-0.012381228,0.0063969675,0.015588169,0.021717891,-0.043895848,-0.00044653608,0.012164725,-0.010561255,-0.0277123,0.017847912,0.037238404,-0.003088541,-0.010994259,-0.00871422,0.0197829,0.0122053195,-0.0032712151,-0.0034521974,0.017874975,0.0046480345,0.009296069,-0.008105306,0.011095745,0.013687007,-0.010047061,0.000102912614,-0.018050883,-0.013781727,-0.049849663,0.027576985,-0.02307103,0.0044958065,0.020188844,-0.030418579,0.003497866,0.011555812,-0.02179908,0.008091775,-0.0015476535,0.011264888,0.024830112,-0.018226791,-0.0025439025,0.022746278,-0.003653477,-0.0023087945,-0.0036027343,-0.01568289,0.03169053,0.017117217,0.009796731,-0.021623172,-0.016846588,-0.000026269938,0.012475948,-0.008599202,-0.005003234,-0.008321809,0.009634354,-0.0029972042,-0.018348573,-0.0007065926,0.005845563,0.022543306,-0.0133216595,-0.0029785987,-0.0074490337,0.015791139,0.005463301,-0.004346961,-0.02460008,-0.015561106,0.019904684,-0.0030817755,0.010540958,0.009485509,-0.007509925,-0.026589194,-0.0094246175,-0.032475352,0.023652881,0.011914395,-0.01734725,-0.005872626,0.004231944,-0.004999851,-0.017360782,-0.004184584,0.0072934227,0.02363935,-0.019214584,0.0005158845,-0.0035350772,0.0037617283,-0.01250301,-0.00080342666,-0.014979255,0.012070006,-0.017672004,0.00061567855,-0.0010968888,-0.029931448,0.0039816136,-0.007279891,0.006146637,0.006836738,0.01259773,-0.038212664,-0.012807467,-0.0056831865,-0.002721502,-0.000027142078,-0.023517568,-0.017266061,0.007726427,-0.025168397,-0.026521537,0.022705683,0.014898067,0.019985873,-0.019972341,-0.012949546,0.0050269137,-0.014695097,0.006928075,0.01764494,0.005375347,-0.008166198,-0.008200026,-0.02598028,0.00021058235,0.01976937,0.013023969,-0.016630085,-0.0020669207,-0.034180306,-0.0023493888,0.029769072,-0.0071851714,0.031744655,0.007841445,-0.010351518,0.0040357388,0.0062413565,0.016778931,-0.019404022,-0.023192814,0.01041241,0.008518014,-0.004414618,0.0027722449,0.0038158537,-0.0057745236,0.005155462,0.0022005434,0.013490802,0.00484424,0.0023104858,-0.012448885,-0.0049254284,0.0030564042,-0.018091477,0.021284886,-0.020080592,0.008213557,-0.017617878,0.02460008,-0.020973664,0.013626116,-0.03656183,-0.00008816551,-0.010940134,0.008518014,0.051121615,0.007394908,-0.008010587,-0.004367258,-0.0058590947,-0.019823495,0.012394759,-0.0069416063,0.0022377546,-0.011325778,0.0032965865,-0.0149927875,-0.030310327,0.0006228671,-0.0060857455,-0.011609938,0.04809058,-0.00356214,0.03255654,0.0055546383,-0.0116505325,-0.0040019103,0.028064117,0.0056831865,0.016197082,0.014668033,-0.012665387,0.0026487708,-0.006698041,0.040513,0.022651557,0.005879392,0.034153245,0.010913071,-0.005963963,0.0038429166,0.030418579,0.024924831,0.015195758,-0.002809456,0.0037076026,-0.009749371,0.031582277,-0.012103834,-0.00039959906,0.008903659,-0.029498445,0.0006207528,0.01012825,0.022692151,0.00658979,-0.01755022,0.0024390342,0.008815705,0.006606704,-0.009269007,0.0067284866,0.0011298716,-0.026399754,-0.0017472416,-0.0054565356,-0.0073001883,-0.013768196,-0.01366671,-0.029011313,0.018943954,0.010189141,-0.007509925,0.009607292,-0.0041372245,0.02731989,-0.005832032,0.0033321064,0.009952342,0.0026031025,-0.0015501906,-0.016927777,-0.031230463,0.0028754217,-0.00775349,0.0007755181,-0.0162918,0.0069822003,0.00064823846,0.011677595,0.013375785,-0.023206344,0.01899808,-0.010182376,0.046899818,0.0066033215,0.007306954,-0.010371815,-0.020675974,-0.011264888,0.01976937,0.012110599,-0.015967047,-0.0021007492,-0.014519189,-0.021704359,-0.0070498576,-0.013896744,-0.0076790676,-0.022150896,-0.0064477106,0.012773639,0.011075448,0.00060130144,0.024830112,-0.002178555,-0.013017204,-0.008788642,0.0028060733,0.027644644,0.086979814,0.011176934,0.0033862318,0.009160755,-0.021555515,0.0054565356,0.0060857455,-0.0054091755,-0.003259375,-0.0039207223,0.009072801,-0.0018757898,0.003080084,-0.027536392,0.010500364,-0.0070701544,-0.012029411,0.012374462,-0.0038632136,-0.027441671,-0.0029566102,0.010838648,0.018849235,0.015628763,0.0040763333,0.018876297,0.033936743,0.04990379,-0.009722308,0.013078094,0.016197082,0.008944253,0.009397555,0.0052298848,-0.0300397,-0.007645239,0.012611262,0.0051419307,0.0016229219,0.0024136628,-0.0044653607,0.012543605,0.012090303,-0.016724806,0.021663766,-0.016643617,-0.010405644,0.006928075,0.0066912756,-0.013341957,0.022624495,-0.0014165681,-0.0126044955,-0.020906007,0.027401078,0.0023527716,0.01638652,-0.016846588,-0.0061263395,-0.016494771,-0.017469032,-0.011954988,0.0014098024,-0.014627439,-0.032718915,-0.008978082,0.0017573901,-0.010473301,-0.0039038078,0.0030902326,0.0023493888,-0.022922186,-0.032908358,-0.0058117346,0.029579632,0.013673476,0.005618912,-0.0052298848,-0.0002477937,-0.0039816136,0.0025337539,-0.008281214,-0.019201051,-0.01706309,-0.01832151,-0.011481389,0.0019349897,-0.018538013,-0.023734068,0.015737014,0.02868656,-0.008768345,0.03583114,-0.013355488,-0.01075746,0.0024762456,0.019025143,0.029390194,0.009086332,-0.022543306,-0.0003148164,0.0011247973,-0.009438149,-0.014140309,0.0007894724,-0.011819675,-0.009038973,0.0045397836,-0.0031984837,-0.004949108,0.029200753,-0.012834529,-0.007239297,0.014640971,0.014424468,0.027847614,0.004086482,0.0063326936,-0.017306656,-0.0036500941,-0.017469032,-0.024261793,0.01860567,0.0060891286,-0.003941019,-0.0023882915,0.00038226193,-0.007306954,0.009214881,0.020621847,-0.0033219578,0.026765103,0.00031397067,-0.03777966,-0.030662144,-0.017780256,-0.016481241,0.00877511,-0.028632434,-0.018849235,-0.0006930612,-0.014086183,-0.0070769205,-0.009695246,0.012888655,-0.033016607,-0.0015239735,0.0036500941,0.019809965,0.00066388416,0.0029312386,-0.01366671,-0.0130848605,-0.011183699,-0.008863064,-0.02093307,-0.0060248543,-0.01976937,0.023463441,0.016589493,0.028037053,-0.031446964,-0.005432856,-0.0045803776,-0.0034454318,-0.013950869,-0.009126927,-0.005091188,-0.040810693,0.023761133,0.0084706545,-0.0052400334,-0.010385347,-0.011535515,0.020811288,-0.0028196047,-0.018199729,-0.02005353,-0.00833534,-0.03480275,-0.021772016,-0.007861741,-0.009174286,0.01589939,0.0013007055,-0.0041541387,0.03293542,0.01638652,-0.0033016608,-0.0010283862,0.01404559,-0.020906007,0.018199729,-0.014776285,0.011914395,-0.0052975416,-0.019701714,-0.01385615,-0.01580467,0.0051486962,0.026819227,-0.0155475745,0.0021210464,0.0021684063,-0.012705981,0.0065830243,-0.0034319004,-0.031068087,-0.012807467,-0.028334744,-0.02404529,-0.026778633,-0.010716866,-0.015655825,0.023707006,0.00016438532,-0.014640971,0.015087507,-0.005128399,-0.0042894525,0.009674949,-0.02044594,0.02257037,0.00060087856,0.013741133,0.035804074,0.007225766,-0.0068029095,0.020757161,0.005605381,-0.0069010123,0.026075,-0.004685246,-0.013118689,-0.019877622,0.005334753,0.015195758,-0.024491828,-0.020161781,0.026954541,0.009776434,-0.00068291265,-0.022259148,-0.024951896,-0.009864388,0.016616555,0.0013455282,0.022827465,-0.0007941238,-0.013896744,-0.036264144,0.023788195,0.0012296656,0.004184584,0.00043194756,0.00014895108,-0.033124857,-0.002450874,-0.018822173,0.0006190614,0.008626265,0.011975286,0.010886008,0.014803347,0.016332395,0.0014546252,-0.0041642874,0.0024356514,-0.0002742222,0.031338714,-0.011251356,-0.007469331,0.0014909907,-0.03390968,0.016237676,-0.035777014,-0.033016607,-0.023625817,-0.013910276,0.00034822203,0.017293125,0.010987494,-0.011352842,-0.018768046,0.003913956,0.0057136323,-0.011264888,-0.010094422,0.030905709,-0.009005144,0.0027620962,-0.00015709105,-0.006721721,0.014113246,-0.0035689059,0.010574786,-0.0057271635,0.011995583,-0.031095149,0.0032086323,0.005375347,0.021149572,0.0062244423,-0.0029413872,-0.0066439155,-0.035208695,-0.002521914,-0.013071328,-0.036670085,-0.0037076026,-0.0053685815,-0.0036230313,0.004015442,0.017942632,0.02035122,-0.0009159064,-0.00358582,-0.020391814,-0.0126044955,0.023625817,-0.018064413,0.0037076026,0.029796135,-0.015168696,-0.0043807896,-0.0071784058,0.0013928881,-0.017022496,0.0012440428,-0.018822173,-0.031555217,0.021772016,-0.002330783,-0.024532422,0.006857035,0.005128399,-0.023138687,0.019119862,-0.008524779,0.0057034837,0.01259773,0.020675974,0.0028263703,0.016481241,-0.027184576,-0.012293274,-0.015980579,0.003382849,-0.0072054686,-0.011900863,-0.019742306,0.030066762,0.016034706,-0.011122808,-0.014059121,0.009390789,-0.038510352,-0.02315222,-0.012124131,0.013030735,-0.017658472,-0.020229438,-0.012374462,0.016697744,-0.0023409317,-0.004976171,-0.00896455,-0.008693922,0.0004829017,-0.010574786,0.00046767888,0.0029853643,-0.029417256,0.008274449,0.013497568,0.0010300776,-0.02006706,0.000104128325,-0.014559782,0.009911748,-0.012827763,0.005250182,0.019728776,-0.011630235,0.009194584,-0.008328575,-0.0081459,0.010987494,-0.001748933,-0.00071462686,-0.024478296,0.00117554,0.0078076157,-0.007252828,-0.012455651,-0.009573463,-0.013017204,-0.0049660224,0.0074490337,0.0013311511,-0.016643617,0.008842767,0.0012135971,-0.021880267,-0.0042691557,0.015723482,-0.012374462,-0.0028720389,0.033097796,-0.021230761,0.017726129,-0.009140458,0.007225766,0.00474952,0.0019823497,-0.0011882257,-0.0039477847,-0.00303949,0.010547724,0.009674949,-0.007469331,-0.015466386,-0.00058481004,-0.0044213836,-0.017184874,-0.024748923,0.009214881,-0.016197082,0.01022297,-0.022746278,0.0008562837,-0.025060145,0.014695097,0.0017962928,-0.022421524,0.008687156,0.22602844,-0.021149572,-0.014979255,0.05639886,0.02354463,-0.002357846,0.01376143,-0.009762903,-0.016548898,-0.0066709784,0.0055005127,-0.0038970422,-0.019634057,-0.011501687,-0.01755022,0.0012634941,-0.022989843,-0.016061768,-0.014884536,-0.027360484,0.015087507,-0.016562428,0.035398133,-0.004370641,0.009817028,-0.020797756,-0.022448586,0.008978082,0.029092502,-0.0046920115,-0.02277334,-0.0012660313,-0.0063699046,-0.004130459,-0.013281065,0.003426826,0.018429762,0.013599053,0.03631827,0.030770395,0.0069010123,0.0095464,0.001916384,-0.010155313,-0.013869681,0.00552081,-0.015304009,0.013389316,0.007191937,0.009045739,-0.013950869,0.012272976,0.018077945,-0.008585671,-0.010486832,-0.01511457,0.01742844,0.0048746853,-0.01608883,-0.0038801278,-0.0020111038,0.03683246,-0.0062447395,0.024857175,-0.029444318,0.0031460496,-0.019431084,-0.007584348,0.017726129,-0.0059030717,0.017387845,-0.019972341,-0.031961158,0.0258585,-0.030093826,-0.022367397,0.017036028,0.030662144,0.03139284,0.025263118,-0.012530073,-0.008815705,-0.021257823,-0.015236353,-0.006501836,-0.032231785,0.0075437534,-0.012651855,-0.007151343,0.0025675825,-0.00989145,-0.015060444,-0.014695097,-0.0035824373,0.026575662,0.014451532,-0.0090254415,-0.0022732746,0.0019958809,0.0055241925,-0.0042488584,-0.012469182,0.008355637,-0.0011882257,-0.0132404715,0.022150896,-0.0035553745,0.0024593312,0.0162918,-0.017780256,0.0019265326,-0.017766723,0.020270031,-0.010101187,-0.010764225,0.023598755,0.013977933,-0.006363139,0.023707006,-0.026277972,0.007036326,-0.013605819,0.011088979,0.011846738,-0.014153841,0.00896455,-0.004533018,0.030310327,-0.017374313,-0.022759808,0.019877622,-0.018077945,-0.005561404,0.00092013495,-0.011481389,0.0046683317,0.019404022,-0.0072325314,0.017983226,0.005845563,-0.02152845,-0.02285453,0.026900416,0.015398729,0.019160457,-0.008348872,0.016197082,0.009505806,0.0005281473,0.029687883,-0.009654651,-0.0009175978,-0.0137952585,-0.0011459402,0.027982928,-0.0046987776,-0.029525507,-0.025831435,0.012387994,-0.0084706545,-0.009072801,0.0012212085,0.013348723,-0.010256798,-0.0019772754,-0.000908295,-0.17460914,0.010642443,0.03558757,-0.038239725,0.015912922,-0.008937487,0.015141632,0.00016597104,-0.008781876,0.0025049997,0.019593462,0.022205021,-0.022340335,-0.016805993,0.02257037,-0.010879243,-0.0117249545,0.051229868,0.013396082,-0.0073881424,0.012956312,0.0007273126,-0.010669506,-0.01937696,-0.012800701,-0.0046750973,0.005514044,0.0031308269,-0.0037752595,-0.014654502,-0.010892774,-0.015534043,0.04118957,0.003274598,0.013172815,0.00063555274,0.0041067787,-0.016400052,-0.0057068663,0.006319162,0.018849235,0.020581255,0.0132743,0.0010114718,-0.009959107,-0.009316366,-0.017563753,-0.02335519,0.010926602,0.0020330923,0.03528988,-0.0031494326,0.014086183,0.027658174,0.012435353,0.0012161343,-0.00871422,-0.0066405325,0.0017962928,-0.02656213,-0.0042251786,-0.022827465,-0.022042645,-0.0051013366,-0.01832151,-0.008348872,-0.011203996,-0.001304934,-0.009627588,0.0017125674,-0.0143568115,-0.016995434,0.013294597,-0.02703573,0.021501388,-0.005534341,-0.013626116,-0.015452854,0.0012178257,0.0051419307,-0.008687156,0.019241646,-0.0253849,0.021203699,-0.0063428422,0.0122865075,-0.00037253625,0.0052129705,-0.0134772705,-0.00871422,0.027211638,-0.017306656,-0.022462118,-0.01966112,0.015669357,0.02683276,0.0017404759,0.018483886,0.010182376,-0.013463739,-0.017103685,0.026643319,-0.013098392,0.04062125,0.020567723,-0.024261793,-0.00421503,0.010432706,0.021433732,-0.02257037,-0.030662144,0.014722159,0.003541843,0.024857175,-0.012827763,0.014329749,-0.01860567,-0.009133693,0.014816879,-0.006549196,0.024153542,0.0006228671,0.021352543,0.013883213,-0.022719214,-0.01385615,-0.12210732,-0.052501816,0.025912624,0.016494771,-0.006694658,-0.0013387626,0.0049694055,0.0075234566,-0.004485658,0.023449909,0.02132548,-0.034044992,-0.011427265,0.004394321,0.043977037,-0.002948153,-0.026913946,-0.00009799691,-0.016630085,0.009397555,-0.0083827,-0.008308277,0.010344752,-0.018362105,0.00040953618,0.0022597432,-0.022164427,0.01734725,0.025276648,-0.014032058,0.014559782,-0.009654651,0.019620525,-0.022056175,-0.0051960563,0.013883213,0.008200026,-0.02645388,0.011549047,-0.033990867,0.006231208,0.0042251786,0.0038530652,-0.019417554,0.0104597695,-0.016332395,-0.01917399,0.018335043,0.002601411,-0.01783438,-0.013105158,0.005128399,-0.023314595,0.005287393,0.0016026248,-0.011819675,0.008369168,0.018456824,0.004901748,-0.012875124,-0.008010587,0.0018013672,-0.039917618,0.016142955,-0.00010011119,-0.018362105,-0.0071378117,-0.016589493,0.0141944345,0.007022795,-0.016007641,0.007868507,-0.0016601331,0.040918943,-0.030012637,-0.0003894505,-0.0054362384,-0.011122808,0.0019502125,-0.013186346,-0.013254003,-0.004103396,0.010101187,-0.01201588,0.015967047,0.016778931,0.021136042,0.004418001,-0.0155475745,-0.017590815,-0.020716568,-0.012861592,0.017482564,-0.008511248,-0.0033760834,0.035479322,-0.00419135,0.00020994808,0.039998807,0.012056475,-0.03623708,-0.023598755,-0.041784953,0.026318565,-0.0010055519,0.02857831,-0.0021802462,-0.024627142,0.027982928,0.008200026,0.01860567,0.011339311,0.0027993077,0.012117365,-0.00087954075,-0.012516541,-0.00784821,-0.031149274,0.04416648,0.00843006,0.004959257,0.0014546252,0.020703036,0.006336076,0.02102779,0.0053516673,-0.008233855,0.005199439,-0.024383577,0.006048534,-0.0059977914,0.00017601387,0.00083725515,-0.02112251,0.0009590377,0.017672004,0.0046920115,-0.006593173,-0.013003672,-0.00047402174,0.019701714,-0.0045161033,-0.014708628,-0.03631827,-0.015561106,-0.010067359,-0.0067183385,-0.01066274,-0.01322694,0.03177172,0.029769072,-0.0022411374,0.04148726,0.011075448,0.00041841614,-0.027590517,-0.014871005,-0.008971316,0.0022682003,0.0106965685,-0.002760405,-0.030689206,0.029336067,0.027116919,0.011319013,-0.0072460626,0.006072214,0.019255176,-0.011752018,-0.0075166905,0.023449909,-0.029119564,0.021163104,-0.001625459,0.027928801,0.013693773,0.0051689935,0.006721721,-0.010588317,0.028903063,-0.010087656,0.042109706,-0.022110302,0.009600526,-0.040269434,0.027374014,0.011217527,0.032123536,-0.03534401,0.009140458,-0.0035012488,0.004715692,-0.00989145,0.008768345,0.0059030717,-0.001272797,0.02800999,0.028037053,-0.004752903,-0.0025608167,-0.008402997,0.011305481,0.022989843,0.010845414,-0.014857473,-0.014505656,0.0130848605,-0.0024593312,-0.021839675,-0.030662144,-0.005443004,0.00039579335,0.02508721,-0.01569642,0.0056561236,0.013626116,-0.01259773,0.02431592,-0.00035075916,-0.023016905,-0.016345927,0.040377688,0.005443004,-0.0053651985,0.027184576,0.007306954,0.015046913,0.012814232,0.019634057,-0.014627439,0.031095149,0.008693922,-0.007367845,-0.007374611,-0.025709653,-0.017523158,-0.015033381,-0.01742844,-0.009586995,0.02500602,-0.02577731,0.05942989,0.03044564,-0.0026673765,0.00069728977,-0.009296069,0.03334136,-0.008281214,0.017238999,0.0018318128,0.0110145565,-0.011102511,-0.010845414,0.02035122,-0.027644644,-0.0010596775,0.014032058,-0.0015425791,0.027874677,-0.0019096183,0.012042942,0.040269434,-0.021298418,0.010446238,0.005625678,-0.022719214,-0.0010850489,0.039701115,0.0002433537,-0.0038733622,-0.015141632,-0.012577433,0.044815984,-0.05106749,0.007665536,0.023693476,-0.010669506,0.0006207528,0.01608883,0.008078244,0.007929399,0.004813794,0.029985575,-0.04118957,-0.014722159,-0.0014681565,0.0062244423,-0.0017184874,-0.010513895,-0.018957486]},{\"id\":\"b343caac-f9cd-4029-9516-70bfc8f744d8\",\"text\":\"Allow pictures instead of videos for those who aren’t comfortable sharing their video\",\"vector\":[-0.019033283,0.0093419645,0.016665444,-0.007038821,0.010629396,0.026343822,-0.011269877,-0.027560089,0.0103123905,-0.025101677,0.0008596354,0.00079210993,-0.0041049006,-0.01943439,0.0131525025,0.004793903,0.026524968,-0.00659566,0.011509248,-0.03172645,0.0022513876,0.025942713,-0.024907593,-0.008934386,-0.03278745,0.0047583207,0.025231067,-0.028776355,-0.0029225987,-0.006851205,0.020935316,-0.032968596,-0.018373393,-0.032347523,-0.035608154,-0.013469508,-0.00978836,-0.0013715349,0.013689471,-0.016768955,0.00025736497,0.0002810191,-0.0044316105,-0.034676544,-0.018619234,0.04112017,-0.009322556,0.0030972753,-0.015526811,0.026421456,0.010390025,-0.020146037,-0.007679302,-0.02115528,-0.0053793928,0.013870617,-0.015733834,0.008753239,0.010241225,-0.01918855,-0.0015413595,0.008850282,-0.012330876,-0.0049006497,-0.012369692,0.011612761,0.011476901,0.02037894,0.031001866,-0.02521813,0.008682075,-0.002739835,-0.0072652535,-0.005977822,0.029009258,-0.006091038,0.014465812,0.013818862,-0.017027736,-0.0069870646,0.020637719,-0.01880038,0.00022521963,0.024752324,0.021051768,0.023911288,0.019085038,0.011800376,0.010202409,-0.020948255,0.037186712,0.019951953,-0.0029387723,0.0022465354,-0.018606294,0.036255103,-0.00652773,0.0069935345,0.015216274,0.0051012044,0.020340122,0.005233829,-0.019990768,-0.0012801532,-0.007989838,-0.008035124,0.006213959,-0.013792983,0.01762293,-0.016781894,-0.008960264,0.024338275,0.00023310434,-0.01644548,-0.011062853,-0.022229217,0.008824404,0.0021042062,-0.013288362,-0.032166377,0.004884476,-0.014543446,0.01735121,-0.0068835528,0.020818865,-0.008164515,-0.034573033,-0.0057643284,0.008669136,-0.0074140523,0.037652515,0.013611837,0.015500933,0.007401113,-0.0056608166,-0.003263865,-0.020935316,0.016536053,-0.032295767,-0.011431615,0.0045512966,0.02193162,-0.033123862,0.00045569573,-0.024454728,0.0138576785,-0.01174862,-0.0056058257,0.0057902066,0.011515718,-0.0010399729,0.014194093,0.0010698943,-0.020404818,-0.006566547,0.03314974,-0.012259711,0.012809619,-0.011690395,0.00084346166,-0.017144186,0.013210728,0.011981523,-0.0076210764,0.03969688,0.023225522,-0.0092578605,0.0084556425,0.0049006497,0.010234756,-0.017183004,0.016730139,-0.049038842,0.0011968584,0.00049734314,0.0077892835,-0.0240148,-0.0028304083,-0.016885407,-0.013560082,-0.029164527,0.004036971,0.01017653,0.030950109,-0.024338275,0.0010537206,0.01946027,-0.025580421,-0.010519414,0.0014758557,0.008002777,-0.0019586424,-0.0008394182,-0.024894653,-0.6483996,-0.004774494,0.045415923,0.026809627,0.036177468,0.006708876,-0.015073946,0.026809627,-0.02781887,0.0020492156,-0.010849359,0.0072911317,0.00026343015,-0.0041178395,0.01370241,-0.02231979,0.008779118,0.01121812,0.0032428391,0.014168215,0.020327182,0.012020339,0.00731054,0.0032266653,0.0048391894,-0.030872475,-0.0011135634,-0.012596125,-0.024700569,0.044303168,-0.028155284,0.01253143,0.0019602599,-0.0018858606,0.043268047,0.01096581,-0.01789465,0.014439934,0.026214432,0.0040110927,-0.048236627,-0.0053049936,-0.012395571,-0.00901202,-0.00692237,-0.009109062,0.0048036072,0.0045868787,-0.008345661,-0.016199639,-0.006961187,0.0051012044,-0.01110167,0.007129394,0.0014095433,0.0059875264,0.026460273,-0.007368766,0.01723476,0.012861375,-0.030044379,0.017855832,-0.008559154,-0.03992978,0.0054634963,0.0150998235,-0.013230137,0.0026799922,0.018968588,-0.036280982,0.011405736,-0.0008107098,-0.017144186,-0.006702407,0.0049362318,0.021491693,0.0023241695,-0.016613688,-0.0004969388,-0.012182076,0.014271727,-0.0075499117,-0.010085957,-0.009898342,0.013637715,0.010571171,-0.008080411,-0.012628472,0.015656201,-0.01044825,0.030975988,0.040292073,0.005913127,-0.0070452904,-0.008902038,0.009898342,0.003642331,-0.0027285134,0.027094284,-0.001314118,-0.010331798,-0.0084556425,-0.00073226704,0.014025886,0.036177468,0.0012696403,-0.04246583,0.0064824433,0.023393728,-0.025826262,0.035194103,0.0013076486,-0.0064048097,-0.0024584117,0.015500933,-0.035219982,0.03576342,0.007756936,0.013249545,-0.032218132,0.0066765286,0.009471355,-0.01384474,0.0006918326,0.014841043,0.043319803,-0.0013133094,-0.015436238,0.009898342,-0.0074205217,0.015061007,-0.009814238,0.024467666,-0.011768029,-0.008119228,0.043035142,0.012951948,0.0064824433,0.0005337341,-0.0071358634,-0.010875237,-0.013275423,-0.00026302578,0.01121812,-0.0019149734,-0.013430691,-0.032192253,-0.0083715385,0.0012680229,0.020456573,-0.008332722,-0.01737709,0.010305921,0.0020864152,0.010215348,0.017170064,-0.016225517,-0.031571183,-0.028258795,-0.00089683506,0.012414979,0.018683929,-0.014724592,-0.016807772,0.0015203336,-0.0221904,0.012990765,0.007536973,0.008914977,-0.004725973,-0.014595202,-0.0095166415,-0.017402967,0.014000008,-0.02181517,0.024609994,0.017532358,-0.0020621545,0.008830873,0.0028433471,-0.0017985222,-0.009950098,-0.039645124,-0.0010755551,-0.0055023134,0.0075434423,-0.01319132,0.016225517,-0.027430698,-0.00020823718,0.01579853,-0.013676533,0.0004775303,0.020340122,0.0042116474,0.037937175,0.00966544,0.003946398,0.009548988,0.0055702436,0.00822921,0.016807772,0.02376896,-0.0020670067,0.027197797,-0.039101686,0.0048909453,-0.03208874,0.017739382,0.014931616,0.025774505,-0.030380793,0.003888172,0.0012550838,-0.004412202,0.01070703,0.004088727,0.012246772,-0.01933088,-0.0058581363,-0.004683921,-0.040421464,0.018878015,-0.00443808,-0.0047680247,0.026227372,-0.013495387,0.017079491,0.0015801765,-0.03146767,-0.016756017,0.009193166,-0.01513864,0.011949175,0.0026347057,0.012906661,0.009374312,0.0017597053,0.032062866,-0.004887711,0.0043410375,0.021996316,0.004664513,0.027146041,0.014504629,0.018205186,0.028414063,0.004570705,-0.020560086,-0.014957494,0.005922831,0.0015356987,-0.017312394,0.018476905,0.01643254,-0.010668213,0.0021656665,-0.0032088743,0.019473208,0.030225525,0.010920524,-0.008242149,-0.0029145118,0.0037037914,-0.0016626626,-0.027327187,0.0021705187,-0.006475974,0.002704253,0.016820712,-0.0049038846,-0.01684659,-0.0007771492,-0.014168215,-0.0075628506,-0.0030212586,-0.0124408575,0.025567481,0.01894271,-0.016031433,-0.011011097,-0.032580424,0.0063918703,0.022086889,-0.0019295297,-0.02180223,-0.030380793,0.0039528674,-0.03159706,0.015552688,0.006055456,-0.005421445,-0.0000050953668,-0.003370612,-0.018244002,0.007297601,0.0065859556,-0.0022724133,0.018153429,0.013365996,0.00073792785,0.002950094,0.0069676563,-0.024312397,0.0041857692,0.0005066431,0.0046386346,-0.016225517,-0.031648815,-0.008559154,0.008940855,-0.017648809,-0.013469508,0.0042666383,-0.0073299487,0.021194097,-0.0061395597,-0.018839197,-0.006812388,0.013495387,-0.021103524,-0.012279119,-0.031157134,-0.004761555,0.10475422,0.009426068,0.017157126,0.01643254,-0.01684659,0.01892977,-0.0058193193,-0.033123862,0.009348434,0.002709105,-0.012524961,0.0027996781,0.023212582,0.0032994472,0.027896503,-0.0021365539,0.015966738,-0.00659566,-0.014349361,-0.030432548,-0.007407583,0.0043669157,-0.006501852,0.0245453,0.018839197,-0.0036520353,0.0003517793,0.027327187,-0.009471355,0.021129401,0.0029921457,0.015086885,0.00888263,-0.017454723,0.004114605,0.025036983,-0.008235679,0.017157126,0.0013852826,0.012563778,0.031260647,0.021763412,0.025425153,-0.025541604,0.014543446,-0.03120889,-0.024377093,0.02285029,0.0005094735,0.005482905,0.028672844,0.006498617,0.0043636807,-0.0122661805,0.0038299467,-0.013573021,-0.0131460335,-0.01410352,-0.023083191,-0.031545304,-0.026990773,-0.01852866,-0.017584113,-0.002029807,-0.0032315175,-0.014245849,-0.019563781,-0.017571174,-0.021129401,0.00310051,0.014582263,-0.012939009,-0.037445493,-0.0041049006,-0.028491698,-0.00783457,0.0068641445,-0.025244007,-0.011593352,-0.0161867,-0.00731054,0.0051950123,0.01943439,-0.010797603,-0.0035194105,-0.016548993,-0.026395578,0.0037231997,-0.03120889,0.025036983,0.0034967673,0.0029695025,0.016367847,-0.020702414,0.006961187,-0.0001423291,-0.0045383573,0.03353791,0.016341968,-0.017584113,0.0077634053,-0.014646959,-0.0056963987,-0.02533458,-0.014142336,0.02596859,0.002950094,0.051367864,0.020068403,-0.024881715,0.010118305,0.018438088,-0.014181154,-0.011949175,0.03224401,0.023070253,0.017635869,0.0011459109,0.010985219,-0.013107216,0.013391874,-0.0023678388,0.0022918219,0.013165441,0.0020006942,0.028931623,-0.0050332746,-0.042207047,0.001420865,0.0028012954,0.002506933,-0.0011645108,-0.007879856,-0.018878015,-0.028828112,-0.028025893,0.027585967,0.018088734,-0.011192243,0.00809335,0.016354907,-0.001314118,-0.0048424243,-0.041197803,0.017674686,-0.037109077,0.003474124,0.001973199,-0.012376162,0.033770815,-0.009768952,0.021207036,-0.019020343,-0.0063271755,-0.015889103,-0.014504629,-0.0045771743,-0.0025117851,0.027456578,-0.000058781512,0.043009266,-0.023186704,0.013663594,0.011004627,0.00978836,-0.0022481529,0.018308697,-0.006631242,-0.02885399,0.02885399,0.018321637,0.013818862,0.024118314,0.010804072,0.01487986,-0.0008078794,0.0030908058,0.009691318,-0.0061977855,-0.01894271,-0.002110676,-0.0037684864,-0.005592887,0.010428841,-0.012557308,0.02286323,0.0061686723,-0.001322205,0.0119944615,-0.021556389,0.016367847,0.0042084125,-0.0011402501,-0.012693168,0.02519225,0.008539746,-0.014905739,-0.021090584,0.031079499,0.017972283,0.00568346,0.008002777,0.01789465,-0.01358596,-0.018696869,0.007038821,-0.017635869,-0.01370241,-0.0002181436,-0.03421074,0.0059325355,-0.025036983,-0.023057314,-0.0044898363,0.005647877,0.008436234,-0.0069159004,0.014323483,-0.006501852,-0.025282824,-0.014634019,0.024584116,0.025826262,0.010487067,0.007899265,0.018049918,-0.003354438,-0.010558232,0.0172477,0.0038622941,-0.0055087833,0.014866921,0.025036983,0.00082971394,-0.016419603,0.015423299,0.0031457965,-0.032399278,-0.033175617,0.00029638418,0.026408518,0.0006073247,-0.01829576,0.0067476933,-0.02127173,0.015876165,-0.010267104,0.008675605,0.010797603,-0.013547142,-0.020573024,0.026706114,-0.003445011,0.005013866,-0.0198355,-0.0021074412,-0.028103527,-0.003797599,-0.009387251,0.0030228759,-0.00040858964,0.017959345,0.03392608,0.0185416,0.0344954,0.028129406,-0.004451019,-0.0068835528,-0.018632174,0.022785595,-0.015462115,-0.018463966,0.003367377,0.0053793928,0.009070246,-0.005518487,-0.01513864,-0.014284666,-0.025515726,-0.011082261,0.028414063,0.017817015,-0.01187801,-0.003276804,0.00450601,-0.0011208416,0.022695022,0.0036779132,0.0052305944,-0.016354907,0.03395196,-0.012117382,-0.0020006942,0.005495844,-0.008255088,0.026046226,0.026680237,0.021219974,-0.027068406,0.02153051,0.0056058257,0.00018903083,-0.018683929,0.0035873402,0.012486144,-0.022565631,0.00568346,0.007853978,0.008766179,-0.028569331,0.004091962,0.008591502,0.02078005,0.013922374,-0.015824407,0.01957672,-0.010124775,-0.017571174,-0.03195935,0.008895569,0.01697598,-0.007478747,0.006708876,-0.002924216,0.012434388,-0.022876168,0.004887711,0.012117382,-0.02285029,-0.015966738,-0.0029775894,0.023264337,-0.00040717443,-0.03811832,0.0011192242,0.01384474,-0.023329033,-0.0167172,-0.010926993,0.00013676936,0.007465808,-0.010532353,0.016380785,0.031079499,-0.02573569,0.005405271,-0.0033576728,-0.022268035,-0.008009247,-0.016885407,-0.015423299,0.0014604906,0.021168219,-0.0010812159,-0.015979676,-0.004570705,-0.043811485,-0.002532811,-0.0050494485,-0.0009971124,-0.022513876,-0.025515726,-0.015397421,0.039179318,0.013521264,0.014155276,0.009083184,-0.012550838,0.00051392126,0.006780041,-0.0029905285,-0.002185075,-0.020327182,0.008449173,-0.00046903908,0.013378935,-0.0100536095,0.007426991,-0.002210953,0.0026541143,-0.0043960284,-0.0009219044,0.029630331,-0.005586417,0.009613683,-0.023626631,0.0022174227,0.004793903,0.019020343,0.00088470476,-0.005625234,-0.0020880327,0.00023310434,0.011509248,0.0058549014,0.009044367,-0.012110912,-0.010202409,0.010817012,-0.0044542537,-0.014155276,0.0070452904,0.00035117278,-0.022927923,0.0103123905,0.023626631,-0.021116463,-0.009956568,0.01905916,-0.01931794,0.016600749,-0.002442238,-0.003126388,-0.0334344,0.012725515,0.018347515,-0.015436238,0.026939016,0.017066553,-0.00822921,-0.02792238,-0.013547142,-0.011004627,-0.003204022,-0.009050837,-0.013353057,0.001047251,-0.016548993,0.03653976,0.004868302,-0.008028655,-0.018878015,0.009083184,0.0031555009,0.00899908,0.008856752,0.24470253,-0.026680237,-0.00014627146,0.027094284,-0.011968583,0.009548988,0.02297968,0.008462111,0.012020339,-0.00068212836,-0.014957494,-0.013870617,-0.016626626,0.0019537904,-0.004683921,-0.003878468,-0.024907593,-0.012104443,-0.047072116,0.010370616,-0.020974133,-0.009639562,0.0030164064,-0.021853985,0.032580424,-0.0047065644,-0.012647881,0.024170069,0.013456569,0.0049006497,-0.010144183,-0.031157134,0.0046709822,-0.010111836,-0.02859521,-0.013909435,-0.023988923,0.00244709,0.017221821,0.042103536,0.0016270804,-0.0012267798,0.033615544,-0.011606291,0.0061719073,-0.0039916844,0.008947325,-0.013353057,-0.009031428,-0.003603514,-0.0065988945,0.0067476933,0.0077892835,0.011373389,-0.016419603,-0.0070970464,-0.006223663,0.029138649,-0.0041598915,0.009982445,-0.006851205,0.032192253,-0.011541596,-0.004920058,-0.020987073,0.030380793,0.0015324638,-0.0013949869,0.0033867855,0.002283735,-0.009231983,-0.009859525,-0.009555458,0.0026250014,-0.018451028,-0.033977836,0.02688726,0.026913138,0.02323846,0.017700564,-0.01894271,-0.017545296,0.008572093,0.0028190867,-0.012046217,-0.029966746,0.0469686,-0.01096581,0.02285029,-0.036177468,-0.010603518,-0.011780968,-0.01973199,-0.006019874,0.0022902046,0.04112017,0.005754624,0.010066549,-0.010027732,0.0024034209,-0.00095586927,0.041016657,-0.0026589662,-0.01187801,-0.006463035,-0.0018680694,-0.0068835528,0.01487986,0.0120009305,-0.012233833,-0.008500929,-0.01736415,0.016225517,0.0016303151,0.022500936,0.01605731,0.027508333,-0.030846598,0.01892977,0.00065261126,0.0016642801,-0.017804077,0.0050300397,-0.005832258,0.0071488023,0.014284666,-0.0075434423,0.011146956,0.0029614156,-0.033615544,0.007368766,0.0068188575,-0.003577636,-0.01749354,-0.002102589,-0.0025117851,0.027456578,-0.012505552,0.031778205,0.02286323,-0.0063951053,0.011593352,0.018438088,0.0016246543,0.024312397,-0.024118314,-0.01475047,0.011535127,0.007426991,0.0037393735,-0.027249552,-0.0033010647,0.0064533306,0.0052532377,0.036203347,0.023833655,-0.0010844506,-0.022306852,0.0013399961,0.024584116,0.0023597518,0.007588729,0.013314241,-0.020521268,-0.031079499,-0.011975053,-0.16334204,0.007536973,-0.0036099835,-0.030070256,-0.014737532,-0.02037894,-0.011897419,0.0096072145,-0.008792057,0.0031360923,0.003749078,0.009995384,-0.020624781,-0.004108135,-0.006236602,-0.0037620168,-0.01841221,0.020715354,0.031804085,0.0119103575,0.045648824,-0.004350742,0.015423299,-0.014517568,-0.015306847,-0.021465816,-0.019097976,0.045778215,-0.032735694,-0.013249545,-0.008164515,0.0037911297,0.027741235,0.033356763,0.002343578,0.012479674,0.004480132,-0.0077892835,0.011451023,0.0022125705,0.0013852826,0.0043572113,0.007071168,0.0014645341,0.018748624,0.0033285602,0.012304997,-0.003629392,-0.008513868,-0.0059163617,-0.0009768952,-0.04463958,0.015591506,0.007866917,-0.009316087,-0.00822921,-0.00046256956,0.0023791604,-0.000084507905,-0.023419606,-0.021711657,-0.03669503,-0.017519418,-0.00743993,-0.018334575,-0.017959345,-0.0014604906,-0.0073040705,0.0045092446,0.018334575,-0.013624776,-0.018645111,-0.0065341997,-0.007983369,0.023911288,0.017467663,-0.042232927,0.0092513915,-0.012356753,0.020909438,-0.012304997,0.01799816,-0.013314241,0.012576717,-0.0051238476,0.014181154,-0.028621089,0.026317945,-0.022293912,0.007718119,0.021207036,-0.017454723,-0.02273384,-0.014323483,0.010034202,0.010597048,0.010998158,0.0053826277,0.015500933,-0.034158982,0.0011402501,-0.003577636,0.0006772762,0.024493543,0.0094325375,-0.033460278,0.002387247,0.014310544,0.027844748,-0.011567474,-0.018865075,0.009814238,0.025658054,0.006702407,0.020818865,0.02375602,-0.0072005587,-0.013573021,0.009995384,-0.024791142,0.0370832,-0.01123106,-0.004350742,-0.019654354,-0.029397428,-0.0069159004,-0.0939372,-0.032968596,0.01892977,-0.0057675634,-0.004425141,0.014815166,-0.0068447357,0.023613691,0.012304997,0.029268038,-0.0041178395,-0.014025886,-0.0008879395,0.0010286513,0.019524964,-0.015953798,-0.033072107,0.00056122954,-0.013831801,0.026731992,-0.00092594785,-0.015061007,0.03265806,-0.014970433,-0.026279127,-0.030561939,-0.014090581,0.023290217,0.025153434,0.0056381733,-0.015966738,-0.014452873,0.006278654,-0.015332726,-0.030147891,0.0015850286,-0.0077245883,-0.027456578,-0.0028109998,-0.011981523,0.007116455,-0.00028526472,0.011334572,-0.018192247,0.009173757,-0.017286517,-0.012790211,0.03146767,0.018658051,-0.015746774,-0.022927923,-0.025075799,-0.023316095,0.008106289,0.02649909,-0.03133828,0.0069935345,-0.0019376166,-0.017170064,-0.012977826,-0.012563778,-0.012466735,-0.030898353,0.027456578,-0.018308697,0.019654354,0.00056689035,0.015462115,0.007931612,0.019667294,-0.019602599,0.0058063804,-0.0099630365,0.02231979,-0.01826988,-0.01997783,-0.0150998235,-0.007821631,0.020534208,-0.009451946,-0.011690395,-0.0027980607,0.02843994,-0.020792987,0.017946405,-0.00050745177,0.011509248,0.02573569,-0.0003461185,-0.02168578,-0.010564701,0.0053341063,-0.009988915,-0.007989838,-0.016950103,0.005754624,-0.007465808,0.00795749,0.009413129,0.019822562,-0.012389101,-0.012311467,-0.040680245,0.015397421,0.032036986,0.014181154,-0.014789287,0.016950103,-0.0025732454,-0.0048424243,-0.009063776,-0.00042900903,-0.013676533,0.0234843,-0.03669503,0.012906661,-0.00040434403,-0.024221824,0.017454723,-0.02638264,0.013896496,-0.010150652,-0.02100001,-0.009018489,0.005861371,-0.0032913603,0.010040671,0.020133099,-0.009044367,0.008028655,-0.02480408,-0.0017305925,0.027120164,-0.03405547,-0.005550835,0.020650659,-0.008979673,-0.0046580434,0.007983369,-0.0102218175,-0.0039496324,0.0014370386,0.0011920062,-0.027482456,0.015462115,-0.014853982,-0.01867099,-0.0016869233,-0.002851434,-0.013650655,0.019110916,0.016988918,0.04005917,-0.0007549103,-0.010422371,-0.006631242,-0.028000016,-0.027068406,0.007989838,-0.013301301,0.01592792,-0.0074852165,0.033175617,0.024428848,0.0038622941,-0.0037005565,-0.03356379,-0.0016626626,-0.016911285,-0.012492613,0.031027744,-0.029397428,0.004661278,-0.0025894193,-0.0032363697,0.008352131,0.020521268,0.018360455,-0.019214429,-0.0011394415,-0.023445483,0.032942716,0.0064953826,0.016303152,-0.025567481,0.027456578,0.011690395,0.037523124,-0.0075305034,-0.004945936,-0.019408513,0.00411137,-0.037238467,0.005900188,0.0070646987,0.003018024,0.019072099,0.014582263,-0.018619234,0.0023354911,0.008164515,0.027715357,0.032218132,-0.019473208,-0.015319787,0.013197789,-0.011036974,0.029733842,-0.029345673,-0.029190404,0.023833655,0.031545304,-0.0025020808,-0.019667294,-0.030380793,0.013935313,-0.03749725,0.018425148,0.026939016,-0.0075822594,-0.025360458,0.037186712,0.024467666,0.012816088,0.0234843,-0.014789287,0.027741235,-0.027068406,0.0017160361,-0.024040679,0.024648812,-0.023924228,-0.004020797,-0.0003814986,-0.010765255,-0.013353057,0.00965897,-0.026175614,-0.031519424,0.00757579,-0.0033867855,0.055120178,0.026731992,0.020637719,0.000015592517,-0.024312397,0.010014793,0.0053470456,0.024079496,0.019615538,-0.0073299487,0.015643261,-0.008908507,-0.0058257887,-0.027585967,0.008953794,-0.019512026,-0.032451034,0.00862385,-0.013275423,0.0076922406,0.01449169,-0.019809622,0.042336438,-0.009956568,-0.024829958,-0.002527959,0.013087807,0.0036132182,-0.043682095,-0.013611837,-0.010784664,0.007109985,-0.008940855,-0.023872472,0.017545296,-0.009717195,0.010331798,0.02049539,-0.009768952,0.016781894,0.010972279,0.001969964,-0.02335491,-0.0029096596,0.0006105595,0.01685953,-0.012835497,-0.00020985455,-0.035168227]},{\"id\":\"6fa7d787-7bad-4d7f-9fe9-a24be44f82e8\",\"text\":\"My Instagram user name is not being recognized\",\"vector\":[-0.037564423,-0.0060219453,-0.0025276528,-0.012494363,-0.024012702,0.011912502,-0.031483043,-0.027628997,0.0019629977,-0.011618444,0.0051178713,-0.043570727,0.014865601,-0.01821912,-0.008102253,-0.013776959,0.02344961,0.0008516751,0.023111757,-0.024225425,0.0067633484,0.0025573715,-0.019357815,0.020158656,-0.019270224,-0.019445408,-0.0030406911,-0.027979365,0.022348454,-0.01625456,-0.0052304897,0.0059155836,-0.009215922,-0.01889483,-0.037414268,-0.016204506,0.0005224233,-0.03798987,0.010755038,0.0025792695,0.010123124,-0.0024228552,-0.017318176,-0.02173531,-0.026652973,0.016742572,-0.011455773,0.001391304,-0.020058552,0.03108262,0.0022398508,-0.019257711,-0.01637969,-0.010598623,0.009484954,-0.0023790593,-0.010004249,0.028254654,0.009922914,0.015453719,-0.0072888997,0.003691374,-0.0025120114,-0.012068916,-0.007958353,-0.0016564259,0.0055151633,-0.0044327774,-0.0008336875,0.0262025,0.041243285,0.0015594491,-0.007851991,0.0010362437,0.015028273,-0.006319132,-0.011136688,0.0125506725,-0.005402545,-0.00078050664,0.0215351,-0.038690608,-0.010792577,0.015929218,0.020659182,0.0015179995,0.011806141,-0.004254465,0.0018785341,-0.00426385,0.019558026,0.0021976188,0.0056402944,0.0075141364,-0.032208804,-0.009872862,-0.018006397,0.009841579,-0.0016032452,-0.0029327655,-0.0060375864,0.010060559,-0.009222179,-0.010317078,-0.02224835,-0.01126182,-0.005177309,0.013751932,0.0041918997,-0.023274427,-0.008940633,0.037489347,0.0041355905,-0.010029276,-0.008321233,0.017668543,-0.0029093034,-0.0034974206,-0.02787926,0.0045485236,0.010917708,0.0039791763,0.0051741805,-0.0028874055,0.021522589,0.019432895,-0.03135791,-0.018794725,-0.009172127,0.007958353,0.050903425,-0.023236888,0.0142899975,0.0021147195,-0.004814428,0.009197152,-0.0054307,-0.006240925,0.0015508464,0.0059155836,0.019107554,0.01833174,0.0014061633,-0.0008196102,0.013814499,-0.0010855142,-0.016191993,-0.005468239,-0.005236746,-0.018869804,-0.01413984,-0.0021303608,-0.0066257035,-0.03426096,-0.0043921093,0.0286801,0.0029749973,0.019745724,-0.012694573,-0.025626896,-0.038815737,0.017230583,-0.010335848,-0.0073764916,0.029005442,0.016154455,-0.014465181,-0.018607028,-0.032534145,0.013576749,0.0010964633,0.0080271745,-0.016141942,-0.005821735,0.0051898216,-0.008045944,0.0012450567,-0.0010745652,-0.017105453,-0.015115865,-0.018794725,0.022924058,-0.007933326,0.01701786,-0.0020615386,0.0027873004,0.015303561,0.0033441347,-0.0028623792,-0.028104495,0.015491258,0.015553824,0.010448466,0.00021643809,-0.65188414,0.0142899975,0.047124457,0.01144326,0.0016188865,0.031458016,-0.007633011,0.014727958,-0.018707134,0.027428787,-0.0118249105,0.007401518,-0.027103445,0.016629953,0.0009509981,-0.031007543,0.015941732,-0.01040467,0.00033277113,0.023962649,-0.0028013776,-0.01084263,-0.0077956817,0.01142449,-0.009735217,-0.012300409,0.02197306,-0.021985574,-0.010636163,0.030857386,-0.01833174,0.02627758,0.0212473,-0.015128378,0.05660941,0.013814499,-0.0003544736,0.035937715,-0.0023071088,0.05175432,-0.02301165,-0.009197152,0.019120067,-0.00437334,-0.016041836,0.024500715,-0.0027090933,-0.009409876,0.01678011,0.009885374,0.0215351,-0.009228435,0.012750883,-0.011931272,0.025188936,-0.0036100387,-0.013927117,-0.003957278,0.030732254,0.0013701881,-0.026652973,-0.00005943738,-0.012444311,-0.0041262056,-0.0097665,0.018907344,0.0018894831,-0.011637214,0.0047237077,-0.01310125,0.02224835,-0.0125506725,0.006425494,0.01106161,-0.00685094,0.011806141,0.013889577,0.00054432126,0.0058968137,0.0095975725,-0.013626802,0.0113869505,0.022110706,-0.027804181,0.023787465,0.0010018327,-0.027128471,0.010442209,-0.020621642,-0.0079083,0.023362018,0.0057841954,0.010773807,-0.0055151633,0.024513226,0.010523545,-0.023324478,-0.00028134996,0.0090907905,-0.0029577918,0.01685519,-0.00331598,0.011931272,0.020433946,0.02935581,0.004551652,-0.019457921,0.01597927,0.018106503,-0.00063230423,-0.002817019,-0.026302604,-0.003500549,0.00020998601,-0.0011770165,-0.026703024,0.017631004,-0.009015712,0.008415082,-0.0028013776,0.026753077,-0.007927069,-0.00539316,-0.013764446,0.0067570917,0.02128484,0.0002518268,0.004870737,0.0098666055,0.015954245,0.02137243,-0.02241102,0.012475593,-0.015266022,-0.0019457921,0.0018988679,0.030456966,0.013639315,0.005424443,-0.008896837,-0.005746656,0.013689367,-0.0069197626,0.012519389,0.002940586,-0.03203362,0.00214131,0.013238895,-0.018469384,0.027904285,0.0077393726,-0.002849866,-0.018757185,0.029405862,-0.0016877088,-0.014527747,-0.017443307,-0.013313973,-0.0074140313,-0.018269174,-0.017568437,0.032934565,-0.00435457,-0.016004296,-0.0070636636,-0.006913506,-0.0031345398,0.022786414,-0.012237844,-0.005436956,-0.026252553,-0.00727013,-0.012913553,-0.017518386,0.010429696,0.025113856,-0.010267026,0.01474047,0.013076223,0.00026922786,0.011837424,-0.014064761,0.005599627,0.009040738,-0.0004340493,0.013639315,0.008859298,0.0331598,-0.02988136,0.036238033,-0.007426544,-0.009822809,-0.009772757,0.0043483134,-0.008878068,0.023537202,0.031708278,-0.0069510452,-0.02344961,0.028329732,0.009040738,0.01270083,0.04021721,-0.018231634,0.013801985,-0.02767905,-0.0016861446,-0.016004296,0.033535197,0.018469384,0.01641723,-0.019457921,0.003713272,-0.010060559,-0.004626731,0.020421432,0.0065443683,0.017681057,0.003944765,0.026828157,-0.01681765,0.004385853,0.025902184,-0.02587716,0.0018488154,0.017543413,0.031057596,0.000872791,0.023900084,-0.024951186,-0.012531903,0.026703024,0.005277414,0.02268631,-0.009359824,-0.018882317,0.005512035,-0.007839478,0.026903234,-0.013313973,-0.000092186594,-0.0020896932,0.018431844,0.013126276,0.031583145,0.014365076,0.009353567,-0.02700334,-0.016467283,0.015741521,0.0070448937,0.0028045059,-0.007751886,-0.0046048327,0.00013412515,0.0018863548,-0.0015172174,0.041643705,0.011743575,0.04079281,-0.011918759,-0.0087529365,0.01561639,-0.0044890866,0.03168325,0.01689273,-0.0013701881,-0.011756089,-0.021272326,-0.020709235,-0.02955602,-0.02472595,0.024851082,0.009341054,-0.00331598,-0.019758236,0.014502721,-0.011887476,0.019695671,-0.0040605115,-0.011468286,-0.019282738,0.008996942,0.021622693,0.011543365,-0.00645052,-0.030381886,0.008671601,0.0017706082,0.011762344,0.0046204743,0.014077274,0.0069510452,0.0101544075,0.015904192,0.006378569,0.03323488,-0.015678955,0.0046580136,0.018106503,0.025501765,0.016317125,-0.0030876156,0.0036507065,0.023925109,0.009960454,-0.0047581187,-0.028154548,0.008321233,-0.01789378,-0.004001074,0.007182538,-0.004817556,0.022836467,0.004939559,0.023136782,-0.04161868,-0.028630048,0.020233735,-0.0076517807,-0.014327537,-0.008634062,-0.04489712,0.0045047277,0.09474944,0.028630048,-0.01373942,0.02241102,-0.0013701881,0.022798928,-0.014177379,-0.045923196,-0.005568344,-0.01637969,-0.032609224,-0.0009901016,-0.0032565428,0.014565286,0.0059781494,0.005067819,0.024313018,-0.0131763285,-0.028254654,-0.033009645,-0.005602755,-0.015891679,-0.005233618,0.01721807,0.028805232,0.012006351,0.021059602,-0.0048206844,-0.0077581424,-0.03323488,0.0012779037,0.019545514,0.005987534,-0.007126229,0.028204601,0.03235896,0.016292099,-0.0006021945,-0.0028232755,0.013001145,0.028354758,0.029831309,0.0047205794,-0.00014331448,-0.002507319,-0.016004296,-0.02995644,0.018156556,0.0024494457,-0.02244856,0.011374437,-0.0019645619,-0.013326487,-0.011737319,0.009065765,-0.018969908,0.0074328007,-0.021822903,-0.032333937,-0.03806495,-0.009829066,-0.0075078798,-0.005746656,-0.014202406,-0.010198203,-0.012356718,-0.0037789661,-0.019908395,-0.010548571,0.0053650057,0.0047675036,-0.008671601,-0.00019023872,0.030607123,-0.018719647,-0.0103233345,0.004636116,-0.01577906,-0.013927117,0.010473492,-0.009904144,-0.040517524,0.018907344,-0.013201355,-0.013789472,0.004047998,-0.0019285866,-0.015729008,-0.01346413,0.04209418,0.045798067,0.00665073,0.0046110894,-0.014815549,0.018431844,0.0065193423,-0.012675803,0.02288652,-0.009303514,-0.0057185018,0.019833315,0.0060688695,-0.014189892,0.006344158,0.003203362,0.022561178,-0.0087529365,0.025138883,-0.021547614,0.016392203,0.012475593,0.0092597185,0.0022507997,-0.0087529365,-0.004917661,0.02660292,-0.0064004674,0.0074515706,0.012413028,-0.018406818,-0.00037148362,-0.034285985,0.006062613,0.004927046,0.018594515,0.0029139959,0.002099078,-0.015516285,-0.010679958,0.00031419695,-0.00025866993,0.0052836705,-0.004019844,-0.014815549,-0.033134777,-0.018544463,-0.0005005253,0.024801029,0.003835275,-0.01521597,-0.020871906,-0.006913506,-0.0072763865,-0.032108698,-0.010354618,-0.034461167,0.00079732115,0.007094946,-0.007201308,0.047124457,-0.013576749,0.016317125,-0.029981466,0.014127327,-0.025752027,-0.0007875453,-0.014752983,0.026627947,0.014302511,0.024225425,0.009291001,-0.019620592,0.02612742,-0.0009838451,0.009716447,-0.009278488,-0.014177379,-0.010073071,-0.028630048,0.01310125,0.01698032,-0.0011128867,0.019382842,-0.008696627,-0.011831167,-0.005856146,-0.017405767,0.0068634534,-0.0064442633,-0.02647779,-0.0017393255,-0.015653929,-0.00563091,0.00019209614,-0.010098098,-0.002981254,-0.0057059885,0.013213868,0.0037508116,-0.009021969,0.015829112,-0.030331833,0.00912833,0.0021600795,0.018582001,-0.023825005,-0.019357815,0.0055089067,-0.005424443,-0.00048097354,0.004229439,0.031182727,-0.019895881,0.005468239,-0.008239898,0.043820992,0.004019844,-0.015466232,-0.001911381,-0.042244337,0.017605977,-0.01350167,-0.03215875,-0.01769357,-0.01809399,0.014452668,-0.016880216,0.00468304,-0.01290104,-0.016830163,-0.0077206027,-0.008058458,0.010773807,0.018757185,0.03403572,0.039691657,0.015703982,-0.029330783,0.03123278,0.0067445785,-0.024901135,0.03203362,0.025651922,-0.0043045175,-0.03886579,0.044446647,-0.018719647,-0.02700334,-0.010661189,0.041643705,0.012675803,0.01729315,-0.014590313,-0.0025730128,-0.044371568,0.014352563,-0.017343203,0.012143996,-0.036288086,0.017468333,-0.02827968,-0.009541264,0.0017471461,0.022924058,0.018406818,0.0023118013,-0.010704985,0.0042575933,0.018281687,0.012456823,-0.009810296,0.016317125,-0.0045766784,0.0030657174,0.0035224468,0.0019082527,-0.010898938,-0.009453672,-0.012807191,0.016191993,-0.015653929,-0.020421432,0.002660605,-0.012926066,-0.029831309,0.007958353,0.0091471,-0.02787926,0.022861494,-0.0026027316,0.020596616,-0.00066788844,0.009009455,0.008677858,-0.024851082,0.007126229,-0.012688316,-0.004739349,-0.01124305,-0.042294387,-0.007245104,0.0005701296,0.02687821,0.014590313,-0.0028561226,-0.001159029,0.032258857,0.00519295,-0.05185442,0.01665498,-0.0024150347,0.0074765966,-0.010148151,0.014102301,-0.0024463173,-0.0469743,0.011537109,-0.00643175,-0.011305615,-0.01745582,0.01104284,0.011593417,0.0014718572,-0.008609035,0.011374437,0.035086825,0.016279586,-0.016517336,-0.040167157,0.012200304,-0.009441159,0.025902184,-0.014077274,0.022936571,-0.0053712623,-0.029781256,0.032133725,0.0059406096,-0.025651922,-0.008802989,0.014903141,0.02652784,-0.015366127,-0.0182942,-0.0030094085,-0.022661284,-0.0029796897,0.024200398,-0.008671601,0.0011355667,0.009966711,0.010304565,0.012825961,0.027128471,-0.0005560523,-0.005530805,-0.013313973,-0.01849441,-0.01713048,0.000475108,-0.0030015877,0.020108605,0.013238895,-0.021897983,-0.025063805,-0.02632763,-0.023437098,-0.012143996,-0.026502814,-0.0053180815,-0.0037195287,-0.005455726,-0.042794913,0.009854092,-0.0042575933,0.022673797,-0.028404811,-0.013789472,0.021672746,0.008452621,0.004617346,-0.015929218,-0.0026809387,-0.022773901,0.01561639,0.014552773,0.017468333,-0.0033191084,-0.008183589,0.02217327,0.004076153,-0.016429743,-0.007157512,0.015841626,0.020271275,-0.0083149765,-0.009910401,-0.016204506,0.0067570917,-0.012650778,0.014027222,0.008277438,0.0041825147,0.018444357,-0.019970959,0.0011152329,-0.003215875,0.0022789543,0.032208804,-0.003513062,0.0010096534,-0.004185643,-0.00934731,-0.003456753,0.012125226,0.028705126,-0.011211767,-0.0029922028,0.008402568,-0.03250912,-0.014665391,-0.0063379016,0.017405767,-0.034386087,-0.014315024,0.010498518,-0.015729008,0.004041742,0.0038696863,-0.015954245,-0.02232343,0.00021291878,-0.009585059,0.0045328825,-0.00062800286,-0.019845828,0.0015672699,-0.0077581424,0.0045860633,0.02368736,-0.0016830163,-0.015115865,0.006982328,0.022110706,0.024538253,0.017080426,0.2352469,0.007789425,-0.005324338,0.019282738,0.016767599,-0.00047745422,0.019070014,0.006738322,0.0006761002,0.00685094,-0.006009432,-0.014477694,-0.024851082,-0.00006828456,0.027153498,-0.02244856,-0.03008157,-0.008296207,-0.01096776,-0.019507974,0.012613238,0.0076768068,-0.004454675,-0.0045453953,0.035587348,-0.001204389,-0.0022726976,0.043120254,-0.001558667,0.019345304,-0.019608079,-0.006316004,0.015366127,-0.011899989,-0.014715444,-0.014665391,0.023374531,-0.014077274,0.010654933,0.010654933,-0.012807191,-0.021710286,0.015253508,0.00435457,0.01521597,-0.017430793,0.0010894246,-0.0020036653,0.0119437855,0.034561273,0.0076142414,-0.028980415,-0.0038509166,0.039766736,-0.0052993116,-0.009059508,-0.0038415317,-0.0014562159,-0.029405862,0.005874916,-0.021948034,0.024538253,0.02660292,0.010360874,-0.016642466,0.018119017,-0.0019504846,0.000574431,-0.005674706,-0.010248256,0.00042036304,0.0011363488,0.00074687763,0.028429838,-0.015941732,-0.02120976,-0.0043952377,0.029255705,0.023474637,0.029831309,-0.017243097,-0.0128384745,-0.0066257035,-0.026427737,-0.020784313,-0.02181039,0.015103351,-0.0035193185,-0.01537864,-0.020071065,0.0011300923,0.0013850473,-0.019044988,-0.012212818,0.0021506946,-0.014177379,0.008415082,0.009278488,-0.0068446836,-0.007745629,-0.019382842,0.03966663,0.02272385,0.0072763865,-0.025451712,0.0039353804,0.01621702,0.014164866,0.0125506725,-0.00095803675,0.0041136923,-0.022310916,-0.007370235,-0.00070542784,0.0008336875,0.032684304,0.0000039378488,-0.019808289,0.009810296,0.0005900724,0.03911605,-0.031933516,-0.0066695,-0.007113716,-0.015240995,-0.03638819,-0.009528751,0.0020975138,0.0010589239,-0.046198487,0.009910401,0.0075391624,0.03731416,-0.003103257,-0.034085773,0.000717941,-0.007257617,-0.015503772,-0.0004942687,0.015804086,-0.017793674,0.017443307,0.0024869852,-0.01625456,-0.005577729,-0.045998275,-0.0069260187,-0.017405767,-0.0212473,0.009541264,-0.0033816742,0.0056058834,-0.020709235,0.0064818026,0.042519625,0.008652831,-0.023099244,-0.028379785,-0.007820708,0.0003622943,-0.008033431,-0.0010870784,0.021184733,0.005377519,-0.047449797,-0.020671695,-0.15596369,0.018481897,0.01669252,-0.019157605,-0.0025417302,0.0011394771,-0.019770749,-0.0033065954,-0.0039635347,0.0035631144,0.03235896,0.02257369,-0.005449469,-0.014039735,0.0057403995,-0.009997993,0.0011629392,-0.0016830163,0.047825195,0.006506829,0.031883463,-0.020283788,0.01809399,0.0032784408,-0.0041950275,-0.0042044125,-0.01793132,0.024675898,-0.006162718,0.003678861,-0.005734143,-0.0037414266,0.016792623,0.00448283,0.004363955,0.010198203,-0.007851991,0.01434005,0.0018175325,0.03055707,0.01813153,0.0109990435,0.006569395,0.016479796,0.007238847,0.0075579323,0.026577894,0.02787926,0.018031424,-0.010667446,0.012456823,0.0037070157,-0.010780063,0.009403619,0.009447415,0.013201355,0.0011645034,0.014590313,-0.023862544,-0.019545514,-0.010023019,-0.005415058,0.01577906,-0.022924058,-0.019107554,-0.0007245886,-0.008871811,-0.019320277,-0.0052617723,0.029155599,-0.014727958,-0.00570286,0.006638217,0.0029233806,0.011987581,-0.022874007,-0.03483656,0.015553824,-0.007201308,0.0029233806,0.0003069628,0.03866558,-0.02281144,0.03223383,-0.0120626595,0.0055401893,0.011462029,0.009535007,-0.02740376,-0.024550766,0.020471485,-0.020584103,-0.010648676,-0.024175372,0.03083236,0.011806141,0.017168019,0.013339,0.009303514,-0.023549715,-0.007927069,-0.0004340493,-0.0035287035,0.016517336,0.01140572,0.0062252837,-0.029205652,0.013839525,0.029030468,-0.0232494,-0.019207658,0.0080271745,0.023274427,0.03476148,-0.02217327,0.018944884,-0.007038637,-0.0005505778,0.01120551,-0.008383799,0.035762534,0.0030578969,-0.001668939,-0.0024572664,-0.013389052,-0.003136104,-0.093047656,-0.033810485,0.028780205,-0.010498518,-0.01661744,0.011987581,0.011174227,0.0078582475,-0.013751932,0.020033525,0.0027638383,-0.01268206,-0.013076223,-0.007589215,-0.0010972454,0.0014742034,0.00265122,0.001911381,-0.006215899,0.02100955,-0.04014213,-0.0078019383,0.015303561,-0.0082461545,-0.017443307,-0.011849937,-0.0057497844,0.005790452,0.008540213,-0.008759193,-0.007870761,-0.010467236,-0.0030406911,-0.018619541,-0.025539303,0.01330146,-0.024826055,0.031207753,0.035662428,-0.022073166,-0.0060063037,-0.011199254,-0.015716495,-0.010961505,-0.036463268,0.013001145,0.020483999,0.025977263,0.016367178,-0.02348715,-0.016542362,-0.0023681105,-0.028855285,-0.024538253,0.016542362,-0.015591363,0.019545514,0.024500715,0.0050115096,0.0052273613,-0.0083650295,-0.0040824097,-0.017117966,-0.01909504,0.0048644803,0.018682107,-0.0036757328,-0.017756136,0.024988726,0.009735217,-0.0050834604,-0.00071324856,-0.019032475,0.016104402,-0.019970959,-0.018719647,0.003822762,0.00541193,-0.01122428,-0.045072302,-0.014114814,-0.012475593,-0.0071449988,-0.007883274,-0.010961505,0.012494363,0.013001145,0.011756089,-0.02244856,-0.009222179,-0.0021929266,0.0018472512,0.008515187,-0.016529849,-0.003957278,0.0069447886,-0.0016251431,-0.007138742,0.006319132,0.021072116,0.0061408198,-0.015628902,-0.039766736,0.030256756,0.0031001286,-0.0018065835,0.009234692,-0.02580208,-0.004285748,-0.01541618,-0.032609224,-0.011462029,0.012769652,0.021397457,-0.005336851,0.013864551,-0.00042740168,0.0010065251,0.027303655,0.01434005,0.0017971987,-0.01758095,-0.02647779,-0.008871811,-0.0010479749,0.014565286,-0.0079083,0.021109655,-0.03531206,0.020421432,0.0022945958,-0.01689273,0.000872791,-0.03128283,-0.012350462,0.044922147,0.0047111944,-0.024750976,0.02740376,0.025589356,-0.010736268,-0.00041801683,0.0026652974,-0.022423534,0.024338042,-0.0012247228,0.004166873,-0.012469336,-0.030331833,-0.009459929,0.005333723,0.0090907905,0.02328694,0.024876108,-0.0055245482,-0.018406818,0.006694526,-0.03959155,0.024425635,-0.010679958,0.022773901,-0.02168526,0.022360967,-0.019633105,0.009015712,-0.014465181,0.008521443,0.019345304,-0.030331833,0.01789378,0.007526649,-0.02652784,-0.0051522823,0.0014491772,0.010392156,0.011593417,0.019220171,0.027053393,0.0071074595,0.010736268,-0.020546563,0.02232343,-0.0046548853,0.0042482084,-0.022335941,-0.0058780443,0.015528798,-0.0037727095,-0.018882317,0.021547614,-0.00030227037,0.0036507065,-0.032884512,0.015703982,-0.009960454,-0.02268631,0.0034035721,0.00415436,-0.023499664,0.015941732,-0.0030766665,0.02747884,0.002022435,-0.023149295,0.0057716826,-0.0007711218,-0.014515234,0.02807947,-0.022273377,-0.014640365,-0.009760244,0.02888031,-0.021359917,-0.010141894,-0.012594468,0.009472442,-0.03999197,-0.012638264,0.020634156,-0.029505966,-0.028229628,0.027804181,0.0036162953,-0.028129522,0.028254654,-0.01270083,0.01669252,0.015729008,0.018031424,-0.027829207,0.01845687,0.011724805,0.0075516757,-0.024175372,-0.012531903,0.003356648,-0.0055871136,0.0075203925,-0.008796732,0.014052248,-0.008471391,0.06987333,-0.010661189,-0.019533,-0.009735217,0.007833221,0.040767785,0.03901595,0.005180437,-0.022961598,0.0037914792,0.0131763285,-0.013514183,0.0025057548,-0.005224233,-0.026552867,0.0081961015,-0.024826055,0.00056504615,0.0066882693,-0.021510076,0.023624795,-0.004407751,0.02680313,-0.00096351124,0.0041793864,-0.008953147,0.00080787914,-0.0057278867,-0.017843727,-0.025464226,0.0010174741,0.00053219916,-0.0005533151,0.008759193,0.018544463,-0.0025057548,0.007820708,0.015190943,0.016329639,0.017631004,-0.0038978409,-0.004029229,-0.021197246,-0.019520488,0.019520488,0.010792577,-0.0074077747,0.016041836,-0.028229628]},{\"id\":\"4e8be766-fdee-4192-9eff-219f5c55b3f7\",\"text\":\"Hi i just used my blendjet yesterday once and didnt work after that, its broken all i can see is the red light blink i charged the whole day still didnt work..\",\"vector\":[-0.039235406,0.00615137,-0.01815071,-0.0026922664,-0.00546455,-0.00070849113,-0.008128477,-0.029899992,-0.012002673,-0.01724384,-0.0070882454,0.005481221,-0.005097802,0.0040208953,0.00094271,-0.005501225,0.00076683745,0.009268731,0.022845088,-0.014349863,-0.028993124,0.008415207,-0.012816188,-0.007508339,0.004307626,-0.014696606,-0.00070849113,-0.004831076,0.01396311,-0.011209163,0.005877976,0.013816411,-0.030806862,-0.03643478,-0.01807069,0.012476112,-0.0054912227,-0.0066248085,0.015283404,0.0027839534,0.028993124,-0.006021341,0.010448994,-0.007348303,-0.047610603,0.019577693,-0.00211047,0.0070949136,-0.010755729,0.008915319,0.012076023,-0.016870424,-0.011515898,-0.020324526,0.001803735,-0.0014169823,-0.0320338,0.0060513476,-0.010949105,-0.03326074,0.007641702,-0.0052945125,-0.005054459,0.0075883567,-0.0023888655,-0.018897543,0.0006797347,-0.0053245192,-0.018630816,0.0012102695,0.020044465,-0.0077483924,0.035981346,-0.008655261,0.0033674166,0.011449217,-0.016176935,-0.013496339,-0.0059713298,0.004120918,0.027259404,-0.007881755,-0.009468775,0.02041788,0.010542348,-0.006621475,-0.005584577,0.012242727,-0.015163377,0.018710833,-0.01597689,0.013763065,0.0019871092,-0.00066306436,0.0020971338,0.0061747087,-0.01244944,0.03704825,0.0003229886,-0.00833519,-0.009862197,-0.012362753,-0.008148481,-0.021018013,-0.03918206,-0.015270067,0.0037141605,-0.026619261,0.037928447,-0.009968887,-0.01363637,0.033820864,0.00084477145,-0.025645712,0.0028322975,-0.0074149845,-0.022578362,0.0058646393,-0.015283404,-0.016843751,0.004627697,0.021911547,0.008575243,-0.016830415,0.029819975,0.023431886,-0.015936883,-0.006631477,0.0073016263,0.003392422,0.010015564,0.036968235,0.026365872,0.008555239,-0.0079351,0.025378985,-0.011475889,-0.002022117,-0.010162263,0.004754392,-0.003957548,0.021591475,-0.010268954,0.013082914,0.0032840648,0.008488557,0.0052778423,-0.011369199,0.000042014566,0.00083685305,-0.00377084,-0.027659493,-0.00049386,-0.01749723,0.016790407,0.014163154,-0.011215831,-0.0010610697,-0.01959103,0.010255617,-0.019324305,0.008608584,0.014629925,0.002990666,0.018030683,0.021911547,-0.0063047376,-0.012649484,0.004757726,-0.030540135,-0.011882646,0.03195378,-0.013176268,0.013382981,-0.0017737284,0.017843975,0.018537462,-0.0004926097,-0.010342304,0.007895092,-0.028593035,-0.003250724,0.009908874,0.0046677063,-0.0012994561,-0.035501238,0.015163377,-0.015323413,0.01020894,-0.035021134,0.0044543254,-0.0016637038,-0.012609475,-0.005367862,-0.619658,-0.025098924,0.013249617,0.025098924,0.014589916,0.048970908,0.021564802,0.017590584,-0.018270737,-0.00009314575,-0.007968442,0.004037566,-0.014216499,0.0069548823,0.01815071,-0.0062947352,0.00905535,-0.021711502,-0.019404322,0.011095804,-0.027259404,-0.00019181355,-0.014469889,0.024938887,-0.016683716,-0.0070015593,0.019964445,0.0062980694,0.000712242,0.031793747,-0.009228722,0.012296072,-0.0064381007,-0.001471161,0.05001114,-0.014203163,-0.02107136,0.005287844,0.014416544,-0.0069682184,-0.004531009,-0.0063847555,0.02720606,-0.007781733,-0.00094271,-0.023018459,0.009468775,-0.023765292,-0.0023938664,-0.001845411,0.026912661,-0.014696606,0.015350086,0.017337194,0.0010052238,0.0024305412,0.033394102,0.0045943568,0.022298299,0.012489448,-0.0034841092,0.0101222545,-0.021564802,0.0066914903,0.015363421,0.022898434,-0.032887325,-0.0024772184,0.02045789,-0.013149595,0.002907314,0.0008030955,-0.018964224,0.010622365,-0.004394312,0.015670156,0.021724839,0.0035507907,0.00580796,-0.0045510135,0.007248281,0.008881978,-0.0036641494,-0.002420539,0.020257846,-0.0059646615,0.0010752395,0.000018689057,-0.0071882675,-0.00040133938,0.0070015593,0.034541026,0.018684162,-0.02261837,-0.004280953,-0.0062013813,-0.015750173,0.003077352,0.002157147,-0.0056512584,-0.013583025,0.0025272295,0.04296957,0.0088753095,-0.010622365,-0.0107690655,-0.0033240737,-0.03662149,0.01356302,-0.0068415236,0.011155818,-0.002060459,-0.00024151213,0.00930874,-0.011542571,-0.031366985,0.011855974,-0.009635479,0.025645712,-0.01677707,0.005711272,-0.024192054,0.009428767,-0.022458335,0.00640476,0.022298299,-0.009275399,-0.011482557,-0.02489888,-0.00836853,0.015470112,-0.02272506,0.018777516,-0.0073349667,-0.016817078,0.011455884,0.013436326,0.012249394,0.027632821,-0.009422098,-0.010742392,0.027299413,-0.008255172,0.027072696,-0.0033090704,-0.0080617955,-0.0042576147,0.015390094,0.0040609045,0.025645712,-0.0045943568,-0.01320294,-0.033847537,-0.0018670824,0.0047643944,-0.011089136,-0.028806416,-0.014189827,-0.0026889322,-0.038301863,-0.0034541027,0.041075815,0.002855636,-0.013042904,0.0158702,-0.0064347666,-0.023258513,0.026525907,-0.035581257,-0.027446112,-0.0043709734,-0.0055579045,-0.0044243187,0.020551244,-0.016603697,0.004707715,0.015736839,0.003260726,0.0022638375,0.00754168,-0.00046051922,0.017630594,-0.0034874433,0.011729279,0.019204278,0.009028678,-0.0017187161,0.008001782,-0.028459672,0.014709943,-0.01595022,-0.0070882454,-0.01569683,0.0004421818,-0.012002673,-0.007328299,0.01432319,0.00869527,-0.010562352,0.012729501,0.011315853,0.012029346,0.0064481026,0.009622143,0.002905647,-0.013776401,0.01804402,-0.009135368,-0.0007747559,0.025805747,-0.016243618,-0.02572573,-0.00076058606,-0.030406771,0.01728385,0.0058179623,-0.008128477,0.021844866,-0.014029792,0.010428989,-0.024885543,-0.002157147,0.0077150515,-0.011862642,-0.01743055,0.0074016484,0.011709275,0.0019504344,0.02056458,-0.02500557,0.005007782,0.051211406,0.0054778866,0.014163154,0.010509007,0.008155149,0.019991118,-0.010829078,0.035581257,0.0062513924,-0.017363867,0.017217169,0.0040709064,-0.020031128,0.0047510583,0.03827519,0.018684162,-0.01100245,-0.019190941,0.04288955,-0.034247626,0.0063647507,-0.014056464,-0.018857533,-0.011889314,-0.040275637,0.031580366,0.00862192,0.015736839,0.014816633,-0.013316299,0.0154167665,0.011422544,-0.0033457451,0.016176935,0.010782401,0.0059679956,-0.019150931,0.0024255402,0.011962664,-0.0149366595,-0.012069355,0.03488777,-0.026312526,0.0468371,-0.0066581494,0.005977998,0.0081351455,0.023938665,-0.0037041584,-0.0038808642,-0.04014227,-0.004477664,0.0047810646,0.008575243,-0.023311859,-0.036594816,0.012336081,-0.020017792,0.037901774,0.0011835969,0.020071136,0.027072696,0.0218582,0.007555016,-0.038248517,0.005801292,-0.020817969,0.035261188,-0.008301849,-0.027392767,-0.019924438,-0.019497676,-0.024405435,0.015616811,0.015856864,-0.012676156,-0.008715275,0.040115602,0.005071129,-0.027032686,-0.00036320588,-0.0110091185,-0.018350754,0.009215386,-0.010188936,-0.019924438,-0.010629034,0.0342743,0.017777292,-0.029819975,-0.04144923,0.018910877,0.020391207,0.046597045,0.022711724,-0.0041142497,0.018484117,-0.016270291,-0.0030056695,-0.01515004,-0.019817747,0.002377196,-0.012096027,0.034060918,-0.00916204,-0.0043276306,0.0072349445,-0.021124704,-0.010755729,0.021124704,-0.0046376996,-0.015016678,-0.013056241,-0.012329413,0.01576351,-0.007908428,0.0024872206,0.009688824,0.007948437,0.031126931,-0.0011310852,0.01334964,0.000022817581,-0.0016603698,0.0033507464,-0.00916204,0.008375199,-0.007201604,0.0024438775,0.010909096,-0.008681933,0.006008005,0.0034807753,0.012349417,0.01584353,-0.0042542806,-0.019764401,-0.015736839,-0.00782841,0.002023784,-0.009915542,-0.017590584,-0.013289627,0.032087147,-0.007595025,-0.022204945,0.00045510134,0.002287176,0.025819084,-0.029419886,-0.027632821,0.021018013,0.009608807,-0.0011694271,-0.007608361,0.024885543,-0.001493666,-0.024845533,-0.027499458,0.0158702,-0.022311635,-0.0061847107,0.00052886776,-0.0064147618,0.012456107,-0.016497007,0.032620598,0.0030440113,0.015963554,0.0038175168,0.019110924,0.01508336,0.026525907,0.002068794,-0.006288067,0.004280953,-0.003957548,-0.014043127,0.006901537,0.0028056249,-0.007341635,-0.00562792,0.021711502,0.035794638,0.0018354087,0.034247626,-0.031847093,-0.008341858,0.008795292,0.0045176726,0.042542808,0.0002796456,-0.0025889098,0.00038716957,-0.014349863,-0.014136482,-0.020337863,-0.010322299,0.018190717,0.0031657051,0.025165604,-0.016617034,0.01832408,0.021924883,-0.0047277194,0.0020704612,0.007928432,-0.00263392,0.021271404,-0.013396317,0.0011969332,0.004877753,0.009495448,-0.019110924,-0.060813542,0.020391207,-0.0009635479,-0.001753724,0.02413871,0.001696211,-0.019524349,-0.032193836,0.03139366,-0.0032690614,0.005217829,-0.008808629,-0.017590584,-0.049077597,-0.024418771,-0.018964224,0.036061365,-0.0012519455,-0.02323184,-0.03896868,-0.0028739735,-0.012849528,-0.0081818225,-0.018537462,-0.014736615,-0.019164268,-0.00360747,0.016710388,0.017257176,0.004511005,-0.009175377,-0.03958215,-0.035794638,-0.010475666,-0.030833533,0.002418872,-0.019831084,0.028326308,0.02665927,0.023071805,-0.00080559606,0.0047643944,-0.0060180067,-0.018310744,-0.0010210607,-0.026605925,0.016990451,-0.022311635,0.027179386,0.010975778,-0.021604812,0.032273855,-0.013723056,-0.014136482,0.020124482,-0.0015936883,0.015270067,-0.006868196,-0.0420627,-0.008615252,-0.007261617,0.028566362,-0.006148036,-0.01215604,-0.0086619295,0.0076350337,0.019110924,0.009555462,0.019124258,0.014829969,-0.02056458,0.016537016,-0.015683493,0.0015953553,-0.007074909,-0.02121806,-0.0042342762,0.001538676,0.00984886,0.015563466,0.013569688,-0.019204278,0.015363421,-0.026819305,0.017577248,-0.004741056,0.0025422329,0.0032173833,-0.028166274,-0.010882423,-0.029633267,-0.002717272,0.0012419432,0.016310299,-0.019244285,-0.02312515,0.013949773,-0.023325196,-0.016363645,0.007895092,-0.02179152,0.01753724,0.0006488945,0.030966897,0.04553014,-0.009275399,-0.01893755,-0.0012744504,-0.012876201,0.0029639935,-0.006074686,0.04771729,-0.014029792,-0.024525462,0.01136253,-0.014043127,0.0058679734,-0.02547234,0.013763065,0.009928877,0.007868419,-0.024952224,-0.04902425,-0.014909987,-0.0038141827,0.0068348553,0.0062947352,-0.0040409,0.016937105,-0.007601693,0.00772172,-0.013723056,0.017950665,0.023858646,0.006541457,-0.009555462,0.010542348,-0.007201604,-0.0033040692,-0.007474998,0.015776847,-0.014629925,0.011709275,0.006551459,-0.0012369421,0.0009468775,-0.043423004,0.015390094,0.022351645,-0.012742838,-0.010308962,-0.027952893,-0.0003323657,0.019617703,0.010435658,-0.026032465,-0.029046468,0.0013978113,0.011349195,0.010802406,0.01817738,-0.0032357206,-0.0080818,-0.02255169,-0.030566808,0.006104693,0.007695047,-0.00836853,-0.022431662,-0.0036341427,-0.0060913567,0.0024822194,0.012882869,0.0030506793,-0.0047343876,0.0106490385,0.025258958,-0.009548794,0.018244063,0.0058046263,0.0076817106,-0.03304736,0.0032190504,-0.0030990236,-0.029819975,0.002463882,-0.023165159,-0.04798402,-0.031580366,0.0019104255,0.004627697,0.006148036,-0.0077483924,0.015790183,0.00036633157,0.0036608153,-0.017123813,-0.017257176,0.011782624,-0.035874657,0.013909765,-0.0062213857,0.00015409682,-0.01973773,-0.034834426,0.043903112,-0.015256731,-0.0014436549,0.00023734453,-0.009428767,-0.012389426,-0.017683938,-0.010082246,-0.022431662,-0.004974441,-0.005271174,0.009982223,0.014749952,0.00660147,0.009688824,-0.012462775,-0.0042842873,0.025098924,-0.011095804,-0.011989336,-0.018444108,-0.008048459,0.004881087,-0.023178495,-0.007014896,0.025125595,0.03635476,-0.011235836,-0.03478108,-0.0281396,-0.02352524,0.0004863583,-0.0075883567,-0.00037279134,0.022631707,0.005501225,-0.0140031185,0.040942453,0.010028901,0.0022771738,0.012862865,-0.0032007128,0.017043795,-0.0068415236,-0.028246291,-0.024018683,-0.02413871,-0.014163154,0.014923324,0.03672818,0.017790629,-0.010809074,-0.013489671,0.023325196,0.013543016,0.019044241,0.01959103,0.0028006237,0.0010460663,-0.022124927,-0.019564357,-0.005321185,-0.00066681515,-0.027979564,0.025765738,0.04131587,-0.008975333,-0.0073616393,-0.033607483,0.014509898,-0.03326074,-0.03856859,0.023618594,0.017377203,0.0041509243,0.02175151,0.0070882454,-0.025325641,0.025378985,-0.0037008242,0.0006476442,0.0014661598,0.021591475,0.0031073587,-0.026419217,0.0066481475,0.012822856,-0.031580366,-0.023831975,-0.0116559295,0.016617034,-0.043289643,0.018444108,-0.01132919,-0.0046843765,0.006008005,-0.006468107,-0.0072816215,0.025152268,-0.0075283432,0.004694379,-0.04296957,0.015670156,0.0323272,0.008655261,-0.04248946,0.019070914,0.03355414,0.018284071,0.005847969,0.22831751,0.004691045,-0.010355639,0.040569033,-0.008015119,0.0046510356,-0.0032623932,-0.0074349893,0.0053745303,0.009962219,-0.0062347217,0.011215831,-0.012836192,-0.02067127,0.010335635,0.021364758,-0.019284295,-0.018950887,-0.013109586,0.0094020935,0.01244944,-0.0004434321,-0.011582579,0.0031323642,0.021298077,-0.02189821,-0.00061388675,0.0075816885,0.02124473,-0.0071415906,-0.024218727,-0.0057912897,0.02431208,0.020804632,0.014016455,-0.0011719277,0.016363645,-0.007068241,0.01724384,0.02445878,-0.031713728,-0.00036591484,0.011322522,-0.020137819,-0.010842415,0.015323413,-0.0019671049,-0.02521895,0.03886199,0.0011552573,-0.023885319,-0.033020686,0.0031907107,0.020737952,0.008508561,-0.0077683968,0.018097363,-0.029286522,0.0052778423,-0.021978227,-0.008635256,0.025912438,0.00063639175,0.022898434,-0.010882423,0.00905535,-0.0077083833,0.0023121815,0.047637276,0.016270291,0.019297631,0.02117805,-0.022218281,0.017817302,-0.026539244,-0.022898434,0.008021787,0.026992679,0.029713284,0.014976669,0.014136482,0.009722165,0.0055145617,-0.03019339,-0.0031957116,-0.03928875,0.006008005,0.004831076,0.0032757295,0.024685498,0.0151767135,0.008201826,-0.0036508131,0.0035041138,0.031233622,-0.009195381,0.020644598,-0.003122362,-0.0160169,0.016350308,-0.030513462,-0.025245622,0.025178941,0.003777508,0.0017687272,0.027446112,-0.00025776573,0.015576802,-0.00015722252,-0.010168931,-0.0032173833,-0.043823093,0.025085587,-0.020764625,-0.012349417,0.0037941784,-0.0060046706,-0.02276507,0.02341855,-0.011909319,0.022591699,-0.010368976,-0.0038841984,-0.029899992,-0.013016232,-0.023818638,0.007161595,0.020031128,0.023031795,-0.009008673,-0.003907537,0.0059646615,0.018697497,-0.014576579,-0.0075683524,0.0039275414,-0.008895314,-0.0021338086,0.00041800976,0.007815074,-0.013009564,0.018884206,0.01965771,0.00948878,0.011882646,-0.019537685,0.027179386,-0.023711948,-0.028806416,-0.00026776796,-0.03899535,0.028486345,-0.026099145,-0.0013528013,0.024725506,-0.025605703,-0.048784196,-0.02121806,-0.0026172495,0.011489226,-0.01713715,0.0015661821,0.034541026,-0.0015186715,-0.016270291,-0.007968442,-0.16771735,0.009762174,0.014296518,-0.008688602,0.007868419,-0.0010227278,0.02705936,-0.0018204054,-0.017177159,0.03344745,0.02344522,0.028272964,-0.03568795,-0.013122923,0.0011910986,0.03326074,-0.012962887,0.025805747,0.018884206,0.026139155,0.029553248,-0.0043242965,0.00017462223,-0.014803297,0.011949328,-0.0119426595,-0.0042342762,0.03630142,-0.007781733,-0.026245845,0.005814628,-0.029046468,0.024832197,-0.0022555024,0.03664816,-0.032753963,0.01955102,0.013556353,0.0050144503,0.039155386,0.030513462,0.01969772,-0.003597468,-0.019310968,-0.007855083,0.020871315,0.039448787,-0.0074883346,-0.007381644,0.004307626,0.03120695,-0.017177159,-0.011522566,0.009975555,0.026752625,0.028486345,0.012029346,-0.00155618,-0.016283626,-0.006994891,-0.0075883567,-0.008288513,-0.012129368,-0.027152713,-0.010749061,0.011015787,0.009968887,0.015456776,-0.023618594,0.007048236,-0.011042459,-0.02885976,0.015523457,0.0109357685,0.03251391,-0.01753724,-0.019404322,-0.0022688387,0.020284517,-0.011355862,-0.005451214,0.049290977,-0.0044209845,0.020404544,0.018457444,0.0055879112,0.024685498,0.00012502784,-0.016897097,-0.021418104,0.026099145,-0.034247626,0.0003015255,-0.009442103,0.012089359,0.002337187,0.0110091185,0.014616588,0.0038508577,0.008575243,0.0108890915,0.03560793,-0.02705936,0.021631485,0.011349195,0.015896874,-0.0034774411,0.021338085,0.023098478,0.01605691,-0.011875979,-0.021191387,0.02327185,0.04008893,-0.02511226,0.02593911,-0.004184265,0.0036708175,0.013136259,-0.004087577,0.0025072251,-0.0140698,-0.009688824,0.012716166,-0.028379655,-0.029126486,-0.11735947,-0.0529718,0.0120626865,-0.009468775,-0.010428989,0.013589693,0.0100022275,0.029766629,-0.016456999,0.059586603,-0.016430326,-0.0017403876,-0.016990451,-0.02644589,0.028379655,-0.031500347,0.031286966,-0.008161818,-0.01897756,0.008501894,-0.009568797,-0.022485008,0.0097154975,-0.01468327,-0.0024822194,-0.0064647733,-0.02269839,0.00790176,0.021844866,0.0065814657,0.025739066,-0.0011669266,-0.00068473583,-0.0062713968,-0.014229836,-0.015630148,-0.029713284,0.01255613,-0.010855751,-0.041822646,0.011909319,0.0009860529,-0.008928655,-0.03059348,-0.019724393,0.021538131,-0.0042876215,0.027446112,-0.01872417,-0.017897319,-0.023578584,0.030780189,-0.021884874,0.00012502784,0.019911101,-0.015923547,0.0047010467,0.040889107,-0.020697944,0.013503008,-0.021151377,0.003654147,-0.0055945795,0.0149366595,-0.03088688,-0.021511458,-0.008121809,-0.0036174722,-0.000571794,-0.012002673,-0.0056045814,0.011915987,-0.019857755,0.0014811632,-0.032620598,-0.030726843,0.00008090343,-0.018604143,0.011862642,0.0076683746,-0.020737952,-0.0032290525,-0.009782178,0.011335858,0.028326308,-0.01309625,-0.0019504344,-0.011669265,0.0022154935,0.012202717,-0.0014611587,0.02752613,0.0026522574,-0.021258067,-0.032780632,0.004777731,-0.028886434,0.0014003118,0.009868865,-0.0058379667,-0.00526784,-0.015496785,-0.042542808,0.035047807,-0.008888646,-0.009788847,0.030060029,0.008501894,-0.0028856427,-0.0025722396,-0.022471672,-0.01959103,-0.0050344546,0.010989114,0.015590139,-0.02067127,-0.022098254,-0.014563243,0.036594816,0.02348523,0.011182491,-0.023538576,-0.016763734,-0.026912661,0.0101756,0.028886434,-0.023071805,0.013683047,0.0059846663,0.02204491,-0.0065848,-0.008021787,0.024405435,-0.016230281,0.018750843,0.021484785,-0.00026151657,-0.036594816,-0.023191832,0.011855974,0.0063814213,-0.0093554165,-0.009348748,-0.031233622,0.006548125,-0.021871537,0.0056845993,-0.014203163,-0.014443217,0.0035507907,0.002240499,0.023645267,0.0242454,0.009688824,0.0043576374,-0.015923547,-0.011369199,-0.024152046,0.011702606,-0.015110032,-0.021644821,-0.014829969,0.041262522,-0.0044676615,0.003987555,-0.017443884,0.017297186,-0.0021038018,-0.0109357685,0.010388981,0.006868196,-0.030540135,0.0024955557,-0.012962887,0.014883314,0.0040742406,0.03243389,-0.021738175,0.011962664,0.01955102,-0.0067114946,0.017803965,0.0060913567,0.0002623501,-0.030113373,-0.0076683746,0.0263392,0.015563466,-0.031153604,0.013696384,0.0013486337,0.009982223,-0.024152046,0.013976446,0.012316076,0.0042242743,-0.010148927,0.022525016,0.01237609,0.0072882897,-0.030220063,0.029179832,0.024992233,0.02103135,-0.01984442,-0.024672162,-0.019257622,0.01807069,-0.022084918,-0.003210715,-0.016750397,0.012942882,0.007521675,-0.009728833,0.04152925,0.038035136,0.0027439445,-0.0036708175,0.0024488787,-0.017030459,-0.006541457,0.03152702,0.0036641494,-0.0111758225,0.00068140175,0.0032823978,0.060706854,-0.011309185,-0.0063514146,0.015603475,0.0066181407,0.011822633,-0.00872861,0.002810626,-0.016910432,-0.0013911432,0.017177159,-0.011695938,-0.030780189,0.052038256,0.011082469,0.059053153,-0.029046468,-0.010849083,-0.01230274,0.0047210515,0.027552802,0.036994904,-0.01745722,-0.01529674,0.001580352,-0.0038141827,-0.013209608,0.0049010916,0.010589025,-0.002242166,-0.009422098,-0.0067114946,0.0044209845,-0.023551911,-0.01933764,0.025085587,-0.021818193,0.022938441,0.008048459,-0.029526576,0.009108695,0.0061680404,-0.019190941,-0.012956219,-0.017617257,0.017643929,0.0028606371,-0.03694156,-0.02572573,0.027392767,-0.0027222729,-0.022364981,0.027366094,0.01893755,0.016296962,0.014723279,0.037368324,-0.01969772,0.0026639267,-0.005397869,-0.024845533,-0.022058247,-0.0013953107,-0.0109357685]},{\"id\":\"57b6348c-5f86-47e5-83c4-9ea2205a91a9\",\"text\":\"Your product leaks. I can’t get a refund. The milk cereal ratio is awful.  I will be writing a negative review online. \",\"vector\":[-0.0026136765,0.007981195,-0.01488064,-0.011694759,0.001386815,0.0034925973,-0.012690759,-0.037940357,0.0014709143,-0.01288864,0.020566417,0.028178236,-0.025183637,-0.007585433,-0.008179076,0.00010636096,0.023811664,-0.0021915305,0.0054615117,-0.014801488,-0.00840334,-0.00066826015,-0.012037752,-0.008871659,-0.0019293384,-0.025144061,0.014366151,-0.021265596,0.029154446,0.0040466636,0.002310259,-0.003456319,-0.009122307,-0.001616027,-0.007552453,0.014339766,0.0052405447,0.012130097,0.020566417,-0.02910168,0.006840082,0.0015904674,0.01699137,-0.020935794,-0.031819243,0.014405726,-0.008917831,0.0017792787,-0.0067411414,0.002997895,0.021331556,-0.018284192,-0.0061178165,-0.0035717494,0.010283208,0.006233247,0.015632588,-0.008627606,0.0129546,-0.004841485,0.006167287,0.017149674,-0.024326153,-0.0016968284,0.00064517406,-0.0054087434,-0.032821838,-0.022320962,-0.026146658,0.004132412,0.01923402,0.030025123,0.0042577367,-0.01667476,0.028099082,0.0017611397,-0.007592029,0.0101512885,0.014498071,-0.020922603,0.043164413,-0.003980703,0.0024685638,0.006447618,0.024946181,0.013548243,0.010230441,0.024233809,-0.002321802,-0.015870046,0.001245825,0.010197461,0.0005491194,0.007882254,-0.005303207,0.017585013,0.004597432,0.043375485,-0.0069983862,-0.0080735395,0.0029269878,0.008614413,-0.019352749,-0.019484669,-0.025144061,0.016147079,0.013495475,-0.016701145,0.03765013,-0.028785069,-0.016714336,-0.0044885976,0.004801909,-0.0061474987,0.009511474,-0.0002522981,0.023059716,-0.026212618,-0.014181462,-0.015593012,0.01885145,-0.008218652,0.012440111,-0.024669148,0.0138648525,0.000345467,-0.0031430076,-0.0113781495,-0.009847871,0.011945408,0.017848853,0.021661358,0.021080907,0.008027367,-0.025632167,0.027043717,-0.043876782,0.010428322,0.010052348,-0.011233036,0.0134888785,0.030130658,0.0007037138,0.012070732,-0.019154867,0.019511053,-0.0003015622,-0.00029640904,0.0023960075,-0.028811453,-0.0017166164,-0.031054104,0.012624799,-0.012070732,0.0012821031,0.008845274,-0.0012128447,0.022993756,-0.013825276,-0.015447899,0.01871953,0.004785419,-0.008746334,0.0019293384,-0.0033540805,0.023758896,0.034642342,-0.012572031,0.0017908218,-0.014128693,-0.0023415901,0.02539471,-0.0031512526,0.010850467,-0.013653779,0.011397937,-0.0030556102,0.010454706,-0.0018749211,0.0066224127,-0.017980775,0.013231633,0.018574417,0.017017754,-0.013350362,-0.033903588,0.0494966,-0.026370922,0.02455042,-0.010771315,0.014128693,0.028125467,-0.0075128768,-0.010289805,-0.6492603,-0.03519641,0.0008673778,0.0070643467,-0.0066389027,0.028283771,0.000078894685,0.0006501211,-0.012703951,0.018482072,0.0036146238,-0.0042709284,-0.016556032,-0.009208056,0.009874255,-0.024537226,0.011622203,-0.021450285,0.0039905976,-0.0017726828,-0.011846468,0.018495265,0.00060106313,-0.012928216,-0.012492878,0.0019128483,0.029312752,0.0011724441,-0.007941619,0.016239423,-0.0050030877,0.010058944,-0.016424112,0.0041917763,0.061211146,-0.0012285104,0.0031232196,-0.000102959886,0.010850467,-0.00003112501,-0.03894295,-0.008020771,0.013020561,-0.00978191,-0.004129114,-0.0056758826,0.023904009,0.017809277,0.0023086101,-0.002303663,0.00549779,0.014313382,-0.0037861206,-0.0012408779,0.026516035,-0.008324188,0.03509087,0.0012507719,-0.023442285,0.02116006,-0.017730124,0.00072473864,-0.026964566,0.005006386,-0.026252193,-0.008027367,-0.019009754,0.014577223,0.009907235,-0.012492878,0.0016556032,0.016305383,-0.02333675,0.022202233,0.025355134,0.016265808,0.020737914,0.0021717425,0.019893622,0.00008100748,-0.0018782192,-0.023191636,0.004881061,-0.004630412,0.018600801,0.0015071925,-0.0008133728,-0.0030753983,-0.0049008494,-0.010335977,0.0044358294,0.021885622,0.01616027,-0.0126050105,0.0063948496,0.011331977,-0.02833654,0.02891699,0.006183777,-0.025539823,-0.018745914,-0.0022805769,-0.005520876,-0.015395131,0.008099923,0.021133676,-0.014313382,0.01679349,0.028099082,-0.013838468,0.011167076,-0.0008624307,-0.014023157,-0.035724092,0.01285566,-0.02456361,0.01807312,0.011589223,-0.0065663466,0.02084345,-0.0074271285,0.006698267,0.02584324,0.025737705,-0.010830679,0.010619606,0.010177672,0.0044852993,-0.0113451695,-0.0008001807,0.0060617505,0.002983054,0.0072688237,-0.0061738826,0.01003256,0.032030314,0.027624168,-0.03815143,0.014920217,-0.031317946,-0.0022640869,-0.01519725,-0.010764719,-0.0011897587,0.008317593,-0.0032666833,0.0194319,0.005069048,0.017479476,0.036726687,0.0029632659,-0.0063552735,-0.018125886,-0.0016119045,-0.02007831,-0.001157603,0.004106028,-0.017228827,-0.017993966,-0.021212827,0.009452109,0.032162234,-0.032478847,-0.004376465,-0.031449866,-0.008832082,0.0076513933,0.0072952076,-0.00094653014,-0.018244615,-0.023257596,-0.014418919,-0.026027929,-0.0050360677,-0.011305593,0.014036349,0.0030638552,-0.009458705,-0.0010025963,0.00012841643,0.005916638,0.018534841,-0.024985757,0.00878591,0.033112064,0.016701145,-0.000923444,0.053876363,-0.03735991,0.04456277,-0.015909621,-0.013020561,-0.026634764,-0.00038916568,-0.016964985,-0.053823594,0.00037597364,0.012360957,0.011417726,-0.0026021334,0.008964003,0.01185966,0.014062733,0.006635605,0.012631395,-0.00961701,0.010204056,-0.0065597505,0.043586556,0.030922182,-0.0017809278,-0.020764299,-0.01164199,-0.004369869,0.0013365203,0.007526069,-0.0093333805,0.020276193,0.00740734,0.022334153,-0.05084219,-0.008627606,0.00878591,-0.010573434,0.0011782156,0.004739247,-0.0026070804,0.00971595,0.02513087,-0.017202443,0.002767034,0.029418288,0.016041541,0.023640167,0.028389307,-0.012004772,0.03546025,0.002984703,0.019445093,0.009293805,0.012486283,0.02981405,0.0019408815,-0.0013258017,0.0032897694,-0.01757182,0.022413306,0.022070313,-0.0036509018,-0.0007754456,-0.00727542,0.006873062,-0.030895798,-0.019774893,0.024524035,-0.019959582,0.0097093545,0.009175076,0.019959582,0.022677146,0.00026466566,0.00827142,0.020685146,-0.01526321,-0.005814399,-0.0026680937,-0.001036401,-0.010791103,-0.00022735687,0.013666972,-0.010652586,-0.006035366,0.017598204,-0.043639325,0.0045149815,-0.002302014,0.021582207,0.004082942,0.0056494987,0.009590626,-0.02462957,-0.0003574223,0.017030947,0.01871953,0.009735738,-0.00041101503,-0.011516666,-0.018930603,-0.009029963,0.03788759,0.0063123996,0.003449723,0.029075295,0.013376746,-0.0036212197,-0.0030374713,0.01871953,-0.008363765,-0.010692162,0.014115501,0.006470704,-0.006754333,0.008363765,-0.0010611361,0.017347556,0.015685357,-0.02539471,-0.0021684445,-0.014418919,-0.0067807175,0.010045752,-0.0063552735,-0.010342573,0.00043451338,0.016912218,-0.008693566,-0.0042280545,-0.031660937,-0.006754333,0.007526069,-0.004356677,0.0070577506,-0.0074535124,0.025236405,0.08369041,0.04437808,-0.0038223986,0.0092674205,0.0012590169,0.013482283,-0.00420167,-0.032848224,0.012248825,-0.0130799245,0.009544454,-0.013798892,0.0038652727,0.013970389,-0.0037762264,-0.019550629,0.009122307,-0.0031248685,0.0005396376,0.0046238163,0.00103805,0.0035717494,-0.0072490354,0.00047491406,0.010006175,0.016331768,0.012281805,0.014471687,0.0029055506,-0.0084495125,0.005045962,-0.014827873,-0.02449765,0.014920217,-0.01923402,0.05788675,0.033323135,-0.0109691955,-0.002053014,0.0034958953,-0.0030951865,0.0031578487,0.0018023648,-0.0026087293,-0.005702267,-0.0065696444,-0.011226441,0.02371932,0.006196969,-0.02904891,0.03250523,-0.021714127,-0.028231002,-0.0130139645,0.0075788368,0.013680164,-0.0041983724,0.004627114,0.006154095,-0.0038289947,-0.029734896,-0.015619396,-0.0063222935,-0.010896639,-0.021107292,-0.010672375,-0.04675265,0.004811803,-0.007638201,-0.021700934,0.0031693918,0.0010289805,-0.028996142,-0.0054087434,0.022136273,0.01164199,0.01629219,-0.025830049,0.0001616027,0.0098082945,0.012327977,-0.0026351134,0.010514069,0.0050195777,0.015883237,0.022690339,0.01327121,0.0005318048,-0.021806471,-0.009821487,-0.0058473796,0.0016069575,0.018745914,0.0020991862,-0.0031100276,0.0011229739,0.0065927305,0.022017544,-0.009531261,-0.012525858,-0.011912428,0.0026103784,-0.010566838,-0.0040301736,0.0017347556,0.0036509018,-0.013409726,0.008746334,-0.01391762,0.010091924,0.016503263,0.017703742,-0.00958403,-0.0046403063,-0.015975581,0.010157884,0.0074667046,-0.0056560948,0.002539471,-0.01923402,-0.0012136693,-0.048705075,0.025896009,-0.0077173538,-0.004594134,0.018271,0.008198864,-0.049734056,-0.020104695,-0.025698127,-0.029655745,0.021503054,0.0037564384,-0.023099292,-0.048546772,-0.02635773,-0.009597221,0.010237036,-0.0040037893,-0.030500038,-0.027782474,-0.0065531544,-0.0021486564,-0.015632588,-0.0019062523,-0.026278578,-0.012796296,-0.006866466,-0.03783482,0.02981405,0.000027182852,0.0068532736,-0.0129809845,0.0009440566,-0.012294997,-0.025750896,-0.009894043,-0.003918041,0.029998738,0.0033095574,0.037913974,-0.016899025,0.002488352,0.00298965,0.009689566,-0.005837485,-0.010909831,-0.016107501,-0.038626343,0.03712245,0.03052642,0.0016457092,0.053770825,-0.0199332,-0.0012450004,0.012882044,0.0061474987,-0.029259983,-0.01455084,0.008851871,0.020421306,-0.017624589,0.0011765666,0.008799102,0.0069456184,0.0017314575,0.014075926,0.035856012,0.026067505,-0.0037333523,0.015342363,-0.01795439,0.01687264,-0.009498281,0.026898606,-0.0014626693,-0.031317946,-0.011318785,-0.024312962,0.015672164,0.00073009793,0.0026285173,0.0019738616,0.016199846,0.00064847205,-0.010217248,-0.014933409,-0.03276907,-0.0072490354,-0.030368116,-0.0070973267,-0.02622581,-0.01564578,-0.012090521,0.0060749426,0.009023367,-0.01680668,0.012657779,-0.04859954,-0.015658973,-0.032980144,0.0105272615,0.010573434,0.0027060208,0.014761913,0.044773843,-0.024405306,-0.007763526,0.023508247,-0.0031248685,-0.015830468,0.006629009,0.03142348,-0.0009630202,0.0022278086,-0.0018238019,0.0067873136,0.005820995,-0.02129198,-0.015368747,0.004643604,-0.0013406428,-0.020790683,-0.012149885,-0.024840644,0.017980775,-0.0041192197,-0.011404534,-0.029655745,-0.016344959,-0.027439479,0.04258396,0.0021305173,0.007394148,0.025355134,0.0029286367,-0.0072094593,-0.007110519,-0.040737074,0.010850467,0.017149674,0.037544597,0.00040153324,0.014352959,0.00031990738,-0.007987791,-0.024959372,-0.0074601085,-0.012136693,0.021912007,-0.0025378221,0.010599818,-0.010316188,-0.012664375,0.009498281,-0.020302577,-0.024154657,-0.022268193,-0.012473091,0.001036401,0.00030547858,0.02333675,-0.042742267,0.0017182655,-0.013601012,0.0015368747,-0.016041541,-0.0041818824,0.011424322,-0.007902042,0.0062761214,-0.0019062523,-0.010771315,0.0010669077,0.006952214,-0.0059595117,0.013732932,0.0076975655,-0.0037234582,0.005553856,0.005441724,0.014827873,-0.01898337,0.004580942,-0.00034608538,-0.013746124,0.0135218585,-0.023772087,-0.035381097,-0.016661568,-0.019511053,-0.005243843,0.008086731,-0.00052891904,0.023310365,0.029576592,0.018376537,-0.028679533,0.0014313383,0.011740931,-0.02385124,0.014102309,0.008898043,-0.010375553,-0.0059595117,-0.007915234,0.017228827,-0.015302787,0.020342153,0.0025015438,0.0019111993,0.035856012,0.0060650483,-0.033903588,-0.009735738,-0.00881889,-0.028231002,0.014009965,-0.012512666,-0.020658761,0.0013546594,0.0084495125,-0.0023597293,0.04110645,-0.0026021334,-0.017387131,-0.021384325,0.004844783,-0.0016572522,-0.011134096,-0.014656376,0.022716723,-0.0023415901,0.0026697426,-0.053533368,-0.0105272615,-0.012532455,-0.013482283,-0.016081117,0.005510982,-0.00007193794,-0.0029236898,-0.018970178,0.049997896,-0.013666972,0.0035948358,0.00961701,-0.008343976,0.0067114593,-0.015856853,0.0016836363,-0.029471057,-0.005260333,-0.008931023,0.02513087,0.04545983,0.0122620175,0.033560593,0.010105116,-0.004643604,-0.014841065,-0.002567504,-0.000098064396,-0.008489089,0.005487896,-0.0062761214,-0.014801488,-0.0035882397,0.020803874,-0.0021717425,0.00554726,0.018099504,-0.010923023,-0.00744032,-0.008198864,-0.015698548,-0.008113115,0.009702758,-0.011635395,0.015936006,-0.018231424,0.011226441,0.012050944,-0.03210947,-0.007519473,0.015078521,0.009564241,0.0067807175,0.013587819,-0.014009965,-0.03699053,0.020817067,0.015223634,0.0063354857,-0.0026285173,0.010441514,-0.017901622,-0.0057385447,0.030130658,0.012611607,-0.012130097,-0.00008889179,-0.006246439,0.0037102662,0.02212308,-0.002499895,0.003980703,-0.043744862,-0.009465301,-0.0062530353,-0.017176058,-0.054667886,0.018600801,-0.012591818,-0.02013108,0.008561646,0.222893,-0.002709319,-0.007803102,0.04429893,0.005276823,-0.011866256,-0.00029785192,0.019840855,-0.010738335,0.015065329,0.023745703,0.009913831,-0.031502634,-0.008033963,-0.012031157,-0.0166088,-0.027004141,-0.026581995,0.015461091,-0.0044589154,0.007981195,0.007387552,0.01654284,-0.014247422,0.033560593,0.0026219215,-0.014366151,-0.015078521,0.023046523,0.011107712,-0.010744931,-0.012539051,0.010692162,-0.009597221,-0.01981447,0.00045718724,0.0210941,0.0017825768,0.00644432,0.01802035,-0.010665778,0.017598204,0.031845625,-0.02134475,-0.017400324,0.021569014,-0.017809277,-0.0017759807,-0.002551014,0.021265596,-0.01092962,-0.008812294,0.0348798,0.020909412,-0.017189251,-0.012670971,0.006652095,-0.008680373,-0.02385124,0.0008731493,-0.00420167,0.031186024,-0.00012882869,0.010355765,-0.053243145,0.003680584,-0.03200393,-0.028758686,0.0043072067,-0.012433514,0.013653779,-0.01802035,-0.021489862,0.02141071,-0.024735108,-0.01788843,-0.01230819,0.033428673,0.047148414,0.0093993405,-0.014669568,0.021001756,-0.023969969,-0.016780296,-0.0058803596,-0.041053683,0.0077173538,0.0010537156,0.020342153,-0.0074205324,-0.0013241528,-0.0049833,-0.019326365,-0.001147709,0.021067716,-0.0023399412,-0.003904849,-0.006698267,-0.0038883588,-0.00692583,-0.00871995,0.015975581,0.0036278157,0.007638201,0.010144692,-0.014788296,-0.002551014,0.03519641,0.010408534,-0.02378528,-0.0062893135,-0.026581995,0.006467406,0.0009473546,0.00025456547,0.00088386785,0.012506071,0.011516666,0.004092836,-0.0063123996,0.005804505,-0.00024796947,0.0032370011,0.01205754,-0.0040697497,-0.009913831,-0.012149885,0.005593432,0.009274016,-0.03751821,0.013350362,0.0075788368,0.027228406,-0.03480065,-0.025117677,-0.0146827595,0.000003529906,0.01337015,-0.0030440672,0.017202443,-0.04028854,0.024867028,0.0060683466,-0.029471057,0.012710547,-0.0018650271,0.012466494,0.0058242935,-0.016410919,-0.005276823,-0.013732932,0.009801699,-0.0047293524,0.010342573,0.02404912,0.005072346,-0.059839174,-0.03224139,-0.011292401,-0.005923234,-0.021582207,-0.0023564312,0.029444672,0.0032848222,-0.014722336,0.0046897763,-0.16748635,0.02013108,0.005078942,0.012849064,0.009992983,0.008429725,0.02660838,0.0015566627,-0.00068804825,0.002785173,0.026212618,0.00088469236,-0.012697355,-0.019827662,-0.0075326646,-0.025223214,-0.014207846,0.0009910533,0.024101889,0.019458285,0.013759316,-0.010243633,-0.0007474125,0.008027367,0.0030605574,0.004165392,-0.01054705,0.045169603,-0.005329591,0.006800506,-0.010448109,-0.029128063,0.03474788,0.010342573,0.05841443,-0.023772087,-0.018930603,-0.02051365,0.004841485,0.022584802,0.0005363396,-0.0015863449,0.022967372,0.0074864924,-0.015395131,0.02635773,0.009722547,0.012532455,0.0051778825,-0.02775609,-0.004399551,-0.034510422,-0.018455688,0.00022941812,-0.010283208,0.025698127,-0.0067741214,0.0259092,-0.039787244,-0.010890043,-0.014788296,-0.0006381658,0.015593012,-0.009551049,-0.009656586,-0.007328188,0.0018551331,0.0037762264,-0.030288965,-0.00042956637,0.0021404114,-0.010975792,0.019669358,0.0074667046,0.023033332,0.010573434,-0.027782474,-0.009491685,0.014049541,-0.011622203,-0.017479476,0.0069851945,-0.021239212,0.025566207,-0.021793278,0.0061046244,-0.0060749426,-0.009023367,0.00067238265,-0.02622581,0.0016185006,-0.008245036,0.014669568,-0.014577223,0.021331556,0.03635731,0.0146168,0.0033079083,0.017123291,0.0013752719,-0.008245036,-0.009412533,-0.051317103,0.027043717,0.050235353,-0.012209249,-0.031713706,0.008198864,-0.003213915,-0.039022107,-0.00053386606,-0.008053751,0.024603186,0.028521229,-0.0047590346,-0.013508666,0.0035387694,-0.015144482,0.022294577,-0.0040004915,0.020025544,-0.013502071,-0.0012590169,0.008555049,-0.025539823,0.0051943725,-0.1102856,-0.03796674,-0.010045752,0.013957197,-0.03327037,-0.0006468231,-0.0033689216,0.03258438,-0.007117115,0.031687323,-0.014049541,-0.030869415,-0.01788843,0.0031166235,0.03627816,-0.013165673,0.004369869,-0.009544454,-0.008231844,0.014775104,-0.011529858,-0.0043072067,-0.014841065,0.012156481,-0.003001193,-0.0077239494,-0.0070643467,-0.015395131,0.025658552,0.007763526,0.02116006,0.009722547,0.0024438286,-0.020948987,-0.011727739,0.011127501,-0.027465863,0.028362924,0.021146867,-0.043322716,0.013086521,0.017070523,-0.0066092205,-0.040895376,-0.0033441866,0.010045752,-0.012380746,0.026951373,-0.005939724,-0.010474494,-0.0062365453,-0.003416743,-0.01551386,-0.021806471,0.02725479,-0.001851835,-0.0054021473,0.0038520808,-0.020566417,-0.008832082,-0.026450075,-0.0006422883,-0.02154263,0.0074205324,-0.0018650271,-0.007037963,0.013601012,0.0022146166,0.00058374857,-0.018521648,0.0023927095,-0.0061013266,-0.018706337,0.033771668,-0.011035156,0.0030226302,-0.028864222,-0.016938603,0.013185461,0.0011213248,-0.0038256967,-0.02846846,-0.0015541892,-0.030816646,0.017611397,0.010401937,0.009115712,0.022083504,-0.011351765,-0.019194443,-0.0113781495,0.043507405,0.021753702,-0.009590626,-0.022716723,0.017202443,-0.0062200553,-0.018429304,0.035354715,-0.011648587,-0.016305383,0.010322785,-0.043269947,0.03617262,0.01685945,-0.0056560948,0.0037102662,-0.0046798824,-0.00554726,-0.007110519,0.0056330087,0.010428322,0.004610624,0.019075716,-0.011213249,-0.023059716,-0.0113781495,-0.018297384,0.025038525,0.009821487,0.024880221,-0.022281384,0.021674551,0.005125114,0.0029253387,0.030790262,-0.025922393,0.0214239,-0.0009927023,0.020553226,-0.0033243985,-0.01385166,-0.0044292333,-0.021450285,0.019524245,0.00903656,0.010164481,-0.0105272615,-0.011266017,0.015342363,-0.00078369066,-0.033560593,0.004326995,-0.016661568,-0.0005095432,-0.014471687,-0.010408534,0.0070181745,-0.018693145,0.0074733007,0.02994597,0.01282268,0.050182585,0.00015737712,0.012459898,-0.026727108,-0.022716723,-0.021384325,0.028099082,0.008990387,0.014695952,-0.03506449,0.021766895,-0.0047524385,0.023376325,-0.031502634,0.021041332,0.00971595,-0.0142738065,0.0068598697,-0.00024879395,-0.025038525,0.01674072,-0.014933409,0.02577728,0.003924637,0.028046314,0.0055736443,-0.019669358,-0.02185924,-0.0026994247,0.0069720023,-0.0113781495,0.01513129,-0.027202023,0.011463898,-0.016410919,0.019524245,0.0042742267,0.014669568,0.013798892,0.012044349,-0.04250481,0.0056560948,0.0074535124,0.012849064,0.0074930885,0.04630412,-0.009214652,0.0029121467,0.01551386,0.009570838,0.015342363,0.0117871035,-0.0027983652,-0.02577728,-0.015052138,0.01481468,-0.017664164,-0.030104276,-0.00037391236,0.016054735,0.009247633,-0.024286577,0.005702267,0.018165464,-0.0023696234,-0.0049404255,-0.005276823,0.00073009793,-0.013159078,0.01164199,0.006899446,-0.008416533,0.017716933,-0.009979791,0.02448446,0.018877834,0.005029472,-0.010270016,0.009531261,0.0061277105,-0.0065861344,0.0009349871,-0.00999958,-0.014841065,-0.00088799035,0.011971792,-0.01006554,0.03495895,0.0077503338,0.056409236,0.0031512526,-0.01199158,-0.0013060137,0.01833696,0.026766684,0.018508457,-0.026713917,0.0028527824,-0.017176058,-0.0038652727,0.0035618555,0.024326153,-0.004627114,-0.009544454,-0.0067939097,0.0088914465,0.00071195886,-0.007849274,-0.014352959,-0.0036146238,-0.00033557296,0.027360328,0.004383061,-0.0073809563,-0.016278999,-0.0049668094,0.019379131,-0.021740511,-0.036726687,-0.0060881344,-0.0059793,-0.011081329,-0.010573434,-0.006840082,-0.01981447,0.0052009686,0.019445093,0.010876851,-0.002950074,0.015421515,0.027360328,-0.007143499,-0.0058935517,-0.028283771,-0.0031215707,0.0037366503,-0.010626202,-0.033164833]},{\"id\":\"bf7e8d4d-3c66-4a85-9e84-40d865bcac3f\",\"text\":\"I'm I don't have any knowledge about this! You a link I can look at\",\"vector\":[0.0047581764,0.004886602,0.022012183,-0.01826215,-0.014820338,0.009773204,-0.0077697616,-0.00069189403,0.00009958017,-0.0063313926,0.013600294,0.0032748582,0.0018798328,0.00008197178,0.0079945065,-0.0019472563,0.022371776,-0.004437112,-0.0013837881,0.0039812,0.0021768175,-0.000106553285,-0.015346884,-0.008585265,0.008861381,0.006684563,0.014139681,-0.01855753,-0.024028469,-0.006485503,0.039195556,-0.0073523778,-0.024721969,-0.046592884,0.01348471,-0.012604993,0.02080498,-0.039478093,0.003294122,-0.014910236,0.0075963866,0.022885479,-0.011089569,-0.020329805,0.0030115852,-0.013780089,0.012206873,-0.009291607,-0.00026828953,0.022731367,-0.017144846,0.02169112,-0.03482908,-0.013934201,0.01343334,0.019032706,0.0014142892,0.015462467,0.0017000367,0.008238516,0.010781347,-0.00870727,-0.012913215,-0.016207337,-0.0003760468,0.0147175975,0.004459586,0.014268108,0.0072432156,0.008122932,0.022949692,0.0076220715,-0.012084869,-0.011506952,0.025864959,-0.01313796,-0.037063688,-0.013227859,-0.006463029,0.014820338,0.020638028,-0.01866027,-0.016656827,0.019816102,0.0090732835,0.007872502,0.016387133,0.016926521,-0.0026182812,-0.017645705,0.0020066532,0.02194797,-0.0041706283,0.011571165,0.00169201,0.024696283,-0.01552668,0.036601357,-0.011930757,-0.029152658,-0.005031081,0.0068643596,-0.01234172,-0.021010462,-0.015334042,-0.026211707,0.008007349,0.025055876,0.005512678,-0.013125118,-0.025402624,0.015385412,0.0059236404,-0.0311561,-0.014820338,-0.0068900445,0.010325435,-0.025453996,-0.02357898,-0.03164412,0.009567723,0.02020138,0.0067551974,-0.0018429103,0.019610621,0.012508674,-0.016862309,-0.024824709,-0.0043215286,0.006007117,0.034623597,0.008270622,-0.00045270097,0.01273984,-0.017555809,0.034161266,-0.005991064,0.031130416,-0.0071790027,-0.026198866,0.024876079,0.018467631,0.0023180859,-0.028921492,-0.029486565,0.011725277,-0.0088999085,-0.007789025,0.0060488554,-0.01632292,0.02612181,0.010415333,0.0090861255,0.0048448634,0.0011582403,0.031027675,0.0013243911,-0.014768968,0.001961704,0.0004819981,-0.029923214,-0.0031656963,0.007076262,-0.023129487,-0.0076220715,0.033390712,-0.0005955747,-0.03005164,-0.0238872,-0.0009936946,-0.014036941,0.018429104,-0.014820338,0.01717053,-0.0067744614,-0.0004595236,0.011500531,0.009137496,-0.018827224,-0.0028221572,-0.026609827,0.014602015,0.010903351,0.00830915,-0.02357898,-0.012116975,-0.004960447,-0.0037339805,0.011950022,-0.0002702962,0.033827357,-0.0009776414,-0.004732491,-0.020188536,-0.6653484,-0.040582556,-0.008591686,0.007185424,0.03369893,0.03413558,-0.022936849,-0.011924337,-0.014550644,0.027431753,0.0012344931,0.023848673,0.008739376,0.001647061,-0.012611414,-0.014614857,0.030334176,-0.031900972,0.018326363,-0.0041834707,-0.010408912,0.010306171,0.008566001,-0.012996692,-0.003939462,-0.006633193,0.023373498,0.011622536,0.0007906214,0.004591223,-0.019225344,0.02617318,0.0028799488,-0.007885344,0.040068854,-0.04194387,0.014743282,0.027508808,-0.008649479,0.02691805,-0.017183373,-0.006922151,0.0038752488,-0.008122932,-0.010453861,-0.004597644,0.004517378,0.020689398,0.02054813,-0.024465116,0.015565208,-0.0012336904,-0.01985463,-0.0012746261,0.013510395,-0.010851981,0.024144052,-0.0064405543,0.012572886,-0.0049090767,-0.005393884,0.028870123,-0.03806541,-0.010216273,-0.01815941,0.00736522,-0.02343771,0.008668742,-0.012527938,0.0034803394,0.0075450162,-0.015860587,-0.008135775,0.027406067,-0.010357541,0.017620021,0.021036148,0.005711738,-0.018454788,-0.0015017793,-0.00950351,0.00890633,-0.016541244,-0.044563755,0.045077458,0.0018702009,-0.018120881,-0.007859659,-0.01871164,-0.03025712,0.029435195,0.015141402,0.0037692974,-0.008135775,-0.024940291,0.030976305,-0.0146277,-0.009927315,-0.000074497,0.01178949,-0.0020548129,0.01821078,0.016078912,-0.003090246,0.010511653,0.0053521455,-0.006559348,-0.004588012,0.031284526,-0.013972728,-0.011725277,0.005692474,0.01502582,0.013189331,-0.001187136,-0.029717732,0.033930097,0.005284722,0.014062626,0.0013027193,0.014011255,0.009060441,0.01438369,-0.00048641275,-0.005795215,0.019238187,0.002159159,-0.025864959,0.0023566135,-0.000980852,0.0005289538,-0.014640542,-0.0019520723,0.0015202406,0.02110036,0.008020191,0.006145175,-0.0031271684,-0.005580101,-0.035702374,-0.010164903,0.009599829,0.0024208266,-0.03220919,0.0069992067,-0.008835696,-0.010563022,0.0103639625,-0.017594336,-0.009330135,-0.037962668,-0.006588244,-0.016798096,0.008174303,-0.005833742,0.0036248185,-0.017889716,-0.024131209,-0.020779297,-0.0030597448,0.0037532442,-0.006922151,-0.013150803,-0.013664506,0.02169112,-0.030513972,0.024413746,0.008013771,-0.027560178,-0.0072881645,-0.009586986,0.019289557,-0.0056667887,0.013048062,0.0030019532,-0.011539059,0.011359263,0.024452275,-0.004360056,-0.004498114,-0.0017385643,0.016425662,0.0061740708,0.019867472,0.03891302,0.016515559,0.0112693645,0.010929036,-0.02124163,-0.000348957,0.021665433,0.018249307,-0.016104596,0.027996827,-0.01383146,0.02274421,0.0041224686,0.02359182,0.005104926,0.021472795,0.04697816,-0.008912751,0.017054947,-0.015732162,0.0041481536,-0.01134642,0.01637429,-0.0031592748,0.023912886,0.004414637,0.0035220778,-0.017042104,0.018865751,-0.005085662,0.01931524,0.008649479,-0.023848673,0.0014062626,-0.02309096,-0.008643057,-0.026712568,0.03711506,0.0083669415,0.0020355491,-0.022513045,0.011025356,0.014422218,0.016579771,-0.000846005,-0.023129487,-0.013112275,-0.021768175,0.008983386,0.007808289,0.007853238,0.024644913,0.005149875,0.00013354278,0.011320735,-0.006254337,-0.023424868,0.026083281,0.027380383,0.012322457,0.036190394,0.0018124093,0.014139681,0.008033034,-0.0054131476,0.017594336,-0.0065754014,0.004796704,-0.021909444,-0.004225209,-0.0021270525,-0.03726917,-0.019957371,0.018942807,0.004417848,0.007673442,0.010916194,-0.008469682,0.011404212,0.024773339,0.022859793,-0.0062671793,-0.024439432,-0.011128096,-0.0058080573,-0.0034707075,-0.0051145577,-0.028870123,0.013459025,-0.026712568,0.009009071,-0.0074037476,0.025942013,0.009349399,0.010543759,0.017645705,-0.03616471,-0.024426589,0.01288753,0.011076726,0.00109483,-0.031027675,-0.018801538,0.022859793,-0.009002649,0.053630617,0.009753941,0.01178949,-0.0066460357,0.00388167,0.005798425,-0.0010370384,0.038835965,0.0055062566,0.009054019,0.02229472,0.00050447264,0.0064951354,0.015102875,0.010530916,0.024901764,0.031900972,0.045359995,0.009021913,0.016425662,-0.012836159,0.01587343,0.003942672,-0.009349399,-0.02124163,-0.0062414943,-0.0012690076,-0.003737191,0.0039041445,-0.003923408,0.01562942,0.008379784,-0.029178344,-0.011301471,-0.0038624061,0.10166187,-0.009599829,0.011474846,0.008925593,-0.0125215165,-0.040865093,-0.02283411,-0.017298957,0.007256058,0.006761619,0.018043825,-0.002900818,-0.008720112,-0.008013771,0.0013516817,-0.013381969,0.000741659,0.0065561375,-0.002597412,-0.008643057,-0.00502787,0.0053681987,0.0059140087,0.027585864,0.031772546,0.009060441,-0.007589965,0.019173972,0.0076541784,0.009753941,-0.008488946,-0.00970257,-0.0068643596,0.016528402,-0.017594336,0.015398255,-0.010505231,-0.0035606055,0.024439432,0.012881109,0.0004294238,0.0039812,-0.0013003113,-0.011410633,-0.012097711,-0.037834242,-0.004119258,0.023617506,0.014640542,-0.007467961,0.014794653,0.004668278,-0.025620949,-0.022153452,0.010370384,-0.006434133,0.0050985045,-0.0018653849,0.009696148,-0.019173972,-0.022911165,-0.012990271,0.015000135,-0.00019013039,-0.012617836,-0.03976063,0.014807495,0.008681585,-0.023912886,0.00676804,0.023745932,-0.026481401,-0.024991663,0.0143580055,0.03742328,0.011879387,-0.00060039066,0.006697406,0.0005341711,0.013818617,-0.0026584142,-0.026327292,0.013144381,-0.0059718,0.0013861961,0.015334042,0.011506952,-0.013613136,0.015192773,0.015321199,0.03976063,-0.0033454923,0.038450688,-0.009214552,0.030231435,0.0034996034,0.0040518343,0.021357212,-0.006347446,-0.011307892,-0.002791656,-0.029332455,-0.01273984,-0.02075361,-0.0018942807,0.0019520723,0.021190258,0.013844302,-0.009426454,0.005875481,-0.0076541784,-0.011153782,0.0076413355,-0.007833974,0.016066069,0.039452408,0.0073010074,0.010158481,-0.01074924,-0.017132003,-0.024670597,-0.020984776,0.033647563,-0.0045366418,0.00011668689,0.017825503,0.0031833546,-0.0073587988,-0.023168016,-0.01971336,-0.020727925,0.00066299824,0.0016823781,-0.0015338857,-0.011911494,-0.0005903574,-0.0061869132,0.008617371,-0.03110473,-0.0132535435,-0.012251822,-0.009599829,-0.015693633,-0.026031911,0.002732259,-0.03914419,-0.014833181,0.018891437,0.0026953367,0.018133724,-0.009920894,0.00502466,0.0031528536,-0.013266386,-0.010132796,-0.0245807,-0.022448832,0.004164207,0.040479816,0.012027077,0.039786316,-0.002144711,0.018583214,0.019520722,-0.0147175975,-0.009721833,-0.003727559,-0.007833974,-0.015488152,-0.0050021852,0.022628628,0.005278301,0.016258707,0.03354482,0.0061387536,0.033519138,0.018339206,-0.02144711,-0.008861381,-0.027585864,0.010184167,0.0041866815,0.008405469,0.0005277498,-0.00955488,-0.0019424404,0.005120979,-0.031978026,-0.017080633,-0.0045045353,0.023925727,-0.017684234,0.044024367,-0.019135445,0.0025893853,-0.031875286,-0.00915676,0.011763804,0.011937179,0.005448465,0.0022281879,0.0186089,-0.003836721,0.01507719,-0.0022362145,0.020342648,-0.005230141,-0.016464189,0.0002795268,-0.014345163,-0.013869987,-0.05429843,-0.02049676,0.014255265,0.02194797,0.021434268,-0.0077569187,-0.0015603736,0.000347753,-0.034649283,-0.002672862,-0.0001834081,0.024953134,0.0013316151,0.0027081792,0.033621877,0.003253989,-0.0092723435,0.024272477,-0.00017929447,0.0059782215,0.011179467,0.021061832,-0.006225441,-0.027560178,0.02572369,-0.0009912867,0.006029592,-0.025505366,0.02278274,0.013741561,0.014807495,0.0061387536,-0.025402624,0.0021543428,0.019597778,-0.00567321,-0.00061323325,-0.022718526,-0.019173972,-0.008732955,0.041532908,-0.011950022,0.038296577,0.0112565225,0.004353635,0.002343771,-0.0150900325,0.010042898,0.023270756,0.016926521,0.026635513,-0.0062832325,-0.0040036747,-0.0066909846,0.015706476,-0.008546738,-0.016143125,-0.0027643656,0.022102082,-0.0063378136,0.016875152,0.005265458,-0.011564744,0.0067487764,0.010119954,-0.011352842,-0.009394348,-0.01288753,-0.0021543428,0.012046341,0.0077183913,-0.02269284,0.009843838,-0.020676555,0.011307892,-0.010087848,0.0025813587,-0.00046594488,-0.026430031,-0.028279362,-0.020676555,0.009991528,0.023514766,-0.0074615395,-0.0069735213,0.012842581,0.031130416,-0.021164574,0.00040012665,0.0110959895,-0.013767247,-0.019122602,-0.004732491,0.0055447845,-0.029101288,0.003891302,-0.010627235,-0.03678115,-0.014101154,0.03863048,-0.0050760303,0.016066069,-0.0043407925,-0.01815941,-0.0070826835,-0.0046201185,0.0034000734,-0.010665763,0.026057597,-0.010222694,0.010357541,0.03434106,-0.029640676,-0.0005008607,0.0033005432,-0.014101154,0.010678606,-0.016515559,-0.01174454,0.0022201613,0.016977891,-0.018968493,-0.018467631,-0.0068707806,-0.014191052,-0.024503645,0.0031079045,0.0025251724,-0.008533895,0.010877666,0.022988219,-0.005901166,0.036395874,-0.020573815,-0.013767247,-0.013998413,-0.011205152,-0.042586,0.0031833546,-0.014961607,0.047003847,0.010267643,-0.028382104,-0.011609693,-0.0074615395,-0.022371776,-0.009811732,0.005737423,-0.010967564,0.019687677,0.0045559057,0.00018671909,0.018942807,-0.001961704,-0.004607276,-0.0031785388,-0.010665763,-0.013176488,-0.001232085,0.019328084,0.0024545384,-0.016965048,-0.01776129,-0.008437576,-0.0035766587,0.009163181,0.0292554,-0.01935377,-0.012110554,-0.014948764,-0.011718855,-0.003618397,-0.0074037476,0.009021913,-0.048544955,-0.006780883,-0.00010665362,-0.0007520936,-0.007891766,0.025685161,0.019019863,-0.0038335104,0.005682842,-0.0076349145,-0.00522372,-0.006979943,0.002552463,0.013073747,-0.006832253,-0.018120881,0.031721175,-0.008874224,-0.018698798,-0.011558323,0.01343334,0.00024742034,-0.0014488037,0.008816432,-0.02348908,-0.00022715316,-0.02234609,-0.005384252,-0.017504437,-0.0019135446,-0.0028253677,-0.010216273,-0.025595265,0.008321992,-0.0059075872,0.007467961,0.0018091985,-0.012553623,0.0026006226,-0.029948898,-0.009214552,0.006902887,-0.009574144,0.0037692974,0.033210915,-0.019867472,-0.021434268,0.018929964,-0.015719319,-0.012515095,-0.02134437,0.20455663,-0.01004932,0.0028815542,0.022590099,-0.009734676,-0.019610621,0.014332321,0.013266386,-0.025556736,-0.0037115058,0.007390905,0.011384948,-0.019328084,0.00013123512,0.003339071,-0.025017347,-0.030488286,-0.025235672,-0.0033165966,-0.028998548,0.012258244,0.016682513,0.00024561436,-0.013677348,0.03526573,0.018852908,0.005348935,-0.011179467,-0.0044210586,0.011025356,-0.004632961,-0.009317293,0.025299884,0.003329439,-0.005458097,0.00043624642,0.014178209,-0.013471867,0.036344502,0.017851187,0.0057502654,-0.0045366418,-0.0021238418,-0.02020138,-0.006129122,0.019610621,-0.019019863,-0.04109626,0.0066524567,0.004716438,-0.02049676,-0.031130416,0.02861327,0.0025460417,-0.01855753,-0.0029072391,0.01383146,-0.00086446624,-0.008264201,-0.0077312337,0.0011132912,0.036652725,-0.0066460357,0.01931524,-0.020869194,0.006209388,-0.0014640542,0.0005526323,-0.00562184,0.00691573,0.0017851187,-0.017054947,0.015256986,0.007673442,-0.018146567,-0.018069511,0.0027146004,0.027945455,0.022615785,0.020766454,-0.0043825307,0.0013380364,-0.028099567,-0.003213856,-0.01060155,-0.034007154,0.011994971,0.009741098,0.008732955,-0.006353867,-0.0025348044,0.014807495,-0.032466043,-0.039118502,0.021010462,-0.021781018,-0.0024754074,0.02433669,-0.004986132,0.012656364,-0.03020575,0.0099786855,0.035599634,0.007256058,0.0027290485,-0.009137496,-0.012059184,0.018018141,0.0016342184,-0.01353608,-0.011166624,-0.009021913,0.014447903,0.008058719,-0.0010538943,0.022654312,0.0028189465,-0.026237393,0.024362376,-0.027508808,-0.02309096,-0.028972862,-0.013600294,-0.0015250564,-0.0026857047,-0.008437576,-0.010139218,-0.012823317,0.006479082,-0.029101288,0.007275322,0.010768504,0.01966199,-0.005259037,0.0028751327,0.010595129,0.008488946,-0.015000135,-0.0030725875,0.007159739,-0.002208924,-0.015667949,0.0074165906,-0.016464189,0.008463261,-0.033416394,0.019906001,-0.016554087,0.0027659708,0.00067102484,-0.01871164,-0.0077183913,0.0050567663,-0.0088999085,0.04476924,0.017504437,0.022153452,-0.030873565,-0.013510395,0.03493182,-0.015192773,0.025543893,0.03159275,0.000500058,0.000081570455,-0.012560044,-0.16263844,0.02946088,0.028998548,-0.005676421,0.025505366,0.027534494,0.0063024964,0.004244473,0.00427979,-0.019071233,0.0075578587,-0.019790417,0.0062832325,-0.0132792285,-0.0044114264,-0.029486565,0.006678142,-0.009028334,0.030873565,0.0048031253,0.005265458,-0.016194494,0.023347812,-0.03228625,0.022281878,0.03657567,-0.008379784,0.002000232,-0.016335763,-0.01557805,-0.012996692,0.011076726,0.0053553563,-0.0027434963,0.022898322,-0.016438503,-0.005592944,0.02243599,-0.019379454,0.006960679,0.020984776,0.0020564182,0.016554087,0.0017754869,-0.013587451,0.037782874,0.024914607,-0.012136239,0.03562532,-0.012855424,0.01512856,0.0014263291,0.016348606,-0.010986828,-0.007294586,0.02239746,0.01637429,-0.0003176532,-0.0048930235,0.007294586,-0.016862309,-0.02160122,-0.027380383,-0.03418695,-0.010691448,-0.027739974,-0.016412819,0.0007448697,-0.014563487,0.00039952467,0.0019552829,-0.025993384,0.015488152,0.002955399,0.021819545,-0.014563487,-0.035907857,0.004494903,0.017530123,-0.011686749,0.021190258,0.025903486,-0.027971141,0.009715413,-0.0011502136,0.004771019,-0.0022635048,-0.0059782215,0.015385412,-0.007846816,0.014512116,-0.011879387,0.0012393091,-0.03333934,0.022705683,0.037551705,0.0001741775,-0.0002448117,-0.00088854606,-0.01089693,-0.011217995,0.00014267305,-0.015500995,0.028793067,0.032722898,0.003457865,-0.0019568882,0.015488152,0.050086066,-0.0051755602,-0.007236794,-0.0072624795,0.019084075,0.018441945,0.0027210219,0.017953929,0.015513837,-0.0025460417,-0.013677348,-0.0068450957,0.041841127,0.012861845,-0.012874687,0.01871164,-0.01582206,-0.018865751,-0.08696996,-0.029743418,0.028947176,0.01010069,-0.009888787,0.01139779,-0.0017626443,0.0017594335,0.0048994445,0.022718526,-0.02104899,-0.043664776,-0.008636636,-0.008020191,-0.003945883,0.0019681256,0.008187145,-0.008482524,-0.019880315,0.012784789,-0.010460282,0.0015675975,-0.013240701,-0.029537937,0.0012152292,-0.016078912,-0.028356418,0.010595129,0.023771618,-0.00527509,-0.00965762,-0.029897528,-0.018994177,-0.034623597,-0.017928243,-0.0040068855,-0.008874224,-0.00065577426,0.015218458,-0.035419837,0.0013645242,-0.008854959,0.02238462,-0.037397597,-0.029101288,-0.008418311,-0.027123531,0.017106317,-0.005580101,-0.028664641,-0.005281511,-0.0025958067,-0.032055084,-0.030513972,0.029794788,-0.004135311,-0.023399182,0.011885809,-0.014370848,-0.0066139293,-0.023861514,0.004353635,-0.035060246,0.0020933407,0.035548262,-0.025787903,0.010993249,0.0034610755,0.007191845,-0.01677241,0.00080065464,0.020329805,-0.029409511,0.0037147165,-0.049315512,0.01815941,-0.03742328,-0.023168016,0.0046265395,0.010132796,-0.007532174,0.017581493,0.011731697,-0.014897394,0.008212831,0.0014841207,0.0118151745,0.021472795,0.018030984,-0.03932398,0.0069992067,0.02174249,0.026815308,-0.011449161,-0.017594336,0.019238187,0.005512678,0.009195288,-0.0008074773,0.0053874627,-0.016862309,-0.012630679,-0.03526573,0.016798096,0.0022025027,-0.016104596,0.014396533,-0.008155039,0.009464982,-0.0028606849,0.017183373,0.030539658,-0.02343771,0.00388167,-0.005583312,-0.0069285724,-0.0033069646,-0.009940158,0.029486565,0.010704291,0.014820338,-0.010485968,-0.02165259,-0.01517993,0.04433259,0.03608765,0.0038335104,0.023553293,-0.00016424457,0.011295049,-0.017298957,-0.010633657,0.018840065,-0.041532908,-0.016528402,0.022872636,0.00083958375,-0.023219386,0.0023405603,0.025287041,0.026147494,0.021858072,-0.0046297503,-0.0090989685,-0.0068258317,-0.0070248917,0.016014699,0.003263621,-0.030334176,0.0076156505,0.003438601,0.009028334,0.02617318,0.012251822,-0.04012022,-0.018840065,-0.0005646722,-0.014409375,0.012874687,-0.01632292,-0.0021238418,-0.014987292,0.020586656,0.0064309225,0.010164903,0.0004819981,0.03503456,0.0022121347,-0.014858866,0.036241762,0.016798096,-0.0351373,-0.028330734,0.006254337,-0.0012160318,-0.0022522677,0.011763804,-0.0038880913,-0.015256986,-0.0014134865,-0.00477744,0.007878924,0.009676885,-0.010023634,-0.0074037476,0.010453861,0.0159248,0.00038989272,-0.0020435757,0.011950022,0.022127766,0.015642263,-0.028202308,0.013728719,-0.0016807728,0.0054677287,-0.0028638956,-0.0039137765,-0.0009720228,0.0003096266,0.0019633095,0.029229714,0.019340927,0.008122932,0.010505231,-0.019636307,-0.022757053,0.0049347617,-0.029820472,-0.04369046,-0.015462467,-0.0009888788,-0.013908515,-0.0048609166,-0.022602942,0.0016759568,0.0041288896,-0.0055351523,-0.008450418,-0.026943734,-0.015308357,0.027226271,0.017799817,0.021781018,0.017774131,-0.00046273423,0.017594336,0.013561766,0.028073883,-0.033133857,0.015757848,0.01005574,-0.005936483,-0.0039041445,-0.036216076,-0.010774925,-0.01966199,-0.00041457458,-0.0047806506,-0.0012096106,-0.016900836,0.059178613,-0.0015210431,-0.028484844,0.006055277,-0.020817824,0.015359727,0.010607972,-0.00026648355,-0.038322262,-0.00094232435,0.03005164,0.006286443,-0.016284393,-0.023848673,-0.022821266,0.002965031,0.002782024,0.0014078679,0.0061130687,-0.009670463,0.012238979,0.002741891,0.008347678,0.028690325,-0.009786047,0.016900836,0.017542966,-0.0245807,-0.015565208,-0.02318086,0.002199292,0.011750962,-0.008700849,-0.012816896,0.019173972,-0.02766292,-0.01512856,0.007371641,0.026327292,0.008264201,0.01214266,0.02951225,-0.033621877,-0.014820338,-0.0039490936,-0.009317293,-0.009265922,-0.010543759,-0.027560178]},{\"id\":\"5ef4bc42-7242-4286-9c2f-89af86ee63b1\",\"text\":\"I want more money pls\",\"vector\":[-0.017519645,-0.012817682,-0.0036456322,-0.022981653,-0.016218554,0.023651522,-0.028211782,0.011980346,-0.036662433,-0.01348755,0.026060473,-0.003903274,0.01373231,-0.012186459,-0.004241429,-0.0104924645,0.019451959,-0.012888533,0.0070078583,-0.0040288744,-0.015896503,-0.0099771805,-0.015187987,0.006254256,0.0052236887,0.0026376084,-0.0009758185,-0.0119996695,-0.0079546925,0.00010275481,0.003545796,0.009249343,-0.009352399,-0.01606397,-0.027928377,-0.0010756548,0.011523032,0.026562875,-0.0065086773,-0.0061769634,0.009494103,0.0084506525,-0.0006219635,-0.02013471,-0.04333536,-0.0037486888,-0.0033461235,-0.037693,-0.017468117,0.012263752,-0.012122049,0.010885368,-0.052120946,-0.018794972,-0.0026826956,0.021886675,0.0030933125,0.02671746,-0.02160327,-0.008160805,-0.012186459,0.0015192818,-0.030041039,0.010125325,-0.0017020465,-0.0025587056,0.0020224885,-0.0017213696,-0.0076004346,-0.0037583504,0.020727286,0.019786894,0.0036069858,0.0076004346,0.016244318,-0.006138317,-0.01003515,0.011316918,-0.013474668,0.00634121,0.034266368,-0.0038742893,0.0035876627,0.010440936,0.007123797,0.027928377,0.012843446,0.020212002,-0.01951637,-0.01163897,0.029706106,-0.011961022,0.012701743,0.011613206,0.012424778,0.019967243,-0.007935369,0.02707816,0.017906109,-0.014827289,0.015213751,-0.0040675206,-0.02782532,-0.0048307846,-0.041660685,0.0070271813,-0.016772484,0.0023719154,0.013629254,-0.0022269918,-0.007645522,0.006395959,0.025596717,-0.0363275,0.018859383,-0.017519645,0.0019612985,0.0036327501,-0.022556543,-0.02536484,0.02432139,-0.011645411,0.05441396,0.020598466,-0.00966801,-0.02671746,-0.0017245901,-0.0031078048,-0.0025377723,0.017777288,0.008444211,0.020546937,0.0127532715,0.015973795,-0.015432747,0.021461565,-0.017107418,0.01687554,-0.018550213,-0.007110915,0.008424888,0.025622481,-0.00004408091,0.0014758047,0.0008341155,0.02271113,0.00332358,-0.026253704,0.02049541,-0.02487532,0.035812218,-0.0269751,0.01353908,0.009494103,-0.0035135907,0.015909385,-0.010189735,0.0061061117,-0.018859383,-0.012134931,-0.017210476,-0.009835478,0.014402179,0.002025709,-0.008154364,0.023123356,0.010531111,0.012096285,-0.0033074773,0.0104795825,0.0009653518,-0.0032849335,-0.016772484,0.0117549095,-0.016501961,0.013719428,0.0017503543,0.005098088,-0.004457204,-0.004341265,-0.0037293658,0.013642136,0.0089659365,0.052043654,0.0015667845,-0.0039676847,0.0074651726,-0.012605128,0.017738642,-0.0059644086,0.000025474841,0.002592521,0.01348755,-0.009004583,-0.6492575,-0.024360036,-0.005313863,0.0027487164,0.0092235785,0.016476195,-0.0018067134,0.012733948,-0.027000865,0.021848029,-0.043953698,0.0005164914,-0.01840851,-0.013120411,0.030195625,-0.023909163,-0.009307312,-0.043541472,-0.016012441,0.017571174,-0.03145807,0.006582749,0.0025522646,0.021912439,0.016411785,-0.009764626,0.0014073686,0.0008502181,0.007890281,0.0048726513,-0.00064813026,0.027129687,-0.01422183,-0.008663207,0.063740596,-0.012933621,0.017133184,0.0015055946,0.006083568,0.040037543,-0.01809934,-0.0028533835,-0.011091482,-0.044005226,-0.027567677,0.0014178352,0.0043670293,0.0142733585,-0.0014339379,0.018575978,0.015690388,0.015316808,0.0021867352,-0.002141648,0.023496937,-0.00008841342,-0.006193066,-0.015419865,0.018498685,0.013989952,-0.000015297484,0.006131876,-0.03681702,-0.033261564,-0.0011279882,-0.00437025,-0.014208948,0.016282964,0.010885368,-0.027799556,-0.008585915,0.0027599882,-0.009532749,0.022827068,0.00979039,-0.0016827233,0.021976849,-0.025841478,-0.018253924,0.017481,-0.009287989,-0.02277554,-0.0031303484,-0.021152396,0.03645632,-0.01373231,0.01311397,-0.009307312,0.020791696,0.019310256,0.017738642,0.039599553,0.007677727,-0.010866045,0.006853273,0.009081875,-0.01304956,-0.015819209,-0.00056037103,0.007800107,0.004763154,-0.004834005,-0.014196066,-0.016231436,0.016566372,0.0010885368,-0.004302619,-0.003164164,0.013577726,-0.03478165,0.017326415,-0.0127532715,-0.002634388,0.0074909367,0.0064313845,-0.03452401,0.027413093,-0.014247594,0.003122297,-0.021744972,0.007825871,0.02228602,0.02658864,-0.027670734,-0.01212849,-0.0015659793,-0.009777508,-0.004212444,0.014930345,0.025442133,0.010808076,-0.03761571,0.017828817,-0.009165608,0.0038807304,-0.017468117,0.0311489,0.005159278,0.030066803,-0.018434275,0.0032736617,-0.017223358,0.0020659657,-0.009429691,0.023110474,-0.014724231,0.017107418,0.0023606434,0.009771067,-0.0024959054,-0.011806438,-0.004112608,-0.008727618,-0.005085206,0.0068854783,-0.011149451,0.019838423,0.016695192,-0.044005226,-0.010041591,0.0014548713,-0.016398903,-0.009867683,-0.013925542,-0.008302509,-0.0013131683,-0.008759823,0.009610041,-0.0051496164,-0.011870848,-0.0074136443,0.00001266194,-0.004685861,-0.006138317,-0.00037036015,0.00053822994,0.011381329,-0.017828817,-0.018137986,-0.0038678483,0.015175105,-0.00020178591,-0.022054141,0.02389628,0.046633173,0.0041093873,-0.0053621707,0.04217597,-0.008727618,0.004180239,0.012476306,0.015072048,-0.006962771,-0.008334714,0.0024153923,-0.013706546,0.0092300195,-0.0040095514,0.015072048,-0.00166179,-0.0008582694,0.0065408824,0.0038195404,0.003207641,0.005185042,-0.039006975,0.01852445,-0.035013527,0.008734059,0.039367676,-0.0027438856,0.00005983128,0.018047811,-0.00021738531,0.034962,0.015561568,-0.010048032,0.006730893,0.0049531646,-0.012779036,-0.02290436,-0.006254256,-0.00332358,-0.026124883,0.00027394574,0.007974016,0.0017149285,0.030582087,-0.009159167,-0.011890171,-0.04709693,0.0064056204,0.013616372,0.010814517,0.009552072,-0.011935258,0.010415171,-0.002025709,-0.0071817664,-0.014389297,0.002666593,0.0107372245,0.024591915,-0.011252508,0.00017461274,0.020302178,0.024991259,0.016167026,-0.011374888,0.0109884245,-0.00053058116,0.004685861,0.0030578866,-0.01329432,0.009204255,-0.04794715,-0.0014242764,0.010118884,0.018743444,0.0049789287,0.042382084,-0.022273138,0.011961022,-0.019709602,0.009835478,0.024772264,0.035296932,-0.011761351,0.011381329,-0.009655128,-0.025442133,-0.014543883,0.0025506543,0.016334493,-0.0024588695,0.007800107,0.0013228299,-0.022028377,-0.014286241,0.005719649,0.013616372,-0.0072075306,0.002136817,0.016888423,-0.0006924125,-0.03140654,-0.022131436,0.000294074,0.009944975,0.00671157,0.0036391912,-0.013577726,-0.019052615,-0.0056681205,-0.0029355069,-0.012817682,0.0074909367,0.010241264,0.028340604,0.014569647,0.03140654,0.020353707,-0.008631002,-0.02707816,0.013706546,0.03872357,-0.021551741,-0.027103923,0.00560371,0.0052011446,0.017983401,-0.021487331,0.0018598521,0.022672482,0.012875651,-0.0054394635,-0.019413313,0.01699148,0.034420952,0.02277554,-0.007252618,-0.013629254,-0.042588197,0.008856438,0.089041024,0.015716152,0.008328273,0.009320194,0.0035780012,-0.0023992897,-0.025313312,-0.017828817,0.0063186665,-0.018344099,0.02702663,-0.021873793,0.01299159,0.0014524559,0.01927161,-0.01397707,0.015097813,-0.012134931,0.024244098,0.0017213696,0.0035908832,-0.00012278244,0.008656766,0.03171571,0.024050867,0.03699737,0.009674451,0.014350651,-0.0027873628,0.004167357,-0.026176412,-0.009442573,-0.011323359,-0.01243766,-0.0062510353,0.002313946,-0.019683838,0.017828817,0.018872265,0.010878927,-0.0014089788,0.015973795,0.004991811,-0.028392132,-0.00338477,-0.0070078583,-0.020894755,0.0023236074,-0.008115718,-0.007516701,0.027876848,-0.00074796646,-0.011007748,0.0121929,-0.0050465595,0.012321722,-0.04403099,-0.02166768,-0.021152396,-0.017699994,-0.009622923,-0.020096064,0.031896062,-0.02228602,0.013655018,-0.027052393,0.0023912385,-0.00090577215,-0.015291044,0.00412227,-0.00031339715,-0.010202617,-0.02068864,-0.0055747256,0.017468117,-0.012830564,-0.011001307,0.0070529454,-0.00096293644,0.015548686,-0.0087082945,-0.025132962,-0.009771067,-0.01668231,-0.024656326,-0.010138207,0.0009999725,0.0122444285,-0.011419975,0.024347154,0.015110695,0.00012288308,0.053228807,-0.043567237,-0.011091482,-0.0077614607,0.025455015,0.002346151,-0.01632161,0.043979462,0.016463313,-0.002148089,-0.019786894,-0.016566372,0.00892729,0.02671746,0.031071607,-0.0064861337,-0.025210256,0.004505512,0.023406763,0.0044604247,0.028366368,-0.001650518,0.015587332,0.027851084,-0.00052051706,0.023599993,0.0125020705,0.015651742,-0.004241429,-0.020173356,0.014144537,0.013088206,-0.008147923,-0.023535583,0.030298682,-0.02795414,0.014324887,0.0021867352,-0.014737113,0.004531276,-0.03686855,-0.016025323,0.013655018,-0.0063862973,-0.008012662,-0.014569647,-0.01988995,-0.014917463,-0.016115498,-0.0053364066,-0.026318114,-0.0044411016,0.03725501,-0.03828558,-0.018794972,-0.014981873,0.007851635,0.010395848,0.01384825,0.018575978,-0.029757634,0.01335873,0.02327794,-0.022427723,-0.024952613,-0.03153536,0.0054909918,0.024823792,0.021513095,0.0030675482,0.017262004,0.009957857,-0.009094757,-0.02166768,0.0024170026,-0.009783949,-0.02831484,0.019348903,0.01563886,0.0039322586,0.03885239,0.0019612985,0.002499126,-0.0050884266,-0.02290436,0.021873793,-0.02911353,-0.007259059,0.010363643,-0.00024496103,-0.024269862,0.020237768,-0.008959495,-0.011310477,0.021294098,-0.0013663069,0.0053299656,-0.0050465595,0.008540827,-0.030195625,0.018601742,-0.00078540505,0.026897809,-0.004083623,-0.021062221,-0.008753382,0.0031303484,0.0147628775,0.020224886,0.013796721,0.01348755,0.0038646278,0.0051560574,0.02259519,-0.024360036,-0.0068854783,-0.011690499,-0.0025313313,-0.0109755425,-0.004705184,-0.027619205,-0.02505567,0.020546937,0.012766154,-0.027387328,0.011973904,-0.014337769,-0.020572701,0.008817792,-0.007832312,0.0056552384,0.0048855334,-0.0027422754,0.0042253262,0.0058033825,-0.01829257,0.039419204,-0.0035264727,-0.0028710964,0.015252397,0.019426195,-0.009951416,-0.021500213,0.0023058946,0.028830122,-0.020843226,-0.009680892,0.018137986,-0.0064861337,0.0067502162,-0.012489188,0.0029258453,-0.008044867,0.019258728,-0.015419865,-0.0069048014,-0.001748744,-0.01096266,-0.005249453,0.013551962,0.004846887,0.006051363,0.014170302,-0.00096374156,-0.009796831,-0.022144318,0.0028710964,0.02609912,-0.0016585694,0.020804578,-0.020907637,0.020856109,-0.011658293,-0.01829257,0.0130173545,-0.024669208,-0.005352509,0.017506763,-0.027979905,-0.022067023,-0.010634167,-0.005719649,0.0034685035,-0.0019339242,-0.006383077,-0.03594104,0.0045280554,0.009545631,-0.014827289,0.014286241,-0.020057417,-0.0099707395,-0.026434053,0.0063862973,-0.009262225,0.012018993,0.03434366,-0.023599993,-0.012837005,0.0008856439,0.024604797,0.022685364,-0.007651963,0.016282964,0.018833619,0.01822816,-0.009429691,0.016772484,-0.0041576955,0.01717183,-0.019284492,0.004975708,0.006518339,-0.012920739,-0.0025442133,-0.009764626,-0.03970261,-0.0057293107,0.0023091151,-0.013783839,-0.025841478,-0.00016585694,0.010260587,0.026408289,-0.006482913,-0.021912439,-0.0012358758,0.027000865,0.015381218,-0.003558678,0.022079905,0.010138207,-0.01907838,-0.013577726,-0.0025216695,0.008901526,-0.014118773,-0.006273579,-0.018279688,0.027052393,-0.0030627174,-0.011928817,-0.005713208,0.00073468185,-0.014865935,0.014853053,-0.0200703,0.01292718,-0.01096266,0.038002174,0.02960305,-0.005326745,-0.002795414,-0.015754798,-0.0074329674,-0.00652478,-0.016398903,-0.034163307,-0.020727286,0.019439077,0.01237325,-0.035193875,-0.008753382,0.019993007,-0.059618324,-0.020972047,-0.030710908,0.03035021,0.03269475,0.014067245,-0.004518394,0.033390384,0.017571174,0.017893227,-0.02684628,-0.0054394635,0.0020514731,-0.010415171,-0.013242791,-0.0017004362,-0.030066803,-0.0026247264,0.028289074,0.023870517,0.014801525,0.022118554,-0.0014894919,0.0011754909,-0.0121929,0.017017243,0.0036874989,0.004032095,0.023162002,-0.031896062,-0.0074522905,0.017571174,0.00935884,-0.004969267,-0.021345627,0.014891699,0.007780784,0.016952833,-0.006457149,-0.014376415,0.0015780564,-0.005120632,0.011246067,0.011432857,0.012894974,0.010904691,0.035657633,-0.008109277,0.00880491,0.0130044725,0.0014741945,-0.0001557928,0.006160861,-0.01353908,0.0025538749,0.01126539,-0.0087147355,0.010125325,-0.011915935,-0.0217965,-0.008701853,-0.01342314,-0.0056681205,0.009184932,-0.0243858,-0.009758185,-0.008643884,-0.0037422478,-0.024604797,-0.01674672,-0.015368336,-0.0188465,-0.019748248,0.005036898,-0.005072324,-0.038491692,-0.00097501336,0.00052615296,-0.0008550489,0.00979039,0.23496936,0.0042768545,-0.0017551851,0.039754137,0.021126632,0.031251956,0.023496937,-0.0034942676,0.01083384,0.0028662656,-0.0066149547,0.012637333,-0.021126632,-0.0036810578,0.00203215,-0.014865935,-0.034137543,-0.01065349,-0.026691696,-0.019065497,0.014582529,0.003109415,-0.010473141,-0.0013244401,0.012399014,-0.0020756272,-0.016592136,0.0016150924,0.023844752,0.011787115,-0.01840851,0.006205948,-0.006273579,-0.02044388,-0.013075324,-0.013081765,-0.0013655018,-0.04580872,0.030736672,0.02813449,0.009345958,0.028469425,-0.0076261987,-0.01717183,0.0039805667,0.025094315,-0.012972267,0.016411785,0.006808186,0.023690168,-0.023110474,0.011188097,0.03730654,0.03277204,-0.027593441,-0.01588362,0.0032108615,0.01102063,-0.028237546,-0.0073299105,-0.0044185575,0.026382525,0.002394459,0.0040031103,-0.01878209,0.00437025,-0.01674672,0.010189735,0.035734925,0.0071882075,-0.0052655553,0.009410368,0.0025329415,0.0054008174,-0.009236461,-0.03563187,0.030247154,0.020727286,0.020611348,0.009590718,-0.0012640554,0.013655018,0.010267028,-0.03212794,-0.0032640002,-0.032282524,-0.009011024,-0.008695412,-0.020160474,-0.0012479527,0.01194814,-0.026768988,-0.008302509,-0.029963747,0.006859714,0.029139293,0.007664845,0.047689505,0.006666483,0.0006223661,0.008779146,0.0012471476,0.0050079133,0.0007056971,0.012611569,-0.03854322,0.0077550197,0.03212794,0.013822485,-0.0269751,0.00830895,-0.018460039,0.011935258,-0.0029016912,-0.02283995,-0.008019103,0.0114908265,-0.0057293107,0.019709602,0.0064603696,0.009287989,-0.0346013,0.0032398463,-0.0060223783,-0.0029709325,-0.0071431203,0.002326828,0.0012608347,0.014492354,-0.03712619,0.016540607,-0.012798359,0.011297595,-0.01102063,-0.03509082,0.015432747,0.0104860235,0.014569647,-0.013229909,0.0012954554,-0.025004141,0.0048372257,-0.014324887,-0.019902833,0.017133184,-0.018756326,0.00781943,0.010872486,-0.005597269,0.01299159,-0.015600214,-0.023380999,0.00016786977,-0.031741478,0.009829037,-0.023123356,-0.03921309,-0.02795414,0.014569647,-0.00083572575,-0.025944535,0.0035135907,0.013886896,-0.010015827,-0.026923573,-0.021783618,-0.16282965,0.024836674,-0.004518394,-0.0050465595,0.02795414,0.008044867,0.0073943213,-0.010202617,-0.015819209,0.018253924,0.01982554,-0.002880758,-0.0021963967,0.0011956192,-0.02658864,0.0049467236,-0.035425752,0.013171939,-0.02412816,0.0042027826,0.022466369,0.013384494,-0.013899778,0.00033594083,0.031226192,0.022028377,-0.022505015,0.012978708,-0.025931653,-0.01638602,-0.03398296,-0.00523335,0.029577285,0.012431219,-0.0037390273,0.00024234437,-0.014054363,0.007104474,-0.01588362,0.009378163,0.012089844,0.011935258,0.030607851,0.013229909,-0.016914187,0.010872486,0.023071827,-0.020482527,-0.010022268,-0.008772705,0.032591693,-0.0072139716,-0.010415171,0.003558678,0.030272918,0.007246177,0.0037841147,-0.00076447165,0.0071431203,0.01348755,-0.012856328,-0.015226633,0.01914279,-0.00003218007,0.0020756272,-0.007825871,0.009693774,0.005510315,-0.006775981,0.020546937,0.00695633,-0.012830564,0.032540165,-0.010498906,-0.0030305122,0.008869321,-0.033467676,0.0054330225,-0.002673034,0.008276745,0.0014307174,0.041428808,-0.02481091,0.01779017,0.006131876,0.004821123,0.022917243,-0.008379801,0.009352399,-0.023780342,0.011039953,0.0048629898,0.0021271554,-0.015046284,0.016282964,0.017416589,0.0071624434,-0.0010764599,-0.012096285,0.0102348225,0.030865494,0.005861352,-0.025029905,0.011252508,0.0166179,0.0051560574,0.013745192,0.031045843,0.027310036,-0.017777288,-0.030710908,0.014041481,-0.0041093873,0.024694972,0.010866045,0.01360349,-0.0018904471,-0.015600214,0.022015495,-0.0006501431,0.060803477,-0.009629364,-0.0050819856,0.0036424117,0.003471724,0.0014065634,-0.08919561,-0.033519205,0.0029258453,0.029757634,0.011368447,0.01705589,0.006782422,0.03712619,-0.01687554,0.024347154,0.013629254,-0.029474227,-0.0040675206,-0.01570327,0.003848525,-0.012347486,0.006853273,0.014144537,-0.00058895315,0.019091262,0.000781782,-0.0073943213,-0.002474972,-0.031509597,-0.011432857,0.014440825,-0.038311344,0.010885368,0.022698246,-0.002673034,-0.005333186,-0.020727286,0.020534055,-0.04279431,-0.014543883,-0.008940172,-0.031689946,-0.013590608,0.025210256,-0.030556323,-0.0020691862,-0.00021738531,0.007858076,-0.016514843,-0.016501961,0.008502181,-0.013159057,0.0021786839,0.024720736,-0.029165057,-0.040295184,-0.0114843855,-0.05400173,0.023110474,0.025107197,-0.005706767,-0.019181436,0.028701302,-0.016824013,-0.004904857,0.007858076,0.029809162,-0.03318427,0.020057417,-0.009326635,-0.0001547864,0.0032865438,-0.012160695,0.0046375534,-0.015059166,-0.0072655003,0.030865494,-0.027490385,0.006205948,-0.028572481,0.016592136,-0.0276965,-0.039367676,0.009178491,-0.007845194,-0.021886675,-0.02209279,-0.021268334,-0.0003083651,0.0056487974,-0.01619279,0.008785587,-0.005204365,0.018150868,-0.013874014,0.0036005448,0.010312115,0.03503929,-0.0092235785,0.00008217366,0.0028356705,-0.018137986,-0.004846887,0.051322255,-0.028340604,-0.011413534,-0.018472921,-0.053280335,0.016527725,-0.004218885,-0.008296068,0.0027116805,-0.0020466424,0.0136679,-0.011188097,-0.00880491,-0.01643755,0.0077356966,0.024798028,-0.021873793,-0.011664735,-0.023715932,-0.00036371782,0.0014878816,0.00095891074,0.0058774548,-0.0015965743,0.004457204,0.0024701413,0.013191262,-0.0142733585,0.01736506,0.020714404,0.0030949228,0.004376691,-0.01120742,-0.010067355,-0.038620513,-0.033648025,-0.010640608,0.01576768,0.009197814,-0.023548465,-0.009558513,0.014376415,0.003404093,-0.008515063,-0.020031653,-0.035322696,0.018704798,-0.011471503,-0.008746941,0.00027998423,-0.008521504,0.012476306,0.0002606611,0.0003792166,0.031251956,0.04624671,0.0004826759,0.019864187,-0.033854138,-0.02406375,0.0060223783,-0.017893227,0.009333076,-0.02831484,0.016205672,-0.010762989,0.01576768,-0.0311489,0.008753382,0.016888423,-0.0072912644,-0.00074716134,0.010337879,-0.024604797,-0.006582749,-0.003896833,0.0015691998,0.027851084,0.020843226,0.03212794,-0.00104667,-0.016785366,-0.01896244,0.016605018,0.029036237,-0.005632695,-0.005503874,-0.014131655,0.03823405,0.002259197,-0.02209279,0.008257422,-0.001053111,0.030865494,-0.029525755,-0.0051560574,-0.0033879904,-0.03083973,0.027748028,0.013101088,0.009326635,-0.015922267,-0.01237325,0.0273358,0.010885368,-0.014093009,-0.006988535,-0.008225216,-0.013899778,-0.023818988,-0.03225676,-0.0027052395,0.0026794751,0.020083182,0.021744972,0.013043119,0.008920849,0.003391211,-0.009545631,-0.010028709,0.0024572592,-0.021500213,-0.020031653,0.026768988,0.00092026446,0.005532859,-0.012051198,-0.025326194,0.009101198,0.028082961,0.0013155837,-0.012044757,0.005384715,0.0047438308,-0.03305545,-0.010402289,-0.018382747,-0.025171608,0.0043992344,-0.008540827,-0.0136679,0.02104934,0.0040481975,0.029834926,0.00091462856,0.0070400634,0.0073363516,0.009558513,-0.009545631,0.000628002,0.014376415,0.007098033,-0.006730893,-0.0094876615,0.0049789287,0.013783839,0.0015482665,-0.012785477,0.017223358,-0.0073234695,0.02512008,-0.026743224,-0.010144648,0.015458511,0.025261784,-0.005442684,0.005658459,-0.009255784,-0.008837115,-0.0070207403,-0.0015861077,0.004135152,-0.041480336,0.00042068082,0.00837336,0.0049467236,0.00012429207,0.00042229108,-0.013577726,-0.018575978,0.021165278,-0.021616152,0.010060914,0.008746941,0.03145807,0.0062993434,-0.009996504,0.005922542,0.0010515008,-0.019477723,0.009526308,-0.013281438]},{\"id\":\"e8007172-0930-4e02-a54d-cae7d213074c\",\"text\":\"I have posted on Instagram and it is saying Tiktok video detected? Can you plz help\",\"vector\":[-0.05876428,0.00048999663,-0.018556464,-0.0034191408,-0.0062636095,0.013214258,-0.02994718,-0.031462517,-0.0074354275,0.0018684883,0.028329108,-0.028072271,-0.019378342,-0.026505565,0.010523891,-0.020380007,0.015127692,-0.006176927,0.0019407236,-0.0015386135,-0.022511752,0.018273944,-0.006992384,0.0101386355,-0.0069153327,-0.00013172923,0.012520798,-0.019943383,0.012681321,0.0024543975,-0.0017432803,-0.012726267,-0.030486537,-0.030049914,-0.015705574,-0.023667518,0.007480374,-0.024643498,0.0104532605,-0.0035250862,0.009644224,-0.005955405,-0.0034994024,-0.029073935,-0.02089368,0.041607574,0.018505096,0.011865864,-0.022216389,0.009271812,0.00682544,-0.026107468,-0.03844848,-0.046487473,-0.0031382255,-0.0072877463,0.006819019,0.00021510088,-0.0111724045,-0.016745765,0.007461111,-0.004632695,0.015988095,0.013599513,-0.006022825,0.0027931011,0.005836618,0.059226584,0.02917667,0.029305087,0.012565744,0.002834837,0.013381201,-0.027687015,0.03341448,0.0032538022,-0.00078736554,0.0073583764,0.007929838,0.024014248,0.011326507,-0.03421067,0.01609083,0.019622337,0.018556464,0.006350292,0.0046134326,0.01887751,0.0042313877,-0.016180724,0.012989525,0.026582617,0.0138563495,0.009650646,-0.0061319806,0.0063406606,-0.020354323,0.030769058,-0.010035901,0.014447074,0.011570501,-0.008738874,-0.023423523,0.0013877217,-0.015512947,-0.0080967825,0.0022762169,0.002966466,0.02527275,-0.007551004,-0.008128887,0.026762402,-0.015153375,-0.033774048,-0.007075856,0.030512221,0.009868957,-0.029638976,-0.043816373,0.0029359665,0.023680361,0.0018090948,0.015525789,-0.0074418485,0.018209735,-0.0045106974,-0.0037722916,-0.014768121,0.0077564735,-0.012373117,0.0436109,-0.011512713,-0.0069795423,0.010645889,-0.011178825,0.022306282,-0.029510558,-0.007146486,-0.0004739443,-0.005538045,-0.0026935767,0.020148853,-0.023911513,0.01566705,-0.0028637312,0.011981441,-0.005615096,-0.0020225905,0.015988095,0.015050641,0.027815433,-0.0131757315,-0.017644694,-0.0074546905,-0.018620674,0.020174537,0.03030675,-0.014665386,-0.0015346004,-0.02054695,-0.022216389,0.028714363,-0.0059008272,-0.009111288,0.030666323,0.024643498,-0.01225754,-0.024913177,-0.025593795,0.0012881975,-0.003245776,0.014305814,-0.01350962,0.007005226,-0.004019497,0.004019497,0.01824826,0.011538397,-0.002910283,-0.03184777,-0.027481547,0.03870532,0.011609027,0.0064177113,-0.020354323,-0.0059842994,0.001992091,-0.009772643,-0.009027816,-0.03577738,-0.007075856,-0.0018556465,0.00494411,-0.0040162867,-0.6221616,-0.015500106,0.032489866,0.0302297,0.0041543366,0.038576897,-0.00390071,0.013959085,-0.016899867,0.019904858,-0.029279403,-0.0104917865,-0.020444216,0.0065140254,0.017400699,-0.02445087,0.0069795423,-0.008231622,-0.011204509,0.01969939,-0.017208071,-0.02388583,0.0031109366,0.0084242495,-0.014305814,0.0026004734,0.008392145,0.0072620627,-0.012629953,0.06734263,-0.036599256,0.014395707,0.027430179,-0.021317462,0.044663932,-0.023564784,-0.0105046285,0.018479412,-0.004144705,0.028945517,-0.038063224,-0.0069538583,-0.0059907204,-0.0027738384,-0.0058751437,0.0034608769,0.0076858434,-0.025182856,0.020726737,-0.008668245,0.01163471,0.0027048134,0.005008319,0.0081096245,0.009348862,-0.009111288,0.018928878,0.0015779416,0.016899867,0.010555996,-0.02242186,0.014806646,-0.007018068,-0.0049954774,-0.01916003,0.009477281,0.005168842,0.009791906,0.0217284,-0.0037080825,0.0006890452,-0.0068447026,-0.016244933,0.021689875,-0.0067034424,0.03112863,0.022216389,-0.012296066,0.012443746,-0.00069626875,-0.013625196,0.0007785368,-0.010312,-0.015512947,0.009387388,0.012944578,-0.033774048,0.017143862,-0.009111288,0.023706043,0.014755279,0.014254447,0.008417829,-0.032489866,0.0051431586,0.028097954,-0.035905797,-0.007647318,0.014164554,0.02262733,0.0054288893,0.014909381,-0.020380007,0.004687273,0.0472323,0.001284987,-0.021664191,0.012514377,-0.0001118645,-0.022203548,-0.016142197,-0.021882502,0.0061319806,0.0026502355,0.007859209,-0.030614955,0.0066392333,-0.012007124,0.026916504,-0.0010610573,0.026942188,-0.012758371,-0.00047514823,0.01851794,-0.0051431586,0.042301033,-0.0063342396,-0.014061819,0.009824011,0.004295597,-0.0040291287,-0.021946711,-0.0015313899,-0.01163471,-0.038628265,0.023718886,0.010010217,0.021625666,-0.009278232,-0.0076858434,0.0057756193,-0.0051784734,0.000116880845,0.02856026,0.007422586,-0.002870152,-0.010877042,0.017657535,-0.03169367,0.0077628945,-0.0036856092,-0.01916003,-0.011853022,-0.00821878,0.016758606,-0.0031815667,0.0014318656,-0.02005896,-0.013406885,-0.019070137,0.01817121,0.048799008,-0.0018909615,-0.022935534,-0.004574907,-0.021009257,0.011275139,0.012321749,-0.0042506503,-0.014395707,-0.015795467,-0.018723408,-0.008257305,-0.010665151,0.023577625,0.016283458,0.008584772,-0.01121093,0.011223772,-0.0032586178,0.00849488,0.016193565,-0.006221873,0.015500106,-0.0043501747,0.024964545,0.0047129565,0.033774048,-0.020392848,0.02737881,-0.0013917348,0.0011381084,-0.007904155,0.010093689,-0.008995712,0.012206173,0.037010193,0.02319237,-0.016553137,-0.003496192,0.014100345,0.014434232,0.027969535,-0.021394512,-0.015589998,0.0002662676,-0.0006376778,-0.0067227054,0.03184777,0.016013779,0.01922424,-0.01963518,0.0022120075,-0.015487264,-0.0006228294,0.019493919,-0.017002601,0.0070437514,-0.010973356,0.014357181,0.0053903637,-0.018697724,0.018107,-0.02597905,-0.0022553487,0.021548614,0.024309611,0.03593148,0.014639702,-0.024014248,-0.012938158,0.008912239,0.008045415,0.043071546,-0.0069410168,-0.0031510675,0.00081104273,-0.0087902425,0.03503255,-0.021831134,-0.014113187,0.011987861,0.024502238,-0.003377405,0.023243736,0.028611628,0.019326976,-0.0048606377,0.010145057,0.023860145,0.008051836,-0.01365088,-0.031308416,-0.008514143,0.0027048134,-0.016809974,-0.018068474,0.017952899,0.017375015,0.03043517,-0.014665386,-0.006819019,0.0049248473,0.012437326,-0.0162963,0.007146486,0.002812364,-0.029407822,0.0038878683,-0.02583779,-0.02938214,-0.010337684,0.047437772,-0.008058257,0.035083916,-0.00046391162,0.012058492,0.01413887,0.009631383,0.009740539,-0.011114616,-0.053884376,0.012861107,0.0056664636,-0.007750053,-0.028611628,-0.030281069,0.012097017,-0.005027582,0.017439224,0.0047257985,0.012970262,0.0027321023,0.011043985,-0.0123988,0.01002948,0.022062289,0.011955757,0.03292649,0.025105804,0.0061159283,0.0017175967,0.0007909773,0.00094467815,0.02938214,-0.015705574,0.006433764,-0.021831134,-0.011236614,-0.002200771,0.017773112,0.0012352249,-0.007229958,0.0028300213,-0.004703325,0.015962413,-0.02416835,-0.010966934,0.023038268,0.005884775,-0.012565744,-0.001804279,-0.013907717,-0.0036920302,0.08573215,0.011294401,0.007493216,-0.00045628677,-0.006276451,0.012906053,-0.0138691915,-0.04117095,-0.0044721724,-0.024579288,-0.019750755,-0.009990955,-0.012662058,0.014665386,0.014370023,-0.0063888174,0.015050641,-0.0008250885,-0.008860872,-0.029253721,-0.001483233,0.013342676,-0.0069538583,0.01733649,0.013137206,-0.006414501,0.009759801,0.046898413,-0.006401659,0.009650646,-0.023834461,0.012963842,0.0058045136,0.0108642,0.007345535,0.009836853,0.016771449,0.03878237,-0.010851358,0.026094627,0.003162304,0.026107468,0.0075895297,-0.008430671,0.023795936,0.014665386,-0.008372882,0.016244933,0.0019230661,-0.00070349226,0.027661331,0.006433764,-0.02778975,-0.0101514775,0.0022730064,-0.024566447,-0.018055633,-0.04040044,-0.02201092,-0.040246338,-0.0021221146,-0.023063952,0.0036856092,-0.010767886,0.007467532,-0.011512713,-0.0017946477,-0.032772385,-0.010337684,0.017863005,-0.026300097,-0.00995885,-0.06759947,-0.007140065,-0.015268953,-0.023410682,-0.008918661,-0.01058168,-0.0074996366,-0.0056600426,-0.018402362,-0.03246418,0.013406885,-0.030486537,0.0037787126,-0.0031462517,-0.013483936,0.014472758,-0.0145112835,0.02382162,0.037446816,0.007319851,0.04630769,-0.007994047,0.010992618,-0.00390071,0.0036663464,0.03092316,-0.01379214,-0.0072749048,0.0057017785,-0.03752387,-0.029305087,-0.016476085,-0.0056632534,0.009419492,0.003974551,0.028817097,-0.010889883,-0.00029275392,0.013907717,0.01532032,-0.010267054,0.006080613,0.026402831,0.04407321,-0.0108449375,-0.015500106,-0.003955288,0.00034994024,-0.021677032,-0.0044657513,0.008693928,-0.016835658,0.00612877,0.02820069,-0.0041350736,-0.019378342,-0.0059586153,0.009836853,0.00076047797,-0.0067804935,-0.016476085,-0.010286317,-0.027147658,0.009509386,0.008315094,0.008430671,0.0024881072,-0.028534576,0.008674665,-0.0040644435,-0.01483233,-0.012880369,0.0015996122,-0.033774048,-0.014447074,0.0055797813,0.01706681,0.022460384,0.01191081,0.0073840604,-0.024784759,-0.026145995,-0.0065814448,-0.031102946,-0.028791415,0.021022098,0.0074354275,0.003608558,0.00037040692,-0.028020903,0.015281795,-0.0040098657,0.002451187,-0.025863474,-0.016283458,-0.018903194,-0.03125705,0.01295742,0.021124832,-0.011114616,0.029638976,0.02347489,-0.022242073,0.00940023,-0.015911045,0.00780142,0.00036318338,-0.0036342419,-0.019108664,-0.007133644,0.004854217,0.018710567,-0.022781432,0.008475617,0.0004843783,0.0030210437,0.027224708,0.011371452,0.005823776,-0.023577625,0.008854452,-0.0045428025,0.016655872,-0.020662528,-0.024142666,-0.0027866801,-0.006998805,0.021908186,-0.005746725,0.017875846,-0.016360508,0.026274413,-0.023564784,0.044201627,-0.0006553353,-0.025465377,-0.010498207,-0.011512713,-0.0084114075,-0.035982847,-0.009952429,-0.021137675,0.010549575,0.015911045,-0.010755044,0.007467532,-0.0024303189,-0.0075124786,-0.028637312,-0.0016140592,0.025876315,0.021368828,0.013458252,0.023757411,0.014331498,-0.0032216976,0.04101685,0.003669557,-0.0029215196,0.015975254,0.046076536,-0.010986198,-0.027455863,0.015718417,0.011050407,-0.020046119,-0.0065364987,0.028406158,0.012019966,-0.029844444,-0.02144588,-0.0010048742,-0.033902466,0.012231857,-0.028431842,0.017233754,-0.019827807,-0.010549575,-0.020354323,-0.007133644,-0.0009832036,-0.0018829354,0.031719353,-0.0036438731,-0.022447543,-0.00023917934,0.015474422,0.0014711937,-0.018119842,-0.0004847796,-0.014331498,0.018466571,0.01817121,-0.016630188,-0.008912239,-0.010267054,0.0044882246,0.020354323,-0.03901352,0.0036535047,-0.00870677,0.017516276,-0.009547911,-0.03218166,0.0038686055,-0.017721744,-0.0040419702,-0.001671045,0.028457526,0.010703677,-0.0013243152,-0.011923652,-0.0111338785,-0.0031992244,-0.0032939329,-0.0036567152,-0.009387388,-0.03064064,-0.010999039,-0.008404987,0.015898203,0.008180254,0.004706536,0.016463244,0.0052747875,0.0398354,-0.019378342,-0.022755748,-0.0006721903,0.024142666,-0.028894149,0.014562651,0.008270147,-0.05357617,0.010042322,0.0011373057,-0.013676563,-0.04045181,-0.0010233345,0.0033581422,0.0025892367,0.0036727674,0.015551473,0.027687015,0.0021975606,-0.0032008295,-0.02591484,0.03056359,0.009714855,0.014113187,-0.0038461322,0.013638038,0.016206406,-0.037292715,0.022165023,0.010068006,-0.008404987,-0.012026386,0.012488693,0.009239706,-0.024271084,-0.019404026,-0.016668713,-0.0020948257,-0.00031422387,0.0018106999,-0.013894875,-0.0031109366,0.009875378,0.022588803,0.019031612,0.014151712,-0.013124364,-0.01428013,-0.021124832,-0.024206875,-0.018376678,-0.011287981,-0.036034215,0.015371687,0.008366461,-0.028919833,-0.012758371,0.0019744334,-0.022819957,-0.02410414,0.0009791906,-0.010787149,-0.0067740725,-0.015358846,-0.018209735,0.043328382,-0.009220444,0.0131885735,0.015628524,-0.018350994,-0.003974551,-0.020418532,-0.017734587,-0.008925081,-0.012700584,-0.022254916,0.013079418,0.024322452,0.004122232,0.009785485,-0.015012115,0.025503902,-0.0057852506,-0.009181919,0.008835188,0.0035571908,0.016360508,-0.015962413,-0.028585944,0.015102008,0.019070137,-0.010190004,-0.00038344943,0.013278467,0.008058257,0.033106275,-0.031385466,0.01399761,-0.0031639093,0.0071721696,0.02054695,0.008751716,-0.012488693,0.0007115184,0.021022098,-0.02116336,0.0043822792,0.03308059,-0.020110328,-0.013625196,0.025503902,-0.0012271988,-0.011512713,-0.005342207,0.004424015,-0.026081786,-0.034801397,0.016951233,-0.00052450906,-0.004960162,0.029613292,-0.0064401845,-0.0018716988,-0.031719353,-0.010883463,-0.021843977,0.0014551415,-0.006491552,-0.0071143815,-0.03223303,0.008180254,0.035058234,0.00967633,-0.0162963,-0.01664303,0.0042667026,0.0005164829,0.0011043985,0.2290985,-0.00092300755,0.006366344,0.032284394,0.018132683,0.009573595,0.011165983,0.027173342,-0.012636375,-0.017837321,-0.0033099852,-0.004449699,-0.02284564,-0.0041382844,-0.01797858,-0.009143393,-0.009368125,-0.02305111,-0.0076152133,-0.012649216,-0.0010482155,-0.012289644,0.0121419635,-0.027892485,0.03356858,0.00030940818,-0.0007973982,-0.0005658438,0.002785075,-0.004822112,-0.017400699,-0.024463713,0.028329108,-0.008758138,-0.00040612332,-0.0077564735,0.006575024,-0.016822815,0.03482708,0.010690835,-0.00835362,-0.002542685,0.023706043,-0.022691539,0.01010011,-0.017452065,-0.011307243,-0.013753614,-0.0026373938,0.012951,-0.00048558222,-0.005175263,0.017721744,0.032823753,-0.013432569,-0.024271084,-0.015089166,0.002910283,-0.0038204486,0.0042538606,-0.0145369675,0.041248,0.0067997565,0.006761231,-0.010716518,0.013535303,0.008404987,0.0026951819,-0.0015113245,-0.013008788,0.006420922,0.0045106974,0.004610222,0.02005896,-0.021998078,-0.0423524,-0.0053903637,-0.012662058,0.035546225,0.023449207,0.016822815,-0.000095912525,-0.009997375,-0.03600853,-0.01998191,-0.03469866,0.018659199,-0.021201884,-0.01790153,-0.0041061793,-0.009201181,-0.012822581,-0.016257774,-0.01309868,-0.002812364,0.007872051,-0.014588335,0.014845172,0.013201416,-0.008815926,-0.01672008,0.03475003,0.016527453,0.0064305533,-0.01190439,0.026865138,-0.015140534,-0.019031612,0.02124041,-0.010260633,0.006985963,-0.014626861,0.0030980948,0.005939353,-0.012970262,0.027507229,0.003064385,-0.032618284,-0.014113187,-0.0034833502,0.0073776394,-0.021407355,-0.017169544,0.004369437,0.0026020787,-0.0069410168,0.012097017,0.029561924,-0.007859209,-0.009252548,0.019853491,0.024810443,0.009002132,0.018787617,-0.023487732,-0.0018331732,0.025298432,-0.0253498,0.00064610527,0.029536242,-0.0080839405,0.008700349,0.009085605,-0.009162656,0.009496544,-0.045562863,-0.0005433705,-0.017580485,-0.012899633,0.0030515431,0.0033517212,-0.0029568346,0.0015859677,0.01623209,0.031051578,0.002208797,-0.004777166,-0.026428515,-0.042249665,-0.018363837,-0.0060485085,-0.006883228,0.009926746,-0.010401893,-0.012129121,-0.029279403,-0.15954706,0.018723408,0.013702247,-0.007859209,-0.013060155,0.02791817,0.0022762169,-0.014986432,-0.0030451221,-0.0025683688,0.025157172,-0.0010193214,-0.014472758,-0.0081224665,0.0031446465,-0.020945048,-0.01769606,-0.004687273,0.038987838,0.009804748,0.05347344,-0.021420196,0.010048742,-0.006170506,-0.009766222,0.010742202,-0.039527196,0.020508425,-0.011442083,-0.024348136,0.0014752068,-0.0010923593,0.009336021,0.017477749,0.014793804,0.010928409,0.022884166,-0.009528648,-0.009971691,0.025940524,0.020354323,0.017297965,0.009271812,0.0030900687,0.011763129,0.021407355,0.016630188,-0.0074290065,0.022383334,-0.011968599,0.009990955,-0.013933401,0.011981441,-0.00027730357,-0.009702013,0.014716753,-0.0069538583,0.018107,-0.014177396,-0.017593326,0.002088405,-0.008443512,-0.00390071,-0.015358846,-0.03349153,-0.0063856067,-0.027250392,0.012610691,-0.00034030885,0.036830407,-0.011307243,0.0037530288,0.010511049,0.025773581,0.000121395555,-0.0032489866,-0.040246338,0.013483936,-0.0118273385,0.016026622,-0.001174226,0.042223983,-0.028791415,0.009946008,0.012694162,0.002181508,0.020097485,0.008507721,-0.038499847,-0.026839454,0.010652309,0.0034994024,-0.020649685,-0.008738874,0.00076128053,0.015256111,-0.008719612,0.009592857,0.019609496,-0.017644694,0.00018480216,0.0118273385,-0.011403557,0.03084611,0.010260633,0.020136012,-0.0151919015,0.019750755,0.03189914,-0.014806646,-0.009496544,0.0019262766,0.011859443,0.029125301,0.0047386405,0.032438498,-0.009663488,0.011865864,0.011313665,-0.0028332318,0.03657357,-0.026081786,-0.0053903637,0.017875846,-0.010549575,-0.025747897,-0.08881419,-0.033671316,0.010851358,-0.0041992827,-0.0053197336,0.003669557,0.019725071,-0.0011509502,-0.009239706,0.028534576,-0.009528648,-0.009708434,-0.013040893,-0.0018829354,0.004696904,-0.014100345,-0.013150048,0.0077885785,-0.016938392,0.0081096245,-0.007461111,-0.020534107,0.01205207,-0.023641834,0.008026153,-0.016167881,-0.027430179,0.014999273,0.01651461,0.025580954,-0.0193655,-0.0052394723,-0.017824478,-0.018749092,-0.014241605,0.01609083,-0.028097954,-0.000286333,0.027276076,-0.038011856,-0.0071272235,-0.02583779,0.007409744,-0.009194761,-0.011480608,-0.021201884,0.015166217,0.016668713,0.0087645585,-0.01776027,-0.00083632505,-0.013702247,-0.0076922644,-0.020495582,0.0038108171,-0.013053734,0.016193565,0.044740982,0.012687742,0.026235888,-0.0039263936,0.002221639,-0.03775502,0.010318422,0.028431842,-0.014344339,0.014896539,-0.012353854,0.031102946,0.012424484,-0.01532032,0.018107,-0.014331498,0.008905819,-0.023654677,0.0021060624,-0.012578586,0.0011003854,0.009997375,-0.029536242,-0.007994047,-0.029895812,-0.0080839405,-0.008687507,0.011917231,-0.00814815,-0.009984533,0.0018861458,-0.018697724,-0.01698976,-0.009477281,-0.0011862654,-0.00675481,-0.023847304,-0.03287512,0.023628993,-0.01587252,0.013766456,-0.013638038,0.026659667,0.00849488,-0.0010289528,-0.05347344,0.014010452,0.0087645585,0.0015337977,-0.009702013,-0.023307947,0.0048927427,-0.030383803,0.010215687,0.0073070093,-0.008372882,0.022139339,0.0012552902,0.028046587,0.006677759,-0.010536733,-0.0027240762,-0.0058398284,0.018838985,-0.027943851,-0.020161696,-0.01010011,-0.022113655,0.01916003,0.011808075,0.026479881,0.010042322,0.021510089,-0.024129825,-0.011596185,0.0091177095,-0.01679713,0.0037498183,0.033799734,-0.013535303,-0.01623209,0.019134348,0.033953834,-0.009868957,0.0075766877,0.012963842,-0.02555527,0.03287512,-0.016450401,-0.006276451,-0.009079183,-0.021111991,-0.0069153327,0.028149322,0.004555644,0.051855367,0.012206173,-0.026916504,0.0066906004,-0.00011928869,-0.017567642,0.017452065,-0.027353127,0.022999743,-0.013894875,0.010215687,0.00926539,-0.001852436,0.005887985,0.016193565,0.025298432,-0.03246418,0.017079653,-0.003942446,-0.01350962,0.014023294,-0.0008174636,0.018954562,-0.011698919,0.016039463,0.034852766,-0.011332927,0.012976684,-0.015769783,0.026890822,0.0030338855,0.022588803,-0.007884892,-0.0066263913,0.040015187,0.020020435,0.0123988,0.021921027,-0.013355518,0.0014294578,-0.060151197,0.0024704498,-0.009136972,-0.004754693,0.028662996,-0.0054032058,-0.004908795,0.008019731,0.0048991633,0.003823659,0.027507229,-0.0057306727,-0.009149814,-0.010132215,-0.010440419,0.030178333,-0.015037799,-0.013959085,0.0124951145,0.006748389,-0.02235765,-0.015281795,-0.005300471,-0.008199518,-0.028945517,0.006497973,0.0151790595,-0.015538631,-0.036522202,0.05701779,0.00201938,-0.022884166,0.028252056,-0.027866801,0.031796407,-0.0048991633,-0.0021959553,-0.012732688,0.033542898,0.004902374,-0.01957097,0.01162829,0.005692147,0.0031799616,-0.00836004,0.005355049,-0.021895343,0.016206406,0.0032297238,0.07520184,-0.004956952,-0.009939587,-0.028996883,0.00014236388,0.045614228,0.028662996,0.025799265,-0.028457526,0.007480374,-0.021022098,0.004359806,-0.0033549317,-0.000489194,-0.0068639657,0.008469196,0.0004907992,0.008713191,-0.007897734,-0.0022376913,0.0069281748,0.0051848944,0.015230427,0.029279403,0.004045181,-0.0013154864,0.03531507,-0.009092025,-0.044355728,-0.03516097,0.011037565,-0.0072941673,-0.010613784,-0.024039932,0.024399504,-0.020290114,-0.029150985,0.011994282,0.02945919,0.01413887,0.030255385,0.0049280575,-0.040297706,-0.00397134,0.013150048,0.0026004734,0.0046712207,-0.0006729929,-0.03939878]},{\"id\":\"850b2c45-992d-43e3-90e4-d07f58d07854\",\"text\":\"I can't apply for the post and get paid program. It says there's an error and can't fetch the page. How do I apply so I am earn?\",\"vector\":[-0.028007293,-0.0035176466,-0.0031511553,-0.034513768,-0.03753941,0.016105533,-0.02546361,0.0037050757,-0.028141173,-0.006288923,0.013776055,-0.019760404,0.005150959,-0.02002816,-0.008588279,-0.017163169,0.007316437,-0.017256884,-0.030524202,0.0031929922,-0.021848902,0.021661473,0.007088844,-0.017604968,0.0042874455,-0.009886896,-0.0037351984,0.0032264616,0.0049635298,0.0020416407,0.011627311,-0.0046422225,-0.0058805947,-0.017176557,-0.025597489,-0.008782402,0.009545507,-0.007376682,0.0077180713,-0.004541814,0.023723196,0.020590449,0.0038489946,-0.0222907,-0.018769706,0.0030206242,-0.018528726,-0.02424532,-0.016641045,0.034112133,-0.010790573,0.0025620917,-0.0391995,-0.030015465,0.010957921,0.002928583,0.007845256,0.0044815685,0.0014492302,0.020871593,0.020121874,0.0042774044,-0.009237587,-0.002992175,-0.022330863,-0.0012249844,-0.014713201,0.0031545023,-0.03462087,-0.00019537832,0.030577753,-0.01102486,-0.0067139855,-0.004863121,0.03994922,-0.004665651,0.0014910671,-0.0009555548,0.041582532,-0.002439928,0.012336865,-0.0031896452,-0.016935578,-0.00014318679,0.012838908,-0.015436143,0.028007293,0.014432057,-0.016948964,-0.015837777,0.022130046,0.013588625,0.0074436213,0.006422801,-0.00078318676,0.017377375,-0.00833391,0.013146827,-0.00606133,-0.0123971095,-0.025918797,0.012437274,-0.024700506,-0.0055860626,-0.007457009,0.016092146,0.008467789,0.0021370288,0.014739976,0.006901415,0.015422755,0.022063106,0.021166123,-0.014766752,0.015958266,-0.017899498,-0.0020483346,-0.042225145,-0.01997461,-0.023830298,-0.00033720542,0.013079888,0.018006602,0.0070821503,0.002510214,-0.032157514,-0.034058582,-0.017457701,0.023803523,-0.00089949335,0.009244281,0.027029984,0.003758627,0.02570459,-0.021835515,0.017752234,-0.02980126,-0.0023144172,-0.00739007,0.0019780486,0.029935138,0.018595666,0.0143383425,0.0033954827,0.0282215,0.020362856,-0.008574891,-0.018796481,0.00062922697,-0.0035946264,0.0028181334,0.0030791957,-0.023415275,-0.040779263,-0.010281837,0.009866814,-0.010335388,0.007041987,0.0029687465,-0.045197237,-0.0019747016,0.021326778,0.0061985548,-0.00095053436,-0.0022909886,0.027257577,0.0014400261,-0.037111003,-0.009237587,0.024164993,-0.024031116,0.006767537,-0.0029135216,0.027096923,0.017123006,0.0028281745,0.0014333322,-0.015583408,-0.0037820558,-0.012196293,-0.006690557,0.004043118,0.007738153,0.019157954,-0.010984696,-0.013260623,0.014043811,-0.0040631997,0.010194816,-0.008594973,-0.0074302335,-0.014847078,0.016386677,0.0018726196,-0.6301909,-0.023857074,0.008909586,0.015476306,-0.0019044157,0.021889066,-0.01814048,-0.01099139,-0.031113265,0.01557002,-0.014739976,-0.0008810851,-0.013026337,-0.008340605,0.007095538,-0.017805785,0.03467442,-0.0022893152,-0.009130485,0.0228396,-0.029051542,0.016533943,-0.004407936,0.03566512,0.005157653,-0.015088059,0.020777877,-0.014632874,-0.009572282,0.025543937,0.004745978,0.021581147,0.022612007,0.019613137,0.047714148,-0.0046422225,-0.0034707892,-0.009940447,-0.024272095,0.052721187,-0.041555755,-0.0018960483,0.01637329,-0.029828036,0.010248367,-0.022625396,-0.008173256,0.0072561917,-0.00543545,0.025182467,0.008909586,0.02496826,-0.013762667,0.025691204,0.0020148652,-0.00778501,0.006867945,-0.022812825,-0.014311567,0.016132308,0.02136694,0.018823259,-0.02864991,-0.017015904,0.011801353,0.007517254,0.023174295,0.014820303,-0.0040196893,0.0018860074,-0.0006601863,-0.00060663506,0.0026942964,0.02522263,-0.00076979893,0.02546361,-0.0007530642,-0.010737021,-0.011721026,-0.00433765,-0.004494956,-0.008943056,0.005087367,-0.0068545574,-0.0035377282,-0.011125268,-0.035129607,-0.016199248,0.009505344,0.0028097662,0.007912194,0.029720934,0.012356946,-0.007376682,-0.018796481,-0.003691688,0.0020767837,0.015543245,-0.0067842714,-0.014017034,-0.008876117,0.011225677,-0.006268841,-0.026641738,0.05060591,0.010409021,-0.02546361,-0.0031528287,0.04409944,-0.008420931,-0.0039393622,-0.008688687,0.0015337408,0.0073365187,-0.012731805,-0.030524202,-0.0043041804,-0.007831868,0.0035377282,-0.0013772707,0.016533943,0.022571843,0.0032164208,-0.024807608,-0.0025169079,0.020054936,0.0012793724,-0.01771207,-0.0022374373,0.01838146,-0.016226023,-0.01267156,0.011131962,-0.00848787,0.010569674,0.017939663,0.003554463,0.007329825,0.015436143,-0.0012693316,0.010027468,0.020590449,0.014793527,0.0048664683,0.007905501,-0.012879071,0.0022508253,0.0006957476,-0.014793527,0.01411075,-0.020858204,-0.005897329,-0.008809177,-0.0061717792,-0.012370334,-0.010609837,0.020550285,0.0053149597,-0.028623134,-0.02088498,0.00864183,0.0155030815,-0.03304111,-0.007999215,-0.009993998,-0.009163954,0.0019412321,0.020068323,-0.01771207,-0.01874293,0.012316783,-0.0015747409,-0.016292961,-0.0060747177,0.01334095,-0.007604275,-0.0010978002,0.0011413107,-0.009404935,0.008494564,0.016882025,0.008173256,0.02136694,-0.01661427,0.015891328,0.0074302335,-0.011004778,0.034326337,-0.035129607,0.025985735,-0.0051241834,0.011252453,0.0019462525,0.0058303904,0.012430579,0.005010387,0.016801698,0.02076449,-0.023683032,0.009143873,-0.008621749,0.024231931,0.032452047,0.017993214,-0.006342474,-0.021835515,0.008909586,-0.027284352,0.0008769014,0.018153867,0.014244627,-0.0052279388,0.008394156,-0.014124137,0.009532119,0.00907024,-0.028167948,0.008494564,-0.026159776,0.04152898,-0.0069750478,-0.008380768,0.011192207,-0.030524202,0.0017621702,0.035638344,0.0032114005,0.023013642,0.006047942,-0.015369203,-0.025048587,0.0064495765,-0.0057299817,0.025784917,0.0103688575,0.008099624,0.02601251,-0.012544376,0.037459087,0.0022692333,0.00063884945,0.0058705537,0.037726842,-0.013454746,0.0127853565,-0.0028097662,0.02107241,0.014673037,-0.011118574,0.027766313,-0.0010049223,-0.003972832,-0.045036584,-0.014619486,0.010737021,-0.027083535,-0.0020868245,-0.007791704,0.019987997,0.032130737,0.03346952,0.013842993,-0.0014341689,-0.0402973,0.012169518,0.01208919,-0.0006196045,-0.010663389,0.019961221,-0.009030077,-0.01984073,-0.009920365,0.0017337211,-0.027926967,0.023053804,0.0010325346,-0.0022575192,0.002791358,0.02755211,-0.009371465,-0.01783256,-0.02827505,0.020965306,0.01532904,-0.00035707792,0.009364772,-0.006419454,-0.00017163588,-0.017123006,0.0077582346,-0.009706161,-0.0013136787,0.0086552175,-0.0056730835,-0.011587148,-0.027525334,0.02638737,0.021688249,0.0034440137,0.012832214,-0.00052296126,0.0038590357,-0.011868292,-0.015971655,0.015757449,0.007604275,-0.006693904,-0.014927406,0.0036347897,-0.016467003,0.027083535,-0.0027612355,0.019961221,-0.022692334,0.0032114005,-0.012992867,-0.044260092,-0.014592711,0.033844378,0.000774401,-0.0004060271,-0.009297833,-0.0034373195,0.01282552,0.07186575,0.01352838,-0.008407543,0.0067374143,0.004079934,-0.028141173,-0.005565981,-0.0500704,-0.0011078411,-0.00091288117,0.003761974,-0.012129354,-0.0044815685,0.0067943125,0.017363986,0.005502389,0.033121437,-0.035852548,-0.0024533158,-0.0074302335,0.010114489,-0.0036481777,-0.0015161693,0.011239065,0.036173858,0.031407796,0.0028917664,0.013883157,0.0033921357,0.0030791957,-0.00410671,-0.015141611,0.006208596,0.024231931,0.016105533,0.03529026,-0.011406412,0.020724326,0.011346167,0.009264363,0.011339474,0.021393716,-0.0037820558,-0.01704268,0.025905408,0.007731459,0.0022909886,0.01654733,0.0034607484,-0.008066154,0.043510374,0.023977563,-0.015422755,0.006188514,0.012504213,-0.008153175,-0.013548462,-0.013126746,-0.0050405096,-0.029828036,-0.019854119,-0.013160215,0.0029771137,0.007610969,-0.012905846,-0.0017855988,-0.0006275535,-0.017002515,0.012952704,0.010449184,0.015248713,-0.020644,-0.031648777,0.0020500082,-0.0005819513,-0.00500704,0.008594973,0.0055090827,-0.005097408,0.009371465,0.00053258374,-0.04768737,0.011761189,0.014070586,0.007838561,0.010643307,0.019465873,0.0024650302,-0.0035912795,-0.0011806373,0.0032080535,0.03927983,0.028864114,-0.023361724,0.017002515,0.02107241,0.011379637,0.016118921,0.013327562,0.025784917,-0.0056831245,-0.033871155,-0.035263486,-0.0031812778,-0.006670475,0.0050371625,0.020496733,0.020349467,0.0070754564,0.002992175,0.02717725,0.009886896,0.024164993,-0.011393025,0.012182905,0.023415275,0.015650347,0.03938693,0.02467373,0.0108976755,-0.0015228632,-0.045705974,0.023843685,0.02607945,-0.0127853565,0.005552593,-0.0131736025,-0.043028414,0.010737021,-0.014231239,-0.020644,0.029158646,-0.0011806373,-0.020684162,-0.023495603,-0.012631397,-0.018167255,0.010542898,-0.01215613,-0.008507952,-0.021835515,-0.02851603,-0.014954181,-0.020001385,0.025691204,-0.022263924,-0.0038858112,-0.024057891,-0.016118921,0.03352307,0.014164301,0.009130485,-0.0031628695,-0.01905085,0.013033031,-0.016815087,-0.02956028,-0.017243497,0.017872723,0.010924451,0.014298178,-0.004016342,0.018301133,0.012189599,-0.005843778,-0.014873855,-0.011466658,-0.031595226,0.0053952867,0.024499688,0.012169518,-0.010643307,0.02705676,-0.012383722,0.008059461,0.01035547,-0.007597581,-0.0037418923,-0.0381017,-0.007738153,0.01795305,0.007189253,-0.010710246,-0.0018358032,0.0025637653,-0.0015253733,0.009933753,-0.009311221,0.01843501,0.0079858275,0.006396025,-0.0046121,0.025209242,0.014954181,0.0072561917,-0.00012603366,-0.030738406,-0.012651478,-0.0074034575,0.019425709,0.014258015,0.009458486,-0.031970084,0.016051982,-0.024700506,0.02388385,0.00019862068,-0.01978718,-0.016627658,0.0017688641,-0.003301768,-0.024834383,-0.007845256,0.0052112043,-0.005221245,0.011640699,-0.001961314,0.00059073704,-0.015074671,-0.023709808,-0.013655564,-0.03853011,-0.011085105,0.028810563,0.01114535,0.031300694,0.023950787,-0.010998084,0.0026691942,0.004448099,0.010783879,0.01843501,0.026735453,-0.00040058832,-0.02095192,0.00013461022,-0.012698336,-0.015757449,-0.021273227,0.028382152,0.0042941393,-0.0012534335,-0.009686079,-0.026066061,-0.011292616,0.017363986,-0.00668721,0.013555155,-0.001427475,-0.012069109,-0.00011494688,0.018314522,-0.019680077,0.016948964,0.030069016,0.014713201,-0.0066370056,-0.020001385,0.0067876186,0.036602266,0.0026039286,0.023040418,-0.007992521,0.0038389538,-0.004371119,-0.0035845856,-0.005867207,-0.028971216,0.0071423952,0.014927406,-0.024794219,-0.01114535,-0.005873901,0.007229416,-0.011660781,0.012510906,-0.0040029543,-0.024071278,-0.008280359,0.0018826604,-0.0017387415,0.014458832,-0.015034508,-0.017123006,0.003375401,0.007805092,0.011306004,0.004116751,0.017912887,0.010603144,-0.009833345,-0.007892112,0.0021838862,0.005920758,0.0046121,0.0031427878,0.0067943125,0.0020031508,-0.033656947,0.019813955,0.0006191861,0.01028853,-0.009210812,-0.0023830298,-0.019010687,-0.036923572,0.020590449,0.0022976825,-0.031434573,-0.027900191,0.0060312073,-0.0026591534,-0.0022809478,-0.013019643,0.009592365,0.025128916,0.005927452,0.002685929,-0.0021353553,0.030631304,0.007182559,-0.014579323,0.030256446,-0.0025905408,-0.009337996,-0.029694157,0.02998869,0.01880987,-0.0043978947,-0.021233063,0.02217021,0.010295224,-0.018314522,-0.014619486,-0.025423447,0.0050940607,0.00041585878,0.025115527,0.011707637,-0.015275489,-0.024325646,0.033442743,0.008661912,0.019077627,-0.0033034415,-0.012651478,-0.037218105,-0.007088844,-0.006312351,-0.0036749532,-0.013896544,0.051516283,0.0063759433,-0.05494356,-0.008829259,-0.015529857,-0.025731366,-0.023482215,-0.0014006994,0.012497518,0.010890981,0.006319045,0.0120088635,0.04147543,0.0049702236,0.0025821733,-0.008032684,-0.0023847034,-0.022076495,-0.0048832027,-0.020858204,0.005080673,-0.05001685,-0.006556679,0.027364679,0.02827505,0.030604528,0.010221591,0.0069951294,-0.025570713,0.023709808,-0.008166563,0.0125912335,0.0049769175,0.0054488378,-0.044179767,0.0016960679,-0.0049702236,-0.009009995,-0.010074325,0.009605752,0.031193592,-0.021996168,-0.0038858112,-0.014565934,0.0057500633,-0.019131178,-0.0003518483,0.030577753,0.008166563,-0.014432057,0.0005334205,0.006948272,-0.047794472,-0.035397362,0.0014651283,-0.01563696,0.0044146297,0.020429794,-0.02961383,-0.019773792,-0.016520554,0.009572282,-0.0184484,0.0012433927,-0.018622441,-0.026360594,0.00071039057,-0.008200033,-0.0015697205,0.0086753,0.0016207615,0.0032549107,-0.027029984,-0.009987305,-0.012758581,0.004247282,-0.011975394,-0.008541421,0.021259839,0.007644438,-0.040993467,0.025892021,0.0054655727,0.0155030815,0.01874293,0.23648223,-0.005930799,0.00040686384,0.021032246,0.011192207,0.031220367,0.014847078,0.010328693,-0.021125961,0.0038623826,0.0130665,-0.0031461348,-0.035022505,-0.0044882623,-0.005770145,-0.022437965,-0.03314821,-0.022826212,-0.010783879,-0.005017081,0.023790134,0.016038593,-0.03622741,-0.0110382475,0.04993652,0.01642684,0.0016759862,0.013354339,0.0041334857,-0.00043384865,-0.01966669,0.012370334,0.003972832,-0.0065031275,-0.02247813,-0.00375528,-0.0075373356,-0.01880987,0.0293193,0.030791957,0.0035812387,0.008501258,-0.0014391893,-0.026949657,0.011473351,0.015195162,-0.0008476156,-0.0019111095,-0.009880202,0.004471528,-0.040966693,0.0035276874,0.045893405,0.006339127,-0.020684162,-0.019144565,0.015128223,-0.008226808,-0.015703898,0.0057400228,-0.00293193,0.014592711,-0.012062415,0.0126447845,-0.017872723,-0.0020818042,-0.020791266,0.0010735348,0.012430579,-0.000018813531,-0.014914018,0.012919234,0.005763451,0.017738845,-0.024084667,-0.007865337,-0.0021420491,0.026695289,0.026360594,0.021125961,-0.0072561917,0.0053952867,0.0046957736,-0.018769706,0.014217852,-0.036254182,0.0021922535,0.0045384667,-0.009143873,-0.012437274,-0.018421624,-0.008989912,-0.031622004,-0.045652423,-0.0076310504,-0.0018927014,0.035798997,0.04782125,0.0011471678,0.0004857264,-0.026655125,0.056710754,0.0060914527,-0.0052513676,-0.006044595,-0.0147265885,0.02095192,0.009552201,0.014619486,-0.008775708,-0.017685294,-0.023736583,0.016292961,-0.011982088,-0.00009392384,0.013555155,0.0051308773,-0.03132747,-0.009866814,0.007503866,0.0025637653,-0.036013205,-0.013300787,0.0058538187,0.0027578883,-0.01880987,0.0070620687,-0.01594488,-0.018796481,-0.03708423,0.008119705,0.008969831,0.0055793687,-0.032639474,-0.016989129,0.011506821,-0.008715463,-0.04709831,-0.029935138,0.01231009,-0.030149342,-0.001880987,0.009271057,-0.025075365,-0.017444314,-0.03906562,0.005656349,-0.0036314428,-0.021407105,-0.0019060891,-0.0054689194,-0.01557002,0.0139500955,-0.0010869226,0.032693025,-0.012745193,-0.041662857,-0.0151148345,-0.00320638,0.0029018074,-0.028864114,-0.0010107795,0.027712762,-0.029292524,-0.032960784,-0.02253168,-0.1697574,-0.009157261,0.008193338,-0.010502735,0.01654733,0.03681647,0.0056831245,0.0056128385,-0.01764513,0.0013914952,0.019773792,-0.0131200515,-0.0060881055,0.01642684,0.018341297,-0.012664866,-0.031300694,0.0023780093,0.026347205,0.019010687,0.02760566,0.0045719366,0.0021437227,-0.03395148,0.0071624774,0.0151148345,-0.011714332,-0.008139787,0.0116741685,-0.010643307,-0.025476998,0.0150612835,0.0022658864,0.02241119,0.027980518,-0.0058136554,-0.0033251967,0.003825566,0.008173256,0.011433188,0.01563696,0.019880895,0.01923828,0.0143918935,-0.0065968423,0.020041548,0.044929482,-0.004043118,0.01856889,0.00093045266,0.019987997,-0.02705676,-0.004441405,-0.0027829905,0.020684162,0.023040418,-0.020483347,0.023616092,-0.03132747,0.00063341064,-0.025985735,-0.033174988,-0.016118921,-0.01447222,-0.025570713,-0.008414237,-0.0027260925,0.013602013,-0.029479953,0.023053804,-0.010342081,-0.013568543,0.015489694,-0.0037318515,0.00057023694,-0.016895413,-0.039226275,0.011433188,-0.010147958,-0.0021353553,0.0040765875,0.03681647,0.010161346,0.033844378,-0.011808046,-0.00030457263,0.026253492,0.0015630266,0.032826904,-0.032960784,0.006057983,-0.0033268703,0.014512383,-0.025691204,0.019291831,0.010656695,0.027793089,0.0062219836,0.007035293,-0.011326086,0.023683032,-0.0018358032,-0.055371974,0.026936268,0.058370844,0.0036314428,-0.007604275,0.018488562,0.040163424,0.0066436995,-0.03194331,0.016654434,0.0042338944,0.044849157,0.006948272,0.0036046673,-0.010074325,0.0018324562,-0.0044179764,-0.0061583915,0.03419246,-0.015717287,-0.019318607,-0.008929668,-0.003410544,-0.002689276,-0.10844124,-0.013454746,0.0002982971,0.0044213235,-0.0015437816,0.012879071,-0.0016759862,0.0007258702,-0.01557002,0.020242365,-0.015663736,-0.038851418,-0.002168825,0.00043594048,-0.023000253,-0.004856427,0.02760566,-0.011306004,0.0070620687,0.016868638,-0.01090437,-0.023723196,-0.002270907,-0.007383376,-0.038771093,-0.009137179,-0.014699813,-0.025169078,0.0067307204,0.0059609213,0.01047596,-0.034379892,0.008186645,0.003621402,0.0025503773,-0.021340165,-0.025637653,-0.007175865,0.01642684,-0.021206288,0.010435796,-0.019037463,0.040190198,-0.024419362,-0.015101447,-0.0026056021,-0.018180642,0.000034018627,0.018609053,-0.028007293,-0.034219235,0.009525425,-0.007851949,0.0027947049,0.026414145,-0.0036381367,0.0036515247,0.04934746,-0.018220806,0.0005116653,0.0094317105,-0.015797613,-0.01984073,0.01776562,0.017859336,0.012658172,-0.010060937,-0.02100547,0.01544953,0.006479699,0.000027560058,0.02980126,-0.016654434,-0.0018558848,-0.016078757,-0.011707637,-0.013702421,0.0050605913,0.011627311,0.0068177413,-0.020081712,-0.011506821,-0.015436143,0.00089530967,-0.010308612,-0.006867945,0.001772211,-0.0035645037,0.013896544,-0.026922882,0.0023612746,0.007992521,0.0020767837,-0.0038590357,-0.017069455,-0.00041313938,-0.021822127,-0.0019780486,-0.0045150383,-0.0072963554,-0.0059542274,-0.008789096,-0.05912056,0.010890981,-0.014766752,-0.0071691712,0.0090970155,-0.007229416,0.015342427,-0.0005915738,-0.018702768,-0.002784664,-0.0033335641,0.010154652,-0.0042037717,-0.013274011,-0.0047727535,0.020925144,0.01783256,0.00375528,0.016051982,-0.009210812,0.0006957476,-0.023669643,0.0130665,-0.0021771921,0.0065265563,0.030497426,-0.010589756,0.007791704,-0.0060981466,-0.022263924,-0.0076377443,-0.015195162,0.009906977,0.023656256,0.018635828,-0.011821434,0.018301133,0.03804815,0.010957921,0.010971309,-0.005703206,-0.011439881,0.003956097,-0.02424532,-0.00017613334,-0.012624702,-0.01157376,-0.0147265885,0.02093853,-0.0025821733,0.031220367,0.01990767,-0.034219235,-0.011065023,0.0049769175,-0.02864991,0.022625396,-0.028328601,-0.00090702396,-0.014003647,0.023067193,0.0028030723,0.016172472,-0.02033608,0.024767444,0.027900191,-0.007282967,0.018622441,-0.008869423,-0.029212197,-0.0004903285,0.005756757,0.000008798823,-0.020202203,0.0282215,0.022237148,-0.010998084,-0.0006317372,-0.011707637,0.011091799,-0.0037920966,-0.0022943355,-0.045116913,0.014619486,0.031006163,0.021326778,-0.010121183,0.014164301,-0.0045752833,0.0021755188,-0.023227846,0.009605752,0.0026072755,0.005499042,0.0016818433,-0.0035611568,0.0035142996,0.012992867,-0.0058103087,0.03242527,0.039253052,0.0035745446,0.0133141745,0.003097604,-0.019398933,0.015369203,-0.029158646,-0.033308867,0.0053116125,0.0076979892,0.0021771921,0.013361032,0.020898368,0.013568543,-0.015235325,-0.009137179,0.012946011,-0.042600006,-0.037726842,0.016292961,-0.0059073702,-0.01826097,-0.017819172,-0.02784664,0.023160907,0.02093853,0.0018927014,-0.019305218,0.0026256838,0.0133677265,-0.04053828,-0.005793574,-0.018783094,-0.024861159,0.018180642,0.017256884,-0.0072963554,0.010783879,0.012095884,0.08878794,0.016266186,0.0031913186,-0.02057706,0.017551417,-0.0033034415,0.020965306,-0.010054244,-0.0034189115,-0.0143918935,0.021607922,-0.014083974,0.0027260925,-0.007055375,-0.0048463866,0.009364772,0.0061650854,0.022919927,-0.015275489,-0.0025302956,0.015623571,0.019880895,0.025048587,-0.0009379833,-0.0074904785,-0.004046465,0.007872031,-0.003892505,0.007383376,-0.020014772,0.020858204,0.010690165,0.015382591,-0.023428664,0.013689034,-0.0069214967,-0.02253168,0.006044595,0.008059461,0.0039427094,0.008742238,0.022692334,-0.018408235,-0.021045635,-0.019251667,-0.00064889033,-0.0059508807,0.0062922696,-0.022491517]},{\"id\":\"32b05af5-71a8-4440-a631-9ad3adf2310d\",\"text\":\"Please tell me what Order consists of, $Cost of order, text or send\\nvia Email @mjollywaters@gmail.com\\n+1 (949) 545-8433\\nThank you for your co-operation \\nMichelle Jolly Smith\",\"vector\":[-0.014209284,-0.015617785,-0.011992968,-0.0069320323,-0.007567238,0.035654396,-0.00486416,-0.022259831,-0.020713244,0.002000554,0.00692858,-0.0048883255,-0.009348577,0.005917083,0.0096523715,0.0071598776,0.010881357,-0.005844587,0.010253055,0.0065212194,-0.03256122,0.028694747,-0.00035493006,0.0003715438,-0.011785835,-0.030462276,0.000549764,-0.0068250136,-0.016418697,-0.010280673,-0.013318615,0.020906568,-0.01887667,-0.00004037464,-0.018075757,0.019898523,0.012386519,-0.0052508074,0.02699626,-0.022908848,0.035543926,-0.0043187113,0.0030189552,-0.0070010764,-0.054738197,0.00023021907,-0.015024005,-0.0039078984,-0.006445271,-0.0006710228,0.03408019,0.01567302,0.009307151,-0.032726925,0.010404953,0.0031259737,0.008589092,0.018103374,0.0012902624,-0.018559067,0.014305946,-0.019152846,-0.023212641,0.017109139,-0.00462941,-0.013366946,-0.0167363,-0.01578349,-0.024483053,0.010329004,0.015189712,0.023433583,-0.010991828,-0.010094254,0.016349653,-0.0021282858,-0.008375055,0.013194336,0.011551085,0.00029645828,0.015534933,-0.024800656,0.0024527933,0.02053373,0.012973394,0.010536136,0.02405498,0.0032709662,-0.013946917,-0.01249699,0.0049953437,0.029412806,-0.013898586,0.011592512,-0.013456704,0.005882561,-0.026554378,0.04106746,-0.0127179315,-0.01993995,0.016791536,0.0057928036,-0.027203392,-0.013132196,-0.049435608,-0.008154114,0.016059669,-0.023737377,0.0001537311,0.0048710643,-0.011454424,0.033113573,0.0039389683,-0.013415277,0.012987204,0.007967695,0.0038215935,-0.032699306,-0.032975484,-0.018130992,0.01947045,0.018310508,0.03609628,-0.025560142,0.03369354,0.01757864,-0.012600556,-0.002333692,0.0021783428,0.006148381,0.023198832,-0.0011245565,-0.0018175871,0.036013424,-0.016211566,0.038029514,-0.03256122,0.026678657,-0.02253601,-0.014167858,0.016142521,0.020354213,0.020602772,-0.0046259575,-0.009500475,0.005199024,0.003866472,-0.0014050483,-0.00036269752,-0.01850383,0.009866408,-0.0031777567,0.023046935,0.004715715,-0.0028135488,0.01958092,-0.0022767307,0.020740861,0.010004496,-0.038499016,0.0066247857,0.01473402,0.020934185,0.008989547,0.017551022,0.017882433,-0.0003290385,-0.0069389367,0.008036738,-0.0032226355,-0.03076607,0.0034919076,-0.014954962,-0.0019574014,-0.010798505,0.013739784,0.01556255,-0.013063152,0.0061656423,-0.027010068,-0.011723695,0.013960726,-0.005295686,0.029992776,-0.009983784,-0.02770051,0.039382778,-0.030213717,0.02239792,-0.014954962,0.013463608,0.015714448,0.0041875276,0.00094590476,-0.62349623,-0.03761525,0.006065528,-0.012427946,0.02006423,0.013242667,0.01851764,0.021237979,-0.0047571417,0.0073946277,-0.01096421,0.035212513,-0.03256122,-0.0287776,-0.0040632477,-0.0153278,0.0025287417,-0.025159687,-0.008582187,0.01746817,-0.03170507,0.017771963,0.003966586,0.003683505,0.018600492,0.0072565395,0.01185488,-0.018103374,0.007981503,0.011758218,-0.009017165,0.007684613,0.0112611,-0.008223157,0.038029514,0.006065528,-0.010156394,0.0013886504,0.018130992,0.000015413565,-0.029965159,-0.002019541,0.024828274,-0.01981567,-0.023889273,0.00044878694,0.02239792,-0.03145651,-0.0059585096,0.014761638,0.028501423,0.008002216,-0.031290807,-0.00913454,0.011910114,-0.021873185,0.02982707,-0.02085133,0.00896193,0.015659211,-0.0082162535,-0.0028256315,-0.02782479,-0.051810727,-0.011040159,-0.011240386,-0.0325336,0.0011202412,0.03468778,-0.0058066123,0.0062070685,0.022674097,-0.019967567,0.019014757,0.0009079305,0.03275454,0.011682269,-0.005848039,-0.009341673,0.030130865,0.0024735064,0.0003279597,-0.009148349,-0.023019318,0.020934185,-0.008105783,-0.012655792,-0.01226224,-0.0025598116,-0.0098456945,0.027272437,0.009051687,0.015244947,-0.007360106,0.00044404014,-0.013070056,-0.009272628,0.0059239874,0.0011029802,-0.029412806,-0.005879109,0.007629378,0.01604586,0.014872109,0.021666052,-0.0020523372,-0.022480773,0.0112611,0.020685626,0.00026776182,0.02063039,-0.0064211055,0.0056236456,-0.021776523,-0.016529169,-0.02710673,0.021030847,0.03209172,-0.015824918,0.005886013,-0.0038388544,0.010066636,0.009438335,-0.0063727745,0.02133464,0.0073186792,0.01851764,-0.01356027,0.0038595677,0.0002923588,0.0054855575,-0.0111851515,0.017868625,-0.026416289,0.0036938617,0.01043257,0.022287449,-0.0053716344,0.031787924,0.005116171,-0.020464685,0.0036973138,0.008499335,-0.012317475,0.005264616,-0.030959394,-0.020796096,0.0021783428,-0.015880153,-0.0082162535,-0.011675364,-0.012987204,0.009769746,0.020575155,0.010114967,-0.021210361,0.009003356,-0.008609804,0.0022180432,-0.02616773,0.016902007,0.03076607,-0.023240259,0.001983293,0.02391689,-0.004449895,0.00660062,-0.02086514,-0.013933108,-0.023419773,-0.0130562475,-0.0029395544,-0.002081681,-0.009659275,-0.009562614,0.008181731,0.017122949,-0.015037814,-0.0009597136,-0.015231138,0.01746817,0.013463608,-0.023544053,0.03598581,0.024082597,0.012303666,-0.0044844174,0.027921451,-0.029992776,0.032285042,-0.004028726,0.02051992,0.0010373882,0.0143888,0.0021196553,0.024414008,-0.010225438,0.00692858,0.0064072968,0.017288653,0.027341481,-0.010190915,0.021873185,0.011109203,0.027451951,-0.006697282,0.0122415265,-0.03452207,0.041205544,0.03463254,0.0043187113,-0.0089826435,0.006648951,-0.00902407,0.012110343,0.0032640619,-0.0019142489,0.037394308,-0.0076017603,0.006031006,-0.0017062534,0.014305946,0.025256349,-0.026554378,0.008678849,-0.013132196,0.018835243,0.0054096086,-0.00033896358,0.016308228,0.011986064,-0.0011098846,0.014140241,0.0042047882,0.0292471,-0.021417493,0.0060413624,-0.013746689,0.031511746,0.011682269,-0.00483309,0.012137961,0.011627034,-0.016832963,0.017081521,-0.025504908,0.011019445,0.014167858,0.024496863,0.0028377143,0.013912395,-0.0027738486,-0.019705199,-0.011627034,0.0150654325,-0.001631168,0.0007430876,0.008796224,0.010225438,0.029550893,-0.0019781147,-0.0024217234,0.031677455,-0.00889979,-0.009051687,0.0018676441,0.019221889,0.014582124,-0.0037594535,-0.021873185,0.0024441627,-0.0031225213,0.02475923,-0.00902407,0.007712231,-0.0041219355,0.004215145,0.0052922335,-0.015976815,0.0025960598,-0.018296698,-0.023033127,0.010915879,0.021389876,-0.0018072305,0.0036213654,-0.006604072,-0.0010054554,0.006434914,0.011385379,0.00048158292,-0.005709951,-0.009390004,-0.009452144,-0.0023733925,-0.005934344,0.008879077,-0.020823713,-0.011992968,0.009949261,0.011468233,0.013456704,-0.008437195,-0.0064245574,0.04468537,-0.011585607,-0.008098878,-0.027051495,0.00023604467,-0.046397664,0.004964274,-0.0050436747,-0.03971419,0.018600492,0.03512966,-0.00333138,-0.00076897914,-0.047253814,0.02416545,0.0031881134,0.029523276,-0.025739657,-0.027962878,0.010404953,0.08843174,0.05225261,0.008057452,0.0048917774,0.0069907196,-0.0020368022,-0.017481977,-0.017896242,0.016294418,-0.023557862,0.013608601,0.015976815,-0.008851459,0.016018242,0.018227654,0.00343322,-0.006200164,0.0042703804,0.0062243296,-0.0049055866,0.00080565887,-0.012172483,0.022922656,0.014775447,0.012780071,0.015438271,0.009562614,0.0072841574,-0.019290933,-0.022756949,-0.012172483,0.0028532492,0.02300551,-0.0012566034,-0.0016095917,0.034466837,0.0215832,0.0064003924,-0.000084740896,0.008671945,0.03692481,0.001966032,-0.016957242,-0.015659211,0.029771835,-0.01840717,-0.016446315,0.026844364,0.037532397,0.007995312,0.02652676,-0.029744217,-0.003001694,-0.00333138,-0.004933204,0.0067732306,-0.024220686,-0.013125292,-0.0157973,0.0028618798,-0.0073877233,-0.015576359,0.009735225,-0.0146373585,-0.0370629,-0.03187078,-0.026264392,-0.0010598276,-0.03512966,-0.021210361,-0.008851459,-0.021279406,-0.008444099,0.009783555,0.02344739,0.015341609,0.013988344,0.0010270317,0.025684422,-0.0029430066,0.0061932597,-0.016556786,0.012151769,-0.021196552,-0.03184316,0.008050547,-0.0019401405,-0.015286374,0.02005042,0.02910901,-0.02310217,0.010239246,-0.011772026,-0.011744409,-0.0050367704,-0.0038699242,-0.0148583,0.0145406965,-0.036400072,0.005547697,-0.005827326,-0.0047398806,0.030821307,-0.025988216,0.013394564,-0.013705263,0.0127662625,0.020809906,-0.02003661,0.009010261,-0.00889979,-0.030268952,0.02522873,0.016446315,0.010287577,0.021362258,0.022908848,-0.010549945,0.016722491,-0.011047063,0.014292138,-0.06280255,0.03173269,0.009548805,-0.010743269,0.03493634,0.0037698103,-0.016225373,0.0167363,0.010190915,0.010018305,0.015037814,-0.018310508,-0.007180591,-0.012414137,-0.0033227494,-0.004646671,0.03504681,-0.011578703,-0.006976911,-0.0104670925,-0.008112687,-0.0013420456,-0.006648951,0.0018055043,-0.03642769,0.000202062,-0.011309431,-0.0037905236,0.026871981,-0.005758282,0.021182744,-0.009376194,-0.010777791,-0.004991892,-0.016570594,-0.0070563117,-0.008416481,0.02618154,0.027451951,0.02039564,0.015548741,0.0054372265,0.007760562,-0.006714543,0.0012445207,-0.006379679,0.0046259575,0.025270157,-0.004881421,0.01686058,0.012614365,0.025629187,0.011447519,0.022756949,-0.00171661,0.021030847,-0.0031604958,0.0024130929,-0.012835306,0.0062381383,0.011136821,-0.013463608,-0.008147209,-0.017274845,-0.0053923475,0.02051992,0.0013049344,0.02027136,-0.01792386,0.020022802,-0.012973394,0.0334726,-0.026816746,-0.0023267877,-0.01699867,-0.00049754936,-0.017412933,-0.018144801,0.005613289,0.019014757,0.0006818109,0.021776523,0.014236903,-0.0068906057,0.011640843,-0.0005148104,-0.02982707,-0.021624627,-0.009148349,-0.020588964,0.0051334323,-0.010598276,-0.012117247,-0.009486665,0.014885917,-0.017247228,0.0015483149,-0.018614301,-0.02027136,0.0020316239,-0.029329952,0.012013681,0.02913663,0.016363462,0.0297166,-0.009859504,-0.0010304839,-0.00056702504,0.008375055,0.0038250457,0.02699626,0.031042248,-0.024414008,-0.016612021,-0.0053716344,0.005813517,0.0150654325,-0.017992904,0.0068388223,0.008230062,-0.003680053,-0.027451951,0.0076708044,-0.02286742,0.038167603,-0.010722555,0.011709887,-0.010052827,0.005337112,-0.034383982,0.023254069,-0.03278216,0.009624754,0.014941153,-0.012331285,-0.010536136,-0.011689174,0.00878932,-0.004815829,-0.008285297,0.0130079165,-0.0287776,0.02063039,0.010591372,0.0068940576,-0.0052887816,-0.0049780826,0.023958318,0.015521124,-0.032726925,-0.028584275,0.015134476,-0.0012566034,-0.002879141,-0.0025787987,-0.010335908,-0.018835243,-0.02239792,-0.0029740764,0.01791005,-0.029992776,0.019498067,-0.004401564,-0.00266683,-0.03692481,-0.013139101,0.010763982,0.020202316,-0.00068353704,-0.02558776,-0.0048089246,-0.0024079145,0.011896306,0.00024445943,-0.0045534614,0.007795084,0.024828274,0.001964306,0.004929752,0.009804268,0.007877937,-0.037339073,0.010232342,-0.008098878,-0.03559916,0.0031777567,-0.006742161,-0.042641662,-0.023212641,0.010715651,-0.009956165,-0.016183948,0.0010900344,-0.0018469308,0.018200036,0.024621142,0.011627034,-0.043635897,0.027962878,-0.018324316,-0.007926268,0.0017606256,-0.02358548,0.015189712,-0.0138709685,0.0010624168,0.0044775126,0.0002108004,-0.023972128,-0.008285297,0.015120667,-0.007332488,-0.010225438,-0.030103248,-0.0008216253,-0.002747957,0.03557154,-0.014278329,-0.020588964,-0.0065384805,0.0220527,0.04609387,0.022080317,-0.017951477,-0.03076607,-0.029771835,0.00044231405,-0.025283966,-0.02888807,-0.015051624,0.021293214,-0.014085005,0.00078537717,-0.03512966,-0.014167858,-0.044022545,-0.018655729,-0.022563627,0.017965287,0.00035859802,0.025214922,-0.016667256,0.008036738,0.014595932,0.037228603,-0.013159814,0.00058558065,0.014402608,-0.012994108,-0.017744346,-0.040736046,-0.038250457,-0.0042082407,0.0030275858,0.0092242975,0.008299106,0.028280482,-0.01884905,-0.010149489,0.0077674664,0.016529169,0.008830746,0.01640489,0.013297902,-0.009866408,-0.0029516371,-0.010384239,-0.01909761,-0.008230062,-0.0064901495,0.012752454,-0.011716791,-0.017122949,-0.029661365,-0.01592158,0.00825768,0.032312658,0.0154520795,0.027880026,-0.016197756,-0.0012307118,0.010080445,0.0040218215,0.008658135,0.022618862,0.0050540315,-0.015010197,0.029026158,-0.008471716,-0.03888566,-0.02770051,-0.020740861,-0.0025218374,-0.016694874,-0.0150654325,0.0225222,-0.023668332,0.007801988,0.02913663,-0.032119337,-0.004422277,-0.021155126,-0.004681193,-0.003302036,-0.028363334,-0.023778804,-0.02772813,-0.0017286928,0.03419066,-0.01911142,-0.006213973,0.013933108,0.008561474,-0.0053612776,0.015548741,0.22270879,0.0048089246,0.007760562,0.05128599,0.01686058,0.014651167,0.02663723,0.0012816319,0.0032433486,0.010701843,0.006845727,-0.012925064,-0.0012281227,0.0052749724,0.014954962,-0.037670486,-0.0389409,-0.036593396,-0.0040563433,-0.0076915175,-0.007415341,0.011972255,-0.0062933736,-0.0131045785,0.024952553,-0.0075327163,0.0045638178,0.032202188,-0.000816447,0.017109139,-0.033804014,0.020119464,0.012745549,0.010246151,0.013215049,-0.009182871,-0.011005636,-0.019981375,-0.00031199324,0.004411921,-0.01166846,-0.004943561,-0.0020350763,-0.028722364,0.014609741,0.00039333585,-0.026209157,-0.016418697,-0.015079241,0.010998732,-0.043470193,-0.02629201,0.018420978,0.029274717,0.020740861,0.0010123597,-0.005799708,0.01839336,-0.034107808,0.014119527,-0.022025082,0.033251658,-0.003001694,-0.0011720243,-0.0011098846,0.007415341,-0.025739657,-0.019415213,-0.021486538,-0.024552098,0.0070183375,-0.007981503,-0.0016190852,0.01302863,-0.016653448,-0.020423258,0.012773166,0.035267748,0.020823713,0.041647427,-0.029523276,0.009921644,-0.008630518,-0.01302863,0.004384303,-0.025201112,0.017399125,0.0055684103,0.0051748585,0.008671945,-0.0011556264,-0.016667256,-0.012427946,0.007025242,0.0049366564,0.008402673,0.02616773,0.014078101,-0.032340277,-0.0002586998,-0.015838727,0.04678431,-0.010294482,-0.014333565,-0.02793526,-0.025159687,-0.0000044568533,0.031152718,-0.011986064,-0.015617785,0.00889979,-0.01567302,0.021486538,-0.015631594,-0.0092242975,0.010536136,-0.003932064,-0.0148583,0.019277126,0.010280673,0.0244002,-0.03463254,-0.015893962,0.0123381885,0.024731612,-0.01709533,-0.0034625637,-0.013456704,0.022328876,-0.03250598,0.006980363,0.014105719,0.025905363,-0.02604345,-0.032478366,0.0028273577,0.012414137,0.026568187,-0.0057893516,-0.007981503,-0.0061449287,-0.009762842,0.011585607,-0.00006068333,0.02500779,-0.028473806,0.003814689,-0.007905555,-0.028446188,-0.036151513,-0.013656932,-0.016059669,0.012676504,-0.017537212,0.02819763,0.010356622,-0.028252864,-0.0380019,-0.0049090385,0.012041299,-0.035212513,-0.005944701,0.01179274,-0.0072565395,-0.012082725,0.00836815,-0.17763677,0.0120482035,-0.009017165,0.004311807,0.020078037,0.0061276676,0.007843414,-0.0013411825,-0.01900095,-0.0059757708,0.018752389,-0.0054406784,-0.019553302,-0.005620193,0.010363526,0.0026961737,-0.04612149,0.012117247,0.0009881944,0.025201112,0.03466016,0.009120732,0.013539556,-0.0013325519,0.02038183,-0.010584467,-0.015963007,0.02899854,-0.025201112,-0.0017580366,-0.005195572,-0.0046121487,0.005730664,-0.006579907,-0.004981535,-0.005433774,-0.009162158,0.023516435,-0.0026374862,0.02569823,0.006780135,0.002014363,0.0040839612,0.025725849,-0.028446188,0.017868625,0.015134476,0.002019541,0.0048607076,-0.02053373,0.024358774,-0.03598581,0.0032364442,-0.018669536,0.009037878,0.01581111,0.006697282,-0.003231266,0.0060586235,-0.0022422087,-0.0072772526,-0.0062899217,0.0018952618,-0.0100390185,-0.01243485,-0.012124152,-0.024220686,0.012303666,-0.010632798,0.008236966,0.0050160573,-0.020837523,0.0023267877,-0.010715651,0.01593539,-0.020464685,-0.018766198,0.0013791568,-0.021251788,-0.0059585096,-0.011274909,0.031760305,-0.021997465,0.011392284,0.014678785,-0.013788115,-0.0007159015,0.006300278,0.013684549,-0.011012541,0.01746817,-0.010895166,0.023405965,-0.010308291,0.020022802,0.0058100647,0.0143888,-0.009514283,-0.010315195,0.008043643,0.01326338,0.0011461328,-0.0007465398,0.033527836,0.021679861,0.008678849,0.010114967,0.02618154,0.010052827,-0.022439348,-0.036482926,0.018835243,0.02311598,0.04595578,0.011385379,-0.0005713403,-0.008057452,-0.028473806,0.00015826212,0.015465888,0.030600365,0.0051921196,-0.0011599417,0.014236903,0.012517704,-0.001985019,-0.07644568,-0.0016596486,-0.004991892,0.01675011,-0.023626907,0.010004496,-0.000091861075,0.032726925,0.00040541857,0.043635897,-0.0011254195,-0.017854815,-0.01208963,-0.015244947,0.017012477,-0.025353009,-0.03562678,-0.026954833,0.0013851981,0.015742065,-0.011979159,-0.030434659,-0.008520047,-0.032395512,-0.011364666,-0.023764994,-0.0292471,0.020423258,0.042724516,0.019857096,0.004039082,0.0008958478,-0.0084095765,-0.021886993,-0.0010926236,0.01992614,-0.023806421,-0.007712231,0.015521124,-0.020243743,-0.009659275,0.006227782,-0.0059723184,-0.0306556,-0.024082597,0.0021455467,-0.024386391,0.0086029,-0.000052430398,0.0011047063,-0.018448595,-0.0031225213,-0.0064211055,-0.012600556,-0.0045879832,0.0022888135,-0.012786975,0.019263316,-0.005578767,0.0014965319,0.021293214,0.012421042,-0.023751186,0.020464685,0.020588964,0.009811173,0.0054579396,-0.0058514914,0.008989547,-0.009528092,-0.00925882,0.018172419,-0.036980044,0.0076500913,-0.037642866,-0.007498194,-0.0315946,-0.007967695,0.01055685,-0.007857224,-0.00092864374,-0.026499143,-0.004912491,-0.0015077515,0.01640489,0.017178183,-0.0044533475,0.008147209,-0.0009260546,-0.02982707,0.0037801669,0.03468778,0.00966618,0.0064556273,-0.01143371,-0.027907643,-0.02557395,0.0028377143,0.013995248,-0.01911142,-0.030379424,0.0041737184,-0.087271795,0.03985228,0.0025615378,-0.016708683,0.004663932,-0.014140241,0.018793816,-0.023613097,0.015313991,0.037421927,-0.0122001,0.03512966,0.0014973949,-0.018697154,-0.022798376,-0.013753594,0.0153554175,-0.017288653,0.01934617,0.0072358265,-0.030103248,-0.0061932597,0.0075050984,0.013601696,0.018296698,0.032367896,-0.031207953,0.024096407,-0.02724482,-0.01196535,0.011295622,-0.01650155,0.002996516,0.03477063,-0.012662696,-0.01897333,-0.0023216093,0.041592192,-0.010384239,-0.02040945,-0.0127179315,-0.012745549,-0.015755873,0.0006222603,0.0061242157,0.013318615,-0.0065281237,0.011799645,0.0091759665,0.015590168,0.026871981,0.018420978,-0.010888262,-0.012303666,-0.0111851515,-0.04032178,0.011343953,-0.019719008,0.010915879,-0.00819554,0.040266544,0.008754797,0.0029447328,-0.013539556,0.015645403,0.0016864032,-0.0012583295,0.009189775,-0.007829606,-0.026485333,-0.030268952,-0.007146069,-0.015369226,0.01108849,0.0069320323,0.012835306,0.006535028,0.009541901,-0.007028694,0.046397664,0.018669536,0.0056374543,-0.02406879,-0.009693798,0.006604072,-0.0060275537,0.012752454,0.0053198515,-0.029523276,-0.0021041203,-0.020892758,0.01509305,-0.024262112,-0.006700734,0.02676151,0.004843447,0.018752389,-0.018490022,0.0023129787,0.027438143,0.014112623,0.019139037,-0.0082162535,-0.004353233,-0.0029878854,-0.023088362,-0.0320641,-0.04775093,0.003315845,0.005029866,0.0066178814,-0.024372583,0.038443778,0.019014757,-0.014223094,0.026278201,0.0229917,-0.017675301,-0.015976815,0.042034075,-0.0055235317,-0.0011521742,0.015990624,-0.014319755,0.004253119,0.0051575974,0.008444099,-0.015396845,-0.013422182,0.014747829,-0.00093554816,0.014416417,0.0003214868,-0.012994108,-0.019594729,0.014223094,-0.0009959618,0.03927231,0.0036420787,0.07981503,-0.007180591,0.010128776,0.018172419,-0.014982579,0.032119337,0.011157534,-0.007933172,-0.0038595677,-0.018338125,0.025076833,-0.013311711,-0.0053025903,-0.022494582,0.014968771,-0.021624627,0.0010675951,0.027175775,-0.018793816,-0.0047536893,0.01887667,0.008754797,0.007083929,0.009590232,-0.018255271,-0.013173623,-0.0036386263,-0.029026158,0.0015241494,-0.04211693,0.0043221633,-0.0013851981,-0.027852409,-0.0011116107,-0.011081585,-0.037780955,-0.0027928357,0.008644327,0.003113891,0.011620129,-0.023060745,0.012448659,-0.027797172,-0.023157407,-0.026029643,0.017371507,-0.031097483,0.0058998223,-0.02946804]},{\"id\":\"0a8fe6ec-3b5f-4e83-b34f-e63f42d97a19\",\"text\":\"Do I make it a post or story?\",\"vector\":[-0.0010425252,0.0005208518,0.01176435,-0.019033274,-0.007617253,0.01913843,-0.010114713,-0.012743617,0.0019273161,-0.0023955898,-0.0063553783,0.025855282,-0.029838074,-0.0005849314,0.012152114,-0.018362902,0.035937134,-0.023962472,0.0027817104,-0.011816929,-0.01309852,-0.0040912335,-0.0063389475,0.011041402,0.016798705,-0.02230626,0.03075819,0.011554038,0.032046355,0.002573041,0.026919989,-0.005251238,-0.0058591724,-0.020860363,-0.007985299,0.007926149,0.002821144,0.027235458,-0.0038283432,0.0096612265,0.021333566,0.008629382,-0.019493332,-0.023449834,0.0039104964,-0.0014877961,0.019572198,-0.027550926,-0.01551054,0.013118237,0.0001738569,-0.017258763,-0.036752094,-0.014090932,-0.022779463,0.0057342993,0.018625794,0.010640494,-0.021254698,-0.006276511,0.0144195445,0.025592392,-0.006003762,0.00094804895,-0.026617665,-0.0056159985,-0.010219869,0.008931706,-0.020295149,0.0042128204,0.012743617,0.0043212627,0.011534321,-0.015852299,0.011593472,-0.019572198,0.026026161,0.0022099235,0.0028687927,0.015273939,0.018165736,-0.011784067,0.0013448494,0.031730887,0.01925673,0.0014680793,0.0055831373,0.028102996,-0.031757176,-0.004446136,-0.0033649986,0.032756157,0.0067825755,0.018349757,0.0014721869,0.017981712,-0.0134994285,-0.0058394554,0.020163702,-0.008182467,0.0046827374,0.0033649986,-0.02439624,-0.012763334,-0.0036311753,0.018336613,0.0019075993,0.02657823,0.051999744,-0.016890716,-0.0075383857,0.04022225,0.009792672,-0.02480372,-0.018980695,-0.007196628,0.0056948657,-0.029548895,-0.025106044,-0.012421577,0.027629793,-0.0055568484,-0.0045808675,-0.018205168,0.033413384,0.0019059563,-0.013295688,-0.020978663,-0.0040320833,-0.014274955,0.009398336,-0.0038283432,0.007926149,0.0059084645,-0.0009299752,-0.00029205493,-0.005323533,0.027235458,-0.023121221,-0.025815848,0.022279972,0.011383159,-0.013814896,-0.007768415,-0.019322453,0.0074858074,0.024120204,0.0096612265,-0.008629382,-0.0036180308,0.009319469,-0.017179895,0.010837662,0.012211264,0.009194596,0.032335535,-0.022424562,0.021714756,0.00057959143,-0.015405385,-0.010088423,0.04093205,0.016259778,0.0122572705,0.0060892017,0.036778383,0.021741046,-0.024093917,-0.012809341,-0.003476727,-0.024067627,0.019191008,-0.025395224,0.016430657,0.0002729543,0.026854267,0.01562884,-0.0060694846,-0.00781442,-0.0027061293,-0.018139446,0.00078538543,0.016351791,0.011310864,-0.009753238,0.005642288,-0.0054845535,-0.025224345,-0.017889699,0.004600584,-0.011363443,0.015523685,0.02607874,0.0075581023,-0.66837287,-0.019861378,0.022529718,-0.01721933,0.01524765,0.009174879,-0.0056587183,0.018073723,-0.025106044,-0.00272256,-0.004403416,0.0053038164,0.00665113,0.016141478,-0.01399892,-0.027077723,0.019375032,-0.0037461899,-0.031704597,-0.016246634,-0.041799594,0.012993364,-0.0068417257,-0.0006288834,-0.0055732788,0.020111125,0.008281051,-0.016627826,-0.026210185,0.0027324182,-0.0036443197,0.01887554,0.014261811,0.01591802,0.05352451,0.0031136095,-0.00914859,0.019782512,-0.005307102,0.021083819,-0.020702628,-0.017850267,-0.0031021081,0.0060563404,-0.006151638,-0.013578296,0.024751142,-0.00065024325,0.043429513,-0.012829057,-0.013026225,0.0025516811,0.0040682307,0.0045184307,0.002798141,-0.018717805,0.03630518,0.016535813,-0.0025385367,-0.021373,0.0011189277,0.001287342,-0.027524637,-0.004469139,0.0029558754,0.004692596,-0.012434722,0.016404368,-0.009128873,-0.008938278,-0.0012479085,-0.0027652797,-0.025907861,0.005192088,0.0070651826,0.019743077,0.03330823,0.004584153,-0.009418053,-0.0019601774,-0.0011312508,-0.00259933,-0.014064643,-0.010673355,0.03990678,0.010331597,-0.005957756,-0.0025582532,0.01675927,0.0020308292,-0.022582296,0.019729933,0.0073872237,0.010785083,0.00041323103,0.019677356,0.0095297815,0.017232474,0.0050639287,-0.006828581,0.0013859259,-0.006700422,0.0021869205,0.009266891,0.015931165,-0.01846806,-0.022832042,0.006789148,0.010463042,-0.029075691,0.02823444,0.0022855045,-0.0061877854,-0.0014081073,0.007794704,-0.02823444,0.026065595,0.01324311,-0.0027488489,-0.0019798942,0.024514541,0.005474695,-0.002898368,-0.007512097,0.015155639,0.01954591,0.010509049,0.005550276,-0.0140252095,-0.012697612,0.023213232,-0.012382143,0.01481388,-0.00002069236,-0.0001663604,-0.0041372394,0.010561626,0.0035358774,0.028523622,-0.006789148,-0.023476124,-0.006453962,0.0036114585,0.009299752,-0.032887604,-0.023331534,0.004998206,-0.00659198,-0.020019112,0.004452708,0.0006395633,-0.017258763,-0.030074675,-0.0005274241,-0.01695644,-0.018060578,-0.0030725328,-0.022095948,-0.02645993,0.0005089396,0.0074135126,0.026946278,-0.01399892,0.0042358236,-0.006319231,-0.029180847,-0.03430721,-0.0015691278,-0.010719361,-0.011310864,0.0042423955,-0.024356807,-0.018625794,-0.0068548704,-0.019913957,0.008340201,0.022792608,-0.0020028972,0.00859652,-0.0019075993,-0.0321778,0.016141478,0.003877635,-0.0011641121,-0.011278003,-0.017153606,-0.02910198,0.045532636,-0.0065065403,0.024908876,0.021478156,-0.0046531623,0.010344742,0.017955422,-0.0026601234,0.0068680146,0.00789986,0.02369958,-0.013670307,0.011639478,0.01606261,0.025434658,0.004127381,-0.0004588261,-0.010141002,-0.038303148,0.0046367315,-0.011981236,0.038723774,-0.008399352,0.005474695,-0.0022345695,0.009168306,-0.0031070374,-0.00035284838,0.0009201168,-0.0069600265,0.010824517,-0.041194946,0.017232474,0.0075383857,-0.008064167,0.0041372394,-0.007597536,0.013045942,0.011304292,0.011619761,0.020321436,0.0046367315,-0.040879477,-0.017324485,0.010213297,0.016535813,0.012986791,-0.0067168525,0.0025812562,0.010068707,0.0010901741,0.0077749873,-0.00935233,-0.016969582,0.007321501,0.002277289,0.00519866,0.036436625,0.016548958,0.020282004,-0.021188976,-0.007170339,0.0006214896,0.008386208,-0.01481388,-0.024185928,0.00012415416,0.010581343,-0.011678911,-0.019361887,0.0006802292,0.0025451088,0.012671323,0.015168783,0.0022378555,-0.019361887,0.0021557023,0.0058854613,-0.01873095,-0.011376587,-0.01190894,0.009608649,-0.016522668,-0.012382143,-0.015089916,0.023055498,0.014393256,0.010541909,0.00851108,0.025828993,0.006670847,0.014735013,0.0022132096,-0.002103124,-0.02854991,0.01173149,0.0053169606,-0.019966535,-0.013151098,-0.0022608584,-0.018928118,-0.009260318,0.011159702,-0.0037626205,0.010272447,0.002896725,-0.008037877,-0.005652146,0.029443737,0.031441707,-0.00865567,0.024461962,0.0037856235,0.000612042,0.0030100965,0.015195072,0.00054508704,0.0041668145,-0.011961519,0.02468542,-0.050054356,-0.019020129,0.0017564372,0.0004039888,-0.008386208,-0.0036410338,0.0012479085,0.018139446,-0.008366491,-0.002747206,0.0015255866,0.0379351,-0.015300228,0.011370015,0.004725457,-0.02384417,-0.00824819,0.097532384,0.042088773,-0.002972306,0.015707709,-0.0081364615,0.003650892,-0.0249746,-0.00007568372,-0.0049061943,-0.022411417,0.030022098,0.0020357585,-0.029969519,0.008182467,0.02674911,-0.0043804133,0.011133414,-0.019506477,-0.0018008001,-0.04413932,0.009312897,-0.0023840885,-0.0040813754,0.02550038,0.01004899,-0.0009340829,0.0032450547,0.0039137825,-0.02636792,0.0041142367,-0.0017202898,0.008110172,-0.0015461248,0.020571183,0.007045466,-0.0028129285,0.005872317,0.017718822,-0.0114291655,0.018244602,0.025907861,-0.017666243,0.022989776,-0.0069863154,0.005205232,-0.0019371745,0.0006654416,0.026801689,0.00047443522,0.0036607506,0.0069008763,-0.007196628,-0.022056514,-0.0057835914,0.005320247,-0.015641985,-0.013013081,-0.003447152,-0.027813816,-0.0025007462,-0.013788608,-0.016535813,-0.0028441467,0.014537846,-0.0076369694,-0.029049402,-0.016378079,-0.0077026924,-0.011363443,-0.0068154368,-0.021188976,-0.021885635,-0.0336237,-0.023568135,0.03517475,0.007663259,0.03796139,-0.0108048,-0.000643671,-0.004022225,-0.014787592,-0.022687452,-0.0115606105,-0.015839154,0.004147098,0.017797688,-0.011021685,0.022582296,-0.013670307,0.025487235,-0.003723187,0.033465963,0.026013017,-0.027577216,0.014721869,-0.007827565,-0.011777495,0.014248666,-0.012152114,-0.0024941738,0.019151574,-0.000861788,-0.0043672686,-0.032598425,-0.019480187,0.013749174,0.016220344,0.024553975,-0.0049554864,0.009326041,0.038171705,-0.0049061943,0.018862395,0.004377127,-0.0054122587,0.051815722,0.005126365,0.030179832,0.0077158366,0.00020404822,-0.010791656,-0.01742964,0.019729933,0.012697612,-0.03964389,0.019559054,-0.015181927,-0.008938278,-0.028129285,-0.0024415958,0.013959487,0.020636905,-0.009713804,-0.0058328835,-0.021175832,-0.005418831,0.020860363,-0.0063619507,0.01004899,0.0028901526,-0.01336141,0.00039967574,-0.015589408,-0.02593415,-0.0045315754,-0.036200024,-0.018638939,0.022700597,-0.00984525,0.007866999,0.00454472,-0.0023117934,-0.0052578105,-0.009273463,0.026446786,-0.022424562,-0.0022214248,-0.016535813,0.012986791,0.002075192,0.030127253,0.017705677,0.021373,0.009805816,-0.010279019,0.012671323,0.0063159447,-0.0063718087,0.008254762,0.0050639287,0.003995936,0.015694564,0.001901027,0.04361354,-0.008386208,0.011698628,-0.009595504,-0.012901352,-0.030100964,-0.016180912,0.00021770621,0.01896755,0.0012166902,0.0026568372,-0.022582296,-0.0040123668,-0.0017515081,-0.007275495,0.030705612,-0.011738062,-0.002397233,-0.002674911,0.006927165,-0.017140461,0.0047911797,-0.008162751,-0.002523749,-0.011080835,0.023831025,0.024488252,0.007321501,0.015418529,-0.011784067,0.01913843,-0.008570231,0.010417037,-0.003923641,-0.016483236,0.023252666,0.008543942,-0.0031612585,-0.019296164,-0.008497936,-0.01873095,0.017521653,-0.0024153066,-0.012638462,0.01455099,-0.006217361,-0.04745174,-0.011508033,0.00053276407,0.021215266,0.030626746,0.017416498,0.023344679,0.0055141286,-0.018901829,0.003052816,-0.0049883476,0.0024366665,0.0122572705,0.0144195445,0.014511556,-0.0068417257,0.0033682848,0.021596456,-0.024317373,-0.024264796,0.019572198,0.020452883,-0.032624714,-0.013985775,0.0010400607,-0.016483236,0.005599568,-0.00317276,-0.0025927578,-0.004176673,-0.010988824,0.003923641,-0.00006377149,-0.010068707,0.010969107,0.007768415,0.00620093,-0.021110108,-0.038618617,0.014682435,-0.0061154906,-0.011816929,0.013473139,-0.025290068,0.00031238789,-0.0036081723,-0.0033124206,-0.022766318,-0.008563658,-0.022424562,0.021649035,-0.018783528,0.00795901,0.015089916,-0.0028655066,-0.003529305,-0.0073609343,-0.0063323756,0.0088134045,-0.009135446,0.0038184847,0.019559054,0.011810357,-0.029259715,-0.024422528,-0.02367329,-0.02007169,0.0034964439,0.008281051,0.005629143,-0.009707232,-0.014340678,-0.017469075,0.0088134045,0.02607874,-0.010725933,-0.0007270566,0.0029197277,0.033360805,-0.0056652906,-0.010094996,-0.014064643,-0.035674244,-0.0075383857,0.018139446,0.009648082,-0.031178815,0.02660452,-0.010541909,-0.021688467,-0.03102108,-0.002321652,0.00970066,-0.010594488,-0.00440013,-0.017140461,0.0066872775,0.0030955358,0.0028540052,-0.028917957,0.020518605,-0.011836645,0.0037297592,0.030363854,0.01240186,0.010607633,-0.037829947,0.024816865,0.016312357,-0.015996888,0.026551941,0.008471647,0.029811785,-0.0059183226,-0.008405925,-0.000050293216,-0.018270891,-0.013420561,0.016220344,-0.0039104964,-0.0065558325,-0.028839089,0.007597536,0.014892748,0.01733763,-0.017915988,-0.000327997,-0.024461962,0.0014081073,-0.014827025,-0.03125768,0.008195612,0.0429826,-0.0027685657,-0.014879603,-0.019217297,0.00042760785,-0.015379095,-0.03719901,0.010509049,0.009050006,0.018862395,-0.025763271,-0.009930689,0.026735965,-0.005566707,0.0045874394,-0.0047451737,-0.018244602,-0.027550926,-0.006427673,-0.003874349,-0.0053761113,-0.038040258,-0.016338646,-0.002747206,0.009418053,0.02674911,0.01100854,-0.003371571,0.0059183226,-0.025250634,0.002622333,0.030968502,0.013151098,-0.014353822,-0.028471043,-0.01719304,0.0014270026,-0.0057080104,-0.005990618,0.022463994,-0.0008235867,0.016706692,0.008208756,0.015155639,-0.009155163,-0.005517415,0.0048207548,0.0041536703,0.0036673227,0.00859652,0.01846806,0.005500984,-0.011600045,-0.009483775,0.03188862,-0.021149542,0.00874111,0.024185928,0.011422593,0.009602076,0.004048514,0.012270415,0.0064145285,-0.017955422,0.007328073,-0.0065361154,-0.008629382,0.007939294,0.00609906,-0.02480372,-0.017206185,-0.003650892,0.008307341,0.0025221058,-0.017876556,-0.017639954,-0.0012939143,0.02134671,0.021254698,-0.0076369694,-0.003966361,0.009273463,0.02288462,0.021885635,-0.0055831373,0.2403871,-0.006848298,0.0004859367,0.010798228,0.0012281917,-0.004932483,0.035148464,0.0074398015,-0.019164719,0.00589532,0.0112977205,0.0045578643,-0.009523209,0.0021885636,0.0025861855,-0.033939164,-0.025658114,-0.008438786,-0.012697612,-0.032466978,0.012395288,-0.01565513,0.00755153,0.00081824674,0.022661163,0.041089788,0.009122301,-0.004702454,0.0050442116,0.015011049,0.0010441683,-0.014787592,0.022266828,-0.0115803275,-0.00943777,-0.012211264,0.00781442,0.0014705438,0.015011049,0.005592996,0.028313309,-0.0050639287,-0.004176673,-0.0086819595,0.00019347099,0.017810833,-0.0041832454,-0.0008038699,-0.015287084,0.026394209,-0.03020612,-0.01495847,0.015089916,0.00644739,0.0030889637,-0.020715773,-0.010502476,0.0046334453,-0.015891733,-0.0069008763,0.01577343,0.03354483,-0.017981712,0.013538862,-0.012184976,-0.005576565,-0.008576803,0.015037337,0.021136397,-0.024843154,-0.0055897096,-0.03464897,0.0024317373,-0.010923101,-0.02828702,-0.011718345,0.015273939,0.014051498,0.04745174,0.020150559,-0.0028195009,-0.006450676,0.0037429037,-0.038592327,-0.007544958,-0.02773495,0.03719901,-0.010627349,-0.013591439,-0.019743077,0.005008064,0.009575787,-0.01832347,-0.025171768,-0.003726473,-0.037882525,-0.0012758406,0.042930022,0.0002018917,-0.008031305,-0.014643002,0.02120212,0.036121156,-0.0034340073,-0.0014270026,0.0006329911,-0.022437707,0.0030626745,0.009201168,0.015431673,0.018888684,-0.04069545,0.024843154,-0.0021836343,-0.023370966,0.009332613,-0.0075318133,-0.014787592,0.011133414,-0.021714756,-0.03935471,-0.028471043,-0.016299212,-0.0038053403,0.028917957,-0.014182944,0.014721869,-0.0030035242,-0.004692596,-0.031178815,0.012007524,0.0038874936,0.0029657336,0.00018946602,-0.019506477,0.02033458,0.000531121,-0.013670307,-0.02024257,-0.0043409797,-0.011797212,-0.0051690848,-0.0054385476,-0.035937134,0.015720854,-0.03438608,0.008957994,-0.007617253,-0.012014097,0.018205168,-0.018888684,-0.0026634096,0.023108076,-0.010456471,-0.005553562,-0.019427609,-0.01039732,-0.025618682,-0.018783528,-0.022516573,0.002499103,0.020702628,0.03136284,-0.017547943,-0.019335598,-0.0014828668,-0.16772415,0.018507492,0.010417037,-0.012645034,0.0155499745,0.019480187,0.01240186,0.0006358664,-0.0074135126,0.00020291861,0.019125285,-0.01742964,-0.024580263,-0.018638939,-0.0070191766,0.015760286,0.011718345,0.015471107,0.013164243,0.017679388,0.03128397,-0.01954591,0.0155499745,-0.016180912,-0.0060136206,-0.0032877745,0.0010942818,0.038119126,-0.022174815,0.0010901741,-0.01303937,0.0011296077,0.00047772136,0.009825533,0.029759206,-0.0017580803,-0.022227393,-0.018941263,-0.0067201387,0.0044099884,0.0064145285,0.01524765,0.001111534,0.015208216,-0.0039630746,-0.015168783,0.0071111885,0.02802413,0.006066199,-0.0054976977,-0.0033387095,-0.029338581,0.013295688,0.004370555,-0.0015765216,0.016023178,0.0044855694,0.032309245,-0.010653638,0.0045348615,-0.008925133,-0.02288462,-0.003552308,-0.009759811,-0.024435673,-0.013828041,-0.022201104,-0.010141002,-0.035437644,0.021333566,-0.0374619,-0.010141002,0.03798768,-0.008182467,-0.015050482,0.0196905,-0.02686741,0.0024185928,-0.0058295974,0.036541782,-0.015024194,0.024159638,-0.01219812,0.008465075,-0.0055404175,-0.002301935,-0.010877095,-0.005395828,-0.014432689,-0.030258698,-0.0069600265,0.0013136311,-0.0050113504,0.0016348504,0.001848449,0.021741046,-0.002351227,0.03078448,0.010647066,-0.025224345,-0.0013604584,0.020137414,-0.026854267,0.0065131127,0.023068642,-0.003549022,-0.0017055023,0.025552958,0.034727838,-0.008294196,0.0043376936,0.034806706,0.013433705,0.027550926,0.01911214,0.017771399,-0.015747143,0.0017695818,0.0056948657,0.023831025,0.044717677,-0.010417037,-0.012152114,0.00644739,-0.01568142,-0.0250929,-0.1003716,-0.0035358774,-0.00847822,-0.0015518756,-0.011278003,0.005796736,0.0016019891,-0.010298736,-0.002421879,0.013019653,0.0055568484,-0.020584328,0.010594488,0.0022822183,0.03880264,-0.014380111,0.007834137,-0.022595441,0.00214913,0.014708725,-0.012677895,-0.016877571,-0.016824992,-0.03488557,-0.00026165822,-0.0023052213,-0.0111465575,0.009582359,0.021307277,-0.0059676147,-0.027892685,-0.028655067,-0.019624777,0.0003953627,-0.0025549673,-0.0059676147,-0.023476124,-0.0038842075,0.040642872,-0.024882587,0.0013637446,0.0043048323,-0.005172371,-0.02826073,-0.004768177,0.019467043,-0.029154558,0.017009016,0.01954591,-0.013072231,-0.01275019,0.0032697008,0.010969107,-0.007124333,0.035805687,-0.01344685,-0.009240602,0.013985775,-0.026446786,0.008616237,-0.009470631,0.0065098265,0.010173863,0.016286068,0.018270891,0.019309308,0.005244666,0.011856362,0.030626746,-0.008826549,-0.0099044,0.0011838289,0.0013809968,0.012789624,-0.02912827,-0.019532766,-0.01899384,0.00088561245,-0.0008872555,-0.016417513,-0.001398249,-0.015076771,-0.014406401,-0.017981712,0.00027459738,0.00795901,-0.00096119347,0.02230626,-0.011678911,-0.01721933,-0.017994856,0.012861919,0.0050935037,-0.0058920337,-0.002950946,0.017955422,-0.0014812237,0.011941802,0.007985299,0.011494888,-0.01303937,-0.018783528,-0.045269746,0.014879603,0.0039367857,-0.013170815,-0.024908876,-0.009766383,-0.009878111,-0.019519622,-0.009306325,-0.0017432928,0.018717805,0.014682435,0.0063553783,-0.0072294893,0.01731134,0.0053301053,0.0023791592,-0.011922085,0.0024941738,-0.025303213,-0.028181864,0.0032647715,-0.019506477,0.0025138906,-0.007827565,0.04332436,-0.01707474,0.0104696145,-0.03081077,-0.034018032,0.008662242,-0.041378967,0.020321436,0.022595441,-0.022963487,-0.009424625,-0.022135383,0.031441707,-0.00515594,0.0038447739,-0.025263779,-0.016969582,0.023489268,-0.019217297,0.008892272,0.00824819,-0.026065595,0.0018073723,0.010975679,-0.016562102,0.034543812,0.010219869,-0.014222377,0.00096858724,-0.009851823,-0.015195072,0.010042418,-0.016667258,0.006421101,-0.026302196,0.020150559,0.003999222,-0.020229425,0.0007402011,-0.00090040005,-0.007985299,-0.0019651067,0.0015223004,0.0046663065,-0.017626809,0.0017876555,0.012842202,0.009615221,0.0029805212,0.016575247,0.017994856,-0.0019289592,-0.011212281,-0.0025434657,0.025276924,-0.007314929,0.013210248,-0.017442785,0.03488557,0.02288462,0.016391223,0.0039597885,0.020203136,-0.0061779274,0.0041536703,-0.017232474,0.0162072,0.007768415,0.014643002,0.018257746,0.012046958,0.011862935,0.012737046,-0.020189991,0.013151098,-0.010541909,-0.0012339423,0.012763334,-0.021596456,-0.033097915,0.035700534,-0.014524701,-0.045190882,0.011547466,0.024054483,-0.005655432,-0.0013004865,0.026394209,0.003772479,-0.0046400176,0.0034372935,0.012007524,-0.021083819,-0.028523622,0.030705612,-0.00012815912,-0.016404368,0.02021628,-0.012493872,0.027051434,-0.026105028,0.008865982,-0.018244602,0.0014171442,0.00669385,-0.00004192385,0.009115729,-0.029785495,-0.0043541244,0.03075819,-0.009214313,-0.032388113,0.030653035,-0.012230981,0.06503911,0.015523685,-0.01896755,0.0052413796,-0.0073083565,0.01606261,0.012999936,0.0024070912,-0.0042161066,0.004975203,0.008083884,-0.0064013842,-0.014090932,-0.014787592,-0.010436754,0.018192023,-0.007104616,0.0012314778,0.00032245164,-0.013085376,0.027077723,0.017442785,0.013946342,0.0011476814,-0.017390208,-0.010226442,0.01336141,-0.026091885,-0.0028819372,-0.03102108,-0.0045315754,0.024764286,-0.019151574,-0.01815259,0.024869444,0.01414351,-0.01074565,-0.021149542,0.0033419956,0.021819914,0.008346774,-0.01896755,-0.03154686,-0.0032812022,-0.012763334,0.013552006,0.008254762,0.010364459,-0.04768834]},{\"id\":\"5cb7c40b-2bc7-475b-b4f9-da6fcbba9f7d\",\"text\":\"Received a color I didn't order.  Disappointed.  Need to return \",\"vector\":[-0.012909145,-0.0104956115,-0.018290674,0.0034343936,-0.023652634,0.0136592975,-0.012263361,-0.013815851,0.020273685,-0.0069992486,0.0049607907,-0.0039595,-0.010234688,-0.013711482,-0.0077233086,0.011513209,0.01749486,-0.0019618117,0.010215119,-0.004184546,-0.014272465,0.03501581,-0.012191609,0.0076189395,-0.013489698,-0.015681447,0.027762163,-0.02413534,0.012185085,0.004318269,0.006438265,-0.009314937,-0.024174478,-0.025453,-0.019503964,0.015368341,0.0030234405,-0.0074232477,0.008434323,-0.020038854,0.0205607,0.005929466,0.014181143,-0.019034304,-0.013287483,0.024148386,-0.016333755,-0.009301891,-0.020717254,0.014976957,0.028571025,0.009080106,0.00062906806,-0.030084375,0.020756392,-0.0046705143,0.016529446,0.0053945747,0.0076124165,-0.0058316197,0.004148669,-0.0033430706,-0.004765099,-0.0024738724,-0.006063189,-0.01183284,-0.008316908,-0.01864292,-0.030527944,-0.0018166736,-0.015433571,-0.0010950594,0.0060860193,0.008714815,0.015329203,-0.00546959,-0.027527334,0.007645032,0.0073775863,-0.018929934,0.015772771,-0.010117274,-0.018590735,0.00994115,0.010110751,0.034780983,0.020743346,0.018629873,0.0061773425,-0.0249442,-0.0015076434,0.033632923,-0.0040410385,0.0006323296,0.0011929055,0.009947673,0.02009104,0.05855103,-0.0042726076,-0.03767722,0.019386549,0.022804635,-0.016607722,-0.013261391,-0.041277952,0.0090540135,-0.013437513,-0.0050618984,0.020638976,-0.027344687,-0.021656575,0.03256314,0.017468767,-0.025805244,-0.0063371575,0.003096825,0.014572526,-0.00642848,-0.02922333,-0.025492137,-0.012987422,0.027422965,0.025218168,-0.018669011,0.043000042,-0.00093442906,-0.024396263,-0.011565394,-0.008219061,0.023691772,0.011232718,0.030893235,0.019164765,0.019464826,-0.019856209,0.016229386,-0.041043125,0.010997888,0.0023140572,-0.0101890275,0.00453353,0.045870192,0.004602022,0.005952297,-0.019177811,0.036920547,0.020195408,-0.01140884,-0.010332535,-0.017547045,0.00889746,-0.016725138,0.023352573,-0.014624711,0.008160354,0.008506076,0.01442902,-0.00008138543,-0.006082758,-0.0110631175,-0.006206696,0.0081864465,0.0072993096,-0.016881691,0.013085268,0.019634426,0.027475148,0.0016992583,-0.019021258,-0.0064969724,-0.02922333,0.011839363,0.0047455295,0.01311136,0.0070775254,0.031597726,0.018525504,-0.012902622,-0.012465577,-0.0012711822,-0.021069499,0.0037442392,0.0076972162,0.016568584,0.0040051616,-0.026692381,0.02241325,-0.008362569,0.042086814,-0.0041617155,-0.005123867,-0.0009262752,-0.0060370965,-0.022465436,-0.647923,-0.034467876,-0.0009319829,0.014676896,0.0081864465,0.037390206,-0.002023781,0.01732526,-0.011167487,0.010952226,-0.006849218,0.0320152,-0.018277628,-0.013841944,0.010971795,-0.015864093,0.008825706,0.0093540745,0.0022047958,0.0116306245,-0.020038854,0.009275798,-0.012341639,0.004582453,0.023600448,0.018669011,0.004911868,0.009667182,-0.025361676,0.017025199,-0.014168097,0.004918391,-0.012035054,-0.00048596834,0.06627434,-0.0049770987,0.009432352,0.018460274,0.003920362,0.00045335302,-0.028101362,0.015368341,0.0066078645,-0.034467876,-0.009197521,0.0037083623,-0.008923553,0.0008390292,0.0051075597,-0.0145072965,0.023783093,0.015629264,0.004748791,0.011865455,0.023483032,0.0079124775,0.04620939,0.040834386,0.015277018,0.0066991877,-0.039086204,-0.0055217743,-0.014676896,0.000022486736,-0.0034409168,0.022008821,-0.021278238,-0.01489868,0.009399736,-0.002782087,0.011565394,0.013228775,-0.0249442,0.027318595,0.01864292,0.011826317,-0.005606574,-0.0024510415,0.0040345155,-0.0025423644,0.014285512,-0.012328592,-0.00664048,-0.008356046,0.043574072,0.008734384,-0.010632596,-0.0039562387,0.0015427049,0.014076774,0.01506828,0.013841944,-0.0058283582,-0.002664672,-0.002517903,0.021760944,-0.0017628582,0.011506686,0.016803415,-0.024526723,-0.01604674,-0.0168556,-0.012446008,0.015211787,0.031232433,0.00047985296,-0.0015475971,-0.006474142,0.016594676,-0.0009866136,0.030658405,0.004194331,-0.014128959,-0.0119372085,-0.009686751,-0.023417803,0.015590125,0.009027922,-0.0057011587,0.00095644436,0.0028473178,0.00019161502,0.011487117,0.01722089,0.008623492,0.015263972,0.0021020577,-0.0021705497,0.0038127315,-0.0035355012,0.018290674,-0.00084555225,0.031754278,-0.00096867513,0.0035811625,0.0025863952,0.004500915,-0.011500163,0.012987422,-0.038355622,-0.0076189395,-0.0009246444,-0.01172847,0.0032550094,0.014546434,-0.030867143,-0.013985451,-0.00019090157,-0.010469519,0.026431458,-0.011252287,-0.011852409,-0.043156598,0.018890796,0.0063012806,0.008010323,-0.0017547044,-0.019608332,-0.01070435,-0.017873198,0.0066502644,0.036085594,-0.032041293,-0.0064969724,-0.005159744,-0.025505183,-0.0039399313,0.018669011,-0.017533999,-0.02036501,-0.008329954,-0.004259561,-0.01911258,-0.003675747,-0.023078604,0.0030397482,-0.020469377,-0.03394603,-0.015877139,0.010332535,0.02251762,0.0330328,-0.026444504,0.012582992,0.009412782,0.031702094,0.01679037,0.043469705,-0.02737078,0.03879919,-0.02592266,-0.02113473,-0.00051042985,0.0034343936,-0.013998497,-0.00077379856,0.009784597,0.010580411,0.018186305,0.017716644,0.033319816,-0.010417335,0.015603171,0.034963626,0.000055853743,-0.013998497,0.010143366,-0.008369092,0.013437513,0.04537444,-0.014976957,-0.012432962,0.0067187566,-0.04354798,0.0008129369,-0.0049510063,-0.010462996,0.025687829,0.002349934,0.00029802253,-0.048192404,-0.006262142,0.00056302204,-0.009458444,-0.029171146,-0.0033854707,0.005909897,-0.0012206285,0.015603171,-0.010149889,-0.01466385,0.023548264,0.0047096526,0.0051369136,0.007990754,-0.001123598,0.022321928,-0.007977708,0.026848935,0.005691374,0.022021867,0.031101974,0.0027315335,-0.0059653427,0.027475148,-0.013463606,0.013176591,0.022008821,-0.007247125,0.017507905,-0.010319488,-0.002462457,-0.043965455,-0.007344971,0.009804166,-0.024644138,0.014363789,0.0049738367,0.027266411,0.021800082,0.0052380213,-0.0077102627,0.04226946,-0.025439953,0.009549767,0.0080886,0.014624711,-0.028205732,-0.031023696,0.015407479,0.014768219,-0.029614715,0.018760335,-0.024057062,0.020351961,-0.0021672882,0.025439953,-0.0065948186,-0.004148669,0.0076906933,-0.011160964,-0.002698918,0.013594067,0.02241325,0.010443427,-0.008649584,0.007814632,0.017690552,-0.0058316197,0.025165984,0.02922333,0.011774132,0.024931153,0.007971185,-0.0031555325,-0.009797643,0.024148386,-0.0022308882,0.031128066,0.0119372085,0.01044995,-0.013085268,-0.044748224,-0.0050553754,0.01800366,0.031806465,-0.0028277487,-0.011102256,-0.013307052,-0.029171146,-0.022569804,0.0042367307,0.0027837178,0.0017416583,-0.004324792,0.012119855,-0.032980617,-0.03454615,-0.0006465988,0.017781874,0.0026271644,-0.0031441173,-0.013241822,-0.0030854098,0.0711275,0.01979098,-0.016712092,-0.0034898396,0.0072993096,-0.00615125,-0.021226052,-0.015316156,0.016620768,-0.014363789,-0.0053130365,-0.000009389646,0.002183596,0.01800366,0.014520342,-0.019999716,0.009608475,0.008956168,-0.008910507,-0.01800366,-0.005306513,-0.009308414,-0.021865314,0.0054369746,-0.015616217,0.021826174,0.02204796,-0.0001375959,0.022674173,-0.00598165,-0.015277018,-0.005593528,-0.025231214,0.019334365,-0.018173259,0.031467266,0.0051010367,-0.012596038,0.005035806,0.018616827,0.021226052,-0.0061838655,0.007168848,-0.013972404,0.0012149208,0.0060958043,-0.0041095307,0.019543102,-0.0027233795,-0.022204513,0.015864093,-0.012759115,-0.0119176395,0.0027674101,0.015851047,0.015237879,-0.014585573,-0.02066507,0.010032474,0.01904735,0.0007371063,-0.014702988,-0.009438875,-0.021865314,-0.016555538,-0.017651413,-0.00891703,-0.0121981315,0.0026972874,-0.015603171,-0.0010803826,0.00753414,-0.020573746,0.010097704,0.0020498731,0.017390491,0.009569336,-0.022909004,0.027788255,0.03060622,0.015851047,-0.019282179,0.0205607,0.013274437,0.021513067,0.015629264,0.031545542,-0.014546434,-0.022282789,0.004269346,0.013476652,0.00046721453,0.0069014025,0.008936599,0.0015003049,0.00981069,-0.0009295367,0.018786427,-0.017233938,-0.0009694905,0.008701769,0.00444873,-0.012178562,-0.0016650123,0.02113473,0.012439485,0.008734384,-0.004941222,-0.006927495,0.009334506,0.012843914,-0.017377445,0.001551674,0.0042628227,0.015994554,-0.026040075,-0.01449425,0.017781874,0.00587402,-0.035746396,-0.0076972162,-0.034572244,0.034493968,-0.013352714,-0.0153944325,0.017520951,0.0006188758,-0.02956253,-0.009190998,-0.009412782,0.009680228,0.011037026,-0.02373091,0.010900041,-0.04391327,0.0011293056,0.0052967286,0.0323544,0.0011227825,-0.023770047,-0.019190857,-0.013085268,0.008375615,-0.018029751,-0.0139332665,-0.030240929,-0.014937818,-0.007514571,-0.028127456,0.026196629,0.0049281754,-0.0042367307,-0.0286493,-0.0017318737,0.008134262,-0.037051007,-0.007814632,-0.005358698,0.044409025,0.033319816,0.010678257,0.0010942441,-0.006284973,0.009986812,-0.0061479886,-0.008936599,-0.0064708805,-0.0073058326,-0.010436904,0.011702378,0.009582383,0.0035485472,0.033345908,0.008134262,-0.004602022,0.0014456742,-0.00061969116,-0.014702988,-0.0039627617,-0.0031066097,0.00466073,-0.006653526,-0.0033316554,0.013157021,-0.005224975,0.010756534,0.011337087,0.027683888,-0.020012762,0.0027233795,0.03094542,0.0012418284,0.013881082,0.0028603638,0.015277018,-0.0081929695,-0.043156598,-0.017299168,-0.013881082,0.013117883,0.025061615,0.01772969,0.010149889,-0.0084799845,-0.0014171358,0.014572526,0.0021656575,-0.008153831,-0.0019340888,-0.03454615,-0.02437017,-0.019817071,0.007468909,-0.011206625,-0.015016095,-0.007468909,-0.03316326,0.016294615,-0.0051303906,-0.029197238,-0.01789929,-0.006444788,-0.0061121117,-0.017129568,0.016959969,0.002245565,-0.0286493,-0.001321736,0.0079124775,-0.015838,-0.009478013,0.023169925,0.024696324,0.00039403388,-0.011441455,0.0019813809,-0.0054010977,-0.008903983,-0.009947673,-0.0116371475,0.0021232576,0.016085878,-0.005991435,0.01796452,-0.029588621,0.02770998,-0.027162042,-0.012426439,0.013026561,-0.009282321,-0.037703313,-0.023704818,-0.021460883,0.022021867,0.029980006,-0.0011488748,-0.003194671,0.007344971,-0.0026124874,-0.0049510063,0.017586183,0.03919057,0.018669011,0.00080274465,0.01134361,0.0062490962,-0.011050072,-0.021865314,-0.004301961,0.024122294,-0.023352573,-0.00096867513,-0.016764276,0.014037635,0.023000326,0.0031473788,-0.025426907,0.0031930401,-0.0165164,-0.0017383968,0.023339527,0.00065312185,0.004191069,-0.0015957047,-0.024226662,0.0020678116,-0.03718147,-0.011402317,0.029301606,0.0027657794,-0.0004492761,-0.02119996,0.0052217133,0.02450063,0.01319616,-0.0023319956,0.013424467,-0.012035054,0.00898226,0.01285696,-0.0059392503,0.023874417,-0.030527944,0.0122111775,0.011761086,-0.03151945,0.020743346,-0.010443427,-0.029197238,-0.022126235,0.0054304516,-0.020417193,0.0110696405,-0.012328592,0.028597116,0.02258285,-0.00095155207,-0.02437017,-0.013567975,-0.00049452984,0.0070710024,0.02292205,0.00010926134,-0.013724528,-0.02724032,0.012850437,-0.007631986,0.008858322,-0.0048270677,-0.015629264,0.008440846,0.011043549,0.0059555583,-0.034937534,-0.020534609,0.0057207276,-0.0026239029,0.013776713,-0.0035876855,0.002579872,0.019021258,0.01449425,0.010671734,0.006862264,-0.018564641,0.009223614,-0.018408088,0.00721451,-0.006653526,-0.02319602,-0.009699797,-0.0014065359,-0.014115912,-0.02403097,-0.026574966,-0.013130929,-0.021760944,-0.029980006,-0.0022096883,0.0006262142,0.028805854,0.0063012806,-0.010345581,0.019190857,-0.0067187566,0.0015125356,-0.008603922,-0.004354146,0.016085878,-0.0019031041,-0.004318269,-0.018147167,-0.020482423,-0.03352855,0.010339058,0.021213006,0.0168556,0.013059176,-0.015733633,0.021865314,-0.001151321,0.0042856536,0.030423574,0.0020694423,-0.0038257774,-0.018760335,-0.02349608,-0.033554647,0.005058637,-0.039868973,-0.0124721,0.031206341,0.009425828,-0.0030788865,-0.023743955,-0.011278379,-0.017977567,-0.000976829,0.019738793,-0.005035806,-0.018525504,0.015590125,0.01611197,-0.0034702704,0.0008390292,-0.013339668,0.021239098,0.011552348,0.0119241625,0.000036488393,0.00091893674,-0.012002439,0.00096785976,-0.0017595968,-0.011885024,-0.007540663,-0.004624853,-0.051245198,0.015890187,-0.003815993,-0.023443894,0.012902622,-0.0016438123,-0.011532779,0.0059718657,-0.011617579,-0.0038420851,-0.060586225,0.005544605,0.0037051009,0.013972404,-0.04490478,-0.0021656575,0.0010860903,-0.0051988824,0.019490918,0.2346216,0.02632709,0.00013637282,0.029953914,-0.020299777,0.008173401,0.024409309,-0.0023107957,-0.012556899,0.0018003659,0.010065089,0.016568584,-0.01513351,-0.0048922985,0.008551738,0.0051206057,-0.03512018,-0.010423858,-0.012348162,0.0017693813,-0.0051793135,-0.0031506403,-0.015603171,-0.021121684,0.030449666,-0.013124406,-0.0052347593,0.0040084235,0.0019259349,0.017077385,-0.030214837,-0.028831946,0.011206625,-0.015172648,0.0077167857,0.009758505,0.0025162722,0.010932657,0.0039236234,0.02130433,-0.010410812,-0.006849218,0.023535218,-0.0136592975,-0.015564033,0.026588012,-0.0074036787,-0.006356727,-0.0050749443,-0.0038029468,-0.013541883,-0.029014593,0.0136462515,0.032302216,-0.019438732,0.012165516,0.015929325,-0.018094981,-0.029092869,-0.020704208,-0.016555538,0.0072079864,0.0057566045,0.025792198,-0.019895347,0.011943731,-0.012093762,-0.021017315,-0.00570442,-0.011871978,0.010789149,0.014859541,0.030293113,0.012061147,-0.00032737633,-0.034807075,-0.0036268241,0.0066926647,0.020691162,0.012739546,0.007175371,-0.006216481,-0.007638509,-0.016385939,-0.00502276,-0.04333924,0.017847106,0.011904594,0.011969824,0.008127739,0.005117344,0.0024102724,-0.017416583,-0.0005401913,0.018395042,0.013411421,-0.00753414,0.01742963,-0.01857769,0.011239241,-0.01296133,0.008055985,-0.012093762,0.0016682738,-0.020234548,-0.00043622995,0.00030128405,0.015824955,-0.005159744,0.000868383,-0.008975737,-0.01140884,0.008688723,-0.015694493,-0.0064415266,0.0020025808,-0.012550376,-0.017273076,0.008460415,-0.0042791306,0.0058087893,-0.019399595,0.011721947,0.015016095,0.0020433501,-0.0059033735,0.0099085355,-0.00810817,-0.003877962,-0.029614715,0.012980899,0.0073971553,0.03198911,-0.025218168,-0.009145337,0.003026702,0.0055674356,0.016085878,0.003118025,0.005851189,-0.0101955505,0.0055413437,0.036294334,-0.009647612,-0.005984912,-0.009954197,0.015277018,-0.017860152,-0.017860152,-0.005251067,-0.008362569,-0.0116436705,-0.014337696,-0.0011431671,0.028153548,-0.0009311675,-0.04054737,-0.030684497,-0.015798863,0.013789759,-0.016946923,0.0010950594,0.032484863,0.010221642,-0.025609553,-0.0054304516,-0.16542493,0.025296446,0.003137594,0.004060608,0.009667182,-0.010228165,-0.0048662066,0.017364398,-0.019243041,0.01375062,0.03279797,0.018708149,-0.02083467,-0.018186305,0.00079540623,-0.0027331642,-0.035172366,0.012974376,0.025426907,0.009823736,0.021695713,-0.0064121727,0.015342249,-0.003437655,-0.0027429487,-0.011310995,-0.029458161,0.019634426,-0.014768219,-0.022674173,0.005710943,-0.025387768,0.015772771,0.025622599,0.029875636,0.003829039,0.023104696,0.025309492,0.014872587,0.023300387,-0.0056881127,-0.007260171,0.010319488,0.02622272,-0.019203903,0.03452006,0.009282321,0.03785987,-0.0056881127,-0.026522782,0.018929934,-0.029197238,-0.01287653,-0.011200102,0.025192076,0.046679053,0.011480594,0.028388377,-0.021069499,-0.025831336,-0.011852409,-0.0070644794,0.0019520271,0.006356727,0.005280421,0.009856351,-0.011160964,-0.01004552,-0.033345908,0.0119372085,-0.0068948795,0.0017220891,-0.006591557,0.018381996,0.017416583,0.009008353,-0.010913087,-0.0025015953,-0.0043965457,-0.020469377,-0.02817964,0.01930827,0.014702988,0.012008962,0.0029598407,0.019595286,0.0047096526,-0.01059998,-0.0033528553,-0.013841944,0.01140884,-0.032119572,0.031806465,-0.035485473,0.013437513,0.006311065,-0.007175371,-0.0049086064,-0.004393284,-0.01853855,0.010710873,0.007990754,-0.015564033,0.022021867,0.031676,0.029980006,-0.020169316,0.012413392,0.0139332665,-0.024331031,-0.025009431,-0.0029402715,0.02275245,0.019934487,-0.01408982,0.01215247,0.007273217,-0.03003219,0.014442066,-0.017638367,0.031780373,-0.011787178,-0.017951474,0.024892015,0.0033430706,0.006562203,-0.092575334,-0.016842553,-0.017716644,-0.017990613,-0.0032175018,-0.017586183,0.020430239,0.014702988,0.013711482,0.040834386,-0.003607255,-0.027292503,-0.0010730441,-0.011056595,0.007964662,-0.018903842,0.011741516,-0.01641203,-0.02211319,0.014820403,-0.020886853,-0.0071362327,-0.015237879,-0.0029728867,0.0022700266,-0.03352855,-0.027683888,0.0035550704,0.0033218707,0.016973015,0.024291893,0.013411421,0.009021399,-0.02119996,-0.018916888,-0.0029321176,-0.023887463,0.00636325,0.03767722,-0.016059786,-0.00065067573,-0.00655568,-0.020299777,-0.0122177005,-0.002309165,-0.0038910082,0.0049836216,0.04422638,0.017455721,-0.015785817,-0.01432465,0.00056750665,-0.029171146,0.0051434366,0.02990173,-0.012054624,0.008851799,0.015146556,-0.011395794,-0.002470611,-0.0051434366,0.04226946,-0.026105305,0.017390491,-0.008382138,-0.007977708,0.0009368752,-0.0041747615,0.015681447,-0.01611197,0.014037635,0.015120464,-0.024278848,-0.007175371,-0.0065067573,0.007168848,-0.024578908,0.0023385186,0.019295225,-0.012596038,-0.019151717,-0.007827678,-0.0041617155,-0.036346518,0.021434791,0.01992144,-0.008956168,0.013450559,-0.009999858,-0.003926885,-0.019908395,0.010541272,0.017168706,-0.01328096,-0.013959358,0.016346801,-0.005335867,0.005551128,0.017025199,-0.03997334,-0.015146556,0.0037996853,-0.049262185,0.029432068,0.00011180941,-0.025883522,0.018969072,-0.008525645,0.005805528,-0.015316156,-0.03225003,-0.0049444833,-0.006751372,0.023678726,-0.021747898,-0.03543329,-0.013972404,-0.011950254,0.014363789,0.011969824,0.01553794,-0.005498944,0.0058544506,-0.029510345,0.020573746,-0.0031506403,-0.0024167956,0.0031000865,-0.011076164,0.027892625,-0.0006588295,-0.011291425,0.02066507,0.008506076,-0.0048107603,0.030240929,0.0010078135,-0.033919938,-0.031936925,0.035172366,-0.018603781,-0.08088601,-0.025844382,-0.022152329,0.014885634,0.0007346602,-0.014011543,0.010065089,-0.007971185,-0.0070644794,0.0033006708,0.013352714,0.010254258,0.02234802,0.002385811,-0.025870474,-0.015629264,-0.03475489,0.025883522,-0.005984912,0.0013592436,-0.0038583928,0.040599555,-0.002609226,0.016307661,-0.007358017,0.03879919,0.014350742,-0.030580128,-0.0051858365,0.0029696252,-0.009980289,0.0016429969,-0.017012153,0.024735462,-0.031780373,0.028910223,0.0027641486,0.0015785816,-0.019738793,0.0037735929,-0.0003628455,-0.009862874,-0.006206696,-0.024317985,0.020782484,0.013137452,0.017416583,-0.00045702222,-0.00010763057,-0.0010640749,0.011213148,-0.03188474,-0.012035054,-0.018655965,0.010763057,-0.0044161147,0.012556899,0.01117401,0.03256314,0.0054141437,0.054115344,0.017768828,0.011037026,0.011532779,-0.021173868,-0.028388377,0.016868645,-0.020599838,-0.012250315,-0.020638976,-0.0038583928,0.0030120253,-0.008584353,-0.0051499596,0.029953914,-0.034598336,0.005078206,-0.0026124874,-0.0062523577,-0.022530666,0.016398985,0.0126417,0.01951701,0.013020038,-0.0035485472,0.023404757,0.021239098,0.012654746,0.00082476,-0.0005524221,0.026405366,0.009797643,-0.018121075,-0.009034445,-0.014950865,-0.003607255,0.005084729,-0.003780116,0.026953304,-0.0013421206,0.04031254,-0.0021884881,0.00033063785,-0.0005312221,0.0036985776,-0.0025961797,0.034259137,0.0028147025,0.003460486,-0.026875027,-0.011193579,0.0008781676,0.014585573,-0.02045633,-0.035381105,-0.014272465,-0.0019715964,0.015172648,-0.030397482,-0.010606503,0.0207303,-0.015407479,0.02298728,0.007860293,-0.014689942,-0.01375062,-0.0078081083,-0.003222394,-0.026235767,-0.030475758,0.018355904,-0.005012975,-0.023978787,-0.0005781066,-0.014624711,-0.02760561,-0.01979098,0.013828897,-0.0010102596,0.0073254015,0.0045628836,0.04433075,-0.028962407,-0.016738184,-0.02251762,-0.014246373,-0.03718147,0.0070970943,-0.02713595]},{\"id\":\"69a6a4eb-2463-420b-99a0-36f763513cc1\",\"text\":\"Give more time to post and earn money\",\"vector\":[-0.022064997,-0.014575164,-0.013753109,-0.020172967,-0.020172967,-0.0025738147,-0.03483947,-0.013387751,-0.014509921,-0.017171813,-0.00889907,0.019768463,-0.0011083061,-0.011378284,-0.0007690454,-0.026162222,0.03275171,0.0153711215,-0.007750803,0.0050921733,-0.01326379,0.009642834,-0.021543058,0.0041396334,0.0070396606,-0.0013162665,0.009173089,0.0054379585,0.0051052216,-0.0072288634,0.022652179,-0.015932206,-0.021895366,-0.014796988,-0.026775502,-0.017615462,0.004214662,0.019481396,0.006713448,-0.014079321,0.025770769,0.010027764,-0.00086854014,-0.0076529393,-0.03872792,0.0048605627,0.001808847,-0.032099284,-0.0065927496,0.0144185815,-0.011795836,-0.0036405288,-0.043425374,0.0026292708,-0.0052030855,0.016127935,0.01149572,0.027975963,-0.022795713,-0.0077442788,-0.005718501,0.0043027396,-0.009871183,0.015801722,-0.008579383,-0.010575801,-0.026162222,0.001476926,-0.0018186333,0.009668931,0.024126658,0.010060386,0.006260013,0.0030435603,0.023917882,-0.017915577,0.008801207,0.025966495,-0.0010039182,0.0005904442,0.024583356,-0.00899041,-0.012428687,0.0015894693,0.027193055,-0.015044909,0.0011906747,0.0023601456,-0.009075225,-0.025809914,0.028054254,-0.014979667,0.019951142,0.023395943,0.005910966,0.0119785145,-0.017863384,0.022404257,-0.010425744,-0.009695028,0.006204557,0.010902014,-0.018541904,-0.0065242453,-0.012820141,0.016049642,-0.018215692,-0.014796988,0.022534743,-0.006651468,0.00047586212,0.020981973,0.008859925,-0.008814255,0.00229001,-0.005588016,-0.0031724141,0.009708077,0.008305364,-0.03337804,0.032647323,-0.008579383,0.017824238,0.006041451,-0.00968198,-0.014679551,0.0043190503,-0.013244217,0.012226435,0.007979152,0.0075746486,0.012800569,0.0045571853,0.0042766426,-0.015175394,0.020603565,-0.011489196,-0.014314194,-0.033038776,0.0062176054,0.007639891,0.029072037,-0.0070657576,0.0016237216,-0.009734173,0.00894474,0.0017745947,-0.0020388267,0.016949989,-0.0026227466,0.027062569,-0.014575164,-0.0030190945,-0.022195483,-0.015253685,0.0103148315,-0.015031861,0.004684408,-0.009140467,-0.016219273,0.01798082,0.014888328,0.016715117,0.002343835,0.021164652,0.031525154,0.027506217,0.017498026,0.0017811189,0.0138835935,-0.0293852,-0.00053213374,-0.018515809,0.013518236,0.0045147776,0.046452627,-0.015749527,-0.0024368055,0.008357558,-0.03421314,0.0065079345,-0.0041689924,0.011378284,0.032047093,0.00094112236,-0.0057870056,0.04269466,-0.009766795,0.010745431,-0.0073789214,0.002472689,0.013505188,0.009192661,0.0067721666,-0.6597317,-0.0054966765,0.03468289,-0.003141424,-0.018215692,-0.0021203796,-0.020707954,-0.012311251,-0.019990288,0.0021986705,-0.0006352984,-0.005154154,0.0050921733,0.004204876,0.030011527,-0.0076268427,0.034500208,-0.02998543,-0.015188443,0.013844448,-0.016441097,0.004951902,0.006974418,0.022678277,0.0010716072,-0.007900861,-0.0022149812,-0.006472051,-0.00932967,0.03233416,-0.0066384193,0.025601137,0.01824179,0.008585907,0.058144074,0.0216083,-0.00015484888,0.012643987,-0.008520664,0.056369476,-0.030977115,-0.01080415,0.004237497,-0.021190748,0.003490471,-0.018267887,0.008311888,-0.00093296706,-0.0014573532,-0.012533075,0.009355768,0.004491943,-0.0014157612,0.0053629293,0.009890756,0.0051443675,0.0036959848,0.0024302814,0.0052324445,0.014196757,0.007274533,0.013270315,-0.047052857,-0.02920252,-0.033899978,-0.01961188,0.0036764122,0.02654063,0.022260724,-0.00068137585,-0.008370606,0.0032099285,-0.0056826174,0.022025852,0.015044909,0.0042733806,0.012383018,-0.0014858969,-0.015240637,0.028393514,-0.007274533,-0.03181222,-0.028550096,-0.009199185,0.0397457,0.011913272,0.0045604473,-0.01744583,-0.009029555,0.021569155,0.0011955679,0.036326997,0.009238331,0.008494567,0.010627995,0.0069287485,0.0013537809,0.0168456,0.004703981,0.003881926,-0.013596527,-0.010634519,-0.0121611925,-0.008461946,0.019572735,-0.006445954,0.01832008,-0.0094797285,0.005294425,-0.019938093,0.017328395,-0.011313041,0.008801207,0.0011596846,-0.035413604,-0.03042908,0.002976687,-0.01590611,-0.0013154509,-0.0061132177,-0.014040176,0.03233416,0.024400678,-0.004785534,-0.016623776,0.019298717,0.0050921733,-0.0037122956,-0.00484099,-0.0042635943,0.009558019,-0.023839591,0.015514655,0.0033730348,-0.0012502085,-0.0036568395,0.023408992,-0.0040939637,0.006733021,-0.02618832,0.0012444997,0.010621471,0.0048931837,0.012226435,-0.013609575,-0.02211719,0.010686713,0.004547399,-0.019063843,-0.0007971812,-0.013211597,-0.020929778,-0.008168355,-0.0027287656,-0.0015503238,-0.018033013,-0.0065829633,-0.014157612,-0.04538265,-0.01581477,0.0040287212,0.009009982,0.009929901,-0.019990288,-0.02755841,-0.00760727,-0.01745888,-0.0058685583,-0.0076203183,0.0044886805,-0.002795639,0.0063187312,-0.015018812,0.0031609968,0.01547551,0.010360502,-0.019911995,-0.013922739,-0.015788672,0.017706802,0.0198859,0.012285153,-0.0053172596,-0.01744583,0.011221701,0.0028135807,-0.016597679,0.038258173,-0.014810037,0.02350033,0.0043516713,0.003803635,-0.007737755,0.0001682032,0.016232321,-0.006442692,0.01832008,-0.0021986705,0.013700915,-0.013596527,-0.009120895,0.005937063,0.010027764,-0.020668808,-0.01608879,-0.0233307,0.0025183586,-0.029489588,0.010562753,0.00980594,0.011352186,-0.019572735,-0.0070396606,-0.013935788,-0.007163621,0.019259572,-0.034604598,0.0015266733,-0.014340291,0.019729318,-0.021125507,-0.03656187,0.0048344657,-0.01590611,0.016180128,0.029333007,-0.009238331,0.018985553,0.015031861,-0.04572191,-0.012650511,0.022756567,-0.014209806,0.012780996,0.02844571,-0.0047529126,0.023382895,-0.00076741434,0.026057836,-0.0041494197,0.0021317971,0.010817198,0.028471805,0.0009394913,0.0042114,0.0133486055,0.022717422,0.0081748795,-0.013218121,-0.0042635943,-0.013687866,0.024739938,0.011156459,0.005519511,0.022169385,-0.012800569,0.009512349,-0.013192024,0.0038688774,0.02082539,0.034160946,0.0119785145,0.0024319123,-0.02687989,0.019220427,0.008370606,-0.0011670244,-0.017498026,0.02454421,-0.030350788,-0.0018659341,-0.031446863,0.0048344657,-0.032203674,0.02039479,-0.003539403,-0.015671236,0.000041464635,0.0061164796,0.022952294,-0.010445316,-0.025170539,0.0056663067,0.0032082975,-0.024818229,-0.011900223,-0.013505188,0.013492139,0.0052030855,0.004309264,-0.0042472836,-0.018711535,0.003784062,-0.0168456,0.0018251576,-0.01197199,0.038075496,0.004283167,0.010986829,-0.00968198,0.02531407,0.038284272,-0.007033136,-0.049897425,-0.0066482057,0.016871698,-0.008181403,-0.037892815,-0.0038264696,0.009714601,0.008266219,-0.014849182,0.007861716,0.011991562,0.009284001,-0.0023976602,-0.007874764,-0.020107724,0.03181222,0.015827818,-0.016649874,0.015984401,-0.031733926,0.011084693,0.11044242,0.004661573,-0.0020257782,0.023148023,-0.018307032,0.008285792,-0.012474356,-0.025809914,0.0078095216,-0.012291678,0.011078169,0.003751441,0.007372397,0.006093645,0.019298717,0.0002481252,0.018855069,-0.017354492,0.008442373,-0.025170539,0.016062692,0.0053400947,-0.0018316818,0.009662407,0.022952294,0.024687743,-0.00388845,0.026044786,0.0016408477,0.0031512105,0.0025672906,0.0063709253,-0.008775109,0.013909691,0.011143411,0.01590611,0.008703343,0.009538447,0.005643472,-0.0014834502,0.015279782,0.030063722,0.007020088,-0.010190871,0.015684286,-0.018072158,-0.007483309,0.02826303,0.0023992911,-0.016062692,0.026057836,0.0007816861,-0.021960609,0.014340291,0.0075746486,-0.00067322055,-0.012891908,-0.03768404,-0.034448013,-0.018541904,-0.03528312,-0.027975963,0.0044038654,-0.010106056,-0.0070657576,-0.009107846,-0.016715117,-0.025653332,-0.010654092,-0.009740698,-0.010582326,-0.0010675295,-0.0082335975,-0.007026612,0.0035296166,0.00035720243,0.025274925,-0.009858134,-0.0010691606,-0.016362807,-0.014757843,-0.035074342,-0.030846631,-0.0013855866,-0.010412695,0.00794653,-0.0034513257,0.0064100707,-0.010575801,0.009988619,0.0067199725,0.017132668,0.05741336,-0.041442007,0.0006014538,-0.009107846,0.024217999,0.0129310535,-0.0050204066,0.023121925,-0.0080574425,-0.007294106,-0.022508645,-0.0015364598,-0.025092246,0.032047093,0.029959334,0.016949989,0.011241274,0.0081748795,0.033743396,-0.0014312563,0.0009623261,0.013609575,-0.014627358,0.03170783,0.004286429,0.0015992556,0.02826303,0.0013594896,-0.024922617,-0.029593976,0.015227588,-0.0053857644,-0.0025444557,-0.026905987,0.0029391723,-0.018802874,0.00650141,0.025757719,-0.008181403,0.011195605,-0.028524,-0.040032767,-0.01987285,-0.0063415663,0.014796988,0.0037905865,-0.004925805,-0.004814893,0.00011631506,-0.016636824,-0.0015005764,-0.034004364,0.056578252,-0.036353093,-0.0060186163,-0.012715754,0.019977238,0.010184347,0.004609379,0.000418775,-0.03914547,0.00527159,-0.0025607662,-0.029881043,-0.015658189,-0.018828971,-0.0041950895,0.025901252,0.021634396,-0.021673542,0.00030419292,0.008103113,0.015984401,-0.011228226,0.016271466,-0.024009222,-0.0140010305,0.03225587,0.011123838,0.019716268,0.002955483,-0.02083844,-0.0002597465,0.017093522,-0.025183586,0.01486223,-0.032621227,-0.029333007,0.0135834785,0.005141105,-0.02687989,0.0021921464,-0.010047337,-0.0145360185,0.013922739,0.019637978,0.012715754,0.011391332,0.007202767,-0.0025216208,0.018907262,0.0033404136,0.0049910475,-0.012657035,0.006556866,-0.024648597,0.013870545,0.009094798,0.019990288,0.015410267,-0.0051313187,0.0085337125,-0.02056442,-0.012200339,-0.015044909,-0.01357043,-0.020199062,-0.011834981,-0.007724706,-0.021151602,-0.020212112,-0.012950626,0.013831399,0.011202129,-0.018528856,0.030716145,0.0012934316,-0.020538324,-0.012011135,-0.020590518,0.015945256,0.0062404405,0.012963675,0.030220304,0.025144441,0.017837286,0.04553923,0.0097798435,-0.0052618035,0.01171102,0.026488435,-0.013198548,-0.0055978023,0.022299869,0.040841773,-0.02091673,-0.0056238994,0.015801722,-0.005731549,0.000010117677,-0.017693752,-0.010425744,-0.011078169,-0.0063937604,-0.011821932,0.014783939,-0.0060838587,-0.0140010305,-0.003973265,0.012330824,0.011195605,0.0020535062,-0.0004032799,0.0047529126,-0.03345633,0.0012591793,-0.0018137401,0.008801207,-0.018085208,0.025718573,-0.005992519,0.0050073583,-0.0034708984,-0.012898433,-0.015801722,-0.039197665,-0.0237613,0.016897796,-0.030324692,-0.025914302,-0.0064394297,-0.0025884942,-0.0084228,-0.024139706,0.00024343589,-0.009505825,-0.018633245,-0.010047337,0.011084693,0.012787521,-0.026384048,0.011097741,-0.0060023055,-0.011378284,0.009668931,-0.00025668828,0.013674818,-0.021151602,-0.007104903,-0.009003459,-0.0031593656,-0.00020255742,0.0044593215,0.013068063,0.012304726,0.008181403,-0.016010497,0.035126537,-0.0120372325,-0.005079125,0.0026031737,-0.0045441366,-0.0113260895,-0.029411297,0.010719335,-0.024857374,-0.02185622,0.0008473363,-0.0012714122,0.007313679,-0.026423194,-0.00042489148,0.012291678,0.04037203,-0.0065405555,-0.014731745,-0.027845478,0.00889907,-0.00036046453,-0.00968198,0.028106447,0.003325734,-0.008612003,-0.0293852,0.028210836,0.002232923,0.0013782468,-0.010047337,-0.0071505727,0.030977115,-0.020081626,-0.014992715,-0.014653455,-0.024922617,-0.014979667,0.031733926,-0.016610729,-0.010393122,-0.0138835935,0.018998602,0.010243065,0.017967772,0.012983248,-0.005770695,-0.018881164,-0.000064274005,0.018985553,-0.022273773,-0.022247676,0.028341321,0.023578621,-0.03940644,-0.005193299,-0.006432906,-0.02661892,-0.025705526,-0.0007608901,0.016936941,-0.003435015,-0.012004611,0.011776263,0.0501323,-0.01607574,0.018698486,-0.04311221,0.0050986977,-0.023526428,0.0069352724,-0.008735964,-0.0048605627,-0.017706802,0.009929901,0.036979422,0.035622377,-0.010504034,0.012500454,0.004449535,-0.008905594,0.00051908527,0.005170464,0.02445287,-0.0021122245,0.02039479,-0.04415609,-0.013779205,0.011932844,-0.009238331,-0.011443526,0.0014606154,0.0046159034,0.0013798778,0.004152682,0.00600883,-0.0032409187,-0.0055292975,-0.016976086,0.007913909,0.00034863935,0.01764156,0.010680189,0.03076834,-0.03217758,-0.001235529,0.007137524,-0.019755414,-0.026749404,-0.0046224277,-0.025875157,0.0019099728,0.0116262045,0.010295259,0.012350396,-0.0019572736,-0.006064286,-0.024792131,0.005659783,0.0068830787,0.011012926,-0.021164652,-0.018346177,0.014079321,-0.0020127296,-0.0038460426,-0.019311765,-0.01744583,-0.017054377,-0.014131515,-0.0063122073,0.019755414,-0.03170783,0.008337985,0.0036861985,0.008670722,0.008214025,0.24092732,-0.025040053,0.0017044591,0.031159794,0.013192024,0.028471805,0.035909444,0.013974933,-0.017850334,0.0093035735,0.0068047876,-0.004576758,-0.007215815,-0.010001668,0.0008970837,-0.02687989,-0.020159917,-0.018424468,-0.022430355,-0.0128136175,0.014314194,-0.0066384193,-0.016010497,-0.007248436,0.024752986,-0.012689657,-0.007542027,-0.010099531,0.032803904,0.021269038,-0.017328395,-0.004100488,-0.013557381,-0.013152878,-0.042120527,-0.00075762795,0.0005598618,-0.022887051,0.015110152,0.032047093,0.018763728,0.006064286,0.00937534,0.0032099285,-0.0028152117,0.012239484,-0.0092448555,0.0024416987,-0.019220427,0.027662799,-0.01608879,0.0016074108,-0.0022785927,-0.0144185815,-0.0053694537,-0.010308308,0.0039765276,0.007665988,-0.005059552,0.004397341,0.0016563428,0.023304604,0.00030888224,0.011437002,-0.042303205,0.003483947,-0.009825513,0.018280935,0.039432537,0.007692085,0.0028918716,-0.009434058,-0.0020910206,0.0022084569,-0.02153001,-0.026318805,0.016897796,0.020003336,0.0268016,0.005715239,-0.028236933,0.00017646044,-0.023565574,-0.028080352,0.013987982,-0.029567879,0.02489652,-0.0040678666,-0.020864535,-0.006207819,0.009277477,0.004632214,-0.024596404,-0.00977332,-0.015775625,-0.0011140149,0.007698609,0.03147296,0.0020437199,-0.007848667,-0.0033110543,0.027793285,0.017654607,-0.005956636,-0.025836011,-0.012291678,-0.027036471,0.016441097,0.023108875,-0.0048507764,0.0042211865,-0.026566725,0.023226313,-0.008155307,-0.012441736,0.00037086254,0.01097378,-0.031760026,-0.011006402,-0.004710505,-0.0019850016,-0.025183586,0.00899041,0.0017207697,-0.0017109832,-0.01235692,-0.00633178,-0.012565696,0.008996934,-0.025392363,0.008938216,-0.030924922,-0.012115523,-0.002820105,-0.0141184665,0.02860229,0.011430478,0.013107209,-0.0018691962,0.017171813,-0.010902014,0.014770891,-0.0035720242,-0.015449412,0.01919433,-0.029620074,0.013792254,0.0008832197,-0.016310614,0.035857253,-0.013727012,-0.006488362,0.013374702,-0.022521693,0.0156059945,0.0077312305,-0.030794436,-0.024518114,0.005392289,0.0028266292,-0.01893336,-0.0034741606,0.00473334,-0.010438792,-0.033482425,-0.0014100525,-0.16618557,0.01097378,0.0072549605,-0.0016082264,0.008090064,-0.0041624685,0.018293982,-0.00868377,-0.024492016,0.021908415,0.02549675,0.019324815,-0.0041461578,-0.0065046726,-0.003169152,-0.0036927226,-0.0250531,0.019911995,0.010902014,-0.0020681857,0.028811067,-0.027193055,0.0034578498,-0.011678399,0.0035459271,-0.000985161,-0.0044299625,0.018946407,-0.0091274185,-0.028210836,-0.034604598,0.00458002,0.03742307,0.01650634,-0.018776778,0.016232321,-0.027767187,-0.016323661,0.006237178,0.016702067,0.0081748795,0.035491895,-0.0012714122,0.027610606,0.008520664,-0.0058685583,0.014509921,0.0035981212,0.0040548183,-0.014040176,0.008318412,-0.0119785145,0.012735327,-0.0031642588,0.01140438,0.014836133,-0.015592946,-0.004475632,-0.004977999,-0.0039830515,0.0000841016,-0.004974737,0.009407962,-0.005907704,-0.016467195,-0.028811067,-0.015044909,-0.002878823,-0.010595374,0.025561992,-0.01745888,0.0012338979,0.02064271,-0.004785534,0.013146354,-0.0032278702,-0.022104142,0.018019965,-0.016193176,0.03155125,-0.0067786905,0.033064876,-0.007724706,0.021477815,-0.015632091,-0.0054379585,0.018789826,0.027010376,-0.0038754016,-0.03854524,0.018346177,-0.018646292,-0.01936396,-0.014940522,0.006596012,0.0045963307,0.019142136,0.009264428,0.014718697,0.0040646046,0.0007119583,0.0045278263,-0.027949866,0.016480243,0.026645018,-0.0045865444,0.0123960655,0.005323784,0.027349636,-0.005082387,-0.015710382,0.019403106,0.007894336,0.032882195,0.007248436,0.021960609,-0.002632533,0.004074391,0.0168456,-0.008540236,0.026723308,-0.022599986,-0.023030585,0.019520542,-0.0026227466,-0.018293982,-0.09013897,-0.033169262,0.008240121,0.008657673,0.0110912165,0.042668562,0.018463613,0.010660617,-0.0025591352,0.030977115,-0.00049298827,-0.016741212,-0.0023503592,-0.008122685,0.023474233,-0.019598832,0.009982095,-0.008429324,-0.011906748,0.030977115,0.0014092369,-0.014157612,-0.0007282689,-0.016754262,-0.024531161,-0.0055423463,-0.031133698,0.007078806,0.00825317,-0.00070176413,-0.0037938484,-0.003963479,-0.003784062,-0.009114371,0.0038134214,-0.01573648,-0.02964617,-0.009923377,0.028315224,-0.026344901,0.002611329,-0.015253685,0.022234628,-0.0019915258,0.016754262,-0.014457727,-0.008631576,0.016362807,0.02153001,-0.02886326,-0.022834858,0.01137176,-0.025183586,-0.018450566,0.044730224,-0.0140010305,0.01123475,0.01283319,-0.0032539673,-0.0011123838,0.013250742,-0.007711658,-0.012630939,0.01841142,0.008429324,-0.0044169137,0.004818155,-0.010334404,0.015919158,0.008605479,-0.0128136175,0.019220427,0.0006410071,-0.0027760663,-0.023382895,-0.008638101,0.00008726178,-0.017524123,0.0073332516,0.017054377,-0.024348482,-0.016401952,-0.0026667851,-0.031525154,0.012487405,-0.009486252,0.020133821,0.022352064,0.0028135807,-0.022860955,0.0031740454,0.015971351,0.007052709,0.007692085,-0.0073789214,0.028576193,-0.021738784,-0.015175394,0.021764882,-0.004775747,-0.022260724,-0.017902529,-0.037475266,0.019990288,0.0065503423,0.011919796,0.0062958966,-0.016467195,-0.00490297,0.0097798435,-0.03429143,-0.023043634,0.0009859765,0.0020665547,-0.016793407,-0.023461185,-0.001940963,0.013426896,0.010216968,0.00468767,0.013492139,-0.01347909,0.010980304,0.014248951,0.017498026,-0.010941159,0.029019842,0.021360379,0.014157612,0.013413848,-0.0042505455,-0.025483701,-0.0052454933,-0.023735203,-0.007900861,0.014836133,0.015005764,-0.01954664,-0.008546761,0.02342204,-0.0029652694,0.002024147,-0.015084054,-0.012024184,0.005956636,-0.016976086,-0.009910328,-0.012780996,-0.00012467425,-0.007953055,0.0035818105,-0.00032702778,0.023878736,0.006687351,-0.003885188,-0.017563269,0.0070592333,-0.021112457,-0.010784578,-0.0041070124,0.015423316,-0.027793285,0.023539476,0.013492139,-0.000027677072,-0.037710138,0.014783939,0.027532315,-0.003754703,-0.017484976,0.019089941,-0.021490863,0.0103148315,0.016415,0.019781511,0.020734051,0.01589306,0.01970322,0.019951142,-0.007861716,-0.0336912,0.0040091486,-0.017315347,0.0044886805,-0.0056304233,0.018072158,0.0211777,0.027923768,0.0026504747,0.03290829,0.0057087145,0.010719335,-0.018724583,-0.013518236,-0.00036148395,-0.009577592,0.009518874,0.020668808,-0.009766795,-0.010093007,-0.011482672,0.004814893,0.027897673,-0.022051949,-0.0058196266,0.012069853,-0.011123838,0.021008069,0.0024531162,-0.026162222,0.0106149465,0.020929778,0.012376493,0.014614309,0.0075159306,0.009225283,-0.028210836,0.016062692,0.015880013,-0.040267643,-0.018346177,0.035700668,0.012585269,-0.004286429,-0.002792377,-0.041363712,0.01240259,-0.020107724,0.004746388,-0.054229524,0.018476661,0.0061980328,-0.011658826,0.0023470973,-0.018033013,-0.013289887,0.010960732,-0.005323784,-0.03309097,0.039615218,0.009447107,0.06451174,0.014314194,-0.010725859,0.0043223123,0.006752594,0.011391332,0.008468471,0.015945256,0.01633671,-0.010771529,-0.0014720329,-0.011463098,0.002528145,-0.012343871,-0.008409752,-0.006338304,-0.004312526,0.019520542,-0.002948959,-0.001117277,0.039641313,0.004443011,0.014131515,0.0070853303,-0.020420887,-0.016741212,-0.007470261,-0.002767911,-0.0034741606,-0.046504818,0.0058489856,0.007763852,0.0041070124,0.018307032,-0.0027564936,0.014823085,0.012435211,0.0076333666,-0.009571068,0.035022147,-0.015919158,0.006462265,-0.00607081,-0.023174118,-0.008220549,0.019820657,0.007235388,0.00687003,-0.023748253]},{\"id\":\"5d7312d8-b59c-4f7b-a418-d70c4b5fda0f\",\"text\":\"Idk yet, just discovering this. Perhaps more on advertising and leaning about what you offer?\",\"vector\":[0.0028870828,-0.008076747,0.0034136171,-0.023779385,-0.018278953,0.02947304,-0.030786961,-0.014684994,-0.006344175,-0.025312293,0.02144782,0.023766505,-0.0026568247,-0.016514178,-0.009055747,-0.0035842978,0.028777435,0.0014451515,0.013474126,-0.02144782,-0.010543568,-0.0058965404,-0.017673519,0.00327353,0.008173359,-0.0045955013,0.020610519,0.002643943,0.00002085708,-0.0017921489,0.019193545,0.009944575,-0.0028355564,-0.010659503,0.0042670215,-0.0117802,0.017892506,0.008212003,0.011000864,-0.0002614557,-0.008791674,0.013152087,-0.015084323,-0.023676332,-0.010343904,0.009648299,0.012765639,-0.016527059,-0.00450533,0.024732621,-0.012295462,-0.007838437,-0.018562349,0.0054134815,-0.0028774214,0.0036648076,0.0013936253,0.044673298,0.0013412939,-0.0038193867,0.0034780249,0.012868692,-0.009203885,-0.0010353565,-0.012173087,-0.013705995,-0.027953016,0.021512229,-0.010517805,0.01939965,0.008669299,0.009525924,0.01629519,-0.013744639,0.023611926,-0.014981271,-0.008379464,-0.004083459,0.011026627,0.0053683957,0.008276411,-0.020777978,-0.021550873,0.039623722,0.012121561,0.02864862,0.011400193,0.024681095,-0.0031930201,0.009764233,0.015071441,0.0066790963,0.013126324,0.012804285,-0.024513636,0.00035464583,-0.0027131815,-0.0062733265,-0.01597315,-0.019850506,-0.008199122,0.022980727,-0.0035424328,-0.02169257,-0.03313141,0.012102239,-0.005712978,-0.0019080831,0.032641906,-0.007136392,-0.022516992,0.03127646,0.0013211664,0.0007588052,0.010736791,-0.017647756,-0.0096032135,0.002986915,0.0046921135,-0.01744165,0.026046542,0.017969796,0.008572687,-0.028133357,0.012591738,0.015586704,-0.025247885,-0.020584755,0.012855811,-0.004614824,-0.0012366311,0.002391142,0.012417837,0.018459296,-0.019489821,0.029576093,0.010253733,0.025325174,-0.016681638,-0.008798115,0.016024677,0.02332853,-0.0020014746,0.013538534,-0.014375837,0.026896726,0.025711622,0.0017583348,0.0181759,-0.010987982,-0.007071984,-0.0016359598,0.009261851,0.01309412,0.01063374,0.024681095,0.001137604,0.018394887,-0.011239173,0.011271377,0.0039546434,0.009403549,0.002267157,0.00556484,0.01907761,0.019412532,0.03725351,-0.019245071,-0.0056936555,0.0153806,-0.027695384,0.012894455,-0.01456906,-0.0048241494,0.012888014,-0.005426363,0.0062990896,-0.011155443,-0.004894998,-0.014105324,0.023392938,0.0110395085,0.02144782,0.00025239834,0.00021475999,-0.026226884,-0.015805691,-0.008115391,-0.015560941,-0.024114307,0.003922439,0.033595145,-0.019657282,0.014517534,-0.6521168,-0.0005913447,0.010987982,-0.01210868,-0.0144016,0.008366582,-0.01449177,-0.0032558178,-0.003854811,0.027772672,-0.0026503839,-0.0038097254,0.010099154,-0.0068787606,-0.0008936592,-0.02070069,0.027875725,-0.015496533,-0.0050205933,-0.027051305,-0.011232733,0.016733164,0.011232733,-0.025518399,0.034806013,0.025235003,0.0004689698,0.029782198,-0.012701232,0.018794216,-0.0051590702,0.03405888,0.017815217,-0.0024523297,0.052428007,-0.0022108,0.0110459495,0.02921541,-0.020932557,0.01563823,-0.03627451,-0.021576636,0.006157392,-0.015496533,-0.015084323,-0.006840116,0.019940676,0.022735978,0.021074254,-0.0061670537,0.015277547,0.008141154,-0.011889692,-0.018974558,0.035991117,-0.00728453,0.0008191876,-0.0007406905,0.014697876,0.014903981,-0.0034587025,0.009783556,-0.028468277,-0.033363275,-0.04469906,0.02970491,-0.013654469,0.00096450787,0.023444464,-0.013268021,-0.0037420972,0.028107595,-0.0074841944,-0.00033854388,-0.0025827556,0.018510822,0.027566569,0.0071685957,0.01802132,0.022787504,0.011838166,0.002816234,-0.0019096934,-0.012243936,0.017415889,-0.036377564,0.0028371667,-0.021628162,0.0040866793,-0.009757793,0.00801878,0.0114710415,0.00022844666,-0.026767911,0.002561823,0.025569923,-0.014530416,-0.0010401871,-0.0011054,0.014916862,-0.017390124,0.020340005,0.014620586,0.004788725,0.009055747,-0.011123239,0.0073231747,-0.013899218,0.020275597,-0.0035971794,0.00826997,-0.011413074,-0.018059967,0.009461516,0.019927794,-0.0353728,0.015625348,0.004392617,0.009551687,-0.016797572,0.008746589,0.001587654,0.025415346,-0.0042058337,0.0074004643,0.008527602,-0.010807641,-0.0047919457,-0.019708809,-0.0077611483,-0.007348938,-0.034161933,0.0019998644,-0.011632062,-0.010292377,0.024088543,0.015805691,-0.0068529975,-0.0014016762,-0.025325174,-0.020198308,-0.014414481,0.002816234,0.0046277056,-0.035475854,-0.019605756,0.023856675,0.026407227,-0.015251784,-0.009281174,-0.016913507,-0.01898744,-0.034728725,0.030812725,-0.0039997287,-0.0016319344,-0.012437159,-0.030915778,-0.024526516,-0.023714978,-0.009854404,0.016810454,-0.0038032846,-0.00031338455,-0.00901066,-0.025080424,-0.016552823,0.01881998,-0.01113612,-0.0103116995,-0.020584755,-0.01113612,0.0073231747,0.038773537,0.000974169,-0.008501839,-0.012417837,0.0035553144,-0.003838709,-0.009867285,-0.008727266,0.011232733,-0.009171681,0.0039321003,0.03380125,-0.008643536,0.02250411,0.045471955,-0.022001728,0.0322297,-0.0013227767,0.039263036,0.0016391802,0.008649977,-0.023148188,0.0004689698,0.0004649443,-0.0019370667,0.0033717519,0.003526331,0.031456802,0.031018829,0.016346717,-0.0060028136,0.012366311,-0.007838437,0.015779927,-0.0013066747,0.028365226,0.0072780894,0.015341954,-0.027386226,0.018871505,-0.023792267,0.012527331,0.03176596,-0.044235326,0.0011263326,-0.021293242,0.016965033,-0.0013300225,0.014002271,-0.00924897,-0.01955423,-0.017815217,0.015432126,-0.0057419618,0.02528653,-0.005680774,-0.030220171,0.0034232782,0.020082373,0.019760335,0.015921624,-0.00662757,0.0026471633,-0.0058578956,0.0067628263,0.022967847,-0.0037968438,0.0068272343,0.041014932,0.020971201,0.010962219,0.032435805,0.01366735,0.02421736,0.0023235139,-0.020584755,0.00630231,-0.028468277,0.013396837,0.017570468,0.00212868,0.01547077,-0.025441108,0.00070607127,0.008360142,0.009480839,0.021641044,0.007432668,-0.0078642005,0.0009677282,-0.011516127,0.024526516,0.0045536365,-0.0018307937,-0.024178714,0.0057419618,-0.0006988254,0.0005579332,-0.020906795,0.026123831,-0.0010450177,-0.005204156,0.012701232,0.018150138,-0.016063323,-0.01883286,0.034986354,-0.00327353,-0.018214546,0.038284037,-0.008643536,0.0011247224,-0.01047272,0.021190189,0.008199122,-0.027798437,0.011013745,0.007155714,0.0027228426,0.00777403,0.0071492735,0.0026230104,0.0025408904,0.02070069,0.0019789317,0.0022639367,-0.01898744,0.0176864,0.016874861,-0.022516992,-0.01726131,0.021409176,0.008527602,0.015445007,-0.028597094,-0.018600993,-0.022401057,0.002072323,0.010537127,-0.02522212,0.016462652,0.013371074,-0.0058804383,-0.0023605484,0.0013356581,0.015161612,0.023019372,-0.003822607,-0.01678469,-0.011013745,0.0045922813,0.113460906,-0.002465211,-0.00818624,0.018446414,0.0026197901,-0.004518212,-0.0129202185,-0.014762283,-0.00094599056,0.010247292,-0.018278953,-0.012372752,0.00908151,0.0017712164,-0.003941762,-0.004157528,-0.009641858,-0.003738877,0.008418108,-0.003291242,0.024874318,-0.0010289158,-0.004331429,0.033904303,0.020327123,0.03470296,0.025956372,0.021718334,0.0009870506,-0.008901168,-0.00425414,-0.0010417973,-0.02578891,0.011226292,-0.012675469,0.0054778894,-0.028494041,0.029447278,0.014994152,0.0072780894,0.038902353,0.016874861,-0.0029321683,-0.030271698,0.010498483,-0.025634332,-0.01432431,0.02864862,-0.0036873505,0.009197444,0.037923355,0.009075069,-0.020288479,0.013268021,0.013023271,-0.0009274733,0.016913507,0.018665401,-0.000597383,-0.025028897,-0.021679688,-0.01456906,-0.0019869828,-0.01260462,0.00014270369,-0.046605535,-0.026329936,-0.017609112,-0.0073618195,0.0033266665,-0.003069035,-0.02496449,-0.037459616,-0.008115391,0.009815759,0.007104188,0.025634332,-0.004019051,0.038284037,0.019142019,0.02088103,-0.035398565,-0.011232733,-0.023933964,-0.002086815,0.0015852387,-0.022066137,0.0035971794,0.0051558497,0.030142883,-0.003780742,-0.008353701,0.020765098,-0.019257953,0.031714436,-0.0011738334,-0.014826692,-0.0021641045,0.008682181,-0.015084323,0.0071879183,0.0139249815,-0.0016971474,-0.033595145,0.0024845335,0.026870962,0.0057387413,0.0038193867,-0.018369125,0.0007229783,0.0191549,-0.02234953,0.011252055,0.004019051,0.012649706,0.014453126,-0.010678825,0.02545399,-0.024152951,0.003461923,0.0049626264,-0.017621992,0.0072523262,0.0114839235,-0.0082957335,0.008914049,0.011413074,-0.009667621,0.003577857,-0.0037420972,-0.019026084,0.019837623,-0.020430176,-0.014105324,-0.030426277,0.008714384,0.0004395837,-0.019850506,-0.015122968,-0.028159121,-0.005915863,-0.00016413943,-0.014684994,-0.012862251,0.02430753,-0.046038743,-0.0003999326,0.004492449,-0.010711028,0.0153806,-0.03297683,0.015457889,-0.0039900676,-0.003313785,0.012694791,-0.016501296,0.004514992,-0.006553501,0.022529872,0.034239225,0.014272784,-0.007831997,0.02184715,-0.0042702416,0.00785776,-0.009442193,0.009764233,0.0006976177,0.00087675214,0.010794759,0.0026841979,0.0045955013,0.026317056,0.015612467,0.0317402,-0.013036152,-0.0054521263,-0.016153494,-0.03632604,-0.016617231,-0.016771808,-0.010189325,-0.006769267,0.026098069,-0.006737063,-0.0060607805,0.0110459495,0.004228377,0.004811268,-0.007290971,0.0042348173,-0.0120507125,0.016217902,0.016166376,-0.0052943267,-0.011522568,-0.028880488,-0.015135849,-0.0074906354,0.02152511,0.019335242,0.005677554,0.025518399,0.01881998,-0.015779927,0.0069624907,0.0026664857,-0.026239766,0.011239173,-0.0041961726,-0.009860844,-0.008289292,-0.01686198,-0.021898676,0.014285665,0.010537127,-0.03184325,0.009120154,0.010434075,-0.017132493,-0.0041865115,-0.02094544,0.0235604,0.015161612,0.034909066,0.03617146,-0.011657825,-0.010434075,0.015419244,0.0020578315,0.0015957049,0.029189646,-0.0002644748,-0.009583891,-0.027798437,0.010872048,-0.00043515567,-0.023199715,-0.013886336,-0.005993152,0.015213138,-0.00096289767,-0.011239173,-0.0116127385,-0.0061251884,0.025093306,0.013937863,-0.012617501,-0.014015152,-0.00090090506,-0.0071428325,0.022130543,-0.0024265666,0.03003983,0.023470227,-0.022323767,-0.027875725,-0.00083327683,-0.00900422,0.019863388,0.0017486736,0.012830048,-0.018923031,0.033028357,-0.0072780894,0.011529009,0.002317073,0.011258496,0.003152765,0.019902032,-0.006009254,-0.0029579315,-0.01473652,-0.0229292,-0.004466686,-0.0019370667,-0.0022639367,-0.00335565,-0.009699825,-0.020327123,0.021486465,0.00006616902,-0.036970116,-0.0008517941,-0.017866744,-0.002709961,-0.017338598,-0.017763691,0.007889964,-0.007973694,-0.031611383,-0.0098866075,0.0038998965,0.014620586,0.008888286,-0.0028677604,0.0072780894,0.014684994,-0.004115663,-0.0108978115,-0.0039900676,0.013680232,-0.032873776,-0.009925253,-0.006553501,-0.04086035,0.0047114356,-0.014826692,-0.0142212575,-0.015019915,0.010884929,-0.002888693,-0.008798115,-0.0024780927,0.023109544,0.022942083,0.017647756,0.008083188,-0.0268452,-0.000017108341,0.0014773555,-0.032873776,0.035166696,-0.0095967725,-0.0023959728,0.0033942948,0.014118205,-0.005178393,-0.021705452,-0.022954965,-0.055133138,0.025235003,-0.016965033,-0.010794759,0.0004967457,0.0075679244,-0.0076001287,0.02423024,-0.011419515,0.0016029509,-0.008714384,0.0268452,0.02112578,0.0066082473,-0.006237902,-0.032873776,-0.0307612,-0.016346717,-0.04549772,-0.019464059,-0.024655333,0.036557905,0.01979898,-0.027875725,-0.025325174,-0.015007034,-0.025492635,-0.006988254,0.025660096,0.013383956,-0.0048338105,0.009274733,-0.017879624,-0.006518076,-0.00483059,-0.008823878,-0.01939965,-0.015174494,0.0027308937,-0.036789775,-0.017956914,-0.0072330036,-0.029060831,0.0032606483,0.019721689,-0.0025956372,-0.006943168,0.017725045,-0.008791674,0.006988254,0.010511364,0.009513042,0.01701656,0.0065309578,0.044647533,-0.028365226,0.019721689,0.0019193545,-0.016398244,-0.015741283,0.020507466,0.0065696025,0.00074431347,0.030271698,0.0216024,-0.00368413,-0.013448363,0.010859167,0.007007576,-0.011741554,-0.018729808,0.02560857,0.00039490074,-0.024333293,-0.009261851,0.0033717519,-0.020069493,-0.006472991,0.0114710415,-0.029524567,-0.009062187,-0.005597044,0.0038097254,0.006424685,-0.004566518,-0.016192138,-0.011245614,-0.017802335,0.008559806,0.00085581955,-0.023998372,-0.016707402,-0.012623942,-0.0097449105,-0.027721146,-0.012269699,0.01325514,-0.0016069764,-0.0000024278747,0.018665401,-0.0037710806,-0.027566569,0.01997932,-0.0032558178,0.0014145578,-0.006009254,0.23310496,-0.0016069764,0.022967847,0.0096032135,-0.015110086,0.020765098,0.024011254,0.0148009285,0.024449227,-0.0003351222,0.010292377,-0.0073231747,-0.020984083,-0.00036309936,-0.007258767,-0.0153677175,-0.017621992,-0.044132274,-0.0103245815,-0.010910693,0.0018839302,0.02135765,0.022401057,-0.013821929,0.0048788963,0.0065438394,0.013963626,-0.014388718,0.026085187,0.0050624586,-0.026587568,-0.028854726,0.01112968,0.0032155628,0.0061090863,0.013003949,0.009339141,-0.004215495,0.023869555,0.031869013,0.016333835,-0.015200257,-0.0016013406,-0.022130543,-0.003494127,0.0072330036,0.0006432736,-0.018240308,-0.020314243,-0.007889964,-0.0012970135,0.00031539728,0.037047405,0.009287614,-0.0026085188,0.0004363633,-0.0038354886,-0.002072323,-0.021293242,0.0056550107,-0.010511364,0.018098611,-0.011316462,0.020520346,0.008405227,0.012984626,0.00425414,-0.01055645,0.013783284,-0.0012696402,0.012140883,0.0051300866,-0.011393752,-0.008334379,-0.010620858,0.0024990253,0.023122424,0.020726452,0.018510822,0.020327123,-0.004154308,0.023792267,-0.02218207,-0.025080424,-0.00818624,-0.010665943,0.016217902,-0.014543297,0.025119068,0.016849099,-0.008360142,-0.0016327394,-0.029369988,-0.01611485,0.016398244,-0.00409312,0.0103245815,0.018768454,-0.004157528,0.009712706,0.00073022424,0.035347037,0.03766572,0.023521753,-0.035089407,0.015432126,-0.019103374,0.02225936,0.00908151,-0.02970491,0.009590331,-0.037279274,0.0107561145,-0.00940999,-0.013474126,0.020236952,0.009860844,-0.00047299528,0.005246021,-0.026793674,-0.014234139,-0.020752216,0.009145917,0.017196901,-0.011387311,-0.0056356885,-0.014427363,0.0037839622,0.014118205,-0.024784148,0.008901168,-0.00024696393,-0.00007200598,0.0133581925,-0.012134442,0.007522839,0.018433532,0.016011797,-0.03601688,0.0037614196,-0.010401871,0.0020513907,0.029189646,-0.0011681977,0.012623942,-0.023792267,-0.0026149596,-0.0066404515,0.016192138,0.014710757,-0.010060509,0.0035295512,-0.00047782587,-0.0116127385,0.019296598,0.0042219358,0.004894998,-0.0235604,0.003241326,-0.006704859,-0.019026084,0.011181206,0.032306988,0.005632468,-0.02094544,0.005877218,-0.16241089,0.023264123,0.02193732,-0.00409312,0.016887743,0.0004572959,0.0011754436,0.022761742,-0.025260767,0.0029740334,0.02504178,-0.021331886,-0.0063280733,-0.021331886,0.014929744,-0.020662045,0.0030593737,0.0042348173,0.0020980863,0.000908151,0.034806013,0.010788318,-0.0070591024,-0.01842065,0.0057258597,0.0051204255,0.008649977,-0.006691978,-0.020829504,-0.0117802,-0.0069624907,-0.01597315,-0.0065696025,0.017377242,0.009519483,0.0064472277,0.008959135,0.007503517,-0.018910151,0.014259902,0.026304174,0.04230309,-0.009783556,0.0130619155,-0.001776047,0.018266072,0.015483651,-0.002585976,-0.009635417,-0.019927794,0.025685858,-0.018549467,-0.0074519906,0.010775437,0.013873455,0.0155094145,0.008089628,0.005935185,0.0006348201,-0.014749402,-0.016346717,-0.0070397803,-0.0014580331,-0.009732029,-0.027643858,-0.031482566,-0.01669452,0.0046921135,-0.012945982,0.014362955,-0.0010087882,-0.024513636,0.014994152,-0.0097384695,-0.015831454,0.016617231,-0.009158799,0.00053820823,-0.00966118,0.013171409,0.007522839,0.008199122,-0.037201986,0.032925304,-0.012456482,0.00908151,0.012392074,0.017995559,-0.027772672,-0.010923575,0.013029712,-0.009931694,-0.022735978,-0.018201664,0.0038032846,0.04361701,0.011084595,0.0038773536,-0.002193088,-0.012591738,-0.0037292156,-0.0010297208,-0.015702639,0.03143104,0.045600772,-0.016424006,-0.0071235104,0.02651028,0.030709673,-0.018111493,-0.01596027,0.008798115,0.025028897,0.02079086,-0.027025541,0.05508161,0.006163833,-0.0117802,0.012205292,0.0047661825,0.05170664,-0.008862522,-0.014659231,0.016333835,-0.0023219036,-0.039237276,-0.09929117,-0.03060662,0.012398515,-0.0031221714,0.0070204576,0.01939965,-0.0029015746,-0.01653994,-0.025801793,0.027927252,-0.021486465,-0.01996644,-0.0049046595,-0.0068143527,-0.0046470277,-0.024822792,0.001243877,-0.008933372,-0.042586483,-0.0045826198,-0.02398549,-0.034857538,-0.018807098,-0.022568518,-0.026149595,-0.00078336074,-0.035578907,0.00679503,0.016179256,-0.02471974,-0.0071814773,-0.04495669,0.0035553144,-0.008727266,-0.006244343,-0.006672655,-0.04266377,-0.011084595,0.017905388,-0.029859489,0.027695384,0.010614417,-0.014015152,-0.04748148,-0.016849099,0.0062411227,-0.030503567,0.032332752,0.005780606,-0.019670162,-0.012379193,0.0027308937,-0.0021576637,-0.023586161,0.013396837,-0.015290428,-0.028622856,0.010736791,-0.027540805,0.0058128103,-0.00007266013,0.0017535043,-0.031379513,-0.023766505,0.0094550755,-0.0015369328,-0.01973457,-0.0058482345,0.012301903,-0.0023943626,0.0024330074,0.010981542,-0.00801878,0.017673519,-0.029241173,0.0065406193,-0.018948795,-0.02955033,0.008057425,-0.014272784,-0.02005661,-0.0049883896,0.0014612535,-0.043771587,0.013158528,-0.0010466279,-0.006514856,0.022516992,-0.00077047915,-0.022555636,-0.00466313,0.034136172,0.009158799,0.0009886608,-0.017042322,0.007999457,-0.0030980185,-0.01973457,0.014697876,-0.0041768504,-0.011851048,-0.017390124,-0.038696248,0.016681638,0.007651655,-0.017158257,0.008076747,-0.002463601,0.0029885252,-0.022826148,-0.0013879896,0.018948795,-0.008392345,0.008643536,0.0014515923,-0.007883524,-0.0066340105,-0.0216024,0.022079017,0.0027759792,0.0015723571,0.0136415865,0.007838437,-0.026407227,0.019657282,-0.00400939,0.01366735,0.037846062,-0.036454853,-0.01194766,-0.0129202185,0.0020497805,0.015728401,-0.019850506,-0.0016987575,0.039391853,0.002521568,-0.0098866075,-0.036068406,0.04428685,-0.0019660501,0.009583891,-0.018523702,-0.025582805,0.019515585,-0.010408312,-0.024848556,0.007104188,-0.020249834,-0.0025038559,0.032203935,-0.025067544,0.02611095,0.012095798,-0.023225477,-0.043256324,-0.02669062,-0.005355514,0.0090235425,-0.02054611,0.010672384,-0.021666808,0.029807962,0.0005333777,0.011747995,-0.020507466,0.02603366,0.010614417,-0.0065696025,-0.001259979,0.019026084,-0.0064536687,-0.017093848,0.0129202185,0.0002431397,-0.00080912386,0.022323767,0.016230782,-0.003289632,-0.0061445106,-0.03135375,0.03289954,0.0032670891,-0.006981813,0.02201461,0.0024990253,0.0117802,0.0124436,-0.010691706,0.00998966,0.00084937876,-0.01449177,0.004894998,0.0009379396,-0.0007229783,-0.016578585,0.0052395803,-0.018884387,-0.0042026136,-0.0016399854,-0.02374074,0.023148188,0.021048492,0.014350073,-0.006653333,0.010331023,-0.026201122,0.02913812,-0.008488957,-0.025441108,0.008115391,0.050470006,0.0047339783,-0.0027019102,-0.010202207,0.0035714163,0.004118883,-0.00654706,0.014143968,-0.025093306,-0.0034264987,0.024204478,0.008939812,0.0048724553,0.041839354,-0.034728725,0.013242258,-0.0053007677,0.007954372,-0.01678469,-0.00014481707,-0.0017857081,-0.021512229,0.019837623,-0.019670162,-0.018768454,-0.005851455,-0.012263258,-0.0066790963,0.00392888,-0.0011673926,0.058173187,-0.0034136171,-0.008972016,-0.0009274733,-0.0040126103,0.04019051,0.0060285768,-0.0063795997,-0.001089298,-0.014607705,0.011966982,0.00073022424,-0.010434075,-0.019657282,-0.020533228,-0.0058385734,-0.0155094145,0.013280903,-0.002994966,-0.020249834,-0.0014942626,-0.011367989,0.011226292,0.010453397,-0.01211512,0.012424278,0.024603806,0.00834726,-0.0032960726,-0.048408955,0.010768996,0.023289885,-0.022942083,-0.01997932,-0.015406363,0.009223207,-0.0074004643,-0.01842065,-0.007007576,0.038850825,0.013512771,0.023045136,-0.03707317,-0.001408117,-0.01055645,-0.012424278,-0.015097205,-0.01596027,-0.038361326]},{\"id\":\"d529b7ce-cd0a-4677-bf02-99cdf51f5688\",\"text\":\"I love the feel and softness of the wraps. Bought 2 wraps and a hat for a gift 🌺🌺🤙🤙\",\"vector\":[-0.010513201,-0.0040379097,-0.00901768,-0.03635073,-0.008355832,-0.007961269,0.014153366,-0.023902897,0.026626656,-0.03433973,-0.01596072,-0.0046965755,-0.010583205,-0.024933852,-0.0016816668,0.021446422,0.02181553,-0.0003042751,-0.007910357,-0.0054570646,-0.009494974,-0.010373196,-0.016240733,0.0021510061,-0.011397787,-0.017246233,0.016342556,-0.0326342,0.01111141,-0.011442334,0.009577705,-0.016393468,-0.022413738,-0.011709619,-0.01049411,-0.00044706563,-0.010093182,0.013402423,0.011206869,-0.0058038984,-0.005081593,0.006911221,0.0077003473,0.008680392,-0.014738847,0.0054379725,-0.0025455693,-0.01920632,-0.0033378778,0.0056257085,0.007738531,0.017997175,-0.014726119,0.027059402,0.0137206195,-0.0021175956,0.002004636,-0.022299187,0.03026682,-0.012536929,0.014102454,0.025315687,-0.007025772,-0.0023021493,-0.0014064271,-0.008056727,-0.01070412,0.0020157727,-0.0040570013,0.010150458,0.015451606,-0.0035606152,-0.0028574017,-0.0015671161,0.008591297,-0.012409651,-0.0064402907,-0.0018057633,0.014344283,-0.02140824,0.02051729,-0.027950352,0.014420651,0.02672848,0.020059086,0.019957265,-0.023279233,0.02133187,-0.014242461,-0.029350415,0.024208365,-0.0006296307,-0.010926857,0.015871625,-0.025862986,0.019664524,-0.0072485087,0.016889853,0.00833674,-0.029299503,-0.00007731173,0.012562385,-0.0076239803,-0.014064271,-0.031234138,-0.0067648506,-0.0023594247,0.014827942,0.025684796,-0.004804762,-0.009736803,0.01998272,0.0034015172,-0.032914214,-0.0027794435,0.0042797388,0.030088631,0.00076048885,-0.0044483826,-0.021891898,-0.000560423,0.006771215,0.035917986,-0.02222282,0.013987904,-0.0105322935,-0.03423791,-0.024335643,0.0011757349,0.0075348853,0.044496555,0.027059402,0.004356106,-0.006424381,-0.004575661,0.019829987,-0.0263721,-0.00038183542,0.010086819,0.0016928037,0.027950352,0.0306232,0.0036815298,0.0063543776,-0.008909493,0.005253419,0.013707891,0.02690667,0.011404151,-0.018366283,0.012568749,-0.04806035,0.020784574,0.0028096722,-0.004928859,-0.0014637024,-0.0062652826,0.015540701,-0.014726119,-0.020402739,0.0074457903,-0.014280644,-0.0007521362,-0.0121932775,0.0017118955,0.022604657,-0.0033760613,-0.0042701927,-0.0028526287,0.017297145,-0.008209461,0.021357328,-0.019651797,0.0040665474,-0.0037388052,0.0022910126,0.004839764,0.01501886,-0.01571889,-0.020059086,-0.015260689,-0.011455063,-0.009520429,0.027237592,-0.0032615107,-0.023202864,0.0030324096,-0.010424106,0.01785717,0.0023912443,0.012791486,0.02754306,0.014598841,-0.028688567,-0.63944703,-0.031615973,0.019664524,-0.030164998,0.035510693,0.008820398,0.025621157,0.011340512,-0.0021335054,0.011493246,-0.020199094,0.021446422,0.0008312875,0.013936993,0.009895901,-0.013491518,0.010449562,-0.021280961,-0.003923359,0.00801218,-0.019766347,0.025264777,-0.006771215,-0.020568201,0.009743167,0.013924264,0.008374924,0.0042829206,-0.02175189,0.04037273,-0.022184638,0.044852935,0.0019489516,-0.0028733115,0.055289768,-0.010105911,-0.009533158,0.016648024,0.00084401533,0.008979497,-0.034263365,0.0059470865,-0.012371467,-0.0046202084,-0.021739163,0.021802802,0.017653523,0.020109998,-0.004139732,0.0006395743,0.00047649877,-0.0020587293,-0.003595617,0.018379012,0.03187053,0.007923085,0.028383099,0.020835485,0.01412791,0.023966536,-0.0038883572,0.008444927,-0.012861489,-0.045362048,-0.019549973,0.038463555,-0.026028447,-0.022121,0.019651797,-0.034492467,-0.0037515329,0.011334148,-0.024832029,0.008298556,-0.00056957116,0.014815214,0.029070403,0.025150226,0.014217005,0.017195322,0.0107295755,-0.0110605,-0.008063091,0.019002676,0.036681656,-0.003506522,-0.020568201,-0.009253145,-0.0019505426,-0.012454199,0.00018455378,0.037343502,-0.013096955,-0.008508566,-0.0021923718,0.01696622,-0.000108882756,0.025328416,0.017526245,-0.021433694,0.016278917,-0.009698619,-0.0035351596,0.015553429,0.0003738805,-0.0055366135,-0.014013359,-0.0099340845,0.012963313,-0.008922221,0.010538657,0.023661068,0.008960404,-0.01708077,-0.007471246,-0.022973765,0.009870445,-0.005982088,0.002004636,-0.032354187,0.020199094,0.01672439,-0.0046138447,0.007738531,0.004149278,0.015757075,-0.020771846,-0.007585797,-0.017946264,-0.021484606,0.032176,0.022146454,-0.00018505096,-0.0039679063,-0.020911852,0.009749531,0.0069303126,-0.017093498,0.024017448,-0.046380274,-0.013975176,0.025277505,-0.02123005,-0.021064587,0.005908903,-0.03795444,-0.0069557684,-0.014675207,-0.013580613,-0.010977768,0.0112896,-0.016278917,-0.0045438414,0.0077130753,0.027033947,0.004575661,-0.005966178,0.00833674,-0.017717164,-0.01685167,0.015375239,0.012645116,-0.021000948,-0.0115059735,-0.018773574,0.0018980402,0.013580613,0.014675207,-0.01761534,-0.038005352,-0.004022,-0.018493561,-0.011779622,-0.0014748393,-0.004588389,-0.00089572225,0.0017023495,-0.02914677,-0.0061157304,-0.004410199,0.0053488775,0.01596072,-0.014993404,0.009717711,0.033728793,0.0008209461,0.0055143395,0.020491835,-0.031234138,0.0086931195,-0.006313012,-0.009984996,-0.029223137,-0.0038692656,-0.011747803,-0.00945679,-0.006157096,-0.003417427,0.025264777,0.0067839427,0.028714024,-0.01347879,0.010984132,0.0255957,0.0013730165,-0.030750478,0.014178822,0.0059311767,0.02453929,-0.0037801706,-0.006421199,-0.035739794,-0.015973449,-0.008476746,0.017551702,0.022210093,0.016877126,0.026677568,-0.016991677,-0.013529701,-0.0040379097,0.009138594,-0.014458834,-0.0035987988,-0.0046011168,0.017577156,0.012880581,-0.002924223,0.002908313,-0.016571658,-0.0049352227,0.015947992,0.021484606,0.016800757,-0.0142297335,-0.011028679,0.015222505,-0.019346328,0.04480202,0.03472157,0.025710251,0.0031867346,0.0007314535,-0.024017448,0.009208597,-0.00065985933,0.01573162,0.009240417,0.006064819,-0.025328416,0.010093182,0.004575661,-0.035103403,-0.0039297226,0.019728163,-0.03385607,0.017386239,0.004333832,0.02228646,0.026321188,0.005240691,0.0073376037,0.0056957114,-0.009870445,0.009864082,0.00067059847,-0.010945949,-0.041212767,-0.03352515,0.0021319145,0.02879039,-0.011537793,-0.024488378,-0.019117227,0.008814034,-0.01625346,0.006643936,0.009081319,-0.02460293,0.026932124,-0.0018630386,-0.022426467,0.015438879,0.016762575,-0.00035677745,-0.009431335,-0.0068539456,0.017182594,-0.010742303,0.02601572,0.01377153,-0.00480158,-0.019053588,-0.004225645,0.017360784,0.017411694,0.030164998,-0.03612163,0.037318047,-0.026092086,0.027415782,-0.040041808,-0.038870845,-0.039405413,0.01797172,0.007063955,-0.010583205,-0.0060266354,-0.014802487,-0.004737941,0.021611884,-0.010233189,0.0007962859,0.00015979414,0.027110314,-0.007420335,0.007280329,-0.01239056,0.0043592877,-0.01085049,-0.0022878305,-0.0046329363,-0.0082731005,0.015527974,0.10691392,0.017844442,-0.005425245,0.010602296,0.02843401,-0.007280329,-0.025939353,-0.014471563,-0.01596072,0.008756759,-0.027212137,0.004228827,-0.013466062,0.003735623,0.0046297545,-0.0006085502,-0.0011288009,-0.0225792,-0.0033824253,0.004429291,0.01359334,0.009380423,-0.006083911,0.03576525,0.021497333,0.024488378,0.028892213,0.03469611,0.0110414075,-0.014357012,0.023508335,-0.008744031,-0.023851985,0.012314192,-0.03495067,0.009615889,0.019486334,-0.013924264,0.015184321,-0.00898586,0.00815855,0.0141406385,0.014217005,-0.014102454,0.008763122,-0.0041365502,-0.0086485725,0.01607527,0.0007318512,0.0064530186,0.0058929934,0.00062207354,0.0023482877,-0.0028192182,0.006513476,-0.00051865977,-0.025353871,0.0071212305,-0.0028749024,-0.010856854,-0.011582341,-0.020771846,0.00039734747,0.0011805078,-0.005046591,-0.029172225,-0.020962764,0.008750395,0.0020396374,-0.019231778,-0.028714024,0.0033696976,-0.022808302,0.011295964,0.023928352,0.013644252,0.00697486,0.008254009,0.021446422,-0.0049638604,0.0155152455,0.004814308,0.0136315245,-0.001748488,0.0021382782,0.0042733746,0.0069684964,0.0019250868,-0.017577156,-0.0034206088,0.022541016,0.004928859,0.03505249,-0.02194281,-0.008553113,0.02968134,0.020708207,0.007585797,-0.010875945,0.009895901,0.01347879,0.0011144821,-0.0045565693,0.0021955536,0.035917986,0.00082969654,0.0043020123,0.0030324096,-0.032761477,-0.011779622,0.021904625,0.0042765564,-0.012931493,0.0030324096,-0.0025264777,0.0013746074,-0.016164366,0.02452656,0.010564113,-0.016978947,-0.02601572,-0.011022315,0.034848846,-0.00013314521,-0.0037642608,-0.015986176,0.0012043725,0.00348743,0.006898493,0.016648024,0.005816626,0.007229417,-0.014242461,0.0057529868,-0.006233463,-0.0028510378,-0.023088316,0.003671984,-0.010557749,-0.01626619,-0.03960906,0.0048588556,-0.0015734801,-0.019537246,-0.0060489094,-0.025786618,0.0055429772,0.025761163,-0.02382653,0.020046359,-0.018468106,-0.013669708,-0.022477377,0.0057816245,-0.0028971762,-0.009049499,-0.020975493,-0.022210093,0.017513517,0.019422695,0.038514465,0.009526794,0.024501106,-0.0123269195,-0.00050275,-0.007076683,0.014586112,0.0067266673,-0.031895984,0.02789944,0.0039551784,-0.0017214413,0.0044642924,0.0067075756,-0.0003683121,0.002655347,-0.00937406,-0.04162006,0.0059470865,-0.0066184807,0.0008125935,-0.0077130753,-0.0065612053,0.0024453376,0.0033824253,0.028714024,0.034492467,-0.00021756663,0.0077894423,0.007229417,0.022948308,-0.0019632704,0.014713392,0.00014169674,-0.005008408,0.0012290328,-0.002664893,-0.011136866,-0.024895668,0.021280961,0.028637655,-0.0058548097,-0.012384195,-0.007560341,0.0062684645,0.00650393,-0.02441201,-0.017958993,0.01720805,-0.016406195,-0.006669392,0.0021557792,-0.034848846,-0.029783161,-0.03528159,0.004060183,-0.036147084,0.024144726,-0.0024755662,-0.011868717,-0.007573069,-0.0023021493,0.01779353,-0.010144094,0.010831398,0.022095542,-0.030775934,-0.033830617,-0.005574797,-0.0103986515,-0.014967948,0.007051227,0.05233691,-0.010411379,-0.011957812,-0.0021160045,0.018060815,-0.012371467,-0.008311284,0.028586745,0.003993362,0.0049352227,-0.012753303,0.020555474,-0.026142998,0.021319143,-0.008578569,0.0045502055,-0.0013897218,-0.0009879991,-0.028739478,0.032914214,0.009176778,-0.010144094,0.0028653566,-0.01149961,-0.0255957,-0.036936212,0.011035044,-0.010564113,0.0037133493,0.016100727,0.009004951,-0.0029576335,0.015680708,-0.015477062,0.0027969445,0.021268232,0.009914993,0.026295733,-0.014929765,-0.02087367,-0.009679528,0.015922537,0.033270594,-0.010570477,-0.027797619,-0.019664524,-0.0066248444,-0.007407607,0.007872174,0.008864946,-0.0033092403,-0.010303192,-0.010793215,0.0029560425,-0.026652113,-0.028026719,0.029834073,-0.008973132,-0.04523477,-0.008164914,-0.006160278,0.025799345,0.020250006,0.015158866,0.0031390053,0.008584932,-0.033779707,0.01839174,0.0022114634,-0.0019203139,-0.01667348,-0.0030355914,0.010265009,-0.050045896,-0.0020412286,0.01660984,-0.041874617,-0.01714441,0.019460877,-0.00095140655,-0.004397471,-0.020377284,0.0012871035,0.0067012114,-0.006068001,-0.010233189,-0.011563249,0.023406511,0.011423243,0.0024517016,0.007566705,-0.021433694,0.0034747024,0.00366562,-0.0029035402,-0.0040315455,-0.013001496,0.0076176166,-0.02264284,0.010112274,0.001159825,-0.03433973,0.021624612,-0.010958676,-0.0047983984,0.018595384,-0.008075819,0.00035995943,0.007063955,0.033270594,0.0045374776,0.0056193443,-0.0005548546,0.0061125485,-0.02123005,-0.03115777,-0.01856993,-0.028357644,-0.018124454,0.036758024,-0.0036274365,-0.013058771,0.007490338,-0.01909177,-0.026703022,0.003745169,-0.0058961753,0.021968264,0.008311284,0.007127594,-0.0141406385,-0.00023486855,0.0014422241,-0.011213234,-0.013224233,-0.005056137,0.014102454,-0.0066248444,0.010455926,-0.02240101,-0.05391516,-0.007178506,0.020402739,0.021904625,-0.0023546517,0.0266012,-0.013338784,0.019409968,-0.021191865,0.019715436,0.024093814,0.020415466,0.028103087,-0.011537793,0.00022989674,-0.0012178959,0.002329196,-0.012708755,-0.034797933,0.008584932,0.014446107,-0.014942492,-0.017309872,-0.019460877,-0.0047029397,-0.011919629,0.009380423,-0.0344161,-0.020733664,0.018582657,0.042918302,-0.0068921293,0.005084775,0.010538657,0.010875945,-0.00084799284,0.022948308,-0.0058834474,-0.014038815,-0.00055962754,0.022095542,-0.0043847435,-0.023151955,-0.0045183855,-0.00862948,-0.014878853,0.009189506,-0.00003425581,-0.018697208,-0.007744895,0.004741123,0.007903993,0.0053202403,-0.007891265,0.009475882,-0.019320872,-0.0064402907,0.0043656514,-0.01720805,-0.025913896,-0.0033887892,0.018162638,-0.013160594,0.025404783,0.23235957,-0.014967948,0.004893857,0.010131367,-0.0068603097,-0.0030117268,0.020351827,0.014051544,-0.002995817,0.0075476132,0.003411063,-0.0037674427,-0.007821262,-0.00042956485,-0.0010245917,-0.012097819,-0.011435971,-0.025633885,-0.018302644,-0.016100727,-0.00309764,0.0069048572,0.004063365,-0.025633885,0.017577156,-0.008432198,-0.006494384,-0.0034778842,0.010984132,0.0077830786,-0.017348055,-0.015235233,-0.0115505215,-0.0263721,-0.00898586,-0.012982404,0.008024908,-0.007305784,0.02695758,-0.0038597197,-0.015031587,0.002906722,0.0065230215,0.0053966073,-0.009622253,0.03080139,-0.013096955,-0.007878537,0.0138097145,0.04174734,-0.012759667,-0.021599157,0.016418923,0.02069548,-0.00045342956,0.0013921083,0.025506606,-0.0066057527,-0.05686802,0.016533474,0.009806806,0.011200505,-0.016126182,0.017920809,-0.037928984,0.0066503,-0.00080861605,-0.01484067,0.02194281,0.004158824,0.007490338,-0.015947992,0.0119705405,0.035383414,-0.03955815,-0.006319376,0.021382783,0.0010595933,0.009380423,0.026983036,0.0049543143,-0.01221237,-0.007840354,-0.038641743,-0.008018544,-0.062010072,0.0015504109,0.014764302,-0.0004538273,0.0031899167,0.00008884634,-0.0022512379,0.006246191,-0.011964176,0.022324644,0.0025169319,-0.016393468,0.020109998,-0.0060520913,0.011862353,-0.015591613,-0.036452554,0.0047602146,0.0035192496,0.006656664,-0.0051897797,0.0035351596,0.0286122,0.0070830467,-0.01571889,-0.017551702,-0.022375556,-0.0023514698,0.00089254027,-0.01347879,0.013466062,-0.011416879,-0.003579707,0.0002273114,-0.000070947804,0.012186914,-0.014458834,0.015795259,-0.004082457,-0.0020125909,0.0033092403,-0.049231313,0.020797303,0.00014139843,-0.016660752,0.026321188,0.010277737,0.02123005,-0.03344878,-0.022362828,-0.02139551,0.011894173,0.004677484,0.004483384,-0.0037324412,-0.024959309,-0.000086012406,-0.005886629,-0.014420651,0.0037324412,-0.019066315,0.0141406385,0.005574797,-0.01484067,-0.010156822,-0.02329196,0.017729891,0.0031962807,-0.0105768405,0.020390011,0.0065484773,-0.044980213,-0.003913813,0.004356106,0.004292466,-0.02282103,-0.01070412,0.014267917,-0.0030817299,-0.0022257823,-0.017068043,-0.15965812,0.041696426,-0.0021955536,-0.0348743,0.006348014,-0.0028542196,0.010296828,0.005813444,-0.015820714,0.005002044,0.005762533,0.029070403,-0.019499062,-0.012886945,0.016151639,-0.010538657,-0.008884037,0.020568201,0.039405413,0.008877673,0.027619429,-0.032659657,0.011480518,0.010016816,0.007910357,-0.003932905,0.020148182,0.0021191866,0.004165188,0.008311284,-0.012218733,0.0021971446,0.063181035,0.0057784426,0.031310502,0.011703256,0.0060234535,0.008495838,0.0048843115,0.01088231,0.011378695,-0.015922537,-0.029655883,0.0053711515,-0.022413738,0.026219364,0.008368559,0.002983089,-0.01626619,-0.020173637,0.0060075438,-0.007923085,0.0024739753,0.0036847116,0.017373512,0.004397471,0.020784574,0.018417194,-0.00031481535,-0.02453929,-0.0011820988,-0.0193336,0.009609524,-0.00040092718,-0.0071975975,-0.018264461,0.0016371193,-0.011544158,-0.0105322935,0.018939037,-0.018200822,0.0023944261,-0.004177916,-0.023737434,0.017704435,0.009514065,-0.018315371,-0.015795259,0.01164598,-0.017195322,-0.01814991,0.031590518,0.004836582,-0.00044984985,-0.013058771,0.012072363,-0.005937541,-0.0054729744,0.0003166052,-0.0040570013,0.0155152455,-0.0025312507,0.00399018,-0.026983036,0.003761079,0.030648656,0.009533158,0.008266737,-0.0068794014,-0.023571974,0.017780803,-0.0033537878,-0.012346012,0.012288736,0.022426467,0.022922853,-0.005415699,0.017946264,0.024055632,0.0071975975,-0.025341144,0.02772125,0.01839174,0.024042903,0.019588158,0.02311377,0.02708486,-0.02772125,0.031717796,-0.019002676,0.03181962,0.015387967,-0.037801705,0.016291644,-0.003250374,0.016928036,-0.08145822,-0.017577156,0.003910631,0.010328648,-0.010716847,0.005737077,-0.0047697606,0.016482562,0.009953177,0.040856387,-0.0020316825,-0.016418923,-0.021064587,0.004776125,0.02749215,0.0023212412,-0.02317741,-0.020059086,-0.0031787797,0.005415699,-0.021560973,-0.006408471,-0.0388963,0.004356106,0.004547023,-0.010608661,-0.023215594,0.019549973,0.0263721,0.0038947212,-0.012218733,-0.007025772,0.02447565,-0.007343968,0.0048079444,-0.008152186,-0.016342556,-0.015107955,0.022388283,-0.025442967,-0.009946813,-0.028714024,-0.0068730377,-0.019346328,-0.0012322147,0.014955221,0.0013563113,0.0062684645,0.01761534,-0.03281239,-0.030928668,0.009724075,-0.013262416,0.005810262,0.030063175,-0.029604973,0.01466248,0.0026776209,-0.0138097145,0.0090685915,-0.0022671479,-0.0030053628,-0.040881846,0.036528923,-0.0059216307,0.019677252,-0.014586112,-0.015655251,0.0024246548,0.027517606,0.0072230534,0.013847898,-0.022261005,0.00480158,-0.028943125,-0.010570477,-0.037165314,-0.02470475,-0.00468703,0.007942176,-0.01239056,-0.0074394266,0.00948861,-0.027288504,0.004139732,0.0061857337,-0.009838626,0.0054761562,-0.011925993,-0.011117774,0.0005305921,-0.0066184807,0.032837845,-0.018226277,-0.022770118,-0.0039806343,-0.011671436,0.021548245,0.033626974,-0.008534022,-0.034670655,-0.01667348,-0.051369593,0.02434837,0.00026927353,-0.010245917,0.023037404,-0.033423327,0.03222691,-0.010570477,0.009857718,-0.027823074,-0.00067815563,0.0010317512,-0.010093182,-0.013236961,-0.033423327,-0.03459429,0.026168454,0.03416154,0.03416154,-0.011187778,-0.0060266354,0.004321104,0.015566157,-0.015553429,-0.015706163,0.023813803,-0.01873539,0.036401644,-0.021739163,0.011805078,-0.008279464,-0.0043783793,-0.0005655937,0.042434644,-0.016342556,-0.047245767,-0.0022910126,0.030470466,0.003761079,-0.078098066,-0.04202735,-0.03388153,-0.0012513065,0.0011900536,-0.0076303445,-0.01070412,0.0068030343,-0.0055397954,0.014000632,0.012129638,0.026423011,0.024895668,-0.011773258,-0.009717711,-0.0073757875,-0.020377284,0.008349468,0.0013443788,0.024755662,0.0076303445,0.033983354,0.00898586,0.030495921,-0.017908081,0.023521062,0.012867853,-0.01589708,-0.016151639,0.019409968,-0.010360467,-0.025812075,-0.0025535242,0.02009727,-0.007954905,0.024793847,-0.010239553,-0.007025772,-0.0060361815,-0.010048635,0.02879039,0.022095542,-0.022719206,-0.047907617,0.009965904,-0.007433063,0.03948178,-0.006656664,-0.010341376,-0.0022591928,0.020300915,-0.012123275,-0.014751575,-0.00898586,0.0006992361,0.012492382,0.014726119,0.014586112,-0.010207733,0.0069048572,0.032405097,0.008616753,0.00883949,0.001252102,-0.0015074544,-0.0071848696,0.00845129,-0.028026719,-0.010125003,0.02317741,0.029884985,0.02672848,-0.027924897,0.0019346328,0.013555157,-0.011295964,-0.017424423,-0.007025772,-0.007038499,-0.001250511,0.014026088,0.0060616373,0.0021080496,0.027033947,-0.0193336,-0.013504245,0.01991908,0.00025336372,0.024895668,0.019689979,-0.0010651617,0.014204278,-0.023088316,-0.031259593,0.0074776104,-0.011155958,0.012110546,-0.018824486,0.062468275,-0.021370055,0.058751743,0.024806574,0.0004343378,0.008852217,-0.01839174,0.012785123,0.011009588,-0.0024532925,0.0067775785,-0.009234053,-0.0071975975,-0.0036942577,0.0067839427,-0.0051993257,-0.05269329,-0.00070758874,-0.007254873,0.025252048,-0.033499695,-0.009055863,0.016444378,0.012027816,0.02016091,0.003745169,0.0044356547,-0.012556021,0.012454199,-0.005094321,0.0051038666,-0.020135455,-0.0028192182,0.01779353,-0.035561606,0.0018757664,-0.0056957114,-0.005329786,-0.0039265407,0.004251101,0.013071499,0.0023991992,0.004747487,0.044242,-0.022375556,-0.00015601557,0.036605287,-0.00061252766,-0.008234917,0.00012996326,-0.036758024]},{\"id\":\"44756f82-bd64-41c6-9eda-5a1cbfab0054\",\"text\":\"Items are junk, poor quality. It sheds everywhere. My customer feedback on social media is going to be exactly that.  \",\"vector\":[-0.032657854,0.011207039,-0.012396167,-0.012967479,-0.0025609443,-0.0016508292,-0.015319164,-0.032711,0.0076263663,-0.027874768,-0.0011949413,0.012263303,-0.0072609917,0.0027851516,0.000602453,0.0059722154,0.012894405,-0.006716251,0.0063475547,-0.026306977,-0.02206863,0.0004729111,-0.017033104,0.0038762933,0.0054640123,-0.00422506,0.029283121,-0.017258972,0.011167179,0.006208048,-0.0050355275,-0.008064816,-0.011917858,0.0036969276,-0.011054245,-0.0010147451,0.013452431,0.0023649707,0.022600085,-0.00443432,0.014508696,0.0004683439,-0.00015528424,-0.0018202303,-0.013359427,0.020407837,-0.008974931,0.005507193,0.0066963215,-0.0075333617,0.018003007,-0.012123796,-0.03518226,-0.01508001,0.023078393,0.0075931503,0.014575128,0.0058825323,0.009293803,0.006613282,-0.0031023633,0.011393047,-0.04498759,-0.006151581,-0.024340598,-0.006822542,-0.016435217,-0.0044044256,-0.018959625,0.008828781,0.012429383,0.020739995,0.0018717148,-0.0061648674,0.010157417,0.014176538,-0.00458047,0.021603609,0.021882622,-0.003965976,0.0217099,-0.01865404,-0.02058056,0.011871356,0.028167067,0.027981058,-0.0014681419,0.01857432,0.00021797922,-0.0068756873,-0.0124227395,0.013299638,0.0008959984,0.013206634,-0.01802958,0.016727518,0.0006452185,0.027144017,-0.016873667,-0.009200799,-0.0028449402,0.003627174,-0.028087348,-0.010004623,-0.030957201,0.019052628,-0.009898333,-0.006829185,0.021537177,-0.0128611885,-0.012469241,0.01813587,0.025111206,-0.012050722,-0.004603721,0.014987005,0.03252499,-0.012336378,-0.017431695,-0.027476177,0.026506273,-0.002313486,0.039088447,-0.018972911,0.020593846,0.021763045,-0.022347644,0.006500348,-0.010662298,0.026213974,0.014083534,0.027144017,0.02721045,0.016953386,-0.02899082,-0.006450524,-0.029336266,0.019584084,-0.0032319052,-0.015943622,0.0031256143,0.03722836,-0.025988106,-0.00591907,0.006722894,0.031807527,0.0042184168,-0.015943622,-0.011293399,-0.017790426,-0.0021573715,-0.009891689,0.015757613,-0.010237134,0.0065966737,0.007367282,0.033853624,0.012296519,-0.0151863005,-0.020367978,0.001991292,0.01566461,0.0068092556,0.016116345,0.015956908,0.026240546,0.0075134323,0.0056898803,0.007553291,0.008848711,0.002001257,0.016514936,0.014827569,0.01591705,-0.0031389007,0.016740805,0.018308593,0.009008147,-0.0040357294,-0.030106874,-0.013963956,0.00167325,0.016076487,-0.017205827,-0.004298135,-0.03831784,0.035607424,-0.008396975,0.029123684,0.002675539,0.019424647,0.015040151,-0.013777947,-0.011618915,-0.64922434,-0.023317548,-0.0065966737,0.0072942073,-0.016049914,0.011585699,0.0099315485,0.029150257,-0.020155396,0.014840855,0.0074137845,0.008137891,0.0028980856,-0.01380452,-0.00032011804,-0.0029229976,0.019969387,-0.010821734,-0.002079314,0.012761542,-0.016674371,0.012854545,-0.0031256143,-0.011246897,-0.011472765,0.0039493684,0.0008843728,0.0057862066,-0.0010537738,0.037759814,-0.01890648,0.020992437,0.007985097,-0.0013684942,0.057609625,-0.013897524,-0.003353143,0.032152973,0.02760904,0.018893193,-0.05962915,-0.0036969276,0.0040490157,-0.016780663,-0.010595866,-0.0028698521,0.020646991,0.008058173,0.011652131,0.00020116368,-0.010987814,-0.0057662767,-0.023277689,0.006855758,0.015691182,0.0064272727,0.026599277,0.008828781,-0.0054474045,0.0053012543,0.012336378,0.0057596336,-0.030372601,-0.012655251,-0.020407837,0.00395269,0.0040191216,-0.017458268,0.0199561,-0.028778238,0.0035142403,0.022028772,-0.026492987,0.03616545,-0.010057769,0.024898624,0.014389119,-0.007898737,-0.011725206,0.017431695,-0.0005601028,-0.006666427,-0.012974123,0.00080465473,0.015584891,0.00008869678,0.009818614,-0.015651323,-0.001894966,-0.007686155,-0.017524699,0.015970195,-0.00067677355,0.0033249096,0.002580874,0.028964248,-0.0032136363,0.019185493,0.014614987,-0.017524699,-0.02192248,-0.011160536,-0.002144085,0.0002551395,0.0010703817,0.035022825,-0.006081828,0.00022669838,-0.005111924,-0.026546132,0.021975627,0.008609557,0.0033282312,-0.039566755,-0.028751666,-0.03085091,0.023463698,-0.0034976322,0.0045738267,-0.029522276,0.007699441,-0.0077393004,0.039061874,0.0012572211,0.008582983,0.027170591,-0.0058891755,0.0052148933,0.0052481093,0.008788922,-0.00039381578,-0.008456763,0.02658599,-0.023596562,0.0020759925,0.005101959,0.005593554,-0.014415693,0.019677088,-0.04658195,-0.0057596336,-0.0008370402,-0.007858877,-0.013751375,-0.0127548985,-0.030239739,-0.0013195009,0.011658774,0.0018567677,0.0211253,-0.024752473,-0.022121776,-0.0155184595,0.01624921,-0.025151065,0.0030392532,-0.023078393,-0.015266019,-0.009798685,-0.01832188,0.019305069,0.031754382,-0.009234015,0.0007241062,-0.035633996,-0.0018584285,0.0072609917,0.004530646,-0.010157417,-0.013299638,-0.006849115,-0.0005219045,-0.013817807,0.015611464,-0.026891576,0.014389119,-0.01773728,-0.017351976,0.021763045,-0.015026865,0.014575128,0.029229974,-0.010908095,0.0065999953,0.012734968,0.01369823,0.0066963215,0.034916535,-0.02156375,0.026253833,-0.020421123,0.015717754,-0.038982157,-0.0046236506,-0.02447346,-0.023397267,0.009380165,0.012794757,0.007141414,0.009811971,0.009519671,-0.0017222434,0.016780663,-0.010602509,0.0052148933,-0.014415693,0.009187513,-0.014508696,0.017325403,0.044456135,0.010443073,-0.026200688,0.0015619767,-0.0043911394,-0.016740805,0.019544223,0.0037866104,0.038264696,0.024194447,0.017910004,-0.014840855,-0.0065667797,-0.005789528,0.009041362,-0.0120307915,0.0018683933,0.01056265,0.01533245,0.02658599,-0.0036105663,0.003620531,0.0016010054,0.031222928,0.013106987,0.010828377,-0.0023433804,0.015066723,-0.007845591,0.031116636,-0.005467334,0.019318355,0.028113922,-0.0033581255,0.012901048,0.01409682,0.008968288,0.027290167,-0.0021988912,-0.022427363,-0.0059522856,0.0073407097,0.003839756,-0.014707992,0.0019746842,0.010934668,-0.021218305,0.0044110687,-0.0010155756,0.02338398,0.015385596,-0.013817807,-0.013286352,0.042091165,-0.0018750365,0.005387616,-0.0013610207,-0.015093296,0.0027868124,0.01112732,0.0052912896,-0.00052231975,-0.015478601,0.015478601,-0.030771192,0.0075267185,0.008018314,0.017365262,0.005088673,0.0015129833,0.023357408,-0.032285836,-0.011393047,-0.01014413,0.013033912,0.00598218,-0.018879907,-0.017657561,0.011665417,-0.010848307,0.039540183,0.002717059,0.028140495,0.005643378,-0.0071081985,0.011333259,0.03704235,0.021112014,-0.025695805,0.004749871,0.005128532,0.019065915,-0.012163656,-0.0045904345,-0.017431695,0.012994053,0.001221514,-0.024260879,0.009280517,-0.0102637075,-0.019823238,-0.007679512,0.0024314024,-0.023317548,0.004118769,-0.0005302085,-0.006297731,0.009400094,-0.031010346,0.00874242,0.009008147,-0.0034777026,0.0074004983,-0.030957201,0.010941311,0.10081684,0.0321264,-0.020235114,0.022679804,0.011705277,0.016979959,-0.00062279776,-0.015173014,0.0028665306,-0.015279305,0.016010055,-0.01238288,0.02505806,-0.015890477,-0.010801804,0.00089931994,-0.014508696,0.013817807,-0.0032784075,-0.024752473,-0.003524205,-0.017537985,0.00090928475,-0.009420023,0.008503266,0.042968065,0.01616949,0.005151783,0.0075665778,-0.018919766,-0.0011791638,0.0017953183,-0.017630989,0.021085441,-0.029548848,0.029548848,0.01690024,0.007241062,0.0067262156,0.0024729222,0.0027602396,0.007805732,0.01767085,-0.010609153,0.011765065,-0.0074536437,-0.001708957,0.02790134,-0.0114794085,-0.03744094,0.02739646,-0.008516552,-0.004421034,-0.005650021,-0.0061715106,0.011572413,0.009971407,0.0007818188,0.00075898285,-0.039540183,0.005669951,-0.021324595,-0.019291783,-0.012914334,-0.02702444,-0.031222928,-0.021151872,-0.017537985,-0.017378548,-0.010409857,-0.009420023,0.0011160536,0.006968692,0.0070351236,-0.00047581748,-0.0019813273,0.015757613,-0.015970195,0.021337882,0.018388312,0.0094864555,0.0031106672,0.0071480577,-0.027874768,0.005264717,-0.0074204276,-0.0011874677,-0.00048246066,-0.030983774,-0.013246493,0.019770091,-0.0087689925,-0.002232107,0.010330139,0.008762349,0.009200799,0.01767085,0.01926521,0.005025563,-0.00045547276,-0.0016192741,-0.00478973,-0.008197679,-0.006437238,0.029894292,-0.0007033463,-0.025137778,0.0012771506,-0.0033465,0.02760904,-0.011758422,-0.0056566643,-0.026612563,0.0061482596,-0.02305182,0.015837332,-0.003620531,0.010383285,0.0025327108,0.018348452,-0.02032812,-0.029362839,0.026718855,0.012761542,0.01056265,-0.00007307494,-0.0020959221,-0.04264919,-0.026134254,0.008835425,-0.026320264,0.014136679,-0.0051849987,-0.026559418,-0.051657338,-0.009772112,0.0055968757,0.013326211,0.007287564,-0.028512511,-0.03664376,-0.015465314,-0.020886146,-0.023596562,-0.00790538,-0.026027964,-0.039168168,0.00583603,-0.020354692,0.037068922,-0.011140606,0.004563862,-0.023835717,-0.001020558,-0.011207039,-0.028087348,0.0064970264,-0.012455955,0.03143551,0.034119353,0.021736473,-0.013226564,0.00717463,-0.006048612,-0.009360235,-0.008689274,-0.015638037,0.0123098055,-0.032897007,0.0069288327,0.02210849,0.0070284805,0.01861418,-0.02386229,-0.006829185,0.016847095,-0.008151177,-0.0202484,-0.007247705,-0.0040755887,0.0038331125,-0.014827569,0.010276994,0.035926297,-0.028140495,-0.0049956683,-0.017856857,0.031036919,-0.002032812,-0.010496219,0.018800188,-0.011207039,0.0060984357,-0.01650165,0.007965168,0.000560518,-0.010522791,-0.016475076,-0.020739995,0.019491078,-0.004683439,0.0052846465,-0.027662186,-0.007672868,0.017816998,-0.011745135,0.0008719169,-0.03380048,-0.0015196266,-0.036750052,0.012349664,-0.046555378,-0.0112003945,-0.023516843,-0.008496623,0.02411473,-0.019305069,0.00054515566,-0.008337186,-0.0044143903,-0.0074536437,0.018946338,0.0022204816,-0.013419216,0.0014772763,0.032870434,-0.022772808,-0.02334412,0.014203111,0.0044110687,-0.013219921,0.02957542,0.014282828,-0.01391081,0.0044874656,0.00857634,-0.014110106,-0.018627467,-0.011233611,0.021470746,0.016581368,-0.004457571,-0.019437933,-0.024247592,-0.023902148,0.032259263,0.010582579,-0.0064073433,-0.0071945596,0.0019547546,-0.010443073,0.02622726,-0.010476288,0.018255448,0.001765424,-0.022786094,-0.017351976,-0.0032468524,-0.011293399,-0.0080316,0.006005431,0.0067826826,-0.00031555086,0.013080413,0.018707184,0.010914738,-0.016687658,-0.012369594,0.013465718,0.024021724,-0.031169781,-0.0036570684,0.003104024,0.0025758916,0.012582175,-0.02597482,-0.019039342,-0.017285544,-0.019145634,-0.022241354,-0.009293803,0.018959625,-0.011658774,0.000011670971,-0.007433714,-0.021949055,0.0018982876,-0.035501134,0.027927913,-0.02403501,-0.0031322576,-0.0046170074,0.0035109185,0.0042549544,0.009313733,-0.0048096594,0.024048297,0.019331643,0.0015329128,0.0031887246,0.001194111,-0.0006427273,-0.013080413,0.013751375,0.016289068,-0.01821559,0.004524003,-0.02739646,-0.04086882,-0.027795048,0.0064305943,0.004457571,-0.015491887,-0.0043911394,0.029601993,0.015066723,0.013080413,-0.016568081,0.0003103609,0.025004914,-0.018308593,0.0064704535,0.008974931,0.005297933,-0.004670153,-0.0038762933,-0.0029080503,-0.004846197,0.00012902294,-0.0026406625,0.0001121036,0.0074204276,-0.020181969,-0.041931726,-0.021005724,-0.003009359,-0.01215037,0.02790134,-0.022746235,0.001439078,-0.0015378953,0.011685347,0.013419216,0.032657854,-0.007128128,0.008722491,-0.019291783,-0.016328927,-0.016993245,0.00717463,-0.0015910406,0.0067461454,0.006822542,-0.018096011,-0.016089773,0.01409682,-0.035873152,-0.011293399,0.0037301434,0.0029927508,0.0056533427,0.008729134,-0.0063276254,0.018800188,0.022347644,0.027237022,-0.024526605,-0.010210562,-0.033295598,-0.013087057,0.00037990665,-0.02367628,-0.0318341,-0.025655946,0.029203402,0.018428171,0.0036670333,0.011167179,0.007360639,0.004653545,-0.026240546,0.016940098,0.019610656,-0.036192022,0.025217496,-0.016156204,-0.021882622,0.004231703,0.023769284,0.0010512826,0.008762349,0.035235405,-0.014947146,-0.013711516,-0.012336378,-0.02430074,-0.02087286,0.006772718,-0.0038596853,0.019437933,-0.021869335,0.021895908,0.011346545,-0.020646991,-0.010868236,0.019278497,0.0217099,-0.012223444,0.035501134,-0.017006531,0.001160895,0.0006680544,0.0046967254,-0.01395067,-0.017498126,-0.012715039,-0.00859627,-0.017378548,0.0064903833,0.0020809749,-0.0021806227,-0.0072144894,-0.003240209,0.0016134614,0.018853335,-0.0095396,0.009147653,-0.030186592,-0.0019381467,0.0055736247,-0.0019879704,-0.04687425,0.005557017,0.018547747,-0.0073340666,0.007161344,0.22427362,-0.005450726,0.0045738267,0.020673564,0.014880715,-0.0065435283,0.025722377,0.0037998967,0.0022620014,0.026758714,0.03202011,-0.008210965,-0.0053809728,0.0013053841,-0.007912023,0.0037068923,-0.009260587,0.017896716,0.011745135,-0.00242642,0.020487554,0.0015528424,0.046449088,0.0017836927,0.032551564,-0.0060286825,-0.021045582,-0.01369823,0.018003007,0.025190923,-0.0053477567,-0.014761138,0.018627467,-0.019424647,0.013133559,-0.0029146934,-0.013884238,-0.0049956683,0.0007851404,0.034252215,0.015850618,-0.015890477,0.0061316513,-0.010270351,-0.0023516843,-0.005586911,-0.023357408,0.016700944,0.010881523,0.0019265211,-0.02192248,-0.018840047,-0.002516103,0.017976435,-0.00957946,-0.005683237,-0.012827973,-0.0053012543,-0.023184685,-0.035315122,0.0020544021,0.039274458,-0.0069089034,0.017684136,-0.036803197,0.0033697512,-0.010423143,-0.022055345,0.0033315527,-0.010197275,0.0075599346,-0.010077698,-0.014694706,-0.0007178782,0.0061781537,-0.031568374,-0.013724802,0.015000292,0.054580335,0.019876383,-0.002612429,-0.007480216,-0.0312495,0.0018451422,0.003072469,-0.04352609,0.017630989,-0.023583274,0.0005621788,-0.028751666,-0.00029375294,0.0071081985,-0.011452836,-0.01591705,0.02076657,0.018255448,0.0068158987,0.0032219405,-0.030877482,-0.0018750365,-0.015797473,0.050860155,0.0031986893,0.02968171,0.0116454875,-0.006264515,0.00857634,0.015478601,0.005507193,-0.018082725,0.005716453,-0.039327603,0.009924905,-0.009174226,0.002451332,0.008064816,0.022081917,-0.018600892,0.025297215,-0.01872047,0.019982673,0.007094912,0.0063575194,-0.011944431,-0.017976435,-0.017086249,0.0007486029,0.020049106,0.005264717,-0.045811344,0.018268734,0.00013265593,0.00040004376,-0.019145634,-0.024991628,-0.025948245,0.019052628,-0.013465718,-0.009420023,0.012814687,-0.01631564,0.039247885,0.038370986,-0.016076487,0.012455955,-0.00026821822,0.028220212,-0.009114438,-0.016262496,-0.0006315169,-0.028432794,0.018959625,-0.009845187,-0.014256256,0.035208832,-0.00057421956,-0.023702852,-0.028353076,-0.008317256,-0.004932558,-0.036723476,-0.011612272,0.020128824,0.02564266,-0.010722086,-0.0014756155,-0.16910869,0.019796666,0.019039342,0.009612676,0.01566461,-0.010223848,0.00077517563,0.017577844,0.01098117,0.00006596466,0.03496968,-0.0029495703,-0.013844379,-0.016036628,0.0011559126,-0.014548556,-0.0077525866,-0.0026556097,0.023370694,0.021391027,-0.0037567161,-0.0067395023,0.014375833,0.00057089794,-0.00562677,0.014508696,-0.021165159,0.029841147,0.02687829,-0.031488653,-0.018388312,-0.030106874,0.03496968,0.023888862,0.044562425,0.001669098,0.00052398053,-0.015199587,-0.0051783556,0.026825145,0.028911103,0.01767085,0.0026423233,0.0054241535,-0.0079917405,0.01767085,0.008257468,0.023277689,-0.014030388,-0.027768476,-0.019770091,-0.0106490115,-0.0061017573,0.003909509,-0.014455551,0.01719254,0.005726418,0.026891576,0.009466526,-0.010443073,0.003378055,-0.017803712,-0.003240209,-0.019092489,0.004444285,-0.020540701,0.003321588,-0.002507799,-0.018959625,-0.0023849,0.0037600377,0.0015669592,0.021776332,0.015226159,-0.002974482,0.010403214,-0.011167179,0.0155716045,-0.0060984357,-0.0052613956,0.00091011514,0.017750567,-0.016328927,0.007878806,-0.0080515295,0.006523599,0.012814687,-0.016076487,-0.011226968,0.0042051305,0.009393451,-0.000089267676,0.0045173597,-0.009798685,0.009904976,0.03744094,0.01901277,0.0018036223,0.011266827,0.008523195,0.000117812575,0.013399286,-0.04203802,0.027927913,0.025881814,-0.010602509,-0.018189017,0.0096525345,0.012814687,-0.037175212,-0.016873667,-0.0019281819,0.020009246,0.024101444,0.0019697016,0.016235922,0.013352784,-0.023902148,0.03481024,-0.0061881184,0.028379649,-0.007134771,-0.01085495,0.029097112,-0.021284737,-0.011598986,-0.12085266,-0.015531746,-0.00022566039,-0.008416904,-0.021763045,0.008489979,0.01238288,0.028167067,-0.0013327872,0.013286352,0.010064412,-0.018335165,-0.02713073,-0.008695917,0.025018202,-0.030585183,0.0023284333,-0.010569293,-0.009313733,0.009559531,0.0016342213,-0.018534461,-0.015545032,0.011459479,0.0071480577,-0.0036238525,-0.022135062,0.0092672305,0.002466279,-0.008357116,0.01941136,-0.0028914425,0.0011866373,-0.030983774,-0.0069221896,0.008350472,-0.022174923,0.007280921,0.029841147,-0.0330033,-0.0048993425,0.017697422,-0.024632897,-0.028034203,0.0010828377,-0.013053841,0.0148009965,0.038450703,-0.0011675382,-0.0010570954,-0.026240546,-0.016847095,0.0009192495,-0.03398649,0.029601993,-0.008131248,0.007347353,0.0066797137,-0.0070085507,0.00068009517,-0.027183877,-0.0013053841,-0.015877191,0.026320264,0.013684942,0.0061017573,-0.010257064,-0.009718967,0.0014523644,-0.039247885,-0.0124758845,0.021909194,-0.030133447,0.021842763,-0.015797473,-0.0017753888,-0.021763045,-0.017949862,0.031090064,-0.01353215,-0.008005028,-0.008795565,0.027037727,-0.04017793,0.033401888,0.021085441,-0.002144085,-0.00108782,-0.026997868,-0.0075599346,-0.015545032,0.017644275,0.02480562,-0.023211258,-0.007978454,0.022148348,0.0013045537,-0.003643782,0.03882272,-0.019836525,-0.026692282,-0.007460287,-0.036510896,0.014110106,0.024632897,-0.020195255,0.0018966268,-0.009313733,-0.010044483,-0.010310209,0.023795856,0.0038530421,-0.017126108,0.019836525,0.0016840452,-0.015385596,-0.02608111,-0.02451332,0.018481316,-0.021112014,0.024526605,-0.012103867,0.0005372669,-0.001459838,0.011519267,0.013020625,-0.005307898,0.0019697016,-0.023437126,0.035394844,-0.010084341,-0.011731849,0.007061696,-0.030691473,0.010217205,0.0049458444,0.01813587,-0.029362839,0.009818614,0.016275782,0.013817807,-0.018507889,-0.016820522,-0.020633705,0.0010454699,-0.01951765,-0.041320555,-0.0028881207,-0.017976435,-0.007732657,0.02451332,0.008629486,0.046023924,0.0053411135,-0.0042184168,-0.0118115675,-0.010310209,-0.02294553,0.035102542,0.0104829315,-0.001999596,-0.038344413,0.012462598,0.016049914,-0.0049491664,-0.011951074,0.025376933,0.019916242,-0.020235114,0.0012231749,0.0031737774,-0.027170591,0.003024306,-0.0010844985,0.008111318,-0.0075599346,0.025908386,-0.0042449897,-0.020049106,-0.009878403,-0.0083836885,0.021085441,-0.0013012321,0.0033182665,-0.024606325,0.0009591085,0.010582579,0.013645084,0.0009690733,0.0038796149,0.006467132,-0.0012555603,-0.03863671,0.0095993895,-0.0063342685,0.02309168,0.007672868,0.029788002,-0.023809142,0.019185493,0.01351222,0.033056445,0.013359427,-0.0089350715,-0.011080817,-0.018521175,-0.015877191,0.0069620484,-0.00061740016,-0.00023334156,0.008489979,0.025337074,0.008622843,-0.01537231,0.010117557,0.007898737,-0.0065833875,0.015545032,0.0005547052,-0.012721682,-0.030292884,0.015212873,0.018056152,-8.255314e-7,0.010828377,-0.005879211,0.021098727,0.013087057,-0.01740512,-0.02378257,-0.0028814776,0.0027353277,0.012489171,-0.0306649,-0.01566461,0.0060519334,0.0001403371,-0.004281527,-0.034172498,0.029495701,-0.009519671,0.04684768,-0.0001402333,-0.00059456425,0.021829477,0.0075134323,0.020447696,0.021842763,0.008005028,0.00039049418,0.0002225464,0.01573104,0.0054141884,0.04177229,-0.012628678,-0.018401599,-0.015784187,-0.0065435283,0.02181619,-0.015425455,0.009858473,0.0021424242,-0.013990529,0.042596046,0.012854545,-0.02800763,-0.015505173,0.008961645,0.0148009965,-0.0112003945,-0.044376418,0.027157305,0.0024529928,-0.0008528177,0.008171107,0.008197679,-0.012814687,-0.0018617501,0.0056168055,-0.014070247,0.011133963,-0.0041420204,0.0017488161,-0.022586798,-0.024207734,-0.0047232984,0.0065402067,-0.036006015,0.009745539,-0.023942007]},{\"id\":\"cbc73dab-6b50-480d-9c25-e1d04c68161f\",\"text\":\"Unfortunately, I dont have the time nor the inclination to sit down and make a video. I love Harney Teas. They are delicious and better than any I’ve had, and I’ve been buying them for many years!\",\"vector\":[-0.024865143,-0.010535967,-0.008717842,-0.022445336,0.009077543,0.0041169403,0.009947365,-0.029168474,0.008665522,-0.00204212,0.005886015,0.024145741,-0.022798497,-0.026748668,-0.0010815553,0.003124493,0.03599625,-0.0072921184,0.030581117,-0.01563064,-0.03526377,-0.019397689,-0.005899095,0.014270316,-0.006167236,0.03536841,0.0142310755,-0.016166922,-0.026866388,0.026604787,0.018952968,-0.0057879146,-0.016127681,-0.04334723,-0.025859226,-0.02827903,-0.012641852,0.019450009,0.0017429144,-0.009201803,-0.012236371,-0.006608687,-0.0045126113,-0.019057607,-0.02738959,0.012177511,0.017592644,-0.005294143,-0.0135116745,0.0092672035,0.014401116,-0.026212387,-0.010732167,0.008914042,0.004365461,0.00015736914,0.0079722805,0.023047019,0.016847083,-0.026081586,0.010352846,0.013825595,-0.025309864,0.017566483,-0.0038586098,0.0023233409,-0.009489564,-0.014832757,0.017396444,-0.0020502952,-0.006821237,0.027101828,-0.017867325,0.0054314835,0.01986857,-0.012210211,-0.005666924,0.0010791027,-0.020823414,-0.027311109,0.016977882,-0.020300211,-0.018809088,0.012249451,0.018979128,0.022837738,-0.0029266574,0.010764867,0.00801152,-0.012916532,0.0052418234,0.016781682,-0.0076060393,0.014113355,-0.025767665,0.03968482,-0.0030394727,0.029534714,-0.0049933027,-0.008449702,-0.010032386,0.0042869807,0.006448456,-0.014754278,-0.012824972,-0.010823728,0.010575207,-0.003163733,0.0010684752,-0.0046336018,-0.016977882,-0.0074425386,-0.029639354,0.002774602,-0.01977701,-0.01989473,0.0024230762,-0.025244463,-0.017710365,-0.03944938,-0.0008322171,-0.0061312653,0.020548731,0.00409732,0.03099968,-0.009221423,0.0064157564,-0.014584237,-0.0019031448,-0.0017412794,0.022157576,0.022798497,0.021895975,-0.008246961,-0.021098094,0.00029900137,-0.029220793,0.008436621,0.017317964,-0.011490809,-0.017278723,0.013191213,0.0029691674,-0.013485514,-0.010352846,0.018717527,-0.009836185,0.012308311,-0.001227888,0.00399922,0.030685758,0.0026536116,0.022890057,-0.000976915,-0.0140871955,0.009450324,-0.026382426,-0.00051053,-0.0071743983,0.007167858,0.024642782,-0.017200243,0.0057650246,-0.036964174,0.007468699,0.019463088,0.02421114,0.004421051,-0.0020862652,0.021320455,0.004280441,0.03160136,-0.03126128,0.01170009,-0.0048494223,0.017985046,0.015316718,0.010150106,-0.018364366,-0.012373711,0.014832757,0.018939888,0.020496411,0.00784802,0.0018769847,-0.018194325,0.020705692,-0.0107779475,-0.002759887,-0.014348797,-0.002810572,0.024511982,0.028697593,-0.002346231,-0.6353757,-0.037408896,0.021189654,-0.007658359,0.025571465,0.010052006,0.005169883,0.021006534,-0.00078316696,-0.00780878,-0.014701957,0.01186359,0.009149483,0.009391463,0.014348797,0.005467454,0.026173146,-0.028723752,-0.02405418,0.011078788,-0.029927116,0.03583929,-0.01184397,-0.0049867625,0.022667697,-0.00074597064,-0.0025031914,0.016951723,-0.025728425,0.036990333,0.00032618333,0.026212387,0.003131033,0.007422919,0.048710044,-0.0061803157,-0.003583929,0.02007785,0.022615377,0.016454682,-0.037408896,0.008691682,0.0010758328,-0.00799844,-0.030214876,-0.000025010453,0.008855183,-0.0018050446,-0.010856427,0.0013071859,0.009881965,0.005467454,-0.021372775,-0.0022857357,0.012877293,-0.019005287,0.016794762,-0.020431012,-0.0104901865,0.016376201,-0.01615384,0.03999874,-0.013138893,-0.0078022396,-0.038821537,0.0077957,0.0004557574,-0.0014061036,-0.022222975,-0.021438174,0.0025751316,0.0051012128,-0.03468825,0.004290251,-0.0017085794,0.021398934,0.011157268,-0.0012638582,0.016716283,-0.0013235358,-0.006353626,-0.0049606026,-0.01952849,-0.0032863582,0.058807828,-0.0010071625,0.000684658,-0.013930235,0.005634224,-0.011327309,0.025819985,0.026029266,0.022968538,-0.036833372,-0.024577383,-0.0034367787,-0.013838675,0.015055118,0.013982555,-0.029613195,0.010091245,-0.015329799,0.015434439,0.0062424457,-0.0079592,0.007514479,-0.018848328,0.004584552,0.01985549,-0.02439426,0.016520081,-0.0085478015,0.0012736683,0.0069454974,-0.0065400167,-0.029587034,0.0067885374,-0.008730922,0.0053889737,-0.017801926,0.002007785,0.014335716,0.010771407,0.013995635,-0.009136403,0.032255363,0.0072986586,-0.0064321063,0.0021647455,0.00064787036,0.010614446,0.013707874,-0.01180473,0.007122078,-0.0052189333,-0.000792977,0.024655862,-0.017396444,0.010228585,-0.041202106,0.02809591,0.011274989,0.0042673605,0.0022448606,-0.006781997,-0.013322013,-0.001958735,0.0019342098,-0.019005287,-0.007449079,-0.011091868,-0.016310802,-0.022079095,0.00095320743,0.014688877,0.00013846441,-0.004731702,0.0033713784,-0.015146678,-0.0014952113,0.02350482,-0.0060887556,-0.017030204,-0.007560259,-0.0039469,-0.01929305,0.017815005,0.034295846,-0.0072463383,-0.010065085,-0.0040907804,-0.024917463,-0.0075471792,-0.0009352224,-0.0145188365,-0.0068800976,-0.007128618,0.014191836,-0.0019898,-0.0146627175,0.0076518194,0.010261286,-0.008449702,0.004653222,0.025898466,0.003083618,-0.006291496,0.008090001,-0.04007722,0.01942385,0.02317782,-0.020810332,-0.021490494,-0.022942377,0.0022137957,-0.0050685126,-0.00067893544,0.009142943,0.021503575,-0.012654932,-0.009456864,-0.008920583,0.008443161,0.0028874173,0.01942385,-0.0007128618,0.008593582,-0.0021892705,0.020823414,0.014688877,-0.0029479126,0.0041692606,-0.034138884,0.005902365,0.00780878,0.022837738,-0.0136555545,0.012249451,-0.016807843,0.0022023506,-0.004280441,-0.024695102,0.0045256913,-0.050959807,0.002360946,-0.000397306,0.00020590833,0.0125764515,0.0011911005,0.005542664,-0.023282459,0.013812515,0.01583992,0.018285885,0.0044145114,-0.007200558,0.01198785,-0.025780745,0.038376816,0.0076387394,-0.021582054,-0.0075798794,0.028331352,0.002769697,0.008946743,-0.0065269363,0.014492677,-0.013995635,0.001012885,-0.01217097,0.002017595,0.0013080033,-0.010169726,-0.0014445261,0.0054020537,-0.029194634,-0.0038062895,0.033380244,0.03228152,0.030973518,-0.022929298,0.017069442,-0.009345683,-0.005974305,-0.013707874,0.0068866373,0.017671125,-0.0012826608,0.022458417,-0.008972903,0.011065708,-0.01989473,0.020548731,-0.03921394,0.01183743,-0.005702894,-0.008972903,-0.00059636775,-0.006448456,0.014715037,0.002398551,-0.027284948,0.03152288,0.003137573,0.0039469,-0.005444564,0.009384924,-0.0047774822,-0.020300211,0.025165984,0.015329799,-0.012190591,0.009980065,0.022079095,0.0007561894,-0.0044635613,0.05101213,-0.0029757074,0.0016791492,0.026539387,-0.010025845,-0.022340696,-0.005447834,-0.022628456,0.018599806,-0.014911238,-0.017527245,-0.008018061,-0.012066331,0.0017069443,0.010052006,-0.00025199502,-0.011235748,-0.011530049,0.0011134378,0.010529427,-0.008338521,-0.012334472,0.014414197,-0.0089794425,-0.028619112,-0.011131108,-0.017304884,0.022249136,0.12661472,0.0027435368,-0.016703201,0.020640291,-0.0069062575,0.01194207,-0.0013080033,-0.030581117,-0.00070918305,-0.0050325426,-0.0030476477,0.0052058534,0.001160853,0.00204866,0.0027206468,-0.014034876,-0.006775457,-0.030790398,-0.002794222,-0.0013284408,-0.016847083,-0.0028301922,0.012439111,-0.014178756,-0.0035348788,0.026356267,0.021621294,0.022366857,0.01638928,0.00774992,-0.010241666,-0.0034956387,-0.01924073,0.015225158,-0.027886631,0.02374026,0.007540639,0.0149504775,0.0079592,-0.022798497,0.02402802,0.027049508,0.03241232,-0.02350482,-0.0032029732,-0.0160492,0.006412486,-0.0038324497,0.017095603,-0.008887882,0.020470252,0.029011514,0.0017690745,-0.009966985,-0.012929613,0.02379258,-0.037565853,-0.011124568,-0.015552159,0.006271876,-0.026408587,-0.0324908,-0.011033008,0.01967237,0.008940202,-0.013890995,-0.018442847,0.0007721307,-0.00401557,0.0157222,0.021895975,-0.0028874173,-0.0064975065,0.005137183,0.0072070984,0.009901585,0.0071874782,-0.009751164,0.0322292,0.020823414,-0.0046466817,-0.012295231,-0.002377296,0.009679224,0.0018802547,0.018455926,0.005500154,0.0069127977,0.016441602,-0.012491432,0.009443784,-0.006327466,0.045832437,0.00021418554,0.0005542664,0.02031329,0.021712855,0.0053170333,-0.010843348,0.0040678903,0.019136088,0.013668635,-0.020744933,-0.016964803,0.032360002,0.007095918,-0.0064615365,0.01994705,-0.013459354,-0.027180308,0.053235736,0.010653687,-0.00393709,-0.0038455296,0.017422603,0.03646713,-0.014754278,0.026238546,0.0073836786,-0.002772967,-0.004303331,-0.018351287,0.030554958,-0.0038716898,-0.009646525,0.01619308,0.0039469,-0.016677042,0.0037212693,-0.00017147105,0.0020552003,0.013890995,-0.032987844,-0.023243219,-0.050227325,-0.0065498264,-0.01619308,0.0142310755,0.004803642,-0.008443161,-0.017017122,0.004643412,-0.0021680156,-0.0078022396,-0.0063013057,-0.025152903,-0.0005060338,-0.011294609,0.005003113,0.010712547,0.0026634217,-0.0030934277,-0.01620616,0.0103463065,0.006281686,-0.014898158,-0.021817496,0.005284333,-0.0058140745,0.02754655,0.03133976,-0.014898158,0.014401116,-0.004368731,0.017985046,-0.0049540624,0.01933229,-0.018782927,-0.024498902,0.018691367,0.018364366,-0.0026274517,0.014204916,0.017710365,-0.0076191192,0.015486759,-0.009352224,-0.033432566,-0.014819677,-0.018390527,0.0091233235,0.008521642,-0.0007488319,-0.0036297091,0.03939706,0.009103703,0.028854553,0.021712855,0.010248206,0.0015336339,0.025296783,0.007481779,0.0044537513,-0.021228893,0.0026601518,-0.010437867,-0.026120827,-0.010280906,0.013086573,0.01180473,0.005146993,0.0017919645,0.0045812814,-0.007122078,-0.005889285,-0.0072790384,0.014636557,-0.041882265,-0.008730922,-0.014414197,-0.023387099,-0.0389785,-0.0072986586,0.0057781045,0.010038925,0.0015352688,-0.022183737,0.014636557,-0.024433501,0.009110243,0.0036624093,0.0016178365,0.017344125,0.008927123,0.016376201,0.028906872,-0.0157876,0.0077041397,0.03167984,0.015512919,0.0014273586,-0.0053399233,0.01952849,-0.026944868,0.007632199,0.00014112129,-0.0005350551,-0.033798806,-0.022628456,0.025492985,-0.00095320743,0.003149018,-0.0159838,0.00013519441,-0.004421051,0.014845838,-0.006062595,0.0069912774,-0.014728117,0.00810308,-0.033249445,0.026107745,0.004296791,0.00799844,-0.0054380237,-0.017815005,-0.032752402,-0.006840857,-0.014780438,0.0024345212,0.001587589,0.010032386,-0.011052628,-0.0050914027,-0.0149504775,0.0152382385,-0.0149504775,-0.011647769,-0.016781682,0.020810332,-0.018547487,-0.01203363,-0.003525069,-0.006657737,0.024001861,-0.02027405,-0.008371221,-0.012484891,0.000078531295,0.011490809,0.0073640584,-0.014335716,-0.0022203356,0.0049017426,-0.011536589,0.0055688242,-0.0136555545,-0.020417932,-0.0013799435,-0.014558077,-0.014191836,-0.018586727,-0.029299274,0.02775583,-0.00019855081,-0.012341011,-0.005680004,0.04682652,-0.00021500305,-0.0037376194,-0.020587971,0.0025048263,-0.012766113,0.007226718,-0.0030525527,-0.028383672,0.022275297,0.0029430075,-0.026722508,-0.020601053,0.008482401,0.0023347859,0.012687632,0.0009940825,-0.012766113,0.013537834,0.019829331,-0.033197124,-0.042143866,-0.00027508943,0.0061116456,0.009725004,0.012641852,-0.0320984,0.025846146,0.0053628134,0.0017494544,-0.014584237,0.017527245,0.008776702,-0.020339452,0.027415749,0.010431326,-0.029299274,0.009672685,-0.013956395,-0.008789782,0.029246954,-0.04018186,-0.019096848,0.008515102,0.049861085,0.021725934,0.014335716,-0.01187013,0.012824972,-0.0058336947,-0.008704762,-0.03186296,-0.022105256,-0.009156023,0.030790398,0.0122167505,-0.0053530037,-0.038795378,-0.013250073,-0.020104012,-0.016520081,-0.009940825,0.0048952023,-0.0018344746,0.00096383493,-0.010182805,0.026892548,-0.021058854,-0.028776072,-0.009653064,0.0005550839,-0.0045518517,-0.012393331,0.006693707,-0.0076845195,-0.036153212,0.00784148,0.014335716,0.012831513,-0.026081586,0.01920149,0.006275146,0.005608064,-0.020614132,0.0049507925,-0.005153533,0.0003699197,0.033720326,-0.023439419,-0.013629395,-0.002392011,0.012628772,0.0022742907,0.008567422,-0.013184673,-0.014741197,-0.007063218,0.018887568,-0.03173216,-0.022484576,-0.009764245,0.0022873709,-0.011516969,-0.014322636,0.028148232,0.012334472,-0.036545612,-0.004391621,-0.0030133126,-0.01564372,-0.022236057,-0.009018683,-0.032333843,-0.008587042,-0.001965275,0.00397633,0.005895825,-0.020326372,-0.020771092,-0.02368794,-0.028566793,0.021529734,0.024093421,-0.016912483,0.0057454044,-0.0135116745,-0.0059056347,0.009849265,-0.009411084,0.005137183,-0.04033882,0.023282459,0.0137994345,-0.007076298,-0.06639425,-0.0033468534,-0.024498902,-0.01929305,0.012641852,0.23062715,-0.020901892,-0.016781682,0.03947554,0.007128618,-0.012602611,-0.0007496494,0.01963313,0.00088126725,0.0068931775,0.00403846,-0.021333534,-0.00796574,-0.0049573327,0.0011894655,-0.03186296,-0.034531288,-0.02752039,-0.014610397,0.0042281207,-0.008822482,-0.016493922,-0.0076060393,-0.014623477,0.0235179,-0.007658359,-0.015146678,-0.0068146973,0.0020617403,-0.021895975,-0.038089056,-0.02715415,0.005271253,-0.018939888,0.014322636,-0.0068016173,0.014571156,0.007272498,0.013446274,0.019463088,-0.024459662,0.01215135,-0.0037081894,-0.01648084,-0.0010987228,0.01198785,-0.0031441129,-0.014061036,0.0019423849,0.015565239,-0.009607284,-0.02402802,0.033066325,0.0046368716,-0.005523044,-0.0057519446,0.0060952953,-0.009620365,-0.033772644,0.00795266,-0.010509807,0.032516964,0.010712547,-0.0056047942,-0.033563364,0.022039855,-0.034295846,-0.03939706,-0.008600121,-0.0131519735,-0.017644964,-0.015486759,0.0069062575,0.017671125,-0.040574264,-0.020260971,0.018586727,0.01207941,0.006435376,-0.008521642,-0.0028465423,0.00012477125,-0.03178448,0.010758327,-0.012713792,-0.031156639,0.023478659,0.019083768,0.008253501,-0.008658982,0.0054641836,0.017697284,-0.00788726,-0.011059168,0.009201803,-0.017213324,-0.0026339917,0.0041038604,0.014741197,0.017579565,0.018115846,-0.0057388647,0.016088441,0.013603235,-0.017723445,0.006343816,0.012942692,-0.009738085,0.040521942,-0.010640607,-0.012923073,-0.041542184,-0.0009572949,-0.0058271545,0.0027435368,0.004692462,-0.002738632,-0.030057916,-0.005542664,-0.020535652,-0.0053922436,-0.014885077,0.010934908,0.01924073,0.015133598,-0.0157876,-0.005536124,0.0022285106,-0.009064463,-0.03523761,0.023426339,0.026487067,0.02036561,-0.01198131,0.008325441,0.005918715,-0.0037670494,-0.0035348788,-0.010359386,-0.0049475227,-0.01615384,0.010163186,0.00784148,0.002733727,0.0022710208,-0.0159838,-0.0058598546,-0.01628464,0.012929613,-0.021660535,0.008606662,0.007154778,-0.0064419163,-0.006003735,0.05545934,0.01610152,-0.045675475,0.004708812,-0.010365926,0.0021042502,-0.018181246,-0.014767357,0.044916835,0.017828085,0.0046499516,0.0041659907,-0.16428521,0.030267196,0.009312984,-0.016807843,0.009424164,-0.003606819,0.0405481,-0.011242288,-0.020640291,0.013328554,0.02434194,0.0033092482,-0.0136555545,-0.037539694,-0.0006486879,-0.013694795,-0.0025784015,0.005421674,0.03628401,0.008397381,0.01929305,-0.013681714,-0.0010259651,-0.011248829,0.020391772,0.009476484,0.025179064,0.029011514,-0.01192245,0.014832757,-0.013282774,-0.0013684984,0.010679847,0.005169883,0.058336947,-0.013053873,0.0037441594,-0.022432256,0.03128744,-0.00786764,0.010137025,-0.007180938,0.0157876,-0.0009572949,-0.020771092,0.00809654,0.008887882,0.00810308,0.012851132,-0.015539079,-0.0057846447,-0.030110236,0.0010423152,0.022262216,0.01994705,-0.008541262,-0.012668012,0.014597317,-0.029430075,0.0077760797,0.0127203325,-0.014544996,-0.015369039,-0.0112815285,-0.014544996,-0.016219242,-0.016323881,-0.018128926,-0.008796322,0.014701957,-0.0033746485,-0.0025636866,0.013197754,0.0038553397,0.0077172196,0.005938335,-0.020287132,0.014113355,0.020731851,-0.024917463,-0.011229209,0.02778199,-0.0058271545,0.0030116776,0.0029789775,0.017461844,0.0043818112,0.008175021,0.01593148,-0.032883205,0.03154904,-0.01972469,-0.001387301,-0.030607278,0.018625967,0.028802233,0.019070689,-0.010078166,0.017265644,-0.034819048,0.0159184,-0.013014633,-0.018325126,0.05082901,0.03468825,0.012674552,-0.006680627,0.015068198,0.017762685,-0.014819677,-0.00023584935,0.0058238846,0.031104319,0.028069751,0.009777324,0.029430075,0.007854559,-0.022850817,0.030921198,-0.010869508,0.026892548,-0.018612888,-0.013459354,0.015853,0.0051012128,-0.008482401,-0.112488285,-0.002705932,0.013864835,0.004630332,-0.018128926,-0.0024296162,0.00821426,-0.0065792566,-0.00790034,0.008593582,0.0024672213,-0.024263462,0.0073967585,-0.0042085005,0.029482394,0.0010120675,-0.0021533004,-0.007063218,-0.029979436,0.024616621,-0.02752039,-0.013289314,-0.022693858,-0.01193553,0.0017069443,-0.029743996,-0.032804724,0.016180001,0.03638865,0.0075471792,-0.013158513,-0.004829802,0.009803485,-0.01934537,0.002756617,0.01929305,0.0014592411,0.009293363,0.023243219,-0.037382733,0.017461844,-0.001180473,0.020653373,-0.004329491,-0.011013388,0.0013586885,-0.02725879,0.021856735,0.027363429,-0.012896912,-0.012118651,0.0115692895,-0.0044047013,-0.025192143,0.034348167,-0.027363429,-0.00395671,-0.014113355,-0.022379937,-0.0074425386,-0.0136555545,0.00088453724,-0.017357204,0.012739952,0.01563064,-0.014571156,0.020300211,0.009260664,-0.008972903,0.005559014,0.01586608,0.022563057,-0.020849572,0.033824965,-0.046591077,0.0029233873,-0.016533162,-0.011013388,0.026683267,0.008384301,-0.037408896,0.007050138,-0.009417624,-0.03178448,0.026761748,-0.012694172,-0.01192245,0.022327617,0.0073444387,-0.025976945,0.0020225001,0.020522572,-0.0037114595,-0.021909056,-0.00064460037,0.03154904,0.0040123,-0.0050423527,0.054099016,-0.006445186,-0.02780815,-0.029456234,-0.036807213,0.024891302,-0.010012765,0.0018148546,0.0065923366,-0.015290558,-0.0015516189,0.009895045,0.00392401,-0.011575829,-0.0022056205,0.007658359,-0.015369039,0.010634067,-0.006680627,-0.02744191,0.030031756,-0.017134843,0.025257545,0.0061770454,0.0040450003,0.045466196,0.011412329,0.037094973,-0.009502644,0.026735587,-0.0077433796,0.0034694788,-0.015552159,-0.0044766413,-0.0048494223,-0.021228893,0.03895234,0.008724382,0.00070346054,-0.012615692,0.0027320918,0.012327931,0.006085485,-0.0011412329,-0.010065085,0.00021663804,-0.0017821545,-0.016807843,-0.031156639,0.0054314835,-0.012955773,0.006039705,0.026787907,0.00036583218,0.0022530358,0.023020858,0.0028301922,-0.024590462,-0.021137333,-0.021307373,0.023243219,0.00008364068,-0.002362581,-0.03999874,0.025440665,0.0038095596,0.003095063,-0.00390766,-0.0029642624,0.0024819362,-0.0064746165,0.0029593576,0.026591707,0.0021680156,0.003175178,0.0007173581,0.007612579,-0.024289621,0.03534225,0.019096848,-0.02045717,0.00397633,-0.0040875105,0.0015205538,-0.01177203,-0.0016129316,-0.000085735526,0.024564302,0.0155259995,0.03978946,-0.00089434726,-0.0028988624,0.010503267,0.015042038,-0.019541569,-0.021111174,0.012641852,-0.0019636399,0.017867325,0.033668004,-0.0162454,-0.012870752,-0.02767735,0.023622539,0.016886322,0.021752095,0.0074883187,0.00398287,0.01574836,0.022654617,-0.02770351,-0.012550292,0.0093391435,-0.005990655,-0.0030116776,0.021137333,0.01587916,0.0056015244,-0.0077106794,0.0050456226,-0.024838982,-0.021974456,-0.0054184035,0.034112725,0.0156568,0.014937398,0.033380244,-0.011811269,0.02796511,0.026068507,0.017828085,-0.011765489,-0.006768917,-0.0072463383,-0.013210833,-0.030136395,-0.029534714,-0.0069847377,-0.01583992,-0.000036378842,-0.0058696647,0.04415819,-0.022523817,0.044184353,0.0007839845,-0.010137025,-0.010947987,0.018390527,0.030502638,0.01924073,0.010012765,-0.025453744,-0.013027713,0.0022105256,-0.0057552145,-0.0037932096,-0.034635928,-0.020888813,-0.0011281528,-0.0039272797,0.013276233,-0.014244156,0.004708812,0.030633437,0.03576081,0.020679532,-0.010392087,-0.010889128,0.0044831815,0.023988781,0.00797882,0.0063601662,-0.0471666,0.023217058,0.009430704,-0.0324908,-0.0022791957,0.010804107,0.009044843,0.019450009,0.015512919,0.030868879,0.046381798,-0.010660227,0.025623785,-0.02799127,0.0018442847,-0.0033223284,-0.0096988445,-0.037775137,-0.0002828557,-0.030633437]},{\"id\":\"129d9756-affb-4fa7-8080-ab7151230bce\",\"text\":\"I am trying to accept this bounty but it won’t let me\",\"vector\":[-0.023934124,-0.022675125,-0.028668491,0.0007930228,-0.03189468,0.025770167,-0.029770117,-0.014937516,-0.024681656,-0.033599578,0.046819083,-0.004695023,-0.002583574,-0.009422832,0.010393311,-0.0038524105,0.028878324,-0.013278522,-0.022137426,-0.016104715,-0.0064786067,-0.011226088,-0.01706208,-0.0052294424,-0.007147451,-0.0032409427,0.027698012,-0.003931098,0.012314599,-0.01737683,0.0026458683,0.010249051,-0.02309479,-0.004229455,-0.03832083,0.0024442314,0.0055048484,-0.024917718,-0.0038130668,-0.0006676145,0.015789965,0.014924402,0.004157325,-0.0070556486,-0.026360324,-0.0028655378,-0.026216064,-0.025429187,-0.013901464,0.007534331,-0.002324561,-0.0052950154,-0.056340273,-0.024170186,-0.0035474962,0.017599778,0.016537497,0.011619526,0.013914579,-0.0044458457,0.00118769,-0.026963595,0.007199909,-0.0038524105,-0.00009702746,-0.0021163668,0.017127654,-0.002152432,-0.01531784,0.0016835853,0.00940316,0.007468758,0.021875134,0.0025212797,0.036773305,0.009894957,-0.015842423,0.0063081174,0.02549476,-0.028537346,0.025639022,-0.0023622653,0.0021360386,0.029061928,0.038215913,0.016222747,0.007855639,0.01786207,-0.015580132,-0.021730874,0.019370249,0.0028753737,0.013652287,0.028170137,-0.011042484,0.009449061,-0.012078537,0.03228812,0.01929156,-0.013822776,-0.02249152,0.0049442,-0.01677356,-0.017730923,-0.026098032,-0.011042484,-0.0039147045,-0.013344094,0.0005303212,-0.005662224,-0.009272015,0.022622665,0.0038524105,-0.010563801,-0.011127729,-0.015396527,0.0073572844,-0.029848805,-0.027986532,-0.009527748,-0.004783546,-0.01141625,0.014557194,0.011363791,0.026963595,0.011468708,0.000052330284,-0.010327739,0.016248975,0.016524382,0.035540536,0.018583372,0.010885108,0.0061474633,-0.012183453,0.017888298,-0.036773305,0.021324322,-0.009455618,0.009849057,0.02423576,0.0290357,0.016393237,-0.0041868323,-0.00085736625,0.0056196013,0.014885059,-0.009370374,0.0011344119,-0.0290357,0.0041310955,0.005845828,0.010085119,0.000033734206,-0.009475291,0.007665477,-0.034333993,0.004357322,0.0014245722,-0.013468683,-0.0068261437,-0.0030032408,-0.01575062,0.003337663,0.023107905,0.022701353,0.017429288,-0.023527572,-0.034281537,0.009416275,-0.0039802776,0.0056720595,-0.009147426,0.026176719,-0.012924427,0.0009180212,0.00605894,-0.0028393085,-0.0007159746,0.014530964,-0.033101223,0.023816094,0.0057507474,0.034832347,-0.009999874,-0.0022770206,-0.009691681,-0.026268521,0.0019540738,-0.0015335872,0.017744038,0.0081113735,0.009626108,-0.0034425796,-0.6353756,-0.014098183,0.009134311,0.009626108,0.010714619,0.006285167,-0.012071979,0.007009748,-0.030216012,0.033048764,-0.015409642,0.014150641,-0.006645818,0.0013516223,0.010721176,-0.018570257,0.018111248,-0.025455417,-0.008786774,0.004304864,-0.0143473605,0.00026966873,-0.0004270438,0.0030163554,0.015671933,-0.037901163,0.015435871,0.0022343982,0.0015598164,0.0009024476,-0.006455656,0.018386653,0.0016917819,-0.0027130805,0.048419062,0.0014352278,-0.0037606084,0.012649021,-0.0040294575,0.016616184,-0.014963746,-0.021704644,0.0014967024,-0.023645604,-0.02360626,-0.014321131,0.017337486,0.0116129685,0.0022819384,0.009173655,-0.013324422,0.0047540385,0.0003356515,0.007665477,0.0020655477,-0.0081835035,0.03561922,-0.014006381,0.01631455,-0.0029409465,-0.0253505,-0.002983569,-0.021048915,-0.038819183,-0.014229329,0.027225886,-0.007298269,0.014937516,0.012681807,0.006219594,0.002558984,-0.0037704443,-0.010747406,0.023029217,0.021704644,0.013422782,0.027357033,-0.023566917,-0.011160515,0.014845715,0.00042499465,-0.030478304,0.0037770015,-0.010767077,0.010734291,0.018780092,-0.001899976,0.00501633,0.012583448,0.0010729373,0.015212923,0.0036589704,0.022386603,0.011016254,0.0015024401,0.022307916,-0.0029278318,-0.003970442,0.022937415,-0.011776901,0.0024721,0.0063113957,-0.010465442,-0.023842322,0.058123857,-0.016970279,-0.016812902,0.010485114,0.04999281,-0.023016103,0.011180187,0.016983392,-0.020248925,0.016183402,0.0074228575,-0.039369997,0.0083277635,-0.017193226,0.018085018,-0.0040491293,0.021796446,0.031081576,0.00685893,-0.0017360437,-0.0002637262,0.01897681,0.012130994,-0.019540736,-0.008944149,0.0049212496,0.0014426048,-0.009435947,0.02469477,0.0030196342,0.013626058,0.016642414,0.030714367,0.0056359945,0.023973469,-0.0277767,0.00964578,-0.0022786597,0.015291611,0.017324371,0.000087242755,-0.019566966,0.0013917857,-0.0035147099,-0.005445833,0.0038622464,-0.002026204,0.0041114236,-0.029481595,-0.0057573044,0.015330954,-0.00222948,-0.00630156,-0.011796572,-0.024445593,-0.016563727,-0.001631127,0.008399894,-0.0098884,0.006337625,0.0003290942,0.0015393249,-0.005537635,0.017193226,-0.008511368,-0.03123895,0.004727809,-0.03228812,-0.014989975,-0.017298143,-0.0076261335,-0.014386704,-0.034386452,-0.010432655,-0.015304726,0.00426552,0.0060228747,0.02423576,-0.0005688453,0.028038992,0.023029217,0.0116129685,0.0035770042,0.04369781,-0.0027065233,0.038792953,0.012871969,0.0025770166,0.0012090012,0.025848854,-0.017271914,-0.010655603,-0.004016343,0.015108006,-0.004462239,0.033022534,0.008013014,0.021612842,0.031448785,0.008222847,0.0142030995,-0.01766535,-0.0018901401,-0.013953922,0.019265331,0.009704796,0.0049769864,-0.019016154,0.008557269,-0.009409717,0.019199759,0.023684947,-0.014806371,-0.011652312,0.0054818983,0.013108032,0.0009639223,-0.009206441,0.013075245,-0.021481697,-0.031711075,0.010327739,0.026622616,0.011344119,0.0142030995,-0.0034130719,-0.0011688378,0.02343577,0.0056917313,0.0028786522,-0.008340878,-0.012091651,0.011180187,0.005491734,0.013199833,-0.016248975,0.0042491267,-0.0062982813,0.016707987,0.015055548,0.008694973,-0.00006500943,0.02343577,-0.0045507625,-0.025481647,0.017626008,-0.009350702,-0.010452327,-0.040576536,0.013704745,0.007953998,-0.028511116,-0.018137475,0.020878425,0.030111097,0.034648743,0.02295053,0.0097310245,-0.016104715,-0.011468708,0.030137325,-0.0022573485,-0.0026425896,-0.01834731,0.015999798,0.00015676032,-0.02108826,-0.026858678,0.0048753484,0.0061277915,0.03323237,-0.004042572,-0.020681707,0.021193175,0.018294852,0.019711226,-0.043146998,-0.022504635,0.047107603,0.017888298,-0.0054818983,0.004104866,-0.0013409667,0.021245634,0.0028425872,0.02506198,0.022543978,0.00036126593,-0.0041474886,0.0075146593,-0.024983292,0.005472062,0.0069638467,-0.02060302,0.007999899,-0.00814416,0.017166996,0.0044294526,-0.015370298,-0.02137678,0.01253099,0.002867177,0.006970404,-0.027671782,-0.002355708,-0.018085018,-0.004970429,-0.006403198,0.007921211,-0.010911338,-0.010511343,0.017560434,-0.023802979,-0.0070884353,0.011645755,-0.0064786067,0.010072004,0.0051966556,-0.030556992,-0.004285192,0.10255609,0.018648945,0.0024589854,-0.005511406,0.015724393,0.0018819435,-0.020183353,-0.035829056,0.008413008,-0.0068064714,-0.0012762134,-0.022019394,-0.003799952,0.028537346,0.01645881,-0.017704695,0.010871994,-0.01260312,-0.00877366,-0.031448785,-0.007508102,-0.010911338,-0.01994729,0.017507976,-0.005157312,0.022412833,0.03569791,0.0014188346,-0.002978651,-0.015999798,0.012839182,-0.0092589,-0.0039114263,0.019462049,0.011455594,0.01141625,0.005045838,-0.0033933998,0.018216165,0.0016319467,-0.0071343365,0.0070031905,0.012819511,0.0006684342,0.0034229078,-0.015252267,-0.012170338,0.0073113833,0.002426199,-0.0024442314,0.051828854,-0.0072392533,-0.012426073,-0.023330854,0.010649046,0.014045725,0.0020376793,-0.007435972,0.011534281,-0.047369894,-0.044222392,-0.02709474,0.008622842,-0.011088385,-0.01121953,-0.011534281,-0.019212872,-0.028563574,-0.01233427,0.013003115,0.0003118813,0.0019196479,-0.0059081223,0.01611783,0.016012913,-0.0063310675,0.008163831,-0.0120326355,0.025337385,0.003145862,-0.012662135,-0.0135080265,0.0023770193,0.020340728,0.0041114236,-0.0092392275,0.0013721138,-0.003976999,0.002532755,0.0014655553,0.008767103,0.028589804,0.02089154,-0.027619325,0.009914629,0.017468633,-0.0038163452,0.0043376503,0.0018360424,0.016839132,0.024511166,-0.007435972,0.010091676,0.0019917781,-0.0026081637,-0.001613914,0.015121121,0.026320979,-0.042884704,-0.01260312,0.007599904,-0.0064818854,0.020668592,-0.0007823672,0.002365544,0.01640635,-0.0022573485,0.022373488,0.007855639,0.0052851792,-0.023698062,-0.024012811,0.007547446,0.0051900987,-0.0028343906,-0.015671933,0.006452378,-0.034045473,0.02091777,-0.0072458102,-0.020707935,0.007934326,0.0023786586,-0.012537546,-0.017193226,-0.009416275,-0.00061720534,0.0135080265,-0.019186644,-0.019304674,-0.020222696,-0.0076982635,-0.00877366,-0.017403059,0.010065447,-0.03603889,-0.0025245585,0.020248925,-0.012111323,0.038373288,-0.007927769,-0.011442479,-0.011449036,-0.0021606286,-0.016878476,-0.038478203,-0.025258698,0.0024852145,0.052117378,0.03032093,0.0146227665,-0.0045474838,0.039763432,0.0022212835,-0.001519653,-0.012465416,0.028668491,-0.0077966233,-0.018137475,0.02809145,0.015514558,-0.004137653,0.037507724,0.0049376427,0.000278685,0.011888375,-0.005121247,0.00055491104,-0.04275356,-0.025625907,-0.018753862,-0.02055056,-0.0070031905,-0.015029319,-0.01645881,-0.016065372,0.01514735,0.012006406,0.041625705,0.021940706,0.030661909,-0.009226114,0.028196367,0.009298244,0.012871969,0.0025622628,-0.025166895,0.0074228575,-0.0006922044,0.023409542,0.0035474962,0.0006143365,-0.02675376,-0.0070884353,-0.018294852,0.03181599,0.00039036394,-0.0035606108,0.005239278,-0.023658719,-0.0043081422,-0.027199658,-0.030373387,-0.011258874,0.0029557005,0.015212923,-0.0004124948,-0.0076326905,0.02038007,-0.04246504,0.001296705,0.014557194,0.022478405,0.014373589,0.020878425,0.022019394,0.013534255,-0.024143958,0.020222696,-0.02746195,0.0032638933,0.013370323,0.030976659,-0.015685048,-0.013494912,-0.0012106405,0.0040622437,-0.024511166,-0.03792739,0.020629248,0.003616348,0.00032970897,-0.025507875,-0.008550712,-0.035147097,0.009868728,-0.0067605707,0.0090228375,0.0045671556,-0.013940808,-0.018111248,-0.00996053,-0.0010950682,0.006560573,0.030583221,0.021101374,-0.017914528,-0.005288458,-0.00957365,0.008511368,-0.012583448,0.036851995,-0.019934176,-0.0079802275,-0.0040196213,-0.00032561066,0.0030278307,-0.03063568,-0.013468683,0.022530863,-0.02615049,-0.023671832,-0.0068458156,0.011331005,-0.018819435,0.031475015,-0.008163831,-0.03160616,0.016524382,0.014911287,0.00075818715,0.009809713,-0.024091499,-0.0139276935,-0.019527623,0.0020425972,-0.017035851,0.032340575,0.003206517,-0.01030151,-0.004006507,0.0016786674,-0.0025048864,0.026268521,-0.0070228623,0.033756953,0.01766535,0.037481494,-0.020983342,-0.001238509,-0.00550157,0.030111097,-0.030845514,0.005901565,0.0050982963,-0.0156063605,-0.001517194,0.010039218,-0.0008885134,-0.026111146,0.024904605,-0.017757153,0.0055441926,-0.013291636,0.013835891,0.014780141,0.01771781,0.0044556814,-0.016707987,-0.0013811302,0.017468633,0.026858678,0.00901628,0.0042622415,-0.00023667734,-0.016707987,0.030452074,0.009442504,-0.0067999144,-0.02775047,-0.004245848,-0.0029770117,-0.02006532,-0.017940758,0.0020065322,-0.016498152,0.0029360286,0.011212974,-0.008786774,0.0075802323,0.0009655616,0.016970279,0.0040196213,0.022124311,-0.022845613,-0.011475265,-0.0070687635,-0.005183541,-0.030793054,-0.007481873,-0.028406199,0.015685048,0.015881767,-0.012485089,-0.014609652,-0.008944149,-0.004954036,-0.022517748,-0.015094892,0.013481798,0.031317636,-0.006199922,-0.0010524457,0.0359602,0.007894983,-0.007258925,-0.031422555,-0.023540687,0.03150124,-0.029088158,-0.028852096,-0.019514509,-0.016445694,-0.012852297,0.01885878,0.019737456,0.02746195,0.043960102,0.0007479414,0.006337625,0.0010573637,-0.010858879,0.0036360198,0.017455518,0.020524332,-0.020589905,0.009632666,-0.010839208,0.010734291,0.002355708,-0.025311157,0.010452327,-0.0015360463,0.028353741,-0.007009748,-0.008085144,-0.013298193,-0.0096588945,0.028616033,0.01277361,-0.030897971,-0.009612993,0.008780217,-0.030583221,-0.006186807,0.026858678,-0.008649072,-0.010412984,0.016419465,-0.023199707,-0.0015057187,0.016130945,-0.006645818,-0.025088208,0.008734317,-0.009173655,-0.021350551,-0.025337385,0.008734317,0.023698062,-0.008957264,-0.030871741,-0.001618832,-0.030688139,0.015212923,-0.024904605,-0.01752109,-0.021075144,-0.0060064816,-0.0017622729,-0.016812902,-0.03354712,-0.006586802,0.008544154,0.014412933,0.020694822,0.23627244,-0.020655477,-0.014609652,0.026688188,0.0005028625,0.011711327,-0.0021491533,-0.004137653,0.0023229215,0.00027253755,0.031081576,0.0010803143,-0.031107804,-0.0033491382,0.007927769,-0.007534331,-0.043960102,-0.0032458608,0.0011819523,-0.016852247,0.019488279,0.022360373,-0.01975057,-0.03194714,0.012386729,-0.0045868275,0.020786623,0.010419541,-0.007554003,-0.0009926105,-0.027278345,-0.013599829,0.008426123,-0.014793256,0.000084988686,-0.00037356088,0.010216265,-0.016078485,0.024170186,0.011731,0.0066687684,-0.0009663813,0.0110490415,-0.012485089,-0.016642414,0.024052156,0.008872019,-0.0033458595,0.007462201,0.00004723301,-0.023042332,-0.021835791,0.009494962,0.019698113,-0.004783546,0.0072064665,0.005675338,-0.01044577,-0.019842373,-0.010734291,-0.027278345,-0.0039442126,0.012832625,0.008058915,-0.018452227,0.04013064,-0.010714619,0.022412833,0.017586663,0.016511267,0.013062131,-0.0003131108,0.004360601,-0.0010491671,-0.023527572,-0.0041015875,-0.009921187,0.012727709,0.04052408,0.0044360096,0.0028393085,-0.001119658,0.0073376126,-0.028616033,-0.012229354,-0.038478203,-0.0005319605,0.017822726,-0.000949988,-0.0069638467,-0.008065472,-0.0054687834,-0.029245533,-0.03184222,-0.016589954,-0.021743989,0.0063704117,0.03255041,0.001558177,-0.0043081422,-0.017101424,0.026858678,-0.009121196,0.019160414,-0.028458659,-0.017757153,-0.0039442126,-0.00044712552,0.03606512,-0.0061409064,-0.019016154,-0.028196367,-0.0098884,0.009422832,0.007481873,0.029140616,-0.015567017,0.0059868097,0.018098133,0.009416275,0.017507976,-0.05175017,-0.0005081903,-0.010026103,0.005626159,0.0015253907,-0.0041868323,-0.021258749,-0.00038974918,-0.03950114,0.0083277635,0.019999748,0.011180187,-0.023540687,-0.023842322,-0.0062228725,-0.007232696,-0.01044577,-0.02108826,0.01960631,-0.028248824,0.011947391,0.016471924,-0.010740848,-0.012865412,-0.039737206,0.0035573323,-0.022478405,-0.02489149,-0.01340311,-0.01780961,-0.0030770104,0.01013102,-0.012990001,0.03978966,-0.019632539,-0.020825967,0.001514735,-0.00019313282,0.007947441,-0.037481494,0.025022635,0.026622616,-0.005085182,-0.040340476,-0.01274738,-0.16566348,0.022543978,-0.00042827328,-0.0020442365,0.05075346,0.021599729,-0.01340311,0.0015721114,-0.011212974,0.0043901084,0.018504685,-0.011475265,-0.03346843,-0.01274738,0.010563801,-0.028511116,-0.012327714,0.0043343715,0.008472024,0.018071903,0.006455656,-0.0044294526,-0.008511368,-0.018885007,0.012471974,-0.0038163452,-0.03192091,0.010268723,-0.012694922,-0.022766925,-0.02809145,-0.017114539,-0.0032655327,0.020052206,0.024078386,0.008668743,0.012760495,0.008098259,0.026163604,-0.0018737469,0.010465442,0.020327613,0.0071015498,0.01037364,-0.016353892,0.025455417,0.023304624,0.009835942,0.015016204,0.0031638946,0.017586663,-0.012832625,-0.028904554,0.017927643,0.014360474,0.02314725,-0.021652186,0.006645818,-0.038556892,0.009639223,0.0023786586,-0.014989975,-0.00038749512,-0.015934225,-0.016130945,0.012681807,-0.0018442391,0.0060195965,-0.016563727,0.00087212014,-0.0006290904,0.00042253567,0.012419515,0.0082556335,0.0017688301,-0.006976961,-0.03252418,0.014111297,-0.010950682,-0.013193277,0.02108826,0.03354712,-0.019225987,-0.0040819156,0.004488468,-0.016327662,0.03727166,-0.016301434,0.030897971,-0.021298092,-0.010235936,-0.018675175,-0.02154727,-0.03695691,0.012340828,0.022583323,0.037114285,0.015422757,0.023134135,-0.023383312,0.0066654896,0.0033393023,-0.024353791,0.036170036,0.03664216,0.005052395,-0.005606487,0.02331774,0.023055447,-0.013914579,-0.028957013,0.013586714,0.0049015777,0.052353438,-0.0156063605,0.01900304,0.004006507,-0.027383262,0.0038163452,-0.01514735,0.028222594,-0.009265457,-0.011908047,-0.004236012,0.0020819409,0.0156063605,-0.1032905,-0.0038556892,0.000055737004,-0.018399768,0.009226114,0.0050130514,0.00068728643,0.0179801,-0.0066786045,0.014150641,-0.006721227,-0.035252016,-0.01451785,-0.0043376503,-0.016996507,0.021573499,0.0129440995,-0.0040655225,0.031343866,0.029534055,-0.024707885,-0.013108032,0.017403059,-0.009350702,-0.020616133,-0.019239102,-0.011927718,0.022583323,-0.001352442,0.00093359477,0.01815059,-0.010747406,-0.0068327007,-0.0062786094,-0.0029557005,0.015475214,-0.027671782,-0.00097539753,0.005242557,-0.010957239,0.014675225,-0.020760395,0.012340828,-0.002917996,-0.02360626,0.010681832,-0.007888425,-0.013003115,0.029560283,-0.012091651,-0.016852247,-0.006990076,-0.018570257,-0.0063769687,0.01354737,0.02057679,-0.010268723,0.027855387,-0.038373288,0.0022048901,0.014111297,-0.005606487,-0.035881516,0.007599904,0.009199884,0.012930985,-0.028668491,-0.009101525,-0.023068562,-0.002360626,0.0067671277,0.02043253,-0.015108006,0.015960455,-0.01771781,-0.020170238,-0.03317991,-0.0063638543,0.026832448,-0.019527623,-0.019448936,-0.002411445,-0.0008307272,-0.020839082,0.024563625,-0.01156051,-0.008839233,0.027645553,0.016996507,-0.020275155,-0.0050753457,0.011999849,0.010767077,-0.0076720347,-0.014150641,0.011678541,-0.0042163404,0.010340854,0.015370298,-0.018098133,-0.008826118,0.011442479,-0.03708806,0.019855488,-0.020078436,-0.017232569,0.019029269,0.00637369,0.012708036,-0.017993215,-0.010209708,0.017298143,0.026583271,0.018845664,-0.015212923,-0.012839182,0.0034819234,0.0025802953,0.015029319,-0.014504735,-0.007016305,0.012990001,-0.0296652,-0.021009572,-0.0025770166,-0.013278522,-0.007350727,0.02806522,-0.011068713,0.030845514,0.0023983305,-0.013730975,-0.017193226,-0.01623586,-0.008294977,0.04980921,0.0037868374,-0.016026028,0.016327662,0.00748843,0.0053638667,0.021507926,-0.00017848135,-0.008478582,-0.0110490415,-0.025442302,-0.023462,-0.03163239,-0.031789765,-0.0007278597,0.00884579,0.0210358,0.02600623,0.026425896,-0.010845765,-0.00828842,-0.0024704607,-0.036458556,0.0121047655,-0.019081727,-0.012714594,-0.034648743,0.035829056,-0.009304801,0.0062950025,-0.0073179407,0.005036002,0.002162268,-0.013442454,0.017245684,0.02709474,-0.03291762,-0.0042786347,-0.0056851744,-0.011849031,-0.0315537,0.027016053,0.0401831,0.0005229442,-0.015134236,-0.021481697,0.0156063605,0.010052333,-0.02537673,-0.019383362,-0.023462,0.003937655,0.04086506,0.0017639122,0.020812852,0.024052156,0.001681946,-0.0068851593,0.006183529,0.020353843,0.01267525,0.0122490255,-0.01803256,-0.0022458734,0.019553851,0.021560384,0.028196367,0.0049573146,-0.010124463,0.013626058,0.018452227,-0.020760395,0.021245634,-0.035147097,-0.02234726,0.008406451,0.035173327,0.008229405,0.014098183,0.0011057238,0.015396527,-0.023383312,0.027199658,-0.0004762235,-0.03286516,-0.027645553,0.03693068,0.019199759,-0.0081113735,0.021730874,-0.04154702,0.033573348,-0.0018934187,-0.006160578,-0.022858728,0.018557142,-0.01854403,0.009822827,-0.008222847,-0.013822776,-0.012898198,0.007508102,-0.0065999166,-0.028852096,0.006606474,-0.009383488,0.042569954,0.033337284,-0.016498152,0.011868703,0.011790016,0.017285028,0.019645654,0.0011229367,-0.00015081777,-0.014098183,0.03695691,0.00918677,-0.011029369,-0.022124311,-0.019789914,0.00041208498,0.014294902,-0.0035376602,-0.0049245283,-0.0045868275,0.011822802,0.024078386,0.0063048387,-0.016983392,-0.010045775,0.005927794,0.023619374,-0.0076130186,-0.010334296,-0.028563574,0.018885007,0.011534281,-0.0043671583,-0.014255558,0.0072917114,-0.017770268,-0.0095146345,0.013442454,0.0010278559,0.0106293745,0.015619475,0.022557093,-0.010386755,-0.030478304,-0.0025163617,-0.0058851717,-0.024130844,-0.0014983418,0.0025458694]},{\"id\":\"0b8bcbc2-8a32-419f-8e71-885cccc08e5a\",\"text\":\"You improve the company more people to bye more ring\",\"vector\":[-0.01175559,-0.013459982,-0.0030028964,-0.039369438,-0.025680406,0.028509833,-0.03115063,-0.004392347,-0.004877391,-0.018148744,-0.008393963,0.007181352,0.018997572,-0.010374561,0.0077876574,-0.012597681,0.028671514,-0.0027014278,0.0054028556,-0.025451358,-0.027674478,-0.016437616,0.007908919,0.0038534084,-0.017097816,0.00006778832,0.014793854,-0.009950147,0.004062247,0.01797359,0.032605764,0.0014921853,-0.0044058203,-0.017205603,-0.031797357,0.0123080015,0.0031056316,0.01610078,0.019320935,-0.005746429,0.029857177,-0.004823497,0.0002517852,-0.009700888,-0.041579086,-0.007012934,-0.010960656,-0.002748585,-0.010381298,0.0069725136,-0.0052917,0.024454322,-0.0060192663,0.03106979,0.015117218,0.0013566086,-0.008636485,0.01247642,-0.011856642,-0.0168014,0.026313659,-0.002009229,-0.011108864,-0.00061556854,-0.0014147129,0.00809081,-0.021921312,-0.006447049,-0.014335757,-0.012873887,0.04109404,0.026300186,-0.007949339,0.016087307,0.007747237,-0.013210723,-0.010839395,-0.0008656695,0.0030231066,-0.0063190507,0.01692266,-0.02931824,-0.0109135,0.0024134328,0.017407704,0.039558068,-0.027310695,0.016734032,-0.002435327,-0.0035974127,0.022096468,-0.0002248383,0.014241443,-0.0013498719,-0.0059215836,0.011506331,-0.022568038,0.014591753,0.0078078676,-0.015817838,0.022325516,-0.0008572486,-0.03996227,-0.018148744,0.004766235,-0.0076596597,-0.017326863,-0.020385338,0.03344112,-0.021449741,-0.004045405,0.032039877,0.034950145,-0.007706817,0.02093775,-0.023767177,-0.021059012,-0.014160602,-0.005877795,-0.0036108862,0.04354621,0.009646994,0.030935055,0.014874695,0.007902182,0.011391807,-0.0009945094,-0.019752087,0.012052006,0.007814605,0.021072485,0.017407704,0.0141336555,0.014093235,-0.019482616,0.0047594984,-0.002777216,-0.0058912686,-0.035650764,-0.023187818,0.0005322015,0.007282403,0.0011393491,0.004702236,0.009680678,0.0133117745,0.016504984,0.013096199,-0.0015511316,-0.014995957,0.013621664,-0.032767445,0.026165452,0.0035502557,0.0014568174,0.011506331,-0.013628401,0.02818647,-0.005534222,-0.008764483,0.013042306,-0.019482616,0.023578547,-0.011924009,0.0034273104,0.016734032,0.021867419,0.02378065,0.00025557462,-0.008003233,0.009741308,0.010340878,-0.023659388,0.011506331,-0.017717594,-0.0012505051,-0.006349366,-0.0015275531,0.0011427174,-0.011088654,0.012671785,-0.011290756,0.013864186,0.04074373,-0.02756669,-0.011769064,0.020398812,0.00054188556,0.011075181,-0.013116409,0.003321207,0.0078078676,0.010388034,-0.015346266,-0.6687146,-0.007625976,0.008946375,-0.009047425,0.009842359,-0.007113985,0.016760979,-0.008333333,-0.009236054,0.002221436,-0.013655348,-0.002256804,-0.001073666,0.0000058189803,0.0031982616,-0.013594717,0.027458902,-0.018714631,0.00047620246,-0.010260036,-0.0031207893,0.0063628396,0.010536242,-0.014632173,0.026367553,0.006746833,0.009013742,-0.008340069,-0.010320667,-0.009135003,-0.00068883045,0.031743463,0.0013726084,-0.0010366141,0.05691188,0.022743193,-0.017407704,0.009929937,-0.0128873605,0.023484234,-0.012180004,-0.021921312,-0.0035603608,-0.025788195,-0.007113985,-0.003331312,-0.003164578,-0.0014921853,-0.00095914165,-0.012052006,0.002100175,-0.000351573,-0.00660873,-0.0025599566,0.022056047,-0.007255456,0.0041936133,0.0019587036,0.008697116,-0.010078145,-0.0005300963,0.003506467,-0.03621665,-0.0135879805,-0.011270545,0.017394232,-0.006359471,0.005099703,0.012954728,-0.0060563185,-0.019684719,0.017407704,-0.011162758,0.009990567,0.00955268,0.032578815,0.0033195226,-0.021692265,-0.01597952,0.040608995,-0.013877659,-0.032444082,0.0016850241,-0.018135272,0.006329156,0.025815142,-0.024157906,-0.045944486,-0.010509295,-0.013837239,-0.0021961734,0.0066794655,-0.015912151,-0.004042037,0.02904877,0.012921045,-0.015966045,0.010637294,0.021315007,0.0030786847,-0.02272972,-0.004513608,-0.0022551196,0.0004959916,0.010610347,0.02190784,-0.016531931,-0.016154673,0.031554833,-0.002229857,0.02351118,0.0056217993,0.018741578,-0.0016631297,0.0045978166,-0.030692533,0.017946644,0.02374023,0.012018323,-0.034950145,0.002361223,0.016033413,0.02561304,-0.015076797,0.02495284,0.012745889,-0.018539475,0.0013928185,-0.0028260574,-0.014672593,0.008798167,-0.015346266,0.033710588,0.005783481,0.027917001,0.01473996,0.017555913,-0.021126378,0.011081917,-0.007282403,-0.0029826863,-0.0004959916,0.0019418618,-0.009936674,0.019967662,-0.010650767,-0.03753705,-0.00912153,-0.008124494,0.0048336023,0.020991644,-0.008616275,-0.03726758,0.0034997303,-0.0019772297,0.007107248,-0.016451089,-0.01863379,-0.0060125296,-0.02686607,0.012274318,0.03158178,-0.008495014,-0.0065548364,-0.010670977,-0.02845594,-0.012287792,0.00035220454,0.009815413,-0.00066609395,0.029776337,-0.007127458,-0.006187685,-0.0010812448,-0.002694691,0.008521961,-0.015804363,0.012671785,-0.00027262696,0.0068916725,0.01945567,0.0028058472,-0.03864187,-0.004628132,0.017340338,-0.014187549,0.0117758,0.0045944485,-0.0030146858,0.01976556,-0.021665318,0.037294526,0.0030517378,-0.008548908,0.02027755,-0.00842091,0.0088992175,-0.0096604675,0.0057295873,-0.009465103,0.0126111545,0.0176637,0.025828615,-0.023174344,0.0052917,0.0072150356,0.011998112,-0.0102398265,0.021005118,0.024373481,-0.011034761,-0.019509563,0.010569926,0.009249527,0.002952371,0.05529506,0.012880624,0.02409054,-0.0020159658,-0.009653731,-0.021341953,-0.023241712,0.024993261,-0.000554938,-0.010900026,0.005578011,-0.003425626,0.010542979,0.0028344784,-0.004938022,-0.030423064,0.010569926,0.026596602,0.013480193,0.012469684,0.0050188624,0.023834543,-0.01175559,0.017879276,0.015251952,0.036108863,0.016518457,-0.0051771756,-0.02748585,0.01540016,0.033818375,0.018418213,-0.0035839393,-0.015858257,0.03761789,-0.016033413,0.022487197,0.0012926097,0.0021944891,0.012132847,-0.01606036,0.0063190507,0.007208299,0.0013498719,0.023578547,0.010610347,0.011641066,0.022756668,-0.009188897,0.0020833332,0.024225274,0.023807596,-0.015171112,0.009040689,-0.019886822,0.0032167875,0.010502559,-0.0009473524,0.00127661,0.021665318,-0.0013742925,-0.011391807,0.011560225,-0.013210723,0.026569655,0.0073632435,-0.0081985975,0.025330096,0.0022079626,-0.006379681,-0.021005118,-0.0055409586,0.018189166,-0.013096199,0.02101859,0.0070196707,-0.0049211797,-0.015615735,0.0066794655,0.0079560755,0.020681756,0.014982483,-0.012718942,0.0054365396,-0.007154405,0.011782537,0.015211532,-0.02159795,-0.009774992,0.019307462,-0.0021995418,-0.0063931546,0.0068377787,-0.042980324,-0.011513068,-0.009889517,-0.013985448,-0.022204256,-0.00127661,0.0140123945,-0.025127996,-0.02054702,-0.022177309,0.0035873076,0.03193209,-0.0013102936,0.0010989287,-0.01735381,0.023268659,0.112530306,0.02818647,-0.0040992987,-0.00073725067,-0.019051466,0.007181352,-0.031878196,-0.02600377,-0.0007583029,0.009054163,-0.003701832,0.0076933433,0.030072754,0.0018020747,-0.0058474797,0.0062988405,0.01181622,-0.0028563726,0.0093573155,-0.0030551061,-0.0029506867,0.014106709,0.0176637,0.005079493,0.013412826,0.02693344,0.015534895,0.02888709,-0.007127458,-0.020803016,0.0129479915,-0.013971974,0.008993532,0.007039881,-0.00420035,0.011001077,-0.019711666,-0.005645378,0.015346266,-0.0066794655,0.006332524,0.0032689972,0.014901642,-0.01793317,0.014564806,-0.0011561909,-0.0074104005,-0.015144165,0.014187549,-0.0038668818,0.008865534,-0.0056217993,-0.033117756,-0.008171651,0.008629749,-0.0031982616,-0.020466179,0.0069388296,-0.004042037,-0.040339526,-0.02093775,-0.021463215,-0.007201562,-0.023376446,-0.015763944,-0.018162219,-0.027943948,-0.023578547,-0.007477768,-0.011856642,-0.00012968201,-0.017299917,-0.019603878,-0.013594717,0.019954188,0.009188897,0.009498786,0.00677378,0.0015460791,-0.0015267109,0.0109135,-0.015103744,-0.026246293,-0.01781191,-0.033063862,0.02600377,-0.033791427,-0.008589328,-0.03562382,0.008548908,0.021045538,0.004210455,0.02736459,-0.02810563,-0.0009566154,-0.004934653,0.03139315,-0.0034104686,-0.005904742,0.0082929125,-0.02600377,-0.016451089,-0.005860953,0.0043081376,0.018741578,0.0027974262,0.018418213,0.007154405,-0.01426839,-0.0015949203,0.011398544,-0.0118835885,0.0053826454,-0.0054264343,-0.014645646,0.022527618,0.010617083,0.002748585,0.0029018456,-0.003506467,0.021624897,-0.029614655,0.031878196,-0.016235514,-0.020654809,-0.026111558,0.017488545,0.0008707221,-0.00173976,0.013641874,-0.027580164,0.017690647,0.0042609805,-0.030126648,-0.02974939,-0.022015627,0.0095998375,-0.01910536,-0.018296953,-0.011513068,-0.009337105,-0.010340878,0.023457287,-0.0061034756,0.016087307,-0.032309346,-0.003423942,0.010145512,-0.008562381,0.01317704,-0.019159254,-0.017488545,-0.038695764,0.005008757,0.003284155,-0.012840203,0.011243599,-0.028914036,-0.00057641126,0.027472377,0.040474262,-0.011149284,-0.010778764,0.0011873483,0.0008311438,-0.014322284,-0.019873347,-0.006079897,-0.013419562,0.034680676,-0.0009844044,0.036593907,0.009040689,-0.008993532,0.0002610482,0.0021523845,-0.02409054,-0.035300456,-0.002165858,-0.035219613,0.012206951,-0.0066222036,-0.03672864,0.00303658,-0.016329829,-0.011034761,0.03125842,0.0034458362,0.00922258,-0.010078145,0.017623281,-0.015413634,0.022190781,-0.0036580432,0.009249527,-0.010091619,0.006187685,0.0049616,0.008986795,0.03559687,0.021746159,0.036755588,-0.0028344784,-0.030045807,-0.014618699,-0.0030146858,-0.009586364,-0.04179466,0.01976556,-0.0121261105,0.027620584,-0.04440851,-0.038884394,0.017165182,0.0041498244,0.016302882,-0.012638101,0.01422797,-0.0004136772,-0.007228509,0.0035569924,-0.013001885,0.029911073,-0.0036681483,0.011910535,0.008980058,0.0017153394,-0.012624628,0.0024841684,0.015049851,-0.008879008,0.01618162,-0.0060866335,-0.015602262,-0.02888709,0.017043922,0.0019233358,-0.019590406,-0.015777417,0.005958636,-0.013864186,0.019118834,-0.0021557529,-0.01167475,0.0016875503,0.01672056,0.0062415786,0.002565009,0.0055409586,-0.023457287,-0.03028833,-0.003738884,-0.017421179,0.014874695,0.0055106436,-0.022244675,-0.034788463,-0.021665318,-0.026017243,0.011809484,-0.0051199133,0.01626246,0.010529506,0.0027250065,0.00056756934,-0.008373753,0.025869036,0.0010686135,-0.0026879543,0.027189434,-0.019913768,0.0032521554,0.000060051614,-0.00877122,-0.0075181886,-0.013729451,-0.01723255,-0.023767177,-0.01890326,0.000023486444,0.007235246,-0.007747237,-0.022568038,0.014470492,-0.014241443,0.006541363,-0.014780381,0.019159254,0.026502287,-0.013641874,-0.013769872,-0.00006673571,0.011102128,0.029075718,0.0099232,-0.008117757,0.015548368,0.017286444,-0.0035401506,0.006561573,-0.008306386,-0.009283211,0.0025717458,-0.0046853945,-0.00918216,0.0063998913,0.0375101,-0.008313122,-0.02089733,0.015777417,0.0047157095,-0.0126111545,-0.0070668277,-0.0072958763,-0.008872271,0.0047157095,0.00041409823,-0.01214632,-0.011742117,-0.0015385002,0.0024622742,0.028428992,0.021045538,-0.013621664,-0.006308946,-0.008798167,0.024979787,-0.015992992,-0.02011587,-0.026758283,-0.0041430877,0.0077607105,-0.0005128334,-0.019374829,-0.01809485,0.0064605223,-0.006467259,0.021786578,0.0073160864,0.0076394496,-0.001711971,0.010010778,0.0068243053,0.033225544,-0.016087307,-0.017380757,-0.02308003,0.008387227,-0.002674481,0.00010052461,-0.0062718936,0.011708433,-0.0006610414,-0.032417133,-0.0054163295,-0.0026424816,-0.036081914,-0.014995957,-0.0061540008,-0.008380489,0.0023073293,0.0011814537,-0.005534222,0.025639987,0.018121798,0.000014565542,-0.027620584,0.019886822,-0.02019671,0.0020142817,0.011203178,0.013554296,-0.027000805,-0.0036445698,0.014052815,0.011587172,-0.017475072,0.00545675,0.013392615,-0.028159523,-0.004486661,-0.0046045533,0.0030231066,-0.0047628665,0.014187549,-0.026421446,0.00079535495,0.00677378,0.0071207215,-0.017461598,0.007248719,-0.0010189301,0.016531931,0.009471839,-0.0064201015,0.00006547257,-0.0059182155,0.01426839,0.013244407,-0.014052815,0.0040319315,0.016424142,0.01976556,-0.014605226,0.0072217723,0.019307462,0.009748045,-0.025572618,0.0061304225,0.001028193,-0.01171517,-0.012577471,0.002896793,-0.016451089,0.00045304495,0.0055106436,-0.012301265,-0.012436,0.006447049,0.014901642,-0.025114521,-0.0054466445,-0.0077337637,0.003812988,-0.010394772,-0.014281863,-0.0077337637,0.003082053,-0.029641602,0.010886553,-0.0029776338,-0.042387493,-0.016585825,0.0076596597,0.008845324,0.019576931,0.24252221,-0.0002450485,-0.022797087,0.050390724,0.000023183818,0.023295606,0.013170303,0.019752087,0.007396927,-0.00498181,0.0170035,0.018175691,-0.023012662,-0.008798167,-0.008555644,-0.010718134,-0.01824306,-0.014524385,-0.0029725812,0.008670169,0.01875505,-0.0077674473,-0.0032892074,-0.019442197,0.0010307194,0.024885474,-0.022150362,0.0065480997,0.031285364,0.001434081,-0.009929937,-0.0045776065,0.011829694,0.005163702,-0.017016975,-0.007154405,0.012496631,-0.013655348,0.004749393,0.019779034,0.03942333,-0.012813256,-0.004628132,-0.0072891396,0.0076394496,0.023282131,-0.02019671,0.0071880887,-0.0012008217,0.015858257,-0.011310966,-0.015319319,0.038884394,0.009835623,0.0077809207,0.015265426,-0.014672593,0.0009372473,-0.025006734,-0.0051670703,-0.015278899,0.025774721,0.004951495,0.007255456,-0.035111826,0.01473996,-0.0010719819,0.0077607105,0.006308946,-0.0011654539,-0.007107248,-0.018027484,-0.0036917268,0.0051333867,-0.01540016,-0.017407704,0.014174076,0.0066323085,0.050983556,0.018943679,-0.025505252,0.026448393,-0.010260036,-0.010772028,-0.013150093,-0.01575047,0.025437884,-0.008009969,-0.00844112,0.0023241711,0.0018441792,0.0076192394,-0.0053624352,-0.009087846,0.015036377,0.02011587,0.0031443678,0.0051199133,-0.004116141,0.0003802041,-0.011748853,0.01606036,0.0011031392,-0.009909727,-0.00092882634,-0.018310426,-0.008286175,0.033225544,0.024535162,-0.022850981,-0.008299649,-0.013864186,0.012180004,0.0020580704,-0.0007174615,-0.023187818,0.022648878,0.0053759087,0.0072621927,0.008744272,-0.002221436,-0.01317704,0.015238479,0.028321205,0.007814605,-0.015117218,-0.016154673,0.009748045,0.011964429,-0.022392884,0.010657503,-0.003887092,0.0008867218,-0.03071948,-0.02744543,0.014147129,0.0031713147,-0.009330369,-0.020398812,0.0058441116,-0.015198058,-0.007235246,-0.0064638904,0.0017886013,-0.0034862568,-0.01906494,-0.007107248,0.015696576,-0.0077607105,-0.010138775,-0.026542708,0.004109404,0.0013010306,-0.018795472,0.005429803,-0.0026121663,-0.04120183,0.0030500535,0.024225274,0.01319725,-0.03777957,0.008892481,0.0047696033,-0.021463215,-0.024319587,-0.015090271,-0.17407705,0.00879143,0.0220291,-0.021112906,0.02237941,-0.01626246,0.002824373,-0.0020883856,-0.0074171373,0.021449741,0.01280652,0.025074102,-0.030234436,-0.014281863,-0.00038525663,-0.028994877,-0.017205603,0.017057395,0.019523038,0.008488277,0.0005785165,-0.013183776,-0.0063257874,-0.0057430607,0.0014433439,-0.0075383987,0.0096604675,0.006618835,-0.014430071,-0.025895983,-0.023416866,-0.0013456614,0.035569925,-0.0036984636,0.006635677,-0.010805711,0.0011982955,-0.0121867405,0.01095392,0.004466451,0.01618162,0.024063593,0.0007246193,0.014106709,0.013331984,0.007632713,0.017043922,-0.009498786,0.014807328,-0.011169495,0.01836432,-0.04408515,0.00031515255,0.01992724,0.0077876574,0.008447857,0.0022248044,0.008326596,-0.027593637,-0.014901642,0.008373753,0.002044597,0.006167474,-0.011526542,-0.018175691,-0.019145781,0.00070651434,-0.0045270813,-0.013075989,0.016356776,0.00736998,0.007511452,0.0045035025,-0.005877795,0.0104823485,0.020776069,-0.0034929935,0.0140123945,-0.010084881,-0.015373213,-0.006763675,0.041040145,-0.010179196,0.014578279,-0.019779034,0.009128266,0.010064672,0.0019300726,-0.0067704115,-0.010980867,0.010354351,-0.05330099,-0.032012932,-0.0051232814,0.016760979,0.023268659,0.004126246,-0.013365668,0.00732956,0.0012808203,-0.007841552,-0.014578279,-0.036270544,0.031096736,0.023443813,-0.006932093,0.02966855,0.009067636,0.031527888,-0.019523038,-0.009114793,0.03473457,0.0034323628,0.032875232,-0.014254916,0.015022904,-0.009983831,0.014995957,-0.014793854,0.009148477,0.06666666,0.012314739,-0.037456207,0.021382375,0.016154673,-0.010920236,-0.10363782,-0.012510104,-0.009276475,0.010711397,0.010064672,0.014591753,-0.003516572,0.014874695,-0.006079897,0.026219346,-0.0038736186,-0.016949607,-0.012294528,-0.0027839527,0.0063998913,-0.023592021,-0.013426299,0.007868499,-0.021503635,0.007855025,0.006332524,-0.013790082,0.019698193,0.005830638,-0.028482886,-0.015238479,-0.040501207,0.0022989083,0.017596334,-0.021503635,0.00038946708,-0.0063695763,0.008939638,-0.011977903,-0.031096736,-0.0032639448,-0.013958501,0.00732956,0.017852329,-0.012921045,0.0049077063,0.010980867,-0.0040521417,-0.0052580163,0.002469011,-0.010731608,-0.033387225,0.013500403,0.004729183,-0.025074102,-0.04651037,0.011088654,-0.041040145,-0.0189841,0.01610078,-0.0086566955,0.017636754,0.0069725136,-0.0344651,0.022972243,-0.011351387,-0.017744541,-0.0161412,0.007861761,0.019280516,-0.007578819,-0.006406628,-0.013904607,0.01692266,-0.004116141,-0.004163298,0.02643492,-0.020843437,0.0116680125,-0.016451089,0.0081985975,-0.021975206,-0.044812713,0.01313662,-0.010522769,-0.015817838,-0.005406224,0.029506868,-0.03891134,0.0024285903,0.00020199658,0.00076125027,0.011378334,0.031177577,-0.01473996,0.0087779565,0.013864186,0.024117487,-0.004729183,-0.03282134,0.010078145,-0.015521421,-0.014524385,0.034168683,0.010064672,-0.018768525,-0.020924278,-0.02526273,0.045163024,0.008319859,0.010758555,0.016383722,-0.023915384,0.004850444,-0.011513068,-0.007908919,-0.00023746966,-0.00850175,0.014632173,-0.005578011,-0.010334141,-0.022406356,-0.002536378,0.021921312,0.01241579,0.011041497,0.0038534084,0.017528966,-0.008232282,-0.005190649,0.010381298,0.020722175,0.001980598,-0.007942602,0.0080773365,-0.011270545,-0.029911073,0.011337914,-0.02456211,0.005716114,0.016154673,0.009047425,-0.03376448,-0.027472377,0.012078953,0.011102128,-0.025437884,-0.008239018,-0.01579089,0.002266909,-0.015386687,-0.016747506,-0.010381298,-0.0057430607,0.0019688087,-0.008137967,0.014093235,0.0024656425,0.017340338,-0.00813123,0.0057262187,-0.027782265,-0.030773373,0.0016353407,-0.0049548633,-0.0074171373,-0.014349231,0.025222309,0.022204256,0.011917272,-0.032875232,0.026057664,0.017448125,0.0055207484,0.010233089,-0.006228105,-0.018054431,0.00347952,0.012483157,0.021732684,0.008690379,-0.018606843,0.01167475,0.005359067,-0.011290756,-0.022042574,0.028644567,-0.014618699,-0.035408244,-0.021476688,0.0055106436,0.0049952837,0.0116680125,0.0054163295,-0.0101185655,0.01251684,0.025815142,-0.017178657,0.0067502013,-0.00039009866,-0.017771488,-0.00072967185,0.015777417,-0.002859741,-0.010812448,0.026758283,-0.00033831006,0.025491778,-0.007821341,-0.013581243,0.0037523576,-0.0115467515,-0.007208299,-0.0060596867,-0.02093775,0.018647263,0.0257343,0.035974126,0.0064369435,0.014281863,0.0024168012,0.00005115703,0.019738613,0.022702774,-0.021234166,-0.0070668277,0.011540015,0.014820801,0.013891133,0.0062213684,-0.011115601,0.021099431,0.00027452168,-0.014066288,-0.03953112,0.006180948,-0.012873887,0.0024858527,0.007302613,-0.032309346,-0.017784962,-0.011694959,-0.01992724,0.0010441928,0.022500671,-0.001119981,0.06327135,0.018458635,-0.005968741,0.021611422,0.0054196976,0.025666934,-0.0053759087,0.013358931,-0.020237131,-0.019280516,0.004772972,-0.0056857984,-0.0085960645,0.00675357,-0.031042842,0.008380489,0.013971974,0.009525733,-0.004823497,-0.00695904,0.021301534,-0.0022652247,-0.0010997709,-0.0040959306,-0.01354756,-0.023309078,0.02237941,0.012294528,-0.01068445,-0.026529234,-0.008879008,0.020331444,-0.02093775,-0.0023073293,-0.003388574,-0.007935866,-0.0002433643,-0.004490029,-0.018040957,0.007060091,-0.011452437,0.001972177,-0.011216652,-0.027782265,0.01801401,0.056480728,0.0032892074,-0.005163702,-0.017852329]},{\"id\":\"82c18b3f-e64c-4ffa-bc32-d2c8040f4408\",\"text\":\"This should be an actual app we can download I feel it’ll be easier to manage and log in etc. \",\"vector\":[-0.0064662355,0.0071213758,0.013784153,-0.027411073,-0.00060150074,0.019575594,0.00714103,-0.017662585,0.0109801525,-0.00044754276,-0.0073441234,0.0045958096,-0.014452396,0.0039406694,-0.0084185535,0.010207087,0.013941387,-0.02142309,0.0029595965,0.003986529,-0.0105739655,0.0029366666,-0.0039832536,-0.015946116,-0.02291681,-0.020086603,0.023165762,-0.02249752,0.01470135,0.0035508608,0.02861653,-0.018933557,-0.005031478,-0.011805629,-0.023716081,0.016037837,-0.0059028147,-0.015055126,0.0018212902,-0.013214181,0.02357195,0.010331564,-0.0018917178,-0.0061124596,-0.012008723,0.0031594143,-0.0009769781,-0.039989766,-0.00298744,0.01787223,0.0049364828,0.0014290249,-0.010757404,-0.018448753,0.006250039,0.027227633,-0.0059814313,0.0052149175,0.0054442165,-0.0013250214,-0.007108273,0.01619507,-0.018645294,-0.0057586837,0.011917003,0.007907544,-0.016837107,0.009447124,0.031813614,-0.0046416693,0.033857655,0.0011260225,0.0023339374,-0.004232207,-0.00058757904,-0.00015313906,-0.0109801525,-0.010174329,0.02058451,0.009741937,0.0100498535,-0.015736472,-0.0037211971,0.014779966,0.020007987,0.01825221,0.024436735,0.017937742,-0.024331912,0.0019834375,0.009912274,0.00021373953,0.0005847128,0.025458755,-0.019103892,0.009106451,-0.004658048,0.011399442,0.020007987,-0.013875873,0.0123821525,0.017243294,-0.022130642,-0.0007100084,-0.011124283,-0.0210038,0.016627463,-0.011281517,0.029114438,0.002140671,-0.004287894,0.005604726,-0.009506087,-0.006996899,-0.002690989,-0.0043435805,0.010770507,-0.03170879,-0.015880601,-0.014950303,-0.002207823,0.024973951,0.04313444,-0.010999806,-0.015644751,0.0025124634,-0.005467146,-0.004939758,0.013508994,-0.029795783,0.03170879,-0.011628741,0.0013741569,-0.0035443094,-0.037683673,0.011163591,0.010914639,0.010606722,-0.001274248,-0.0029563208,0.037919525,0.023978136,-0.026244923,-0.009735386,-0.011301171,0.01643092,-0.008254768,-0.002373246,-0.008346488,-0.015723368,0.0110980775,-0.022065127,-0.01026605,-0.012480424,-0.0041503143,0.024869127,0.025878044,0.03113227,-0.017256398,-0.0035017252,-0.01685021,0.0054573193,-0.0035868934,0.004517193,0.0242664,0.02796139,0.018710809,-0.017780509,0.0010949033,-0.011052218,-0.002207823,0.012860405,-0.036609244,0.010180881,0.010272601,0.017230192,-0.0127883395,0.008136843,0.010836022,0.010351217,0.0056636883,0.018134285,0.0021013627,0.034512796,-0.03089642,-0.02342782,0.016181966,0.011019461,-0.0067282915,-0.007973058,0.030031634,-0.019339744,-0.00562438,-0.009224377,-0.6511571,-0.011733564,0.017701892,-0.014871686,0.0031332087,0.023781596,0.00485459,0.0028711527,-0.026113894,0.01834393,-0.02249752,-0.0072982637,0.0061321137,-0.0016378509,-0.014020003,-0.025524268,0.029848196,-0.012310088,-0.003021835,0.008189254,-0.027804157,0.0039603235,-0.035298962,-0.011045666,-0.0024043652,-0.0117990775,0.027699335,-0.0076389364,-0.00371137,0.00881819,-0.0038030897,0.014832377,0.015762677,0.0041568656,0.058176465,-0.038024347,-0.021672044,0.039937355,0.012165956,0.014216546,-0.029533727,-0.0019392155,0.018946659,0.01535649,-0.007966507,0.007966507,0.029428905,0.0035999962,0.015225462,0.0021013627,0.009414367,-0.017059855,-0.008549581,0.00637124,0.0059716045,0.0049463096,0.005467146,-0.0083006285,-0.009361955,0.029324083,-0.017256398,-0.004127384,-0.013797256,-0.04266274,-0.047484573,0.0067053614,-0.006272969,0.009781245,-0.0133124525,-0.019942472,0.02067623,-0.0022258393,-0.013174873,0.0019867131,-0.01111118,0.016653668,0.043291677,-0.0137186395,-0.0055097304,0.013902078,0.0043665105,-0.011320826,0.009460227,0.00015262722,0.055555902,0.006557955,-0.015801985,-0.014085517,0.031472944,-0.0110391155,0.0042420337,-0.003305183,0.0015363041,-0.010397078,0.012270779,0.02879997,-0.004009459,-0.007986161,0.0047170105,-0.0038751552,-0.0056407587,-0.0035017252,-0.00038100505,0.01703365,0.007527563,0.021803072,-0.030477129,0.0011604173,0.04261033,-0.04326547,-0.0012750669,-0.018540472,-0.0022045474,-0.0002219288,-0.007213095,-0.034748644,0.022065127,-0.0053131883,0.0061910762,0.0050478564,0.01666677,0.0023781594,0.009781245,0.0040258374,-0.0060698753,0.01344348,0.010698442,-0.027096605,-0.00821546,-0.007534114,0.019523183,0.0037441272,0.017452938,0.0011497714,0.021632735,0.027384868,0.012886611,-0.00975504,0.013266592,-0.0067610485,0.0015870775,-0.007992713,0.002548496,-0.016627463,0.0014740658,-0.03744782,0.016810901,0.009447124,0.001032665,-0.018055668,-0.022798885,-0.012185611,-0.005919193,-0.005270604,-0.0028711527,-0.0037211971,0.009453676,-0.02945511,-0.019457668,-0.010298806,-0.006502268,0.032573577,-0.025262212,-0.028066212,-0.0031954471,-0.0017033649,0.0022176502,0.0127883395,-0.0065186466,-0.035927895,-0.005922469,-0.0068855253,-0.0005523652,0.02796139,0.0011759769,-0.018265313,-0.008824741,0.0019195613,0.0002200862,-0.0025353932,0.006119011,0.020636922,-0.02040107,-0.006187801,0.017583968,-0.00013225646,0.009171965,0.047720425,-0.02679524,0.020977594,-0.0052771554,0.0127293775,0.0247381,-0.0059585017,-0.015657855,0.017295705,-0.007566871,0.025498062,0.022982324,0.00527388,0.021514809,-0.002581253,0.016548846,0.005460595,0.017518453,-0.01670608,-0.000005038311,-0.012113545,0.010429835,0.015500621,0.00149372,0.0070362072,-0.0017328463,-0.0045597767,-0.014177238,0.010115367,-0.0014151032,0.018265313,-0.016483331,0.006669329,0.0023093699,-0.026546288,0.0056964452,-0.012676966,-0.04038285,0.04583362,-0.004094627,0.046331525,0.0023650567,-0.037421618,-0.016627463,0.012513181,-0.012480424,0.0049364828,0.025878044,-0.010587068,0.017479144,-0.009565049,0.024423633,0.0055130064,0.008464414,0.0127883395,0.039963562,-0.008752675,0.041378666,0.01872391,0.004055319,0.031237092,-0.021803072,0.018212901,0.0141248265,0.0021292062,-0.026113894,-0.008516825,0.019051481,-0.016247481,-0.02464638,-0.0026500428,0.03089642,0.041431077,-0.0139544895,0.018291518,-0.008163049,-0.019824548,0.012179059,-0.013744845,-0.013941387,-0.02002109,-0.02040107,-0.021239651,-0.007599628,-0.0022258393,0.015212359,-0.005817646,-0.008877152,-0.0010072783,0.026755933,0.009728834,0.009696078,-0.003953772,-0.02300853,-0.012821097,0.003305183,-0.00065104576,0.0041535897,-0.0049954453,-0.026022175,0.0047039078,0.023598155,0.018134285,0.010560863,0.0047497675,-0.007900992,0.0007992712,-0.0072786096,0.0092898905,0.018278416,-0.024279501,0.009185067,0.0363996,0.007566871,0.0121332,-0.01909079,-0.037552644,0.03930842,0.032573577,-0.011517367,-0.027620718,-0.0062860716,-0.030346101,0.00336087,0.011143938,0.013600714,-0.014321368,0.0033641458,0.0065186466,-0.013456583,0.00046433072,0.03346457,-0.018632192,-0.016312994,-0.030450923,-0.016824005,0.023637464,0.083386265,0.0042256555,0.025694605,0.017400527,-0.01941836,-0.006086254,-0.019352846,-0.030581951,0.011772872,0.014020003,-0.0121463025,-0.0013667865,-0.024476044,0.0009040937,0.010207087,-0.002450225,0.015841294,0.009126105,-0.01956249,-0.025091875,0.013384517,-0.0077175535,0.022143744,0.014137929,0.043553732,0.0035836177,0.028511709,0.012768686,-0.022418903,-0.008746124,0.008896806,0.025969764,0.0060207397,-0.0030840733,-0.00036708332,0.030555746,-0.017190883,0.03341216,-0.0070034503,0.0040848004,0.0044877115,0.011746666,0.011464956,-0.008870601,0.014910995,-0.014937201,-0.012218367,0.023519538,-0.003120106,-0.0008811638,0.020938287,0.007383432,-0.02446294,0.0031888958,0.0038620525,0.011707358,-0.0081302915,0.0126704145,-0.013757948,-0.04554536,-0.045623973,0.009263685,-0.0011784338,-0.005811095,-0.012192162,-0.04578121,0.005270604,0.009237479,0.017754303,0.014033106,0.017583968,-0.038679488,-0.0095257405,0.0029481316,-0.00009479062,0.009630564,0.007612731,-0.0053885295,-0.01750535,0.0131355645,-0.0033313888,-0.027804157,0.006502268,-0.00452702,-0.010901536,-0.008785432,-0.0032707884,-0.0021292062,0.0069182822,-0.0009941754,0.000059218546,0.012598349,0.047301132,-0.021580324,0.012441115,-0.002229115,-0.0011112818,0.006820011,0.0035312066,0.0020833462,0.018173594,-0.010796713,0.0002997267,-0.0080123665,0.03291425,-0.011825283,0.0061583193,0.003930842,-0.037343,-0.015107537,0.009997441,0.013181424,-0.00034886223,-0.006119011,0.026061483,0.011196349,0.024476044,0.009257133,0.01428206,-0.009473329,-0.018121183,-0.022798885,0.020086603,0.03186603,0.009912274,-0.0002612372,0.001570699,-0.029926812,-0.011438751,-0.0041011786,-0.004952861,-0.011641844,-0.004356683,-0.0022585965,-0.009814003,-0.017387426,-0.02277268,0.013797256,0.0021062763,-0.024987053,-0.026310436,0.008222012,0.026258025,0.00075627764,0.0012676966,-0.02683455,0.0018049116,-0.0059290202,0.009080245,0.029979223,0.003121744,0.004022562,-0.012526284,-0.02277268,0.00371137,-0.0172695,-0.024345016,0.0070689647,0.029717166,0.015186153,0.011884246,0.00033780673,0.010495349,-0.018055668,0.008785432,-0.01768879,-0.01936595,-0.019863855,0.020283146,0.00093439396,0.018474959,-0.008864049,0.0071148244,-0.0066562262,-0.013744845,-0.0020489516,-0.010619826,0.0009401264,-0.007357226,-0.008208909,-0.021776866,-0.00021578686,-0.010338115,0.0057292026,-0.01502892,-0.008228563,-0.01787223,0.0059716045,0.029114438,-0.0020767949,0.0127293775,-0.014976509,0.026913166,0.010947395,-0.0017131921,-0.0138365645,-0.0028858932,-0.020636922,-0.008097535,0.020545201,0.014321368,-0.00071615033,0.006669329,0.0023421268,0.0064171,0.015670957,-0.0090016285,-0.013731742,-0.0021930824,-0.0039832536,-0.016024733,-0.034617618,-0.011923554,-0.008772329,0.010292255,0.017990155,0.0016460401,-0.0027892601,0.0001416741,-0.007534114,0.00246169,0.019444566,-0.0055130064,0.01792464,0.02748969,-0.005129749,0.009368507,-0.022864398,0.005450768,-0.01526477,0.0012914455,0.020007987,0.017072957,-0.009643666,-0.020414174,0.03411971,-0.0067610485,-0.035167936,-0.02488223,0.0037637814,0.034224533,0.02945511,-0.008366142,0.009086797,-0.014583425,0.03519414,-0.019261127,0.0051461277,0.003658959,-0.012971779,-0.025864942,0.022694062,0.0009302993,0.00075750606,0.013849667,-0.0011268414,-0.0021586874,-0.02604838,-0.0072786096,-0.007527563,0.014976509,0.0059879827,-0.014085517,0.00966332,-0.005676791,0.014688247,-0.004789076,-0.003472244,-0.012008723,0.023886418,-0.036006514,0.013771051,-0.004975791,-0.02245821,0.01703365,0.004517193,-0.0055424874,-0.006007637,-0.009420918,-0.006033843,0.005077338,-0.0024469492,-0.030346101,-0.0072327494,-0.0020767949,0.009597806,-0.0053524966,-0.008759227,-0.0014789794,-0.021829277,-0.012703172,-0.002515739,-0.015133742,-0.0035344823,-0.004183071,-0.014583425,0.015893705,0.02306094,-0.029507522,0.0071999924,0.018868042,0.009938479,-0.008647853,0.037631262,0.009394713,-0.031525355,0.0029186504,-0.00263694,-0.016535742,-0.017846024,0.023598155,0.011052218,-0.0071213758,0.00672174,-0.0006960866,0.022929912,0.011261863,-0.012984882,-0.046383936,0.0012398531,0.013757948,0.0026959025,0.025222903,0.029612344,0.0060207397,-0.008936115,0.01903838,0.0028400335,-0.037238177,-0.026258025,-0.010914639,0.019156303,-0.003789987,-0.007756862,-0.00793375,-0.011969415,-0.007494806,0.010377423,-0.012572143,-0.0008103267,-0.0026647835,-0.006951039,0.009171965,0.021554118,-0.002658232,-0.0038292955,-0.02464638,-0.03972771,-0.029743372,-0.012644209,-0.0055424874,0.020846566,0.025615988,-0.01783292,-0.023126455,-0.018697705,-0.033752833,-0.0027630546,-0.015933014,0.021514809,0.018815631,0.0012595074,0.008097535,0.027280044,-0.010043302,0.01880253,-0.01876322,-0.023296792,-0.014635836,-0.025236007,0.004183071,-0.017112266,-0.014020003,-0.019261127,-0.00084513106,-0.003789987,0.006472787,0.023440922,-0.020387968,0.0041699684,-0.007874787,0.00070509483,0.010325012,0.010115367,-0.016732285,-0.021305164,0.004638394,0.014006901,0.028590325,0.028826175,-0.02105621,0.019051481,-0.016444024,0.0011563228,-0.022183053,-0.0044549545,-0.012781789,-0.0051035434,0.02916685,-0.022943016,0.00454995,0.000538034,-0.016732285,-0.01171391,-0.00492338,0.019798342,-0.0044549545,0.008490619,0.01848806,-0.037867114,0.0062696934,-0.010246395,0.015186153,-0.020178324,-0.008018918,-0.0027221083,-0.030162662,0.00048603225,-0.025314623,-0.0055817957,-0.022576137,-0.019549388,0.012585246,0.016221276,0.004140487,-0.016640564,0.003175793,0.021030005,-0.009958133,0.009591254,0.0023863488,-0.0071803383,-0.0043304777,0.023781596,0.026860755,0.008202357,0.24717136,-0.000414581,-0.013613816,0.040671114,0.008890254,0.0088837035,0.016548846,-0.005745581,-0.011903901,-0.004759595,-0.004602361,0.0030578675,-0.023611259,-0.0002741353,-0.012945574,-0.03514173,-0.028302064,-0.012703172,-0.016234377,0.016168864,0.018173594,-0.0076847966,0.02160653,-0.01699434,0.0150027145,-0.009617461,0.0070034503,0.028983409,0.026716623,0.024869127,-0.022864398,-0.005797992,0.0009302993,-0.02562909,0.0017000892,-0.013482789,0.009185067,-0.0046482207,0.013941387,0.024633277,-0.009958133,0.0030005428,-0.00709517,-0.023322998,0.024017446,-0.008529928,-0.011831835,0.007986161,0.013174873,0.0024354842,-0.021816174,-0.0008590528,0.03514173,0.0044877115,-0.01171391,-0.023768492,-0.019392155,0.0142427515,-0.0018229281,0.013653125,-0.0072786096,-0.001548588,-0.018933557,0.022052025,-0.044732984,0.0017508626,-0.020348659,0.031394325,0.009656769,-0.015749574,-0.0032019985,0.015225462,-0.013980695,0.022314081,-0.03118468,-0.027253838,0.032285318,0.03178741,0.018265313,0.01932664,-0.018841837,0.00807788,0.0006899447,-0.011497714,0.006593988,-0.02459397,0.010993255,-0.028040007,-0.019352846,-0.0057259267,-0.015657855,-0.017649481,0.0023454025,-0.019313538,-0.0036818888,0.009473329,-0.010947395,0.01852737,0.00082302006,0.016168864,-0.0050511323,0.026703522,0.024056753,0.013266592,-0.015369593,-0.015579238,0.0014969957,0.018357033,0.023440922,0.017819818,-0.006384343,-0.033752833,0.004461506,-0.003934118,0.009840208,0.04219104,-0.005817646,-0.012251125,-0.009781245,-0.0034951738,0.005349221,-0.011969415,-0.00016480875,-0.009178516,-0.005133025,-0.022052025,0.0031266573,-0.022340287,-0.013522097,-0.026611801,0.019248024,-0.009741937,0.03579687,-0.022274772,0.0058700577,-0.011582881,0.009263685,-0.014819275,0.004710459,0.00438944,-0.013273144,-0.0057292026,0.013056947,-0.022694062,0.009191619,-0.018841837,0.0018262038,0.0036982673,-0.033123896,-0.0034263842,-0.0042780666,0.0006621012,-0.016037837,-0.016352303,0.05083889,0.00924403,-0.05191332,-0.026205614,0.035220347,0.0055326605,-0.013902078,-0.023807801,0.04135246,-0.013888976,-0.030372307,-0.017452938,-0.16624841,0.011654947,0.011412545,-0.017256398,0.01185149,-0.014085517,-0.0069903475,-0.009506087,-0.0047399406,-0.014897891,0.030450923,-0.00096715096,-0.010062956,-0.008949217,0.01269662,0.01619507,-0.01223147,0.0027221083,0.051546443,-0.002132482,0.00534267,-0.014570322,0.008726469,-0.0069903475,-0.003164328,0.021803072,-0.008909909,0.0038161925,-0.006449857,-0.0139544895,-0.018959763,-0.0011178332,0.03356939,0.029612344,0.0008615096,-0.024842922,0.01792464,-0.014439293,0.005447492,0.027044194,0.006207455,0.0025976314,0.007245852,-0.000018067543,0.02020453,0.033543188,0.0073965346,-0.014950303,-0.022235464,-0.023965035,-0.0038948094,-0.012866957,-0.008975423,-0.018684603,0.010174329,-0.0085364785,0.00026348926,0.016640564,-0.009794348,-0.03280943,-0.010868778,-0.019379051,0.0012341207,0.010351217,-0.0072982637,-0.014910995,-0.0029726995,0.018291518,-0.006561231,0.015657855,-0.025864942,-0.010849125,0.0101677785,0.008687161,0.014085517,-0.0046842536,-0.029559933,0.011124283,0.0063745156,0.0029268395,0.0322067,0.008136843,-0.007265507,0.010953947,0.013469686,0.014740658,-0.0068593198,-0.011484611,-0.019680416,-0.011825283,0.011890798,-0.003603272,-0.0039603235,-0.0075734225,-0.0004888985,0.010763956,0.0112160025,0.007193441,0.018985968,-0.027253838,0.03118468,-0.0016558672,-0.011026013,0.008923012,0.0433965,-0.008726469,-0.0029628724,-0.00034906698,0.008464414,-0.014151032,-0.038679488,0.013129013,0.01885494,0.0265987,-0.014727555,0.029612344,-0.013233835,-0.0122642275,0.013083153,0.0046973564,0.043553732,0.012349396,0.003678613,0.015749574,-0.008208909,-0.01903838,-0.1166674,-0.03430315,0.017256398,0.018461855,-0.031394325,0.04630532,0.0030840733,0.0084185535,-0.005811095,0.019942472,-0.012100442,-0.044418518,-0.02562909,0.00336087,0.008025469,0.027987596,-0.0056407587,-0.030739186,0.006105908,0.014766864,-0.0027188326,-0.009198171,-0.02049279,0.015893705,-0.017439837,0.00008434932,-0.015553032,0.0068855253,0.012218367,0.011143938,0.018881146,0.009132656,0.013201078,-0.010986703,-0.0028351198,0.0015723369,-0.021187238,-0.01026605,0.024580866,-0.03170879,-0.009964685,0.0009065505,-0.0028514983,-0.04111661,-0.019614903,-0.022969222,0.003822744,0.0137186395,0.038102962,-0.021868585,0.0043304777,-0.023231277,-0.016837107,-0.021685146,0.012500078,-0.02655939,0.01442619,0.0060666,-0.00032224716,-0.005837301,-0.010482246,-0.0022258393,-0.01927423,0.006839665,-0.00096715096,0.028092418,-0.0013110996,0.008254768,0.014452396,-0.008228563,0.002130844,-0.008765778,-0.014137929,0.007213095,-0.025131185,-0.009859863,-0.021803072,-0.009912274,0.006613642,-0.004566328,-0.015539929,-0.026782138,0.00905404,-0.014832377,-0.01241491,0.010429835,0.01595922,0.008569236,-0.0060666,-0.020086603,0.012185611,-0.01367933,0.0392036,0.0017426733,-0.016011631,-0.0024043652,0.020453483,0.0057717864,0.021396885,-0.007959955,-0.0078027216,-0.013482789,-0.039282218,0.0048054545,0.00159281,0.0019817995,0.014413088,-0.016221276,-0.0027499516,-0.021645838,-0.010822919,0.010940844,-0.0019310262,0.0039177393,-0.016365407,0.0048382115,-0.011556676,0.0059847073,0.036006514,-0.011962863,0.018750116,0.017190883,-0.012984882,0.0028613256,0.012355947,0.02646767,-0.015107537,0.020990698,-0.018383238,0.0057619596,-0.020191425,-0.032232907,0.010292255,-0.004183071,0.0008811638,0.015906807,-0.021855483,-0.04116902,-0.022523725,0.0028580497,0.0026778863,0.006538301,0.014059312,-0.01941836,0.011458405,-0.016404714,0.006223833,-0.0034984495,-0.0073768804,-0.009224377,0.020453483,0.00006909684,0.053223602,0.008307179,-0.018881146,-0.0057586837,0.011432199,-0.029848196,-0.012591798,0.014871686,0.0012275693,-0.0015666044,0.01012847,0.0039701504,0.00056096393,-0.0064760623,0.004369786,0.018304622,-0.029979223,-0.0005241123,0.0415359,-0.021108622,-0.023414716,-0.014544116,0.026179409,-0.014413088,0.023545744,0.020610716,-0.020191425,-0.022327183,0.0033772485,0.026349746,0.01903838,-0.0054573193,-0.053983565,0.03370042,0.017387426,-0.006649675,-0.009145759,0.02885238,-0.006590712,-0.02105621,-0.0128342,-0.0044877115,-0.0027073675,0.0052443985,0.00779617,0.03113227,-0.017950846,0.01582819,0.0053000855,0.030870214,-0.0037834356,0.007494806,0.016719181,-0.009918825,0.0022553208,0.019641109,-0.00088198273,0.0009196533,0.009630564,-0.005427838,0.0014519548,-0.008870601,-0.004920104,0.0073637776,-0.029979223,0.00534267,-0.010429835,-0.0125524895,-0.032704607,0.02730625,0.0063352073,0.00080827944,-0.0057160994,-0.007920647,0.031027447,-0.0020702435,-0.0026172858,-0.03430315,0.018422548,-0.009145759,-0.021580324,-0.013508994,-0.0030693326,-0.015723368,0.014373779,0.014517911,-0.021292062,0.008176152,-0.013037293,0.07882649,0.029481316,-0.018461855,-0.005293534,0.0024764305,0.022117538,0.005133025,0.023689875,-0.008890254,-0.0063450346,0.027804157,0.023440922,0.011327377,-0.026218718,-0.038312607,0.024279501,-0.03417212,0.0077175535,-0.011281517,0.0019883509,-0.005778338,0.026991783,-0.0013381242,-0.002538669,-0.049266554,-0.010888433,0.016208172,0.0049463096,-0.030686775,-0.031761203,0.018592883,0.01899907,-0.015644751,-0.020558305,0.01484548,-0.0035639636,-0.004477884,-0.007016553,0.0075930767,0.0131355645,0.0020817085,0.014308265,-0.007652039,-0.022012716,-0.011595984,0.008896806,-0.0061255624,0.006017464,-0.015290976]},{\"id\":\"9cb46252-3c27-4013-97a0-948d28498bd0\",\"text\":\"The obvi product is been delayed for a long time. It’s not arriving I wondered if will be coming this week?\",\"vector\":[0.0014394469,-0.032290295,-0.024989316,0.013447805,0.00084291934,-0.010205808,-0.01767537,-0.0076316623,-0.019503856,-0.004146515,0.006039841,-0.005313634,-0.020437552,0.0067692907,-0.00941476,0.012624338,0.016702771,0.020878464,0.0123844305,-0.018959202,-0.011308087,-0.00094098976,0.0038287991,0.011891646,0.00074525416,0.011321055,0.0046911705,-0.026506571,0.0014183739,0.026921548,-0.00535578,0.010426264,-0.021436088,-0.021786222,-0.035272934,-0.041316018,-0.00021113509,-0.003929301,0.025754428,-0.017052907,0.028737066,0.009790832,0.0046425406,-0.015976563,-0.026480636,0.02554694,-0.022538366,-0.008422709,-0.0021656542,0.010335488,0.019049978,0.039111458,-0.008370837,-0.029437337,0.0031058337,0.0036407632,0.0015229284,0.007638146,0.0018544226,-0.014135109,0.00839029,0.0033133214,-0.0071323942,-0.03542855,-0.015950628,0.0010609437,-0.020476457,-0.014199949,-0.009233208,0.010957952,0.021889968,0.029904185,0.000594096,-0.011217311,0.032990567,0.008727457,-0.007573306,0.00566377,-0.006944359,0.0021218874,0.020606136,-0.009816769,-0.018414546,0.021189695,0.006762807,0.027855242,0.010218776,0.0059166453,-0.020995175,0.005945823,-0.0013438079,0.01902404,-0.008921977,0.0124752065,0.006636369,0.017143684,0.026402827,0.042171903,-0.026636252,-0.009901061,-0.008578326,-0.014277757,-0.016028436,-0.014186981,-0.028892681,0.015276292,-0.0028578208,0.01936121,0.012598402,-0.019374177,-0.006496963,0.04850028,0.027414331,0.009265629,0.0042826785,-0.011158955,0.013992461,-0.021111887,-0.005073726,-0.036673475,-0.0034105813,0.02754401,0.041834734,-0.017688338,0.007767826,0.005229342,-0.040537935,-0.0030620666,-0.0009790832,0.011359959,0.0017863406,0.005239068,-0.0032436184,-0.021085951,0.004921352,0.026532507,-0.03799621,0.014796477,0.005148292,0.0041367887,0.01652122,0.022693982,-0.021085951,0.01921856,-0.03205687,0.011463703,0.012844794,-0.00829303,0.009674121,-0.008416225,0.025067125,-0.013797942,0.023900006,-0.019101849,0.0031285277,-0.00066420424,-0.015055836,0.01973728,-0.019711345,-0.036751285,0.0054206196,-0.006529383,0.00748253,-0.0014994239,0.02858145,0.025469132,0.02928172,-0.025456164,0.017052907,-0.010277132,-0.031693768,0.0060041794,-0.014718669,0.011580415,0.0007104027,0.020372713,-0.012416851,-0.011269183,-0.00029806115,-0.0144463405,-0.013564518,-0.013784973,0.024379821,0.017649435,-0.023951877,-0.022551335,0.027777435,-0.016728707,0.02884081,-0.0005872068,0.022071518,0.008986817,0.0033035954,-0.021915903,-0.6457022,-0.019179657,0.012144523,0.0156783,0.011535027,0.022888502,0.008805265,0.02135828,-0.026973419,0.030033864,-0.007780794,0.0017458156,0.001338945,-0.009336953,0.0043410347,0.0028059487,0.010199324,0.0068470985,-0.010627268,0.011988907,-0.005132082,-0.0007987471,-0.015457844,-0.007339882,-0.017584594,0.0016971857,0.027569946,0.0032614495,-0.021345312,0.03213468,-0.0010463546,0.026610315,-0.016728707,-0.009025721,0.050912328,-0.027025292,-0.0016761126,0.03452079,0.024600277,0.0088117495,-0.04227565,-0.003883913,-0.008604261,-0.026610315,-0.029567016,0.012403882,0.027129035,-0.010043709,0.00014892926,-0.011152471,0.029852312,-0.002446087,-0.00732043,0.0036569731,-0.00068325095,-0.014705701,0.021202663,0.024665117,0.016482316,-0.016702771,-0.021526864,0.0058388375,0.0007489014,-0.015820948,-0.047021933,0.010957952,-0.019581664,0.01962057,0.012034294,0.0044123586,0.0001540962,0.026947483,-0.014796477,0.01741601,0.01973728,-0.0016347772,0.021500926,0.021021111,0.016845418,0.021747319,0.00093531626,-0.016106244,-0.011411831,-0.0024866122,0.03942269,0.00816335,-0.03682909,-0.0068341307,0.0044415365,-0.029592954,-0.0019646506,0.034624532,0.008150382,-0.013240318,0.01277347,0.024353886,0.0054465556,0.020268967,-0.010731012,0.0031123175,-0.014148077,-0.0030280256,0.0055632675,-0.005381716,0.020035544,0.033198055,0.009343437,-0.00016584844,0.019646505,-0.024224205,0.012494658,-0.0021964533,-0.006415913,0.0030377517,-0.0121121025,-0.028088666,0.0153541,-0.029981993,-0.023472061,0.009700056,-0.007638146,0.010750463,0.02426311,-0.0238611,-0.0007022977,0.033327736,-0.0028059487,-0.005294182,0.00024213668,-0.0057902075,0.014835381,-0.031693768,-0.005987969,-0.007910474,0.003624553,0.018051442,0.021124855,-0.014459309,-0.003919575,-0.029022362,-0.0011484777,0.011165439,-0.0043150987,-0.0027767709,0.013395933,-0.050056443,-0.0011703611,0.01051704,-0.026558444,-0.004730074,0.0011906236,-0.031045368,-0.0024314981,0.0015529168,0.0019127785,0.011489639,-0.011723063,-0.027414331,-0.024872605,-0.0035726812,0.013058766,0.028166475,0.0044512628,0.0023585532,-0.012656759,-0.0019468195,-0.010938499,0.010912564,-0.030293224,-0.0042048707,0.009589829,-0.022434622,-0.014809445,0.008124446,-0.012728082,-0.003990899,-0.011120051,0.022408687,-0.014186981,0.009537957,0.008208738,0.02600082,-0.014303693,0.021889968,0.027855242,-0.0071388786,0.0146278925,0.037347812,0.0019257466,0.04401336,0.008234673,-0.006150069,0.019062946,-0.0007651114,-0.023342382,-0.010970919,0.0030458567,0.0017263637,0.009161885,0.019348241,0.029437337,0.009693572,0.010659688,0.008532938,-0.0028529577,0.004104369,0.0074241743,0.0008988438,0.03631037,0.022188231,0.021526864,-0.008007734,-0.014459309,-0.012961506,-0.025196804,0.027595883,-0.023653613,-0.0033716774,-0.00941476,0.027336523,-0.026739996,-0.0069897464,-0.014212917,-0.024042653,-0.039578304,-0.0066785146,0.015950628,0.02749214,0.022369783,-0.01754569,-0.0071583306,0.01587282,-0.008267093,0.0111006,0.020826591,-0.003786653,0.000647589,-0.025508037,0.040537935,0.004992676,0.022681015,0.026104564,0.015302228,0.013266253,0.029203914,-0.0068341307,0.017662402,0.023316447,-0.01283831,-0.0058226273,-0.004892174,-0.00738527,-0.0033587094,-0.016417475,-0.0031949885,-0.028140537,0.017766146,0.0072685583,0.04154944,0.014096205,0.006419155,0.006710935,0.02186403,0.00131463,0.02329051,0.017078843,-0.00793641,-0.009103529,0.011995391,-0.01051704,0.00026219655,-0.010854208,0.021202663,-0.038281508,0.044687692,-0.0057059154,0.015457844,0.017247427,0.017532723,0.01561346,-0.02793305,-0.034105815,-0.012896666,-0.008610745,0.0009896198,0.0025012011,0.019750249,0.017351171,-0.027984923,0.021630608,-0.0014183739,0.014913188,-0.005109388,0.0068406146,-0.011204343,-0.01639154,0.0071583306,0.026039723,0.018894361,0.0020408374,-0.007722438,-0.01942605,0.010426264,-0.023472061,0.016430443,0.0057610297,-0.0017004277,-0.013220865,-0.01280589,-0.017597562,-0.011262699,-0.012066714,-0.01903701,0.004866238,-0.006299201,0.024405757,-0.002619534,-0.005271488,0.009576861,0.013772005,-0.023134895,-0.019659473,-0.006483995,-0.0054627657,0.10727121,0.006438607,0.010017772,0.007787278,0.0044350526,0.0019484404,-0.0018592855,-0.023990782,0.018959202,-0.011496123,-0.0090905605,0.0053039077,-0.014588988,0.00764463,0.0056994315,0.0033878873,0.019153722,-0.0011468566,0.0043215826,-0.031590022,-0.013914653,-0.012163974,0.0034462432,0.0012044021,0.012624338,0.018336738,0.02606566,0.012559499,0.006179247,-0.0013267875,-0.007728922,0.002426635,-0.014861316,0.018609066,-0.016469346,0.013207898,-0.015652364,0.011522059,0.015626429,0.03031916,0.0023245122,0.011256215,0.022681015,-0.0215528,0.018116282,-0.0021834853,-0.002579009,0.019659473,0.0011249732,0.004152999,0.018245962,-0.021021111,-0.029826377,0.011690643,0.002716794,0.0264547,-0.009777864,-0.0013624495,-0.00136326,-0.0055373316,-0.005076968,-0.028918618,-0.01812925,0.004843544,-0.008176317,-0.044687692,-0.019503856,-0.016378572,0.009343437,-0.025559908,0.03218655,0.0024752652,-0.0056475597,0.009291565,0.019853992,0.021047048,-0.0056670117,-0.007845634,-0.003903365,0.026947483,0.0015350858,-0.03109724,0.007962346,0.023342382,0.012857762,-0.0014467414,0.027907114,0.0060268734,0.0011128157,-0.0036666992,-0.0029680487,0.0053946837,0.0385668,-0.010011288,0.016534187,0.005216374,0.002444466,0.009946449,-0.016158115,-0.017947698,0.009265629,0.0036666992,0.0086301975,0.0000020072523,-0.006013905,-0.009855673,-0.023368318,-0.025041189,-0.015042868,0.009395309,0.016715739,0.002643849,-0.017325234,-0.009323984,-0.011256215,0.018647969,0.02316083,0.037321877,0.007476046,0.0023228913,-0.01652122,-0.03044884,0.031615958,0.00026057556,0.0035726812,-0.0035402612,-0.013875749,-0.030811945,-0.03882616,0.017014002,0.0017685096,-0.015146612,-0.006354315,-0.01942605,-0.03356116,0.008831201,-0.0017685096,0.0046360563,0.013143058,-0.018505322,-0.008468097,-0.013058766,-0.009680605,-0.029359529,-0.00556651,-0.01663793,-0.00839029,-0.006519657,-0.011509091,-0.009103529,-0.0057934495,-0.0045452802,-0.027984923,-0.014161045,0.015146612,-0.0020165225,-0.00970654,-0.022149326,0.00960928,0.03218655,0.017856922,-0.006659063,0.0031933675,0.00031021863,0.0034819052,-0.0045096185,-0.00018418598,-0.02096924,-0.01257895,0.015237388,0.031200984,-0.00071404997,0.023770325,-0.013836845,-0.0026989628,0.013888718,0.0007152657,-0.003932543,0.0008141466,-0.018660938,0.014277757,-0.00993348,0.011580415,0.01838861,0.0042048707,-0.012734566,-0.010465167,0.038307443,0.0073269145,0.005423862,0.026532507,-0.0032938696,0.03439111,0.0069119385,-0.0031868836,-0.00035114886,-0.014096205,0.006571529,-0.0144463405,0.019970704,-0.008986817,0.018284867,-0.00941476,-0.013733101,0.0021316134,-0.0072426223,-0.01322735,0.009077593,0.013862781,-0.02426311,-0.020567233,-0.0138498135,-0.030604456,-0.012332559,-0.002609808,0.023666581,-0.005362264,0.007955862,-0.0068795187,-0.035713844,0.0017360897,-0.0013592074,0.0323681,0.008312481,0.04243126,0.0067498386,-0.027103098,-0.013233834,-0.016093275,0.015198484,0.019490888,0.003812589,0.010011288,-0.0030977286,-0.028244281,0.025910044,-0.017753178,-0.027777435,-0.048240922,0.006081987,0.002713552,0.016988067,-0.0092721125,-0.011489639,0.027777435,0.0074954983,-0.011405347,0.008305998,0.0033262894,-0.024353886,-0.005498428,0.011496123,-0.016884323,0.008909009,0.014005429,-0.018596098,-0.020281937,0.0042308066,0.012760502,-0.0015010448,-0.022862567,-0.0031139385,-0.0071194265,0.019011073,0.007735406,0.023005214,-0.013810909,-0.011593383,0.0055405735,0.016884323,-0.023472061,-0.016624963,0.0017555417,0.009447181,0.006266781,-0.004781946,-0.018284867,-0.005190438,0.0010974162,-0.0033651935,0.0085848095,0.0027589398,-0.014913188,0.009537957,0.001410269,-0.05156073,-0.021591702,-0.0028724098,0.0034851474,0.02116376,-0.02574146,-0.029022362,-0.0011030897,0.009907545,-0.023912974,0.011165439,-0.010153936,-0.0021640332,-0.0058064177,0.030941624,0.009187821,0.016702771,-0.002577388,0.023407223,-0.0033084585,-0.053324375,0.020113353,0.002426635,-0.035636038,-0.0074954983,0.007625178,-0.02032084,-0.040019218,-0.0010560807,0.008565357,0.014407436,0.00829303,-0.016702771,-0.03418362,0.0032322714,-0.008351386,0.02265508,0.006529383,-0.011295119,0.00540441,0.006487237,-0.003692635,-0.012397398,0.0013794699,0.0023099233,0.0058355955,0.022797726,0.0042048707,-0.017260395,-0.01754569,-0.019581664,-0.0140313655,0.012364978,-0.022279007,-0.00800125,-0.0046555083,0.014588988,0.0042567425,0.009330469,-0.00096449425,-0.027362458,-0.015457844,-0.023990782,-0.002843232,-0.015924692,-0.0111006,0.009881608,0.026558444,-0.031719703,-0.018660938,-0.02045052,-0.010251196,-0.0047268323,0.022940375,-0.0032711755,0.014744605,0.0028853777,-0.009855673,0.034417044,0.0009223483,0.019555729,0.0051158722,0.0028821358,-0.0057286094,-0.014848349,-0.0057415776,-0.0027346248,-0.00070999743,-0.0022775033,0.020995175,0.034235492,0.010361424,0.030734137,-0.0034073393,-0.0093628885,-0.0021834853,-0.015600492,0.014926156,0.016287796,0.008915493,-0.026467668,-0.011651739,-0.017960666,0.0050931782,-0.011398863,0.008156866,-0.004995918,-0.016300764,-0.0115609635,0.010264164,-0.010218776,0.0023974571,-0.019309336,0.024937445,0.009550924,-0.0004960256,0.020074448,0.013019862,-0.034494855,0.010743979,-0.005362264,-0.0070870067,-0.008753393,0.0016299143,-0.01051704,-0.006341347,-0.0054141358,-0.0047462843,-0.012326075,-0.033509284,-0.0044642305,0.0007302599,-0.021721384,0.025261644,-0.025300547,0.016819483,0.010497588,0.0011517196,0.00095557875,0.011573931,-0.017065875,0.0129355695,-0.009499053,-0.03799621,0.00993348,0.020956272,-0.021462023,0.0032906274,-0.0110098235,0.00800125,-0.012533562,0.24130836,-0.0006423207,-0.017584594,0.02329051,0.004010351,0.01754569,0.030267289,0.01025768,-0.00475601,0.020048512,0.033249926,0.0009174853,-0.026428763,-0.0057383357,0.006594223,-0.04709974,-0.017558658,-0.030552585,-0.0063056853,0.00042145967,0.026688123,0.009064625,-0.0011346991,-0.016209988,0.012053747,-0.003932543,-0.01329219,0.007929926,0.01587282,0.0212286,-0.005057516,-0.034883894,-0.00028711942,0.0091813365,-0.005057516,0.015704235,0.0008939808,-0.018894361,0.008416225,0.016702771,0.016508251,0.024937445,0.02316083,0.007910474,-0.014952092,0.015963595,0.003624553,-0.006402945,0.011586899,-0.0362585,-0.01593766,-0.024626212,0.014576021,0.021150792,-0.0023099233,-0.012922602,0.000059166454,-0.016897291,-0.012261234,-0.01290315,-0.040097024,0.004921352,-0.0023245122,0.0006050378,-0.018349705,0.01981509,-0.023446126,0.0055146376,0.0071583306,0.0156783,0.019529793,0.005265004,0.01882952,-0.005054274,-0.021786222,-0.028503641,0.018232994,0.010938499,0.025598813,-0.011729547,0.0028934828,0.020165224,-0.02439279,-0.03452079,-0.0047138645,0.004240533,0.016910259,0.010283616,-0.0100501925,0.01051704,-0.0012830205,-0.0031220436,-0.016054371,-0.0033684354,0.00816335,0.008695037,0.01793473,0.03148628,-0.006224635,-0.00767705,-0.012663242,0.042612813,0.0032322714,0.008545905,-0.019205593,0.0075149504,0.0106921075,0.035117317,0.017117746,0.0042729527,0.0030896235,-0.03942269,0.00047941037,-0.011684159,0.013123605,-0.014135109,-0.020839559,-0.013357029,-0.012280687,-0.01962057,0.0022677772,-0.013434838,-0.0032598285,0.009557408,0.0013081459,-0.033716775,-0.0084032575,0.009110013,0.009985352,-0.012987442,0.020891432,-0.004036287,0.018686874,-0.013525614,-0.0048597544,0.009693572,0.015807979,0.002700584,0.008468097,-0.006762807,-0.046036363,0.009576861,0.031590022,-0.019568697,0.011645255,-0.004243775,0.012942054,0.006428881,-0.02348503,-0.00764463,-0.030085737,-0.026791867,0.006454817,-0.023005214,0.02445763,0.0018446966,-0.027310587,-0.018103315,0.010056676,0.007858602,-0.010672656,-0.026869675,0.057837237,-0.0058647734,-0.011937034,0.02077472,-0.1629817,0.030760072,0.006801711,-0.027310587,0.019062946,0.008364353,0.015016932,-0.0056345914,-0.016495284,0.009524989,0.019270433,0.010815304,-0.03130473,-0.0061435853,-0.005216374,-0.019659473,-0.025028221,0.014601957,0.0019873444,0.006347831,0.03664754,-0.01270863,0.027077163,0.008455129,-0.0070999744,0.018596098,-0.029748568,0.027984923,-0.0033522253,-0.041679118,-0.006247329,-0.008883073,0.02303115,0.002585493,0.02142312,-0.016145147,0.019646505,-0.0107764,-0.0041886605,0.0057188836,0.0028659257,0.0029275238,0.018077377,0.01528926,-0.030033864,0.018220026,0.0062602973,-0.008986817,-0.0020327324,-0.046866316,0.006341347,-0.012754018,-0.022110423,-0.0061922153,-0.014744605,0.032627463,0.030033864,-0.0025125481,-0.022175264,-0.0031106966,0.0016047887,0.003760717,-0.0044415365,-0.015068804,0.0003221735,0.00037039822,-0.0047398005,0.01054946,-0.03548042,0.0058647734,-0.015068804,0.017532723,0.011217311,-0.008500517,0.020839559,0.0028237798,-0.021085951,-0.00533957,-0.0058161435,0.0046036365,-0.0028561999,0.022110423,-0.015846884,0.0092267245,0.009246177,-0.009019237,0.01923153,0.02954108,0.00525852,0.0013089565,-0.0027670448,-0.019011073,0.0069702948,-0.026532507,0.0046295724,0.023977814,0.021280471,-0.009388825,0.003731539,-0.021072984,0.018803585,0.013181962,-0.011820323,0.014135109,0.010348456,0.020541295,-0.015756108,0.013512646,0.03586946,-0.01264379,-0.016767612,-0.012540046,0.015328164,0.049044937,-0.0032338924,-0.013733101,0.0029032088,-0.011625803,0.01296799,-0.025533972,0.022032615,-0.02445763,-0.017908795,0.018738745,-0.004289163,-0.020502392,-0.11878679,-0.03620663,0.0035435033,0.010128,-0.012585434,0.02038568,0.0023099233,0.021150792,-0.020658009,0.020930335,0.011249731,-0.030474776,0.015081773,-0.014368533,0.023238638,-0.010166904,-0.0010544597,0.0029275238,-0.016624963,0.0015723688,-0.015846884,-0.033509284,-0.0017247427,0.0033976133,-0.034339238,-0.01761053,-0.03031916,-0.0054433136,0.015172549,-0.0042016287,0.00017709412,-0.009888092,-0.007592758,-0.03457266,0.009194305,0.004039529,-0.039578304,0.016689803,0.009051657,-0.057889108,0.0069119385,-0.005229342,0.008059606,-0.033198055,-0.016365603,-0.009803801,0.0018917056,0.023679549,0.024820732,-0.0074954983,-0.007573306,-0.011716579,-0.034365173,-0.009855673,0.026104564,-0.013045798,0.0011079527,0.004944046,-0.008623714,-0.013214381,-0.049641464,-0.0023942152,-0.017805051,-0.00051669334,-0.006665547,0.009155401,0.018220026,-0.016573092,0.014070269,-0.0060074213,0.0056345914,-0.0016396402,-0.009388825,0.017662402,-0.01202781,0.006542351,0.014588988,-0.010115032,0.009233208,-0.0073139463,-0.011586899,-0.014822412,-0.010588364,-0.036076948,-0.002711931,0.0002755698,-0.0092267245,0.0017928246,0.011606351,-0.014018397,-0.009148917,0.017078843,0.004986192,0.008772845,-0.018803585,-0.00013930458,-0.0035143252,-0.019750249,0.014342597,0.011411831,-0.011016307,-0.03192719,-0.03197906,0.029255785,0.02103408,-0.02012632,-0.013434838,0.0031496005,0.026791867,-0.0057286094,0.0105105555,0.013694197,-0.013823877,0.014757573,-0.005196922,-0.008954397,-0.009751928,0.0021721383,0.017908795,0.003695877,0.012364978,-0.0021072985,0.010374392,-0.020100385,0.022693982,0.011690643,-0.026688123,0.027699627,-0.04160131,0.02257727,-0.007767826,-0.010685624,0.031512216,-0.020670976,0.01342187,0.016884323,0.010756948,-0.020917367,-0.0057999333,0.04160131,0.009764897,0.018751713,0.0027346248,-0.019309336,0.010523524,-0.018090347,-0.023381285,-0.016702771,0.00006792998,-0.00035986173,0.05399871,0.0058226273,0.008824717,0.009816769,-0.014744605,-0.018220026,-0.007625178,-0.016365603,-0.01193055,-0.014407436,0.007962346,-0.012442786,0.020243032,-0.007942894,0.016650898,-0.0022434623,0.02489854,0.0032014726,-0.019996641,0.0015253598,0.019711345,0.007437142,-0.015068804,-0.010957952,0.008753393,-0.0199318,0.016923226,0.010341972,-0.0102901,-0.026610315,-0.0010698591,0.0122482665,-0.0045452802,-0.010731012,-0.009972384,0.01541894,0.011515575,0.01799957,-0.0032938696,0.02205855,-0.021111887,0.002527137,-0.025391323,-0.0046263305,-0.028062731,0.014614925,0.006516415,0.02322567,-0.014290725,0.0055989297,-0.009401793,-0.006616917,0.0053460537,0.0030264047,-0.012228815,-0.0023374802,-0.018090347,0.022888502,-0.025663652,-0.024924478,-0.012929086,-0.0060722614,0.011275668,-0.020437552,0.022188231,0.024353886,-0.023887038,-0.003738023,-0.010244712,-0.014342597,-0.02644173,0.043131534,-0.0035208093,0.016819483,-0.0088117495,-0.013305157,0.041393824,-0.017078843,0.03872242,-0.019776184,0.014433373,0.014394469,-0.0042275647,-0.007501982,-0.0008133361,-0.010640236,-0.0000069905573,-0.004127063,0.013525614,0.03439111,0.0054627657,0.056281075,0.018077377,-0.011891646,-0.002679511,-0.0014353944,0.023472061,0.024535436,0.019892897,-0.017830987,0.0070481026,0.00081293087,0.0072102025,0.023018181,0.0016436927,-0.034806084,0.0012092651,0.011761967,0.004616604,-0.029463273,0.023147862,0.014225885,-0.026467668,0.008338418,0.0008019891,-0.02322567,-0.008947913,0.011184892,-0.0033392573,0.0066785146,-0.057370387,0.006808195,0.00861723,-0.006509931,-0.011671191,0.016261859,0.012053747,0.01598953,0.0017604047,0.029981993,-0.00819577,-0.006581255,0.033379607,-0.012345526,-0.007534402,-0.025910044,-0.008130929,-0.011917583,-0.01235201,-0.008597777]},{\"id\":\"9187e1fb-ee36-468e-9f1b-adbc1ecdf492\",\"text\":\"I would enjoy an application (app) for this website. It would help me use this service a lot more \",\"vector\":[-0.022753324,0.01702247,0.011958906,-0.031794466,0.0018841166,0.018828083,0.009963575,-0.012796292,0.0031745401,-0.007026185,0.0046219737,-0.01411779,0.017663592,-0.011088811,0.0005609826,0.007601887,0.02555333,-0.016512189,-0.0044420664,-0.011173858,-0.011828065,0.020973882,0.0107551655,-0.024938377,-0.006604221,-0.00062313234,0.01872341,-0.02283183,0.007987869,-0.0051878626,0.039514113,0.0005254101,-0.0062444075,-0.008956096,-0.016839292,-0.0030044464,0.0013133208,0.0017990697,0.007111232,-0.023093512,0.008733666,0.020136496,-0.004677581,-0.024114076,-0.009656098,0.025213143,-0.005518237,-0.0306954,-0.004088795,0.012645824,0.0046088896,0.001825238,-0.031244934,-0.019024344,0.0017794435,0.024925293,-0.017153312,0.019194437,0.00347384,0.005011227,-0.0045107584,0.030590726,-0.016996302,0.009276657,-0.016996302,-0.01619817,-0.00410515,0.014340221,0.014143959,-0.009041143,0.027188849,0.0056392658,-0.0069934744,-0.0074448776,0.026325297,0.0008165323,-0.014549567,0.007785065,0.021706594,-0.0014106341,-0.0010434604,-0.02059444,-0.0071374,0.008354225,0.011808439,0.0355627,0.034882326,0.018736493,-0.01458882,-0.017454246,0.01187386,-0.0022308463,-0.008262636,0.026691653,-0.0038107566,0.012011243,0.0063621644,0.034777652,0.008151421,-0.004657955,-0.0013288583,0.035588868,-0.035327185,-0.004301412,-0.013515919,-0.0112327365,0.019286027,-0.011481335,0.036059897,-0.0034934662,-0.010552362,0.024715947,0.0076673077,-0.00089708157,-0.007045811,-0.028680442,0.00081203465,-0.034175783,-0.01639443,-0.024022486,-0.008184131,0.025029967,0.043779545,0.0024189309,0.0014964988,0.009237405,-0.011134606,-0.012586946,0.012429936,-0.023067344,0.022334632,0.01168414,0.003338092,-0.0027623896,-0.027843056,0.024166413,0.002659352,0.004713563,0.0050799185,-0.01358134,0.022020612,0.02421875,-0.0032317834,-0.022871083,-0.0155962985,0.039671123,0.01717948,-0.0215365,0.0070916056,-0.020790704,0.0014359847,-0.017990697,-0.019286027,-0.0002694516,-0.0014171762,0.020777619,0.0099832015,0.0366356,0.01282246,-0.010571987,-0.014902839,-0.022125285,0.012730871,-0.021052387,0.009446751,0.019586962,0.008668245,-0.010846755,0.0021049115,-0.001414723,0.0020754721,0.0040757107,-0.01278975,0.0035817842,-0.008059832,0.014863587,0.00874675,0.0049916008,-0.0069803903,0.00072862324,0.009950491,0.005004685,0.00035613403,0.025461743,-0.017964529,-0.015138353,0.029570164,0.005197676,-0.016381348,-0.015779477,0.001875939,-0.012305637,0.008799086,-0.02008416,-0.6678147,-0.0052696387,0.029386986,-0.00040601732,0.017532751,0.030904746,-0.004870572,0.010480398,-0.024388842,0.023224354,-0.023342112,-0.0114028305,-0.015478541,0.010447688,-0.011389746,-0.02933465,0.031977646,-0.0047070207,-0.018383222,0.003918701,-0.038415045,0.0074514197,-0.021444911,-0.008406562,0.0040593552,-0.015478541,0.029858015,-0.0023584168,-0.018069202,0.01358134,-0.0070065586,0.017925275,-0.00095268915,-0.000664838,0.058302943,-0.0036799153,-0.007111232,0.033181388,0.0064472114,0.023041176,-0.023041176,-0.00593693,-0.00040990167,-0.005299078,-0.0071570263,-0.005864967,0.028758947,0.0128355445,0.018121539,-0.029465491,0.016590694,0.017349573,-0.009119648,0.017205648,-0.0009453293,-0.0013182274,0.018854251,-0.01579256,-0.0006636114,0.035772048,-0.011226195,0.019665467,-0.007595345,-0.026927166,-0.023760803,0.013378536,-0.006129921,-0.014209379,-0.014915924,0.003660289,0.008570114,-0.005374312,-0.01187386,0.013286947,-0.009610303,0.038336538,0.020149581,-0.021680426,-0.021117806,0.0045173005,0.019469205,-0.017977612,0.009917781,-0.016760787,0.037787005,0.006489735,-0.037629995,-0.007981327,0.023786971,0.016093496,0.02267482,0.024755199,-0.0028785116,-0.02191594,-0.012737413,0.014863587,-0.0026299127,-0.0071635684,0.007700018,0.007202821,-0.0015112185,-0.009185068,0.007765439,0.009610303,0.032344002,0.0274767,-0.007928991,0.011154232,0.039749626,-0.012606571,-0.015583214,-0.010866381,-0.00770656,-0.019403784,0.0029521098,-0.039801963,-0.00068078435,0.001967528,-0.019717803,-0.009191611,0.0008054926,0.0025759407,0.008341141,-0.010172921,0.005112629,0.021026218,0.016996302,-0.021196311,0.0013157742,-0.0061757155,0.0017696304,0.009243947,0.0017467331,-0.009342078,0.018357053,0.01840939,-0.0012061944,-0.015256111,0.014000033,-0.013463583,-0.0143009685,-0.008027121,0.007902822,0.0021310798,-0.0033037462,-0.014183211,0.02024117,-0.0043635615,0.011134606,-0.011226195,-0.017768266,-0.005573845,-0.023512205,0.020044908,0.0006922329,-0.0069345958,0.0006337632,-0.02251781,-0.002314258,-0.013319658,-0.0020443974,0.013228069,-0.013882276,-0.028942125,-0.002378043,-0.013633677,-0.004494403,0.02687483,0.0010647222,-0.04181692,-0.018671073,0.0044126273,-0.010931802,0.010055164,0.0042490754,0.0119261965,-0.017872939,-0.0056490786,0.007608429,-0.008923385,-0.012986012,0.011612177,-0.004399543,0.0032007084,0.035039335,-0.006771044,0.0001662095,0.041921593,-0.013712182,0.01203087,0.00767385,0.0057930043,-0.007595345,0.011154232,-0.009486004,0.026063614,0.0010123856,0.022426222,0.016983218,0.015086017,-0.0024990714,0.010434604,0.033626247,-0.026822492,0.0016330646,-0.021510331,0.017912192,-0.015400036,0.014719661,0.0067448756,-0.0015496532,0.005845341,-0.010231799,-0.032762695,0.014444894,0.0025023425,-0.006784128,0.008171047,-0.021615004,-0.0013713818,-0.010696287,-0.0105850715,0.031349607,-0.0133916205,-0.015504709,0.024742115,0.014876671,0.048960865,0.013672929,-0.031114092,-0.024872957,0.00047634458,-0.0078046913,0.011141147,0.0079486165,0.01503368,0.0060939398,-0.012377599,0.042497296,-0.005465901,0.009427126,0.00574721,0.03600756,-0.025500994,0.032291666,0.022177622,0.0031761758,0.003274307,-0.0153477,0.008596282,0.0019413597,0.0010475492,-0.011258905,0.011729934,0.017323405,-0.016970133,-0.0063817906,0.0045173005,0.038231865,0.03757766,0.01695705,0.0105850715,-0.006015435,-0.03006736,-0.02162809,0.0025334172,-0.006463567,-0.042968325,0.001533298,-0.01929911,-0.003171269,-0.026665485,0.017572004,-0.018147707,0.0076607657,0.0017254713,0.0023126223,0.008857965,-0.006129921,0.0003626761,-0.012894423,0.000016393511,0.010205632,-0.01443181,0.0050504794,0.007124316,-0.02267482,0.014340221,0.003253045,0.009871986,0.0063621644,0.018762661,0.009171984,0.001394279,-0.0041411314,-0.0058813225,0.044643097,-0.010571987,-0.0036341208,0.014405642,0.008949554,0.022779493,-0.029282313,-0.016067328,0.04474777,0.017284153,-0.012606571,-0.036216907,-0.009701892,-0.017205648,0.0067317914,-0.0112785315,0.01680004,-0.00536777,-0.003961224,0.0012029234,-0.014078538,0.0016028075,0.020568272,0.0132673215,-0.016472936,-0.01686546,-0.008354225,0.024166413,0.08808245,-0.009361705,0.01740191,0.007608429,-0.0066369316,0.008321515,-0.022020612,-0.022334632,0.022373885,-0.012083206,-0.0070916056,0.009747687,-0.006391604,0.0010303763,0.018200044,-0.009656098,0.009930865,0.010820586,-0.010329931,-0.01863182,0.018527146,0.0027852869,0.025108472,0.012783208,0.041424397,0.002052575,0.04090103,0.004563095,-0.006218239,-0.012305637,0.003846738,0.008478525,-0.007052353,0.008596282,-0.012920591,0.032291666,-0.00931591,0.02586735,-0.008485067,0.026089782,0.018200044,0.011134606,-0.00065584265,-0.018919671,0.02267482,-0.021327153,-0.023695383,0.02700567,-0.0027967356,-0.01190657,0.005956556,0.014000033,-0.019992571,-0.005848612,-0.003764962,0.009302826,-0.006234594,0.010591614,-0.02267482,-0.043701038,-0.010872923,0.010715913,-0.0045042164,-0.008570114,-0.016001906,-0.03373092,0.00023060803,-0.021994445,0.017375741,0.014798166,0.02684866,-0.030800072,0.010329931,0.003647205,0.013188817,-0.005959827,0.0059827245,0.0017352845,-0.0007347564,0.019220605,-0.003060054,-0.024336506,0.018343968,-0.020659862,-0.025854267,-0.003025708,-0.019914066,-0.013960781,-0.017729014,0.016172001,0.0021278088,0.018422473,0.043596365,-0.026626231,0.010447688,0.0069018854,0.011409373,0.01765051,-0.016721535,-0.01301218,0.018448642,-0.019796308,-0.00028519344,-0.024545852,0.030015023,0.015543962,0.0031238392,0.014575736,-0.0071701105,-0.008125253,0.003256316,0.022151453,0.020829955,0.00492618,0.0185664,0.024794452,0.034489803,0.013241153,0.0174935,-0.008609367,-0.00093469844,-0.03786551,0.023616878,0.0013844658,-0.007785065,0.00877946,-0.011442083,-0.029727174,0.00896918,0.0060023507,-0.014850503,-0.0055313213,-0.022151453,-0.018644905,-0.027136512,-0.009479461,-0.029962687,0.013672929,-0.012829002,-0.013803771,-0.00584207,-0.010761708,0.0036046815,0.0164206,0.013764518,-0.03375709,0.0030878577,0.002665894,-0.016564526,0.019207522,-0.0037387938,0.015138353,-0.007117774,-0.0019217335,-0.009701892,-0.011762645,-0.021209396,0.01901126,0.027816888,0.015400036,0.0027623896,-0.0021179956,0.03511784,-0.022543978,0.0014507044,-0.018265463,-0.0023109869,-0.024650525,0.010676661,0.007987869,0.032134656,0.0054201065,0.016472936,-0.004834591,-0.020110328,0.011657972,-0.005675247,0.00089708157,-0.001004208,-0.011782271,-0.00035020526,0.01907668,-0.019181354,-0.011285073,-0.01771593,0.0005654803,0.0012217319,-0.011409373,0.027659878,-0.0060972106,0.0029733714,-0.0057079573,0.010382268,0.024951462,0.008465441,-0.02075145,-0.021785099,-0.018265463,-0.013313116,0.02595894,0.03530102,-0.010624324,0.007307494,-0.0043046833,-0.017087892,0.0114486255,-0.005560761,-0.02870661,0.002832717,-0.006869175,0.0028098198,-0.025095386,-0.027973898,0.0030044464,0.022033697,0.009806565,-0.0029259415,0.010186005,-0.012593487,-0.006129921,-0.012194421,-0.012292553,-0.0068364646,0.020411264,0.018422473,0.0155962985,0.010722456,-0.022687905,-0.00514861,0.0024123888,0.00827572,0.0066434736,0.029805679,0.0057046865,-0.029046798,0.015805645,-0.003562158,-0.032474842,-0.0133916205,-0.001882481,0.014601904,0.01793836,-0.01610658,0.018762661,-0.0044976743,0.026233707,-0.018370137,-0.0009101657,-0.008864507,-0.004471506,-0.027293522,0.017964529,0.014078538,-0.0089037595,0.008537403,0.017231816,-0.006869175,-0.024401927,0.007765439,0.011769187,0.020097245,0.0070719793,-0.00017448931,0.002150706,-0.0120962905,0.018644905,0.007464504,-0.011213111,0.0017957987,0.019102849,-0.023760803,-0.009793481,0.00086927775,-0.010094416,0.007785065,-0.017702846,-0.015609383,0.009171984,-0.017035555,-0.013077601,0.004854217,-0.006584595,-0.015504709,-0.023603793,0.0033757088,0.022478558,-0.0132215265,0.008131795,0.02412716,-0.02162809,-0.008936469,-0.005106087,0.007372915,0.018671073,0.018121539,-0.022557063,0.013247695,0.018684156,-0.013044891,0.010087875,0.02457202,0.011599093,-0.005950014,0.031872973,-0.0029701004,-0.012717787,0.002656081,-0.022033697,-0.029229976,-0.02059444,0.014261716,0.008727123,-0.004743002,0.0023829495,0.0013795593,0.007111232,0.0049098246,-0.018134622,-0.049850587,-0.00022774587,-0.002317529,0.001211101,0.027973898,0.007457962,-0.0009289742,-0.016459852,0.03956645,0.014955175,-0.04341319,-0.020215001,-0.03022437,0.012560777,-0.0068299226,-0.0077981493,-0.0029848202,-0.009649555,-0.016093496,0.023289775,-0.007052353,-0.0034116902,-0.005214031,0.0018154249,0.009348621,0.015400036,-0.008753291,0.0047168336,-0.03726364,-0.021353321,-0.026403802,-0.016603777,-0.01733649,0.027738383,0.0053219753,-0.026325297,-0.019809393,-0.012645824,-0.0549534,-0.0044420664,-0.015779477,0.019168269,-0.0006255856,-0.0038859905,0.008184131,0.017231816,0.001373835,0.023943981,-0.025880435,-0.028497264,-0.015962655,-0.012161711,0.0070785214,-0.016930882,-0.049562734,-0.0045107584,0.013195358,-0.0063752485,0.009309368,0.024872957,-0.018121539,-0.032919705,0.012933675,0.006869175,0.0021278088,0.012560777,-0.021994445,-0.024100991,-0.0079944115,0.0048051514,-0.00043872767,0.010192548,-0.0027934646,0.012986012,-0.011546756,-0.0044420664,-0.012318721,-0.0027313149,-0.004648142,0.008805628,0.014654241,-0.008511235,-0.014392558,0.0036112235,-0.008190674,-0.018186959,0.0036962705,0.028444927,-0.000021990048,0.0011980168,0.03205615,-0.026037445,-0.009211237,-0.005730855,0.040246826,-0.015517794,0.005485527,-0.0052663675,-0.030250538,-0.0053416016,-0.021091638,-0.00009853995,-0.025972024,-0.017166397,0.017428078,-0.00729441,-0.011507504,-0.014680409,0.005125713,0.0033626247,-0.008203758,0.008491609,-0.0009739509,-0.03281503,0.03239634,0.021117806,0.011428999,0.01579256,0.231537,-0.0062673045,0.0001610985,0.027869225,-0.0017500041,0.012344889,0.015714057,0.0011914747,-0.00375842,0.006496277,0.010329931,-0.009132732,-0.03053839,0.002299538,-0.012874797,-0.024022486,-0.02991035,-0.023943981,-0.017964529,0.010179464,0.014614988,0.005135526,-0.007026185,0.008295347,0.035065502,0.010912175,-0.0018236025,0.012940218,0.007228989,0.013463583,-0.017794434,0.004932722,0.0015643729,-0.011324326,-0.0064373985,-0.008282263,0.025239311,-0.011729934,0.026194455,0.0142748,-0.02902063,0.014837419,0.010022454,-0.024258,0.032998208,0.0031532785,-0.009603761,-0.013712182,0.012953302,-0.0076542236,-0.027502868,-0.008138337,0.037551492,0.015504709,-0.0072813258,-0.019822476,-0.02024117,-0.013476667,-0.008687871,0.022687905,-0.002005145,0.003961224,-0.009845817,0.017572004,-0.03464681,-0.0029292125,-0.012371058,0.007915907,0.00549534,-0.0064602955,-0.009564509,0.0049032825,-0.0142748,0.007850486,-0.035170175,-0.019102849,0.0046906653,0.05631415,0.018814998,0.022216875,0.010971054,0.024859872,0.020358928,-0.041764583,0.010127127,-0.02374772,0.014209379,-0.012639282,-0.013103769,-0.013790687,-0.03038138,-0.004828049,-0.0011088811,-0.024519684,0.00054217415,0.024375759,-0.00068855303,0.029727174,0.009217779,0.020542104,-0.014706577,0.020725282,0.0049850587,0.0103691835,-0.0003636983,-0.00047879785,0.0046873945,0.04582067,0.0071701105,0.015400036,0.0043472066,-0.023289775,0.013208442,-0.019835562,-0.0056359945,0.017925275,-0.0067514176,-0.021209396,-0.0032203346,0.0075560925,0.000073700525,0.0013811948,0.0014605175,-0.009309368,-0.001577457,-0.009871986,-0.021497248,-0.009623387,-0.0028965021,-0.027764551,0.013038348,0.013280406,0.014196295,-0.022321548,-0.004337393,-0.0026250063,-0.017323405,-0.015478541,0.0038761774,0.0036799153,-0.002438557,0.007497214,0.0049883295,-0.015138353,-0.004036458,-0.032448675,0.004635058,0.011625261,-0.0026773429,-0.0106308665,-0.007039269,-0.005554219,-0.024441179,-0.021615004,0.048803855,0.02542249,-0.028052403,-0.026783241,0.038388874,-0.02412716,-0.020777619,-0.042078603,0.036766443,0.0068233805,-0.018814998,-0.0041345893,-0.16705833,0.009086938,0.005207489,-0.023145849,-0.00018512018,0.012815918,0.012534609,-0.003647205,0.0019217335,-0.020031823,0.004677581,-0.015386952,-0.013633677,-0.0061397343,0.015478541,0.003388793,-0.016407516,0.0044355243,0.046448708,0.0082103,0.008321515,-0.013018723,0.0072486154,-0.0028376235,0.015831813,0.016499104,-0.011481335,0.008471983,-0.010486941,-0.0061691734,-0.014706577,0.009643014,0.041424397,0.0013607509,0.004576179,-0.007608429,0.006035061,-0.0024205665,0.0038990746,0.026953334,0.015805645,0.020005655,0.004196739,0.007837402,0.011343952,0.016224338,0.027136512,-0.024585105,-0.026927166,-0.026953334,0.0055345926,-0.014196295,0.017545836,-0.013228069,0.0026331837,0.0024205665,-0.007870112,0.041895427,-0.008687871,0.00076419575,-0.0116645135,-0.01263274,0.001699303,-0.0033626247,-0.017676678,-0.023315944,-0.026102865,0.011396289,0.016381348,0.0035229055,-0.024585105,0.0038238408,0.0110168485,0.0049850587,0.008825255,-0.010460773,-0.038729064,0.017951444,-0.001583999,0.00021875052,0.022020612,0.019429952,0.0047331885,0.016773872,-0.017807519,0.014327137,-0.014026201,-0.018056117,-0.028418759,-0.00855703,0.0022815475,-0.015530878,0.004121505,-0.0038696353,0.016315926,0.015700972,0.018867334,0.0020640236,0.0125738615,-0.019953318,0.004749544,0.0048901984,-0.007045811,-0.001394279,0.028575769,-0.0032088861,0.00029582428,0.007235531,0.00042032808,-0.008354225,-0.029674837,0.011167316,0.027031839,0.013882276,-0.024925293,0.024742115,-0.007287868,-0.007928991,-0.0063458094,0.013450499,0.04657955,-0.009348621,0.001367293,-0.011114979,0.005410293,-0.0090280585,-0.10011987,-0.031663626,0.02084304,0.005505153,-0.034123447,0.022151453,0.0035032793,0.022059865,-0.007837402,0.012652366,-0.0132215265,-0.032736525,-0.022033697,0.005838799,0.0018056118,0.002438557,0.007026185,-0.01541312,-0.006699081,0.0013934613,-0.022439305,-0.00874675,-0.017284153,0.002435286,-0.0114486255,-0.0038729063,-0.0008463805,0.0063490802,0.017127143,-0.014065454,0.008099085,-0.015517794,0.021248648,-0.026207538,-0.0008807264,-0.012927134,0.0012339982,-0.0049000117,0.036557097,-0.03891224,-0.0090280585,-0.0123579735,-0.005106087,-0.029570164,-0.010964512,-0.006483193,0.000006209857,0.008308431,0.03569354,-0.012645824,0.007785065,-0.011239279,-0.029465491,-0.038833737,0.025815014,-0.037158966,0.008818712,0.011756103,-0.013339284,0.012115916,-0.00066156697,-0.0078112334,-0.024558937,-0.0060743135,0.016943965,0.007405625,0.008596282,0.006293473,-0.0041607576,-0.0012250029,0.017244902,-0.0014065454,-0.029256145,0.01102339,-0.021994445,-0.007889738,-0.014013117,-0.009440209,0.0020754721,0.007399083,-0.02542249,-0.003846738,0.0082560945,0.0020427618,-0.0053644986,-0.020215001,0.006967306,0.015988823,-0.0051878626,-0.02886362,0.00843273,-0.016983218,0.020764535,-0.008308431,-0.009230863,0.0013566621,-0.007778523,0.0028179972,0.020829955,-0.00574721,-0.008956096,-0.017100975,-0.03938327,0.0101532955,0.012070122,-0.009819649,0.014510315,-0.030329043,0.0042425334,-0.030616894,-0.002883418,-0.0074252514,0.0041280473,0.014981343,-0.0153346155,-0.013143022,-0.009773855,0.010879465,0.03357391,-0.006293473,0.022086034,0.006335996,-0.003114026,-0.012089748,-0.000082542545,0.018671073,-0.011376662,0.036138404,-0.026246792,0.016629945,-0.030041192,-0.027398195,-0.009446751,-0.022243043,-0.0017925276,-0.0060873977,-0.015975738,-0.018762661,-0.0012053767,0.0057079573,-0.009394415,-0.00088154414,0.0029488388,-0.016446767,0.017807519,-0.0042621596,-0.00069182407,0.017572004,-0.017925275,0.0024156598,0.017794434,-0.0076411394,0.014183211,0.015740223,-0.022805661,-0.0045140292,0.010558903,-0.053043116,0.0027574832,0.002292996,0.0005654803,-0.0027738384,0.025658004,0.0026135575,0.01042152,-0.012927134,0.01664303,0.015046764,-0.022844914,-0.0021703322,0.039173923,-0.022033697,-0.028026234,-0.004298141,0.035824385,0.0030453342,0.034149613,0.0079486165,-0.0049785166,-0.018357053,-0.0045140292,0.020973882,0.03679261,-0.0056294524,-0.01639443,0.021497248,0.02390473,-0.000074416064,-0.016014991,0.004572908,-0.0040560844,0.005393938,-0.0044976743,-0.005966369,-0.0052009467,0.0023633232,0.012004701,0.008393478,-0.007497214,-0.0061953417,-0.0024205665,0.040299162,0.020620609,0.008393478,0.00420001,0.00584207,-0.0036733733,0.016433684,-0.008818712,-0.011435541,-0.0066074925,0.003395335,0.014955175,0.009996286,-0.000095984455,0.01503368,-0.040848695,0.016577609,0.007320578,-0.023237439,-0.031558953,0.0039579533,0.009891612,0.00054380967,-0.00024634987,-0.026129033,0.024401927,0.018867334,-0.009996286,-0.035013165,0.005030853,-0.0069934744,-0.01872341,-0.022792578,-0.022347717,-0.017257985,0.006856091,0.007523382,0.01206358,0.012161711,-0.01680004,0.06651978,0.030145865,-0.00584207,-0.0044616926,0.019037427,0.008504693,0.01557013,0.021654258,0.008151421,-0.012763581,-0.0025628565,0.008714039,0.013071059,-0.02555333,-0.040613182,0.0056229103,-0.038676728,0.01733649,-0.015779477,-0.02052902,-0.003764962,0.008851423,-0.0008455627,-0.014000033,-0.038990747,-0.0073336624,0.0046317866,-0.00018542683,-0.035353355,-0.031977646,0.016996302,0.013038348,-0.0068430067,-0.00064766506,0.01961313,-0.013699098,-0.010761708,0.00037105812,0.013659845,0.014497231,-0.008596282,0.017807519,-0.019757057,-0.005828986,-0.0057831914,0.0070196427,-0.004307954,0.00912619,-0.02381314]},{\"id\":\"ea81cc57-f828-44a9-8689-0e1e5a0a0daa\",\"text\":\"Hola mi nombre es marissa Bustos \",\"vector\":[-0.05424835,0.0021206636,-0.025397168,-0.02940992,-0.012806522,0.018336756,-0.009873149,0.009009645,0.0037111612,-0.022793958,0.02529558,0.005298484,-0.024825731,-0.0063524665,-0.0071810493,-0.017892305,0.0084255105,-0.0065524695,0.038171943,-0.016304981,-0.0064794524,-0.014019237,0.011803334,-0.0022444748,-0.011771588,-0.017524047,0.024254296,-0.008812818,0.011530315,-0.033397276,0.012438263,-0.0017412934,0.0090350425,-0.019454231,-0.018501837,-0.03415919,0.0032794094,-0.026209878,0.00021924899,-0.0076889927,0.0045778397,0.009898546,0.008704879,-0.01094618,-0.010489031,0.006082622,-0.013397006,-0.019276451,-0.010908084,0.00735248,0.029968658,0.012793823,-0.0394672,0.012768426,0.0056381715,0.010330298,0.01229223,0.014476386,-0.0055746785,-0.01130174,0.025752729,0.0035175078,-0.016292283,0.014806549,-0.00690803,0.0072889873,-0.013155733,-0.00028214668,0.0052667377,0.018044688,0.013854155,-0.0024143183,-0.0025270183,-0.002300031,0.025701934,0.016647844,-0.0065524695,0.0035492543,0.0028540068,-0.014654166,0.016724035,-0.0019825664,0.0040032286,-0.0035365557,0.031060737,0.031619474,0.011866827,0.0040000537,-0.014590673,-0.047949854,-0.000025769197,0.016622446,-0.0036032232,0.0048318114,-0.040584676,0.017511347,-0.031721063,0.022946341,-0.003936561,-0.0097969575,-0.012743029,-0.013016049,-0.022197125,-0.005409597,-0.021600291,0.0072699394,0.010590619,0.011663649,0.01094618,0.001041284,-0.021206636,0.00036944944,-0.001026998,-0.02278126,-0.00083651923,0.012343024,-0.0065588187,0.0131176375,0.009835053,-0.020076461,0.0014055745,0.01920026,0.009708067,-0.032711554,0.015797038,-0.014044634,-0.012158894,-0.011650951,0.00090794876,0.016431969,-0.0049397494,-0.0037079866,-0.0088826595,-0.0015524019,0.008489003,-0.00488578,-0.019746298,0.025092402,-0.007739787,-0.016063709,-0.0013119224,0.019619312,0.00073374005,-0.013447801,0.014666865,0.0036444936,-0.009098535,-0.01542878,-0.01246366,0.022298714,0.0016793878,-0.0048730816,-0.008285826,-0.0038698935,-0.0031778207,0.00053373736,0.00843186,0.012406517,-0.016457366,-0.014057333,0.014717659,-0.007784232,0.03487031,-0.026235275,0.011143007,0.038527504,-0.01085729,-0.012654139,-0.02090187,0.008933454,0.014412893,0.019162163,-0.040889442,0.0034476656,-0.007219145,0.025028909,-0.009346158,0.022451097,-0.015124014,-0.016393872,-0.019632012,-0.0021000283,0.00215241,0.028419431,-0.004815938,0.015631957,0.005082608,-0.008057252,0.024368582,-0.020863773,0.00004273371,0.03812115,0.038959257,-0.007879471,-0.66885984,-0.013244623,0.008673133,0.016660543,-0.0029667066,0.026438452,0.014971631,0.012749379,0.00605405,-0.034794122,-0.016584352,0.014247811,-0.019517723,-0.00932711,-0.006952475,-0.02492732,0.006584216,-0.014108127,0.012571598,-0.008508052,-0.01668594,0.00933346,-0.017003404,0.031060737,0.002584162,0.0010166804,0.011796985,-0.010571571,-0.013473198,0.039746568,-0.015543067,0.010844591,0.0055302335,0.010031882,0.054756295,-0.0013643041,0.010425538,0.037537016,-0.002025424,0.025498757,-0.006149289,-0.002304793,0.01605101,-0.018997082,0.033168703,0.008463606,0.015124014,-0.015212904,-0.006241354,0.018057387,0.00026091622,-0.000590881,-0.029562304,-0.0018317708,0.008908057,0.00074564497,0.018374851,-0.024152707,0.000077084376,-0.0039968793,-0.025790824,0.015822435,-0.01936534,0.0048222872,-0.032940127,0.0068381876,-0.021092348,0.002269872,0.027733708,-0.017930401,-0.02170188,0.0042222794,-0.026438452,0.016749432,0.009758862,0.015238301,-0.010514428,-0.010596968,0.00057064265,0.0057810303,0.018070085,-0.000008668272,-0.021930454,-0.011098563,0.022019345,-0.04411488,-0.030476602,-0.0011206501,0.006520723,0.006438182,0.017816113,0.019390738,0.017003404,-0.0046159355,-0.0016254188,-0.01991138,-0.018400248,0.0053143576,0.00022182839,-0.0102223605,0.013892251,-0.0062096077,0.01954312,0.011549362,0.02458446,-0.0034603642,-0.04797525,0.019593915,-0.004622285,-0.011314439,-0.014298606,0.026159083,-0.0049111773,0.0052000703,0.00735248,-0.02834324,0.00284607,0.014908138,0.008304874,0.004333392,-0.012952556,0.0020206622,0.015073219,-0.0019222482,0.016266886,-0.0009404889,0.0050000674,-0.011638252,-0.0054603913,-0.0007694548,0.013193829,-0.016698638,0.013016049,-0.0070985085,0.032813143,-0.02770831,0.027606722,-0.0005571504,0.024165405,-0.012362071,-0.013650978,0.0029111505,-0.02170188,0.015543067,-0.008304874,-0.026159083,0.0009928705,-0.019136766,-0.0069842213,-0.004317519,-0.022920944,-0.023301901,-0.013714471,0.005927064,0.022413,0.0049460987,-0.026082892,0.0017381187,-0.017612936,-0.0034381417,-0.012990652,0.0117779365,-0.025130497,0.00004313054,-0.00349846,-0.012774776,0.0032698854,0.008362018,-0.011396979,-0.022908246,0.018273262,-0.0023793972,-0.01111761,-0.03372744,0.020800281,0.011758889,-0.0074477196,0.01838755,0.0007694548,-0.0093080625,0.0013016049,0.0077461363,0.00014801788,0.014857343,0.03812115,0.000436117,0.001995265,0.0066413595,-0.0052699125,0.020165352,0.017473252,0.010590619,-0.0122350855,0.0059778583,0.020038366,0.008177889,-0.010730304,0.0036476683,0.018362153,0.0025222562,0.02116854,0.015225602,0.04205771,-0.011689046,-0.009619177,-0.025067005,0.019847887,-0.017384361,0.026692424,0.009447747,0.016190695,-0.034108397,0.009606479,-0.010311251,0.027479736,-0.0032175037,-0.0082731275,0.00085080514,-0.025854317,0.014209716,-0.0038984653,0.01714309,0.0033397276,-0.02528288,0.003454015,0.01255255,0.039365612,0.007955663,0.007568356,0.009701719,-0.022539986,0.010647763,-0.004403234,0.0053238813,-0.0039746566,-0.012311277,0.0072762887,-0.0047587943,0.037867177,-0.013663677,-0.0050000674,0.010368394,0.01399384,-0.0032889333,0.02116854,-0.012184291,0.009892197,0.002963532,0.025498757,0.016203392,-0.011689046,-0.01829866,-0.030781368,-0.008323922,0.008031854,-0.035403654,-0.0057619824,0.016216092,0.020508213,0.023162218,0.00036667162,0.02529558,0.004044499,-0.006082622,0.018412948,-0.0036571922,0.003454015,-0.012857316,-0.01390495,-0.016558954,-0.016470063,-0.007346131,0.02968929,0.00025218594,0.00092223467,-0.010514428,0.0012031909,-0.0033968713,0.0034857614,-0.005803253,0.000041766438,-0.009485843,0.032203607,0.0037429077,0.0170415,-0.0039968793,-0.019568518,-0.0013389069,-0.015289095,-0.006850886,0.0045968876,0.012025559,0.0057238867,0.0034222684,-0.021371717,0.010038231,0.039492596,0.0016666892,0.0028730547,-0.011758889,0.0011992225,0.0036635415,-0.0065080244,-0.014743056,-0.011873176,0.016152598,-0.02466065,-0.000007434376,-0.0052699125,-0.021676483,0.018349454,-0.006850886,-0.028749594,0.02322571,-0.0020571707,0.0017079596,-0.011892224,-0.013295418,0.014514482,-0.007460418,-0.0019032003,-0.0063365935,-0.02717497,-0.008946152,0.07314385,0.0033333784,0.00028472606,0.000052679283,0.014324003,0.009098535,-0.022552686,-0.006495326,-0.0050064167,-0.015022425,-0.010298552,-0.0083937645,0.0032222657,0.016012914,-0.014324003,-0.013193829,0.019581217,-0.008806468,-0.0135747865,0.00081985234,-0.009396953,0.0051334025,0.0125081055,0.021905057,-0.0038603696,-0.014146223,0.017181184,-0.0026968617,0.00042619623,-0.011923971,-0.0011762064,0.0072254944,0.014222414,0.018705014,0.015022425,0.008952502,-0.012571598,-0.0037333837,0.01290811,0.007409624,0.019327246,0.00278099,-0.003106391,-0.016609749,0.0078477245,-0.01677483,0.0075302604,0.019860586,-0.004320693,-0.0027730532,0.03451475,-0.017193884,-0.009123933,-0.022933643,0.0067492975,-0.0033587755,0.011085864,0.017460553,-0.05272452,0.007854074,0.005361977,-0.0028270222,-0.022273317,0.006454055,-0.024140008,-0.02251459,-0.013219226,0.015276397,-0.037029073,-0.0053492785,-0.02770831,-0.023441587,-0.03723225,-0.0038190992,0.010279504,-0.0004896891,0.020279638,-0.0161399,0.028952772,0.032229006,0.01229223,-0.010336648,0.014590673,-0.031492487,0.00027381323,-0.0051270532,0.016457366,-0.007822327,-0.026692424,0.03616557,0.0030873432,0.0076191504,0.013473198,-0.0067048525,-0.0021587594,0.01551767,0.0048222872,-0.02099076,0.0013984316,-0.0011071578,0.008317573,-0.01991138,-0.027657516,-0.006850886,0.0070350156,0.0016024025,0.0028333715,0.017181184,-0.031136928,0.016990706,0.011943018,-0.0036286204,0.034489356,0.008908057,-0.01470496,0.038425915,-0.003533381,0.03542905,-0.016482763,-0.020444721,0.026133686,-0.030273424,0.02054631,0.032152813,0.010158868,0.0067302496,0.006358816,-0.02223522,0.0002632972,-0.0057175374,-0.011327137,0.020571707,-0.017016103,-0.0110160215,-0.019873284,-0.014019237,-0.0034698881,0.024825731,0.007949313,-0.012457311,-0.0143494,-0.00026250354,0.00089604384,-0.0134224035,-0.01785421,-0.03507349,-0.0057270615,0.00951124,-0.0050984817,0.034032207,-0.02035583,0.03758781,-0.012990652,-0.017778018,-0.003650843,0.007415973,-0.0022524113,0.000506356,0.02019075,0.011650951,0.025981303,0.021930454,0.011904922,-0.017092295,0.011517616,-0.009447747,-0.02035583,-0.0017968497,-0.026082892,0.05148006,0.024076516,0.033752836,-0.0032000432,-0.011314439,-0.00852075,-0.007022317,-0.014870042,0.015289095,-0.024152707,-0.0088509135,0.004574665,-0.0070921592,0.012654139,-0.0011285867,-0.011060467,-0.009663623,0.025524154,0.010082676,0.013752567,0.010095375,0.028673403,-0.034921106,0.0097969575,-0.0081207445,0.009212823,-0.0161399,-0.009257268,-0.023263806,0.0064064357,0.0075747054,0.0016825624,0.004206406,0.014717659,-0.007542959,0.012139847,0.028419431,0.030959148,0.0146414675,0.01964471,-0.0046984763,-0.009289014,-0.0077334377,-0.016584352,-0.025867015,0.0010571572,-0.0069016805,-0.038527504,0.021676483,-0.013397006,0.0058096023,-0.013155733,-0.0049334,0.013498595,-0.0041556116,0.01955582,0.022743164,-0.010927131,-0.010393791,0.041041825,0.0074223224,-0.009123933,-0.0017333567,0.029663892,-0.0040413244,-0.0054222955,0.023644764,-0.0007242161,-0.0064413566,-0.023441587,-0.013562088,0.019632012,-0.0036349697,-0.034235384,0.005031814,-0.009416,0.013206528,-0.0071239057,0.0062635764,-0.025244785,-0.014108127,-0.0063302442,0.009142981,0.002485748,0.021917757,0.03192424,-0.013765265,-0.010419188,-0.011403329,-0.006850886,0.0021889184,0.011466822,0.039594185,-0.025028909,0.03182265,0.0042222794,0.03210202,-0.022362206,0.022095537,0.014603372,0.019479629,0.005488963,-0.0073207337,-0.011943018,-0.012762077,0.0036159218,0.0002375032,0.00025159068,-0.025511455,0.015416081,-0.00798106,0.019390738,0.006761996,-0.0015166871,-0.0103747435,-0.003685764,-0.03156868,-0.00852075,0.0006440563,0.011943018,0.032533772,-0.012031908,-0.01991138,-0.004736572,0.01417162,0.007346131,0.0028984519,0.005857222,0.019924078,-0.020952664,0.010450935,-0.036673512,-0.0403561,-0.030501999,0.020571707,0.012546201,-0.019149465,0.018451042,0.0013722407,-0.013295418,-0.014476386,0.003606398,-0.0029698813,-0.00063810387,-0.02699719,0.012298578,0.0056349966,0.011250946,-0.015060521,-0.023022532,0.039975144,-0.013752567,-0.023924133,-0.018857397,-0.017054198,0.003400046,-0.030705176,0.0007861217,-0.005361977,-0.025130497,-0.002506383,-0.01649546,0.0020651072,-0.020825678,0.00042024377,-0.0115938075,-0.01300335,-0.017892305,0.01730817,-0.007612801,-0.032152813,-0.0007388989,0.016787529,0.0015277984,0.004276248,-0.008082649,-0.022349508,0.002722259,0.00645723,-0.0050064167,-0.012254134,-0.005552456,0.01856533,0.016609749,-0.0035206825,-0.029816275,0.009371555,-0.028114665,-0.0016301807,-0.006844537,0.015504971,-0.0019920904,-0.0011960479,0.0020365354,-0.0033238544,0.015276397,0.01103507,-0.032813143,-0.0009460445,0.01838755,-0.031390898,0.024165405,-0.029105155,-0.049295902,-0.009816006,0.006088971,-0.00069842214,0.0072254944,0.028267048,-0.019632012,-0.012698584,-0.006009605,-0.0015206555,-0.016711337,-0.009847752,0.05247055,0.0031016292,-0.029892467,-0.0060762726,-0.0008841389,0.0063334187,-0.0018793904,0.019860586,-0.0058064274,0.0224257,0.001538116,0.0038889414,0.0066223117,0.010368394,0.01594942,-0.005863571,-0.00092461566,0.038146548,0.02161299,-0.010171566,-0.018311359,0.012698584,-0.008641386,0.010000135,0.0032667108,-0.014908138,-0.014463687,-0.021206636,-0.0047937157,-0.022539986,0.0008373129,-0.013663677,-0.0039079892,-0.024533665,0.023619367,0.026743218,-0.020774884,-0.0063556414,0.0017317694,0.0114414245,0.011047768,-0.025701934,0.007371528,-0.015187507,0.013587485,0.01076205,-0.012317627,-0.020241544,0.023251107,0.013549389,0.008374716,0.030959148,0.23121582,-0.01668594,-0.018146276,0.03921323,0.010793797,0.03791797,0.008990598,0.0031651221,-0.0070159677,0.019416135,-0.002206379,-0.02915595,-0.0023793972,0.004384186,0.01856533,-0.0034063952,-0.016736735,-0.020482816,-0.022451097,-0.04061007,-0.009168378,-0.0030635335,0.0023603493,-0.009708067,0.037664,-0.018705014,-0.014768453,-0.0040667215,0.015174808,-0.003336553,-0.011822382,0.011562061,0.016076406,-0.0062826243,-0.016241489,-0.0055492814,0.012590646,-0.017816113,0.0090350425,0.013663677,-0.0094921915,0.015593861,-0.0063715144,-0.02306063,-0.002387334,0.011587458,-0.024266994,-0.013930347,0.023378093,0.01417162,-0.01049538,0.013765265,0.0010262043,0.0028936898,0.017612936,-0.0054413434,0.024635253,0.015327191,-0.046299037,-0.010616017,0.009219172,0.015733546,-0.002736545,0.005400073,-0.0042191045,-0.0012603345,-0.005596901,0.007911217,0.004295296,-0.0009809656,-0.010298552,-0.01714309,0.007390576,-0.008139792,-0.028927375,-0.011181103,-0.0018158975,0.013892251,0.016000215,0.034006808,-0.0010333473,-0.0023651114,-0.005184197,-0.026565438,-0.013193829,-0.014920836,0.003650843,0.007841376,0.0018047863,-0.028927375,-0.009523938,-0.01156841,0.008565195,-0.0215241,0.025244785,0.0017047849,0.0137271695,0.02394953,-0.025346374,0.028140062,-0.01838755,0.0054381685,0.027428942,-0.003174646,-0.000097769174,0.016901815,-0.0046349834,0.021816168,0.0014619245,-0.016063709,-0.009263617,-0.0053334055,0.00037639396,-0.008844564,-0.004422282,-0.009015995,0.0113207875,0.0029698813,0.008298525,-0.006628661,0.026971793,-0.0012881126,0.0020317733,0.0019587565,0.022920944,-0.0075493082,-0.0005277849,0.0067048525,0.00029782148,-0.029359126,0.009041392,0.0054159462,0.038095754,-0.023035232,-0.02528288,0.0015928786,0.003704812,-0.002604797,-0.013752567,-0.0023016185,-0.01641927,0.0018889144,-0.011727142,0.0060413512,-0.0032984572,-0.037029073,0.0032317897,-0.014095428,-0.0051556253,-0.0025174944,-0.042438667,0.024406679,-0.0035270317,-0.012000162,0.036444936,0.033295687,-0.029105155,-0.023187615,-0.025879715,0.0058762697,-0.01309224,0.0041937074,0.0278099,0.011574759,-0.02125743,-0.008146142,-0.1614244,0.027454339,0.016165297,-0.009581082,-0.004663555,0.013447801,0.019505026,0.0022682846,-0.008228683,0.0085778935,0.02106695,-0.00087540864,-0.00453022,-0.0043460904,-0.017079595,-0.02556225,-0.009142981,0.0032667108,0.043962497,0.022400303,0.03131471,-0.024622554,0.015492273,-0.0076001026,0.0014198604,-0.00045992684,0.017092295,0.033625852,-0.014781152,0.003371474,-0.033168703,-0.020114558,0.016914515,-0.0010508079,0.020939965,0.015835134,0.0038730681,-0.018006593,-0.009803307,0.027124176,0.011923971,0.00073374005,-0.002084155,-0.009930293,-0.0007182637,0.03624176,0.006628661,0.01399384,0.016266886,-0.00012490248,0.012533503,-0.034819517,0.015644655,0.0059207147,0.0051143547,0.0060127797,-0.0016587526,0.017295472,0.011231897,0.0020460594,0.005892143,-0.00843186,0.034489356,-0.012438263,-0.022793958,0.00932711,-0.006339768,0.00030357554,-0.027251162,0.008996947,-0.0066794553,-0.019771695,0.011581109,-0.017714525,0.00897155,0.00042857722,-0.004996893,0.019085972,-0.0034159191,-0.009289014,-0.03245758,0.028063871,-0.030121041,0.012482708,0.010158868,0.02035583,0.012482708,-0.0012674774,0.00038790205,-0.021130444,0.0146414675,-0.020520912,0.003758781,-0.013371609,0.0073778774,0.017384361,-0.009142981,0.0034603642,-0.012603344,-0.0154033825,0.010996974,-0.017168486,-0.028901977,0.03532746,0.010330298,-0.00038214802,0.006492151,0.01408273,0.009758862,-0.0278099,-0.00031329787,0.027022587,0.008895358,0.0349719,0.022019345,0.003965133,-0.0016222441,-0.009123933,0.03560683,-0.0134224035,0.06826759,0.0045683156,-0.0057810303,-0.011066816,0.016927212,-0.009854102,-0.06618502,-0.032127418,0.016330378,0.010431887,-0.008508052,0.019632012,0.007415973,0.043937102,-0.004673079,-0.0039397357,-0.015162109,-0.017739922,-0.013155733,-0.007720739,0.024889225,-0.008323922,-0.0066223117,-0.014920836,-0.00053373736,0.008787421,-0.008946152,-0.022539986,-0.014019237,-0.006133416,-0.018895494,-0.007993759,-0.011619205,0.017993893,0.019949475,-0.011339836,-0.021371717,-0.010736653,0.010006485,-0.020685993,0.0011492219,-0.008349319,-0.042743433,0.0072699394,-0.015390684,-0.012311277,0.013981141,0.00834297,0.0028492447,-0.030908354,-0.020114558,-0.0041365637,-0.0053048334,-0.007606452,0.0027889265,-0.021181239,-0.010050929,-0.0070794607,-0.02887658,-0.023276504,0.006098495,-0.009676321,-0.0012230324,0.040559277,-0.030654382,-0.021295525,0.021447908,0.005558805,-0.0131176375,0.011854128,0.015568464,0.0006627074,-0.016876418,0.0021762198,0.012609694,-0.014577975,-0.020482816,0.032305196,-0.008285826,0.014603372,-0.039797362,-0.008946152,-0.03075597,-0.031797253,0.012222387,-0.02476224,-0.028901977,-0.025244785,-0.013460499,-0.007193748,0.015657354,-0.000980172,0.021625688,0.011162056,-0.008908057,-0.019174863,-0.00551436,0.010463634,0.012038258,-0.02072409,0.013498595,0.005120704,-0.012419215,0.0059397626,0.020076461,0.022387603,-0.025219388,-0.021562196,-0.081829675,0.010114422,-0.0008412812,0.003425443,0.010082676,-0.008222333,-0.010463634,0.003882592,0.009523938,0.013689074,-0.011327137,-0.0006269926,0.033752836,-0.01542878,-0.030324219,0.0042445017,0.012717632,0.000818265,0.031619474,0.008463606,-0.025587646,-0.017739922,0.011181103,-0.005041338,-0.0028682926,0.007949313,-0.024076516,-0.0028984519,-0.008311223,-0.0081207445,-0.01730817,-0.03309251,0.0030111517,0.0394672,-0.0062540527,-0.02735275,0.0007873122,0.043276776,-0.02207014,0.025765426,-0.024178104,-0.026057495,-0.004234978,-0.011873176,0.027606722,-0.00075199426,-0.0016841497,-0.020673295,-0.0022222523,-0.0015912913,0.012704933,0.021663785,0.012704933,-0.034489356,-0.0077715334,-0.020736787,0.0008658847,-0.0022746339,-0.004761969,-0.03685129,0.027047984,0.018705014,-0.0057365852,-0.0057969037,0.010508078,0.007873122,-0.013447801,-0.0042730737,0.02143521,-0.02143521,-0.022133632,0.002476224,-0.010235059,0.015327191,0.014565276,0.010622365,0.01452718,0.009873149,0.00090636144,0.04294661,0.01452718,-0.005695315,-0.023784447,0.015276397,0.023454284,0.029943261,0.004485775,-0.004971496,-0.0137271695,-0.008762023,-0.008139792,-0.002412731,-0.0039048146,-0.024952717,-0.00074008934,0.008603291,0.011219199,-0.023149518,0.019657409,0.04789906,0.011193802,0.013650978,-0.0013595421,-0.0060667484,-0.0044000596,0.0053968984,-0.011885875,-0.006952475,0.00834297,-0.018336756,0.022616178,0.026133686,0.014882741,0.024241596,-0.031340104,0.013066843,0.0063556414,-0.022463795,-0.011314439,0.03837512,0.017358964,0.0033746487,-0.001172238,-0.007238193,-0.01273668,0.014095428,0.018400248,-0.036317952,0.013460499,0.009942992,0.015733546,-0.00066548516,-0.0260067,-0.014019237,-0.012298578,0.003803226,0.0016635145,0.017257376,0.0047429213,0.09427429,0.0019222482,0.008704879,0.01542878,0.009200124,0.0041968822,0.034413163,-0.016876418,-0.01902248,0.010590619,0.016762132,0.015035124,0.019428834,-0.017828813,-0.023987625,-0.0008373129,-0.031416297,0.001892089,-0.011396979,-0.008749325,-0.0007535816,0.009181077,0.00327306,-0.0036603669,-0.036724307,0.019390738,-0.003882592,0.0099493405,-0.007562007,0.00030754384,0.0062826243,0.008057252,-0.010958878,-0.0091874255,-0.0019873283,-0.006339768,-0.011250946,-0.00789217,0.012025559,0.029841673,0.009435048,0.009009645,-0.034743328,-0.008476305,0.007866773,-0.00726359,-0.015174808,-0.014273209,-0.01936534]},{\"id\":\"d29cb463-973a-47d5-a260-c7e280c9d7e0\",\"text\":\"Bounty is great, but a video I just posted got the sound deleted. Is there any chance I can get another invite to post another video once I get this problem fixed?\",\"vector\":[-0.028209617,-0.021163762,-0.011105736,-0.019029051,-0.014916785,0.023285376,-0.007890573,-0.017247941,-0.03873911,-0.012742785,-0.0033133859,-0.008407881,-0.0026225515,-0.018256363,0.017496772,-0.0046819584,0.016724085,-0.00018375868,0.015126327,0.0155716045,-0.0398654,0.023874713,-0.026899979,0.022748424,0.017116977,-0.022892484,0.014366737,0.0031202142,0.0066234977,0.008525748,0.025943942,0.017915858,-0.046989836,0.0050453832,-0.029021593,-0.0064892597,-0.0061454796,-0.035438824,-0.0007988796,-0.011911164,0.0018138496,0.002365535,-0.00049152377,-0.042825185,-0.019513616,0.037036583,-0.0011655785,-0.021399496,0.021870967,0.003621151,-0.00051444245,-0.015427544,-0.05846227,-0.0050715758,0.009573459,0.0132011585,-0.008132856,0.02214599,-0.015584701,-0.019880315,0.00804773,-0.0066496907,0.020744678,0.0014340543,-0.0036506178,0.014956074,0.0024293798,0.010431272,-0.01656693,0.0058016996,0.025511762,0.006941085,0.014720339,-0.003039999,0.022290051,-0.008728742,0.00035769507,0.011662332,0.018020628,0.0013137313,0.010896194,0.0019775545,0.0027289595,0.02450334,0.026926171,0.014117905,0.012546339,0.020286303,-0.012533242,-0.0246474,0.013764302,0.018609965,0.034024414,0.0063615697,-0.017261038,0.012605272,-0.023691364,0.038870078,0.019474328,0.0017761975,-0.0049438863,0.008696001,-0.013842881,-0.0096192965,0.0008279372,0.002841916,0.0045477203,-0.015637087,0.020207725,0.022813907,-0.031509906,-0.0023573497,0.0073994584,-0.01544064,-0.011223604,0.0050355606,0.0056019793,-0.024843846,-0.027240485,0.0006789658,0.028366774,-0.026140388,0.015034652,-0.029545449,0.005916293,-0.0045739133,-0.020600617,-0.0005643724,0.02983357,0.003283919,0.03143133,0.013364863,0.005310585,0.012559435,0.0009265694,0.02889063,-0.021098278,-0.017064592,-0.009789549,-0.011046803,0.027842918,0.04984485,0.0007951962,0.019867219,-0.012212381,0.026690437,0.003555669,-0.0261011,-0.007353621,0.009010314,-0.0034803648,-0.0137250135,-0.0020577698,0.006502356,0.0132535435,0.0038012264,-0.010464014,-0.022722231,-0.011583754,-0.016108556,0.0052680215,0.0006269895,-0.0112367,-0.0039682053,0.022211472,0.03088128,0.020142242,-0.03200757,0.0030678287,0.013476182,0.00418757,0.014013134,-0.011072995,0.019055244,-0.0031938814,0.016828857,-0.002098696,0.014301254,0.012762429,0.007268495,-0.041436967,0.013685725,0.021779291,0.02823581,-0.024699787,-0.003319934,0.03095986,-0.012284411,0.008709097,-0.010870001,-0.009907417,-0.012821363,0.0017680122,0.011511724,-0.63281745,-0.015401351,0.053799957,0.031850412,0.00413191,0.024437858,-0.012101062,0.020797063,-0.025826074,0.019290978,-0.029676413,-0.0041810214,-0.0072946874,-0.014078616,0.007019663,-0.010084218,0.028445352,-0.014720339,0.0029515983,0.006695528,-0.016003786,-0.0081394045,0.0012998164,0.020744678,0.0002445341,-0.033552945,-0.005791877,-0.02606181,-0.032033764,-0.011217056,-0.010175893,0.02555105,-0.0010174256,0.00012022074,0.0576241,-0.008623971,0.0073929103,0.0001574636,-0.012127254,0.012821363,-0.01576805,0.020718483,0.027319063,-0.0021821854,0.005795151,-0.003151318,0.016187135,0.012664206,-0.010025284,0.0002353257,0.01308329,0.008964477,-0.0019513617,-0.00018907909,-0.013646435,-0.01656693,0.06013861,-0.011275989,-0.002676574,0.011053351,-0.00808047,0.00047965517,-0.022290051,-0.035517402,-0.0038994492,-0.009815742,0.010097315,0.01605617,0.018177785,0.013070194,0.013102935,-0.017169364,-0.020338688,-0.002876294,0.006286266,0.0202994,0.010627718,0.0016149483,0.0029663316,-0.01265111,-0.014170291,-0.025001002,0.004901323,-0.012847556,0.00641723,0.015545411,-0.027161907,-0.0072226576,-0.0059719523,0.01189152,0.0051927175,0.0261011,0.02181858,0.003552395,-0.018099207,0.004740892,-0.035674557,0.0112497965,0.044737257,-0.0005222184,-0.022617461,-0.020469652,-0.02120305,-0.0077923504,0.042956147,-0.016082363,-0.015702568,-0.015558507,0.029990725,-0.03232188,0.018937375,-0.010169344,0.012880296,-0.0062797177,-0.016291905,-0.035360243,0.014877495,-0.009835387,0.00091511005,-0.012952327,0.014798917,0.0066136755,0.0009748623,0.004511705,0.014039326,0.035412632,0.012565983,-0.00549066,0.00046860508,-0.0062437025,0.0136202425,-0.0048325667,-0.0013006349,0.004390564,-0.0061323834,-0.003624425,0.02185787,-0.008578134,0.0055201272,-0.038817693,0.00018631657,0.005382615,0.0134630855,0.023769943,-0.026074907,0.010614621,-0.015388255,-0.013299381,-0.027554799,-0.000053357544,0.019958893,0.011413502,0.005752588,-0.0030874733,-0.011269441,-0.006021064,0.003513106,-0.025433183,-0.017627737,-0.0061029163,0.0061029163,0.0037455666,-0.010673556,-0.015047749,0.005038835,-0.021347111,-0.013947652,-0.014117905,0.0047572628,-0.013869074,0.023547303,-0.021753099,-0.0069869226,-0.017378906,0.009154375,0.011413502,0.002031577,-0.0110926395,-0.019893412,0.012218929,0.014523894,-0.0074191033,-0.010863453,0.005385889,0.023324665,0.010503302,-0.011203959,0.032557618,0.005222184,0.019382652,0.0065907566,0.0033723197,-0.0048522116,0.010562236,-0.00859123,0.003863434,0.0030874733,0.043401428,-0.0035785877,0.019264786,0.00012482493,0.00975026,0.022722231,-0.0133059295,0.013273188,-0.05233316,-0.0046492172,-0.023010353,0.02831439,0.0099859955,-0.0044658678,-0.007910218,0.022119798,-0.0031087548,0.027607184,0.018950472,-0.0024572096,0.0052942145,-0.013089838,0.0061029163,-0.020482749,-0.0016812487,0.016514543,-0.017549159,-0.01699911,-0.005215636,0.01333867,0.028262002,0.020718483,-0.020744678,0.000030541185,0.015833532,0.0030088949,0.00391582,0.018295653,-0.03918439,0.0045902836,0.009180567,0.036958005,-0.0035032835,-0.012886845,0.011426598,0.0065842085,0.009344272,0.018400423,-0.0059424858,-0.0029303166,-0.014379833,-0.013842881,0.0048915003,-0.018334942,-0.00088891725,-0.029388292,0.0073994584,0.02026011,-0.027790533,-0.015257291,-0.005932663,0.014550086,0.011400404,0.020928027,0.021294726,-0.017889665,-0.017051496,0.006531823,0.021032797,0.008466814,0.0011688526,0.023874713,-0.030043112,-0.0019218947,-0.024005678,0.005232007,-0.010103863,0.01747058,-0.005114139,-0.0011966823,0.0053335037,-0.0021052442,0.009029958,-0.0010968224,-0.03342198,0.022250762,0.004374193,-0.0062535247,-0.0071637235,0.0011492079,0.0020708663,-0.018217074,0.021373304,-0.0028599235,0.01982793,0.0053629703,-0.0062764436,-0.009737164,-0.0010878186,0.033186246,0.0035065576,0.01138076,-0.004940612,0.00656129,0.019238593,-0.010870001,-0.010241374,-0.0010280664,0.004567365,0.0015232735,-0.023861617,-0.014550086,-0.006266621,0.009075796,0.0025848993,-0.011328375,-0.012258219,0.01623952,0.00804773,-0.03530786,-0.019788641,0.017405098,0.009029958,-0.0156239895,0.009069248,-0.009304983,0.018898087,0.10539972,0.0057394914,0.0022182006,0.037822366,0.00088973576,0.013607146,-0.012186188,-0.040101137,0.026821401,-0.027397642,0.0050944947,0.0031889703,-0.0019104355,0.023324665,0.028838243,-0.011898068,0.028471544,-0.010044929,-0.010359242,-0.042982344,-0.009789549,0.02555105,0.00096176594,0.021478074,0.0030301765,0.0038339673,0.0077988985,0.0095145255,-0.012507049,0.008794224,-0.004161377,-0.004878404,0.0031185772,0.015715664,0.008676357,0.015702568,0.017562255,-0.0012965424,0.0021805484,0.00048620335,-0.017051496,0.020888736,0.0041188137,0.005120687,0.017863471,-0.0004276789,-0.025001002,-0.0012629828,-0.007353621,0.0026569294,0.021949545,0.014196483,0.0033264824,-0.016029978,0.01837423,0.0024784913,0.0013513834,-0.02606181,-0.013685725,0.0006077542,-0.026769014,-0.027685761,-0.004164651,0.0029417758,0.0067839283,-0.03824145,-0.013332122,-0.054271426,-0.020377979,-0.011917712,-0.024110448,-0.00022652656,-0.036303185,-0.026624955,0.0041220877,-0.0012760792,0.01257908,-0.007379814,-0.012736237,-0.015951399,-0.015637087,-0.015899014,-0.021582846,0.0027600636,-0.00608982,-0.005110865,-0.014458411,-0.0037422925,-0.0051665246,-0.0030056208,0.017928954,0.025878461,0.013751206,0.0012670754,0.01170817,0.0077596093,0.02232934,0.029309714,0.017811086,0.0009904143,0.001271168,-0.008244175,-0.025420086,0.0018007532,-0.024018774,0.016986014,0.027607184,0.028000075,0.0051763467,0.00094539544,0.0039125457,0.0007329884,0.018321846,0.0032315336,0.027790533,0.019631485,-0.00032024758,0.021268532,0.0054350006,0.019945797,-0.024856942,-0.03418157,-0.019513616,-0.007026212,-0.0076744827,0.0006478619,-0.005353148,-0.02620587,0.018033724,0.015610893,-0.0037390185,0.021163762,-0.012670754,-0.0099336095,-0.030147882,-0.030488389,0.03446969,0.012585628,-0.004776907,-0.014392929,-0.009874675,-0.017457483,-0.009586555,-0.029047787,-0.0022312969,-0.02737145,-0.033081472,0.011020609,-0.029912148,0.022159087,0.0075304224,-0.0032168,-0.028340582,-0.019029051,-0.003046547,-0.029571641,-0.033291016,0.012768977,0.023966389,0.027423834,0.0095079765,-0.007890573,0.026664244,0.010031832,0.021975737,0.0062175095,-0.009527622,-0.02653328,-0.008872802,0.009861579,0.006079998,0.0025112322,0.031090822,0.020653002,-0.0060734493,0.013476182,-0.011485531,-0.0055430457,0.000010711156,-0.032452848,-0.011871874,-0.010667007,-0.014523894,-0.0062338803,-0.010516399,0.00052426476,-0.0034148828,-0.007170272,0.026978558,-0.002260764,0.0103526935,0.0058737295,0.015741857,-0.026035618,0.03614603,-0.006567838,-0.029283522,-0.005847537,0.017221749,0.007641742,0.013351766,0.018334942,-0.027135713,0.014340544,-0.019042147,0.031798027,-0.031247979,-0.026703533,-0.0012531605,-0.002033214,-0.027738148,-0.023508014,-0.027528604,0.0005525038,0.0017434565,0.009468688,-0.0155716045,0.0019841027,0.007000019,-0.025577243,-0.013659531,-0.0021723632,0.007019663,0.019526713,0.0046164766,0.041122656,0.021347111,-0.010680104,0.027135713,0.00014201395,0.006538371,0.019579098,0.024058063,-0.019814834,-0.02378304,0.015597797,0.008348946,-0.041620318,-0.027790533,0.033526752,-0.011007513,-0.009331176,-0.00724885,0.010385435,-0.008401332,-0.005461193,-0.018164689,0.013377959,-0.018609965,0.0038536119,-0.014445315,-0.006070175,-0.004406934,0.0077727055,0.013319026,0.015375158,-0.025446279,0.002737145,-0.011681977,-0.004256326,-0.007144079,0.023612786,-0.026546376,-0.003617877,0.002264038,0.012827911,0.0018989762,-0.014563182,-0.007910218,0.017928954,-0.018623061,0.012998164,0.00021261166,-0.0033952384,-0.0026372848,-0.0007460848,-0.028183425,-0.023835424,0.0144977,0.0090888925,0.010968224,0.009756808,-0.004053332,0.01794205,-0.0035294762,0.0135154715,-0.0019857397,-0.00062044134,0.015165616,-0.01855758,0.009946706,-0.020928027,-0.000727668,0.017850375,0.009409754,0.03965586,0.0112497965,0.027528604,-0.052568898,-0.011537917,-0.022080509,-0.008381688,-0.012493953,0.020089857,0.020836351,-0.012074869,0.03305528,-0.0071964646,-0.012677303,-0.03928916,-0.006427052,0.020862544,0.0081394045,0.0056248982,0.026127292,0.004524802,-0.0036637143,-0.0078054466,-0.030828895,0.030383619,-0.002846827,0.0014332358,0.022407917,0.0023868165,-0.008231079,-0.009913965,0.029204942,0.008440621,-0.00790367,-0.019343363,0.023612786,-0.005441549,-0.006528549,-0.030226462,-0.0134107005,-0.016776472,-0.023822328,0.008296561,-0.0057624104,-0.008676357,0.005611802,0.03313386,0.016357386,0.016069267,0.0018760575,-0.011904616,-0.03198138,-0.0028533754,0.0099336095,-0.025799882,-0.039079618,0.03208615,0.007995345,-0.034914967,-0.01283446,0.02359969,-0.000744857,-0.026572568,0.008067374,0.015506122,0.012120706,-0.01261182,-0.0100383805,0.039236777,-0.0006126654,0.024398569,-0.0031333105,-0.026926171,-0.004626299,-0.009586555,-0.003994398,-0.0045477203,-0.019002857,0.008270368,-0.013764302,0.018583773,0.023560401,0.019421943,-0.0057656844,0.01261182,-0.0228401,0.003447624,0.046308823,0.01925169,0.011190862,-0.012683851,0.0013636613,-0.0011762192,0.005471016,-0.03685323,-0.01699911,0.0131487725,0.008440621,0.031012245,-0.03012169,-0.014104809,-0.0007706405,0.007275043,0.0073339767,0.0028599235,-0.019435039,-0.015375158,0.016841954,-0.033160053,-0.023377052,0.021543557,-0.015650183,-0.0090888925,0.005107591,-0.017025303,-0.02091493,0.0009855031,0.0064434223,-0.025524858,-0.014222676,-0.02077087,-0.029885955,-0.02870728,0.020548232,0.020391075,-0.005254925,-0.029047787,0.00031922443,-0.03208615,0.0060407086,-0.013895267,-0.021884063,-0.028288195,0.016815761,0.03077651,0.009645489,-0.043113306,0.036041256,0.019395748,-0.023036545,0.000947851,0.23531587,0.006901796,-0.017457483,0.032924317,0.015506122,0.0078054466,0.016946726,-0.0025799882,-0.027711954,-0.0017663751,0.042746607,0.016029978,-0.012880296,-0.0058409884,-0.0031840592,-0.013777399,-0.028340582,-0.004567365,-0.01547993,-0.012814814,0.0094032055,-0.0001285083,0.008198339,-0.011662332,0.039786823,-0.013607146,-0.010739037,0.0045968317,-0.002303327,0.0070851455,-0.019343363,-0.02823581,0.0293621,0.006086546,-0.021609038,0.010267568,-0.016449062,-0.014838207,0.039524894,0.00038716194,0.039603475,-0.0010272479,0.029597834,-0.014091712,0.005209088,0.016763376,0.009992544,0.009213308,0.00039432402,0.0077072238,-0.011020609,-0.023062738,0.007412555,0.015676375,0.003617877,-0.033474363,-0.009593103,0.0013562946,-0.0152049055,0.0010280664,-0.014366737,0.03795333,0.0199327,0.012854104,-0.033526752,0.023481822,-0.008001893,-0.016134748,0.03381487,-0.030828895,0.016108556,-0.011334923,-0.013030905,0.013227351,-0.019199302,-0.01468105,0.0017418194,0.022460304,0.033919644,0.0044560456,0.017352713,0.0014176839,0.0014888955,-0.03287193,-0.020312496,-0.019631485,0.030933665,0.009527622,-0.011596851,-0.021923352,-0.022460304,0.0018105755,-0.030357424,-0.0014422396,-0.019304074,-0.010306857,0.0038536119,0.016265713,-0.0040173167,-0.01576805,-0.006260073,0.03748186,0.0018138496,-0.0072292057,-0.009377013,-0.005313859,-0.0019857397,0.0032331706,0.02403187,0.00011295634,0.017601544,-0.020679194,0.008381688,-0.0071244347,-0.0023835425,0.029204942,0.024581918,-0.015322773,0.0063746665,0.003617877,-0.008656711,-0.009468688,0.006070175,-0.008866254,0.016789569,-0.0029843391,-0.0018203978,0.017863471,-0.009370465,-0.047985163,0.015047749,0.026624955,0.0016182223,-0.019120725,0.007406007,-0.009422851,0.021425689,-0.024765268,-0.010188989,0.01047711,-0.0049668048,-0.010031832,0.013633339,-0.0008782765,0.03247904,-0.041594125,0.0029646945,-0.030409811,-0.0085650375,0.010974772,-0.0030727398,-0.015270387,-0.010889646,-0.00058483554,0.022290051,-0.005788603,-0.019487424,-0.04353239,-0.0025259657,-0.011871874,-0.033291016,-0.021320919,-0.0032970153,0.0089317355,-0.035936486,-0.014052424,-0.16480494,0.021032797,-0.009704423,-0.015820436,0.012310604,-0.007261947,0.010424724,0.0067118984,-0.031588484,0.0022182006,0.00078209984,0.00055823347,-0.0075566154,-0.01982793,0.0072161094,-0.018465906,-0.006430326,0.0018662352,-0.011151574,-0.0076024528,0.020456556,-0.009422851,-0.009979446,-0.033762485,0.008401332,-0.03813668,-0.010719392,0.031745642,-0.0049471604,-0.019120725,-0.00967823,-0.011858778,0.019133821,0.009246049,0.017994436,0.009645489,0.020535136,-0.016318098,0.013855977,0.0076351934,0.012376086,0.019186206,-0.0039780275,0.02359969,-0.0028648346,0.0014856214,0.01898976,0.010896194,0.02907398,-0.004194118,0.014327447,-0.03737709,0.006184769,0.012153447,0.0079822475,0.015964495,-0.017955147,0.02232934,-0.031405136,0.005245103,-0.0013865799,-0.016697893,-0.013659531,-0.015781146,-0.03522928,0.006875603,-0.024765268,0.007340525,-0.009422851,-0.009377013,0.0030891104,0.003693181,0.021661423,0.024896232,0.010116959,0.02653328,-0.039315354,0.012572532,-0.0047212476,-0.01515252,0.005814796,0.025852269,-0.026624955,0.014510796,-0.0040107686,0.0036047804,0.008898995,0.0064336,-0.0046132025,-0.013017809,-0.018898087,-0.009219856,0.00016759282,-0.035203088,-0.012913037,0.031405136,0.0055266754,0.027685761,0.011839134,-0.016789569,0.011832586,-0.011826037,-0.021412592,0.04654456,0.017719412,0.008270368,-0.015689472,0.014327447,0.017313423,-0.014942978,0.00035217003,0.019880315,0.007340525,0.026808305,-0.002809175,0.020928027,-0.017968243,-0.011917712,0.008558488,-0.011832586,0.045103956,-0.009429399,-0.019094532,0.00028648347,-0.007857832,-0.011681977,-0.09403206,-0.0008299835,0.01874093,-0.03077651,-0.0134630855,0.017693218,0.008696001,0.024922425,0.0012818088,0.026048714,0.024608111,-0.036303185,-0.0050715758,0.0085192,0.0069541815,-0.014419122,0.00060652645,0.007353621,0.007687579,0.039970174,-0.011099188,-0.014235772,-0.013895267,-0.032662388,-0.0026372848,0.0042235847,-0.022643654,0.02359969,0.008276916,0.0019988362,0.010739037,-0.015466833,-0.009710971,-0.031955183,-0.031693257,0.005310585,0.0003797952,-0.013351766,0.009887773,-0.031509906,0.017811086,-0.026480895,0.022041218,-0.009612748,-0.0063812146,0.0138297845,-0.0049537085,0.0068559586,-0.0014455137,-0.011151574,-0.011033706,0.009187115,-0.013960749,-0.022041218,0.019435039,0.0017369083,0.021425689,0.026795208,-0.048509017,0.0192124,-0.0030203543,0.008159049,-0.01142005,0.028785858,0.003794678,0.007170272,-0.020744678,-0.015427544,-0.012055224,0.0069476333,0.00003041329,0.029204942,-0.007962603,-0.005477564,-0.023743749,-0.008067374,-0.01185223,-0.019002857,0.03389345,0.016828857,0.0004383197,-0.00020125463,-0.0036669883,-0.018059917,0.0114593385,-0.0069607296,-0.0035458468,0.025524858,-0.0016460521,-0.041987017,-0.00724885,0.0013612057,0.0024801283,-0.017784894,-0.023193702,0.015781146,-0.0077858022,0.001961184,0.009160923,-0.0013873985,0.008925187,-0.0054644677,-0.05157357,0.022669846,-0.0006936992,-0.013384507,0.0035327503,0.0033281194,-0.0034050606,-0.016553832,-0.013423797,-0.011112284,0.010215182,0.024097351,-0.0152049055,-0.011904616,-0.003752115,-0.0023966387,0.016789569,-0.019277882,0.021870967,-0.01837423,0.0062764436,0.010287212,0.0055004824,-0.013646435,0.0026290996,0.022198375,0.008866254,0.013351766,-0.008126308,-0.021163762,0.009861579,-0.035203088,0.01874093,0.032610003,0.0018793315,-0.00052999443,0.018596869,-0.0025783512,0.014563182,0.0061487537,0.008237627,-0.0337101,-0.018138496,-0.009658585,0.012775525,-0.015218002,-0.033867255,0.023638979,0.0136202425,-0.0015519218,0.033631522,0.006194591,-0.014903689,-0.010450916,0.00037058681,-0.03198138,0.0061323834,-0.028759666,-0.003447624,-0.035726942,0.027083328,-0.0106932,0.032269496,-0.0036440697,0.03381487,0.020050569,0.013803592,0.011858778,0.032164726,-0.023481822,0.0010305219,-0.0060734493,0.012533242,0.0014987178,0.017876567,0.027135713,0.004744166,-0.0025243287,-0.016029978,0.0010108773,0.009573459,-0.009095441,-0.015650183,-0.022486497,0.03156229,0.03797952,-0.010044929,0.015584701,0.0062731695,0.014877495,-0.042065594,0.02616658,0.014131001,0.023769943,-0.014589375,0.0070916936,0.0021920078,-0.03284574,-0.00055536866,-0.0006122561,0.016789569,0.016226424,-0.012690399,0.0030187173,-0.012998164,0.016724085,-0.02026011,-0.020417267,0.0077858022,-0.006630046,0.0069803745,-0.00018662351,-0.0015036289,0.013279736,-0.010431272,0.0018858797,0.0019235319,-0.026114196,-0.02511887,0.041672703,0.021609038,-0.010902742,0.01225167,-0.030174075,0.0366175,0.0031283994,-0.027030943,0.0054317266,0.02095422,-0.004750714,0.00096995116,-0.0058344402,-0.00833585,-0.0022967788,0.009593103,-0.019029051,-0.012238573,0.028785858,-0.012218929,0.06281027,0.023259183,-0.007130983,0.011858778,-0.003319934,0.0057591363,0.036329377,0.022015026,-0.0031283994,-0.0110926395,-0.00052426476,-0.005608528,0.024110448,0.005281118,-0.013214255,0.031378943,0.009802646,0.027580991,-0.003418157,-0.00880732,0.012369538,0.011596851,0.032610003,-0.015165616,-0.017627737,0.007726868,-0.008957929,-0.022211472,-0.02559034,-0.026546376,0.005313859,0.021072086,-0.004390564,-0.02497481,0.0005029831,-0.0057820547,-0.01468105,0.021556653,-0.008172145,0.0063844887,0.034914967,-0.004027139,-0.022355532,-0.01964458,0.01974935,-0.010542591,-0.035517402,-0.0064925337,-0.0102479225]},{\"id\":\"bb6cfae8-c262-4806-bad8-b6714a7172fd\",\"text\":\"Video is posted. Will there be a discount code for viewers?\",\"vector\":[-0.021569123,-0.018961435,0.008583096,-0.019826297,0.0069909645,0.009382438,-0.017991742,-0.03477792,-0.0026404487,-0.014676439,0.0008181787,0.01510887,-0.008524128,-0.020009752,0.0085962005,-0.006774749,0.01828003,-0.003174435,0.022067074,-0.015423365,-0.0077509945,0.029641164,-0.0100835,-0.00042178383,-0.016275123,-0.018856604,0.011819775,-0.020324247,0.0015536387,-0.008832071,0.024006462,-0.0069844127,-0.0077509945,-0.03425376,-0.017493792,0.012009783,-0.0028239042,0.020848406,0.010640418,0.0013447943,0.01927593,0.00004110345,0.0023652655,-0.037687,-0.011020433,0.024111293,0.011826327,-0.02129394,0.0070761405,0.02086151,0.0046158712,-0.02529065,-0.005015542,-0.021189108,0.008832071,0.016681345,0.031711593,0.0088910395,0.0016986013,-0.0088910395,0.019197306,0.0013103964,-0.01610477,0.014689543,-0.013326731,0.007973762,-0.025644457,0.021411877,-0.015764069,0.0022489678,-0.0003028244,-0.0029991698,0.0088910395,-0.03957397,0.027885234,0.00043447828,-0.009264502,-0.019629737,0.03084673,0.024963051,0.014296425,-0.002142498,-0.0055298726,0.025631353,0.02287952,0.012101511,-0.0056707403,0.019184202,-0.040491246,-0.013097411,0.022748481,0.029641164,0.004291548,0.007606851,-0.00355445,0.027911441,-0.025474105,0.029693581,-0.0005606039,0.01226531,-0.0007620774,0.0052186535,-0.0023849213,-0.0142178,0.0026699326,-0.0026863124,-0.0101621235,-0.0038623933,0.024307853,0.014453672,-0.026627254,0.0010425841,-0.021542916,-0.02333816,0.006145759,0.022827104,0.014689543,-0.009664173,-0.027203828,-0.020245623,0.028802512,0.012999131,0.02433406,0.0064995657,0.011859087,0.0034987582,-0.011269408,0.0044520716,0.012573253,0.009153118,0.03663868,0.0034922063,0.016877905,0.0027796782,-0.027859027,0.02502857,-0.027125204,0.011433208,-0.03627177,-0.01831934,0.011492176,0.025212025,-0.015580612,0.014794375,-0.020114584,0.01881729,-0.0034332385,0.0034987582,0.014139176,-0.0014725579,0.00021580589,-0.0061162747,0.010660075,0.03527587,0.019223515,0.021084277,0.016746866,-0.018922124,-0.009251398,-0.0026863124,-0.0019230066,0.003257973,-0.001777225,-0.015213702,0.0048877783,0.026889334,0.038027704,-0.025487209,0.00087632757,0.018201405,-0.01712688,0.024727179,-0.027361076,0.011741151,-0.0045012115,0.032786116,-0.00055159495,-0.023678862,0.00839964,-0.017664142,-0.013084307,-0.0023275914,0.013811577,0.015082662,-0.00032534683,-0.0040065367,0.013811577,-0.027990066,0.00035237375,-0.028750096,0.015659235,0.00209991,0.026784502,0.0055265967,-0.6549885,-0.009703485,0.036376603,0.015239909,0.010345579,0.019642841,-0.006515946,0.013169483,-0.019262826,0.031213641,0.014558503,0.0029713237,-0.009670725,-0.021215318,0.002144136,-0.016157188,0.024976155,-0.018463485,-0.02882872,0.013110516,-0.016589617,0.006728885,0.010627314,0.023691965,0.029772205,0.013411907,-0.010306267,-0.013320179,-0.014165385,0.018044157,-0.0096117575,0.02985083,0.009264502,-0.0018836948,0.043531366,-0.021516709,0.019721465,0.0007837808,0.013746058,0.029562542,-0.040412623,0.014244008,0.017022049,-0.003967225,-0.011623216,0.00434724,0.010463514,-0.0048845024,-0.0014913948,-0.010194884,-0.020848406,0.021398772,0.011970471,-0.004019641,0.012671533,-0.004357068,0.033782016,-0.00286813,-0.013995033,-0.00073177443,-0.019564217,0.008727239,-0.008144113,-0.008229289,-0.010325924,0.009028631,-0.0099917725,0.025696872,0.023180911,0.0214905,0.007449603,-0.0024488033,-0.019262826,-0.0035315182,-0.01011626,0.032864742,0.027256245,-0.01732344,-0.015501989,-0.006470082,-0.032628868,-0.00009316099,-0.02350851,-0.015842691,0.016982736,0.012520837,-0.009179327,-0.022499505,0.030637067,-0.013130171,0.022814,0.019760776,0.025841016,0.013615018,0.0036330738,0.02833077,0.0022227599,0.007226836,0.020979445,-0.0026551906,-0.029929452,-0.009107254,-0.017834494,-0.006093343,0.02377059,-0.01074525,-0.025906535,-0.008877935,0.017153088,-0.01808347,0.004284996,-0.019511802,-0.022958145,0.00021601065,-0.021307044,-0.031213641,0.03640281,-0.0076985788,-0.02003596,-0.021988451,-0.021634644,0.007528227,-0.0062505906,0.01087629,0.0048386385,0.016078563,-0.011714944,-0.007613403,-0.0036625578,0.009113806,0.0134970825,0.011315272,0.0029107179,-0.009336574,-0.017284127,-0.0020917202,0.029248046,-0.029772205,-0.017651038,-0.009932804,-0.012684637,0.010214539,0.008163769,-0.0033234928,-0.01239635,-0.0066076736,-0.009008975,0.014296425,-0.025382377,0.03514483,-0.0123570375,-0.007475811,0.01213427,-0.02112359,-0.014073657,0.01193771,0.014086761,-0.037005592,-0.030139117,-0.030034285,0.016838593,0.008039282,-0.029143214,0.002435699,0.0034659985,0.015030246,0.0007575729,0.008465161,0.0009901682,0.003590486,-0.008609304,0.00068386307,0.0023587134,0.021687059,-0.0017641211,0.021411877,0.011393896,0.018948331,-0.004376724,0.005415213,0.005968855,0.008943455,-0.03514483,0.0017461032,0.02086151,0.021713268,-0.01573786,0.057867102,-0.008524128,-0.00068386307,0.016851697,0.012121166,-0.01001798,0.012553597,-0.009343126,0.0015331637,0.011642871,0.018070366,0.0068337168,0.015646132,0.017873807,-0.00027190725,0.01580338,0.0020229244,0.011518384,-0.028854927,0.0017133432,-0.020507703,0.023862317,0.030741898,0.021136694,-0.023914734,0.028356977,-0.00065396965,-0.013300523,-0.0055822884,-0.020927029,0.01117768,-0.0218181,0.012311174,-0.03616694,-0.02856664,-0.008019625,-0.032550246,-0.040176753,0.0055036647,-0.019197306,0.037005592,0.0030663274,-0.026627254,-0.019092474,0.0146371275,0.003963949,0.028488016,0.020022856,-0.027963858,-0.027361076,-0.007875482,0.04371482,0.020848406,-0.00879276,0.026365174,0.018122781,0.012416005,0.007587195,0.012180134,0.0142178,-0.0012055646,-0.017218608,0.002131032,-0.0027862303,0.019682154,-0.010470067,0.016694449,0.009054839,-0.003264525,-0.010070396,0.0033185787,0.016681345,0.013732954,0.0022964696,0.015462677,0.0080065215,-0.01302534,-0.0069909645,-0.0023112115,-0.0018771428,0.0030908973,0.025277546,-0.03451584,0.011164577,-0.007882034,0.008838624,0.002175258,0.008373433,0.0044094836,0.010384891,-0.009677277,-0.003577382,0.035302076,-0.0021818099,-0.048222587,0.0044881073,0.02059943,-0.0151481815,0.0004283358,-0.0004668287,-0.007941002,-0.018109677,0.029038383,-0.017965535,0.015266118,-0.0012325916,-0.011479072,-0.0030237397,-0.007449603,0.019524906,-0.0045667314,-0.00438,-0.015777173,-0.0018624008,-0.005005714,-0.028094897,0.0030515855,-0.0029795137,0.00717442,-0.0033087507,-0.01675997,-0.013968825,-0.0077051306,0.0033644426,-0.008609304,-0.024976155,0.002478287,0.022722272,-0.01005074,-0.002928736,-0.018332444,0.011479072,0.01877798,-0.035328284,0.019564217,-0.024740282,-0.015488884,0.11688735,-0.0012121166,0.013326731,0.026797606,0.0034234105,0.01649789,-0.0019262827,-0.010823874,0.0031482272,-0.009244846,-0.0038853253,-0.0029254598,-0.012219446,-0.0065880176,0.03477792,0.004720703,0.033939265,0.0054676286,0.005356245,-0.033939265,0.007855826,0.024438892,0.003254697,0.015672341,0.010640418,-0.013169483,0.039180852,0.035590366,-0.01219979,0.005097442,0.017480688,0.0017117052,0.010332475,0.030112907,-0.0073251156,0.0059885113,-0.0083013605,0.02010148,0.024438892,0.023036769,0.008478264,0.003239955,0.009041735,-0.013575706,0.0062473146,-0.0036429018,0.0037346296,0.011243201,0.01352329,-0.0044455198,0.022709168,0.0033021988,0.006191623,0.0056478083,-0.0004893511,0.0069254446,-0.018948331,-0.02029804,0.0048451903,-0.022931935,-0.023757486,-0.031921256,-0.016891008,0.0023308676,-0.0055560805,-0.0062964545,-0.0062047266,-0.005411937,0.0031007254,-0.0138770975,0.015554405,-0.015829587,-0.035852443,-0.013444667,-0.00869448,-0.0063586985,0.014951622,-0.009972116,0.013483979,-0.024294749,-0.020206312,0.013693642,-0.00915967,-0.032524038,-0.015908211,0.0009254674,-0.013601914,-0.0025307029,-0.0073578754,0.022866417,0.007560987,-0.019092474,0.04083195,-0.0041441284,0.014820582,0.010090052,-0.0119770225,0.030165324,-0.0100769475,-0.006126103,0.019708361,-0.013274315,-0.0030302915,-0.009631413,-0.030296363,0.0010319371,0.01580338,0.017742766,0.0033840986,0.00217362,0.004419312,-0.003934465,0.007449603,0.011020433,0.01682549,0.009755901,0.019931128,0.023403678,-0.016262019,0.0033644426,0.0030941733,-0.029798413,0.011891847,0.0055429763,0.009035183,0.0073251156,-0.009644517,-0.009795213,0.0056871204,0.010090052,0.010673178,0.020284936,-0.0145454,-0.017297233,-0.03061086,-0.009113806,0.014152281,0.020704262,-0.021569123,-0.016655138,0.0063849064,-0.016537203,-0.01216703,-0.022840207,-0.01219979,-0.02882872,-0.022171905,-0.018502796,-0.002537255,0.015056454,0.008799312,0.0022735377,-0.005349693,-0.012514285,0.015082662,-0.021673955,-0.023167808,-0.03739871,0.03223575,0.028907344,0.028409394,-0.006394734,0.009087599,0.015318533,0.018856604,0.009382438,0.0026928645,-0.0016281675,-0.025723081,-0.004239132,0.031397097,-0.00031306187,0.027623154,0.022093283,0.0041048164,0.002468459,-0.021228421,-0.009028631,-0.022368466,-0.021542916,-0.008445504,-0.013411907,0.002581481,-0.009985221,-0.018437278,-0.0016478234,0.0032055571,0.0022129319,0.00866172,0.010889393,0.007875482,0.0069254446,0.0261162,0.005775572,0.0070368284,0.0014561779,-0.01345777,-0.006781301,0.0066535375,0.025880327,0.004625699,0.042299595,0.01606546,-0.01610477,-0.005031922,0.029274255,-0.011590456,-0.018004846,-0.024085084,-0.012854988,-0.027544532,-0.041382316,-0.0025421688,-0.024622347,-0.013267763,0.023796797,-0.0142178,0.004628975,0.015370949,-0.027990066,-0.021189108,0.0018542109,0.012691189,0.010614211,0.014204697,0.029431501,-0.0030040836,-0.017677248,0.0066731935,0.011754255,-0.0027927822,0.03878773,0.026443798,-0.010299715,-0.016327538,-0.017900014,0.014872999,-0.03983605,-0.017375855,0.007449603,0.010699386,-0.018725565,-0.0069057886,-0.00068918656,-0.003613418,0.0247927,-0.012540493,-0.0047469107,-0.009716589,-0.011256305,-0.019157995,-0.005451249,-0.0049532983,0.016445475,0.014741959,-0.019092474,-0.022669857,0.010437307,0.003561002,-0.0038001493,0.0056641884,0.011878743,-0.021962242,-0.00039332366,0.031423304,0.021438085,0.007495467,0.0017477411,0.0045929393,0.018148988,-0.013071204,-0.01679928,-0.0031089154,-0.012042542,-0.010142468,-0.004353792,-0.01656341,-0.034201346,0.0009795213,0.0029123558,0.009644517,0.013955721,0.0032727148,0.012094959,-0.007823066,-0.010424203,0.002511047,-0.025303753,0.020114584,-0.008458609,0.0026240686,0.0012628945,0.0076002986,0.02211949,0.014230904,0.015501989,0.019996649,0.015410261,-0.028540432,0.003577382,-0.005726432,0.010384891,0.0004913986,-0.0019344726,0.0042096484,-0.031711593,0.023534719,-0.023600237,-0.018162094,-0.003931189,-0.025041673,-0.018148988,0.008262049,-0.0072399396,0.0059098876,0.014086761,0.0055822884,0.0032612488,-0.0134970825,0.005860748,-0.006090067,-0.0019262827,0.02585412,-0.014886103,-0.000015023489,0.0037837694,0.008838624,-0.023102287,-0.0026076888,-0.01530543,0.0022243978,-0.0045700073,0.006820613,-0.036114525,-0.014519191,0.0026175168,-0.022211218,0.020311143,-0.011492176,-0.012311174,0.0052153775,0.027230036,0.013300523,0.0284356,-0.008327569,-0.033572353,-0.015934419,-0.0077313385,-0.009742796,-0.039390516,-0.029431501,0.026627254,-0.007927898,-0.017139984,-0.015593717,-0.0036691097,-0.02433406,-0.01881729,0.019669048,0.0007567539,0.0037313537,0.002111376,-0.009644517,0.03666489,0.00035810674,0.0128222285,0.0029123558,0.0052415854,-0.002466821,-0.010843529,0.0069254446,-0.00047993267,-0.015724756,0.004196544,0.010732146,0.025578937,0.0114266565,0.013772266,-0.008733791,0.0065454296,-0.022473298,0.027990066,0.012003231,0.0041703363,0.014204697,-0.015384053,-0.001465187,0.0024766491,0.033939265,-0.015213702,0.0040917126,0.0025962228,-0.016891008,0.0023505234,-0.01752,-0.018306237,-0.0048451903,-0.0138770975,0.008910695,-0.0010532311,-0.034804128,0.034908958,0.009618309,-0.01679928,0.0070630363,0.0168648,-0.011262856,-0.008655168,0.027911441,0.0067223334,-0.0026977784,-0.016550306,-0.00988694,-0.0029270977,0.0077509945,-0.017336544,-0.013038443,-0.00856344,0.020114584,0.006168691,-0.017467583,-0.009624861,-0.0044258637,0.012284966,-0.017297233,-0.025421688,0.020206312,0.013241556,-0.019171098,0.0076789227,-0.0068992367,-0.0115970075,0.018135885,-0.007980314,0.0021375841,0.009493821,0.25012845,0.0020786163,-0.011413552,0.03792287,0.024412684,0.026889334,0.043557573,0.00015724756,-0.011085953,-0.009094151,0.0027157965,0.008111353,-0.03021774,-0.0096969325,0.011544592,-0.015462677,0.005995063,-0.016484786,-0.011610111,0.007567539,0.016943425,0.008189977,0.00856344,-0.01907937,0.022289842,-0.027649364,0.0026109647,0.016379954,0.016537203,0.005716604,-0.015213702,-0.034620672,-0.00942175,0.0011703478,-0.0045175916,-0.006840269,0.0041834405,0.011675632,0.028907344,0.022499505,0.020389767,-0.0052874493,-0.0055298726,-0.02370507,-0.013044995,-0.020743575,-0.00291727,-0.011859087,-0.014990934,0.0007845998,-0.01011626,0.005480733,0.035957277,0.023626447,-0.014676439,-0.043085832,0.0017411892,0.0100769475,-0.008452056,-0.02489753,0.0062276586,0.045575585,-0.017139984,0.0020458563,-0.01610477,0.0034463424,-0.028723888,0.0047763945,0.0007547064,-0.021411877,-0.0029516679,-0.025303753,-0.008812415,0.018214509,-0.011826327,-0.023980252,0.021241525,0.01279602,0.010293163,0.015384053,-0.011236649,-0.009343126,-0.01292706,-0.028199729,0.008845176,-0.031790216,0.006787853,-0.0008501196,0.0018034329,-0.015554405,-0.008438952,-0.012933612,-0.026718982,-0.01504335,-0.0015216977,-0.019826297,0.0041834405,0.016877905,-0.022538817,-0.010489723,-0.0073382193,0.03878773,-0.00028808246,-0.0059459233,-0.008943455,0.007122004,0.0048484663,0.015882004,0.029877037,-0.008707584,0.024465099,-0.031187434,0.021962242,-0.015659235,-0.013601914,0.013615018,0.011269408,-0.025775496,-0.027413491,-0.023207119,-0.028409394,-0.03600969,-0.009395542,-0.017139984,0.021870514,-0.0017690351,-0.015685445,-0.021215318,-0.029614957,-0.035668988,0.010791114,0.014663335,0.009100703,-0.019524906,-0.0049500223,-0.008360329,0.050161973,-0.016262019,-0.0036396259,0.020127688,-0.0099065965,0.0059590274,0.0151874935,-0.0076789227,0.024674764,-0.010044188,0.014165385,0.0074233953,0.0012080217,-0.007829618,0.0044291397,-0.0231416,-0.004556903,-0.0030859835,0.032471623,-0.004245684,-0.017467583,-0.021149797,-0.0062997304,-0.018096574,-0.004271892,-0.010928705,0.030296363,-0.0041277483,-0.014073657,-0.009677277,-0.16689208,0.010312819,-0.003623246,-0.017834494,0.0062767984,0.0035741061,0.024818907,0.017742766,-0.029012175,0.01163632,0.025461001,-0.012579805,-0.0056707403,-0.0009033545,0.005520045,-0.008347224,-0.032340582,0.0055528046,-0.014152281,0.007115452,0.03884015,0.010895946,0.022420881,0.0028026102,-0.021660851,0.004533971,-0.019852504,0.019721465,-0.010450411,-0.0017362752,-0.00647991,0.00036936798,0.010397995,0.006132655,0.021791892,-0.00077763834,0.0088910395,-0.00995246,-0.0016560134,0.024425788,0.00065683614,0.015672341,0.007947554,-0.0043439637,-0.014165385,0.013071204,0.008537232,0.012861541,0.016877905,-0.022892624,0.0136674335,-0.031344682,0.028776303,-0.004576559,0.011072849,0.010791114,-0.009729693,-0.009618309,-0.012841884,-0.027413491,0.0016363574,-0.017402064,-0.046859775,-0.002175258,-0.0052677933,-0.002535617,-0.01147252,-0.029248046,-0.001089267,-0.011465968,0.005320209,-0.0046158712,0.019066267,-0.014086761,0.0037116976,0.016445475,-0.033546146,0.01795243,0.0069647566,-0.010057292,-0.002470097,0.020691158,-0.0143881515,0.02982462,-0.0022342259,0.006525774,-0.007226836,0.020324247,0.01193771,-0.018555213,-0.0052252053,-0.025251338,0.003228489,0.0040949886,0.009873836,0.024661658,-0.014519191,0.0019934406,-0.018568316,-0.032812323,-0.013837785,0.0026420867,-0.02661415,0.04311204,0.016877905,0.0136674335,-0.01345777,0.04400311,0.0114266565,0.0038623933,-0.027282452,0.011813223,0.027282452,0.009447957,0.008052385,0.036507644,-0.015331637,-0.018725565,-0.0099197,-0.022211218,0.06462875,-0.015750963,-0.02109738,-0.0013865632,-0.026967958,-0.046807356,-0.083393626,-0.026941748,0.026941748,0.01054869,-0.0031416751,0.025251338,0.015685445,0.021333253,-0.0055495286,0.0051072696,0.014597815,-0.020062167,-0.00018724335,0.027125204,0.023442991,-0.023390574,-0.0099917725,-0.011164577,-0.011334929,0.013162931,-0.0011089229,0.0021261182,0.019747673,-0.040884364,0.012140823,-0.0023996632,-0.028881136,0.0120621985,0.0066338815,0.01858142,0.008687927,-0.014899206,0.008458609,-0.018031053,-0.005660912,-0.010175227,-0.011957367,-0.02463545,0.011963919,-0.061378963,0.00091645843,-0.020376664,-0.009133463,-0.029745998,-0.0020605982,-0.0052350336,-0.0018624008,0.025146507,0.016209602,-0.015266118,0.0027665743,0.015331637,0.0009361144,-0.015895108,0.0060507553,-0.015960628,0.018922124,-0.007993418,-0.03980984,-0.019236619,-0.013444667,0.00866172,-0.014781271,0.010797665,0.010686282,0.0054676286,-0.012566701,-0.01801795,0.01914489,-0.004697771,0.002488115,0.04109403,-0.011852535,0.009198982,-0.009854181,-0.008950007,-0.015266118,-0.011996679,0.010483171,0.0034725503,-0.0084324,-0.009637965,0.0114266565,-0.010470067,0.011701839,0.00009444067,-0.008936903,0.020062167,0.00088779355,-0.010378339,-0.01005074,0.009310366,0.005362797,-0.00935623,-0.024019565,0.02882872,-0.013359491,-0.011236649,-0.011741151,0.003580658,-0.0040949886,-0.026247239,-0.06567706,0.0038918771,0.0041211965,-0.0068599246,-0.012507733,0.011407,0.016681345,-0.00084192964,0.0049041584,-0.0073906356,-0.0068599246,0.005002438,-0.01649789,0.0014766529,-0.008360329,-0.007180972,0.009978668,-0.02255192,0.017546207,-0.011144921,0.004625699,-0.011446312,-0.002570015,-0.0029238218,0.00025962226,0.029352877,0.0013685452,0.010306267,-0.012474974,-0.007220284,0.018869707,-0.031423304,0.0055724606,0.02255192,0.007226836,-0.019433178,0.0059623034,0.0065945694,0.01649789,-0.04036021,-0.0034528943,-0.005693672,-0.007488915,0.0064995657,-0.016891008,-0.0042555123,-0.009382438,-0.005880404,0.01788691,0.010968017,0.02783282,-0.0016175205,-0.025958952,-0.01282878,0.00014639585,-0.004671563,0.013221899,-0.025408585,0.019197306,-0.014270216,0.014034345,-0.008294809,0.022420881,0.00641439,0.033860642,0.009559342,0.008065489,-0.0073316675,-0.010830426,-0.011112161,-0.0018804187,-0.005231757,0.020429078,-0.0027239865,-0.0023996632,0.019669048,-0.0055528046,-0.009428302,-0.02370507,0.02704658,0.0086813755,0.0052612415,-0.011793567,0.0055528046,0.031790216,0.04856329,-0.0012694465,-0.008609304,-0.0000045524757,0.0041867164,-0.03600969,-0.003187539,0.0075937468,0.010404547,-0.0035642781,0.007528227,0.005611772,-0.0018296409,-0.028409394,0.015292325,0.022407778,0.012206342,-0.009847629,-0.008589648,-0.023325056,0.04678115,-0.012887748,-0.021149797,0.0041474043,-0.0043898276,0.020900821,-0.014204697,-0.01795243,0.016183395,0.0013922962,0.0065683615,0.02717762,-0.0142571125,-0.018214509,0.052546892,-0.014990934,0.00047706618,0.018948331,0.009212086,0.034568254,-0.0045077633,-0.008950007,-0.027439699,0.017022049,-0.0015020418,-0.021215318,-0.0047960505,-0.00942175,-0.00494347,-0.01725792,-0.015410261,-0.025474105,0.0076723704,0.0018034329,0.06358043,0.0051334775,0.0071940757,0.0012129357,-0.0214905,0.016851697,0.00282718,0.0019033507,-0.0041670604,-0.010607659,-0.025683768,-0.010555242,-0.0055069407,0.0066273296,-0.014532295,-0.01087629,0.0129925795,0.027020372,-0.040517457,-0.007855826,0.008255497,-0.018214509,0.005968855,0.009932804,0.004648631,0.009087599,-0.010424203,-0.01603925,-0.013995033,-0.0214905,-0.011289065,0.00030384815,-0.009054839,-0.0069975164,0.0052579655,-0.00042096482,-0.0059557515,0.0037608375,-0.0055822884,0.0050384738,0.008373433,0.022892624,-0.03199988,0.009880388,-0.01630133,-0.013143275,-0.03580003,0.006525774,-0.017651038]},{\"id\":\"ece31005-1e6a-4610-98d1-2042c69b2fcf\",\"text\":\"Having an actual app would be useful \",\"vector\":[-0.024261378,0.017407151,0.007119343,-0.007959956,0.0054348847,0.011270677,-0.006951221,0.0017151734,0.00556421,-0.0059683505,0.01694158,0.022606017,0.0016957746,0.010889168,-0.017187297,0.009537722,0.023149181,-0.015131029,0.004387352,-0.00073028234,-0.004574873,-0.0040672724,-0.021558484,-0.020666141,-0.016799323,0.012143621,0.025645155,-0.030029275,-0.004988713,-0.004846456,0.048134778,-0.006159105,-0.017057972,-0.012492798,-0.013734319,-0.0034206472,0.0003956538,-0.01123188,0.009026888,-0.00037948816,0.019308228,0.013016565,-0.0059715835,-0.014536134,-0.027701423,0.018454682,-0.010514125,-0.012706185,-0.0018962284,0.004442315,0.00826387,0.013501534,-0.026796147,-0.016450144,0.008309133,0.014574932,-0.029124,0.020640276,-0.0053993203,0.01394124,-0.02349836,0.021041185,-0.010656383,0.0065082824,-0.009641182,0.0046880324,-0.004102837,0.008807035,0.018002046,-0.0040414073,0.026123658,0.005227965,0.0012706185,-0.0042450945,0.0046815663,0.0004991138,-0.008671244,0.009033354,0.009880433,-0.0026689456,0.00011346251,-0.02044629,-0.003672831,0.0014791552,0.018726265,0.027054798,0.0071710735,0.013669657,-0.010999095,-0.004212763,0.013540331,0.0039056162,-0.014859447,0.028477373,-0.0040737386,0.016954513,0.0045360755,0.018842658,0.013824847,-0.00070886285,0.010152016,0.015609533,-0.044436082,-0.000841421,0.0012399039,-0.010656383,0.02958957,-0.00743619,0.034115944,-0.004280659,-0.008380262,0.017808057,0.001185749,-0.0027416907,-0.007817699,-0.011626321,0.00013053746,-0.02582621,-0.020730803,0.00032573743,0.0057614306,0.022838801,0.047177773,-0.0009384148,0.005447817,0.0073003983,-0.028839484,0.000011372773,0.0060200808,-0.029537838,0.046582878,0.0014322748,0.012803179,0.010384801,-0.027908344,0.010507659,-0.0024393934,0.019605676,0.0012374789,-0.012796712,0.02075667,0.018040843,-0.027106527,-0.0022761207,-0.017407151,0.022968126,0.0094795255,-0.0094795255,0.0072551346,-0.021248104,0.006210835,-0.017536474,-0.026640957,-0.0092855375,-0.0040026098,0.017445948,0.014975839,0.03290029,-0.0023682648,-0.012240615,-0.01901078,0.00327354,0.02168781,0.0038829842,-0.019269431,0.021041185,0.0075008525,-0.009537722,0.0017911518,-0.012098357,0.00052740367,0.0075008525,-0.012285879,0.0063821906,-0.009725243,0.0024458598,0.0038635854,0.023950998,-0.0070934785,-0.0059166206,0.016088035,-0.006485651,0.003672831,0.030546574,-0.012253547,-0.0076107783,0.018881455,0.0012455618,0.0072551346,-0.018648671,0.014523202,-0.013223485,0.0021969092,-0.022347366,-0.6716625,-0.007261601,0.01575179,-0.0069382885,0.0064565525,0.030262059,0.010850371,0.0041190023,-0.04746229,0.016773457,-0.012208284,-0.014730122,0.0040672724,0.0041610333,-0.0039444137,-0.02199819,0.032331258,-0.017174365,-0.014626662,0.01590698,-0.03279683,0.010365401,-0.038487133,-0.011775045,-0.018765064,-0.014924109,0.010417132,0.0003649391,-0.009667046,0.025903806,-0.012046628,0.02974476,0.023524225,0.0017022408,0.060265467,-0.019993652,-0.010423598,0.053695757,0.011238346,0.024028592,-0.020316964,0.0024878904,0.012538062,0.012188884,-0.013191154,-0.0124734,0.034064215,0.013889509,0.0023391666,-0.014031767,0.015894048,-0.012945436,-0.018002046,0.021545552,0.0044778795,-0.000034756104,0.014290417,-0.012260013,0.0015939311,0.03124493,-0.014898244,-0.00577113,-0.015273287,-0.02448123,-0.03145185,0.006414522,0.008438459,-0.009259673,-0.02087306,-0.0037310272,0.010811573,0.006951221,-0.016191496,0.0016844586,-0.027753154,0.028115263,0.03931481,-0.012499265,-0.020808399,0.017394219,0.023420764,-0.015700059,0.0056515043,0.0070870123,0.053644028,-0.004820591,-0.03352105,-0.0053281914,0.030856954,0.009809304,0.016928647,0.011665119,-0.016954513,-0.027106527,0.010190813,0.024869205,-0.005955418,0.00005875196,0.00634016,-0.00867771,-0.022631882,-0.008231538,0.010164948,0.022903465,0.0056806025,0.017639935,-0.008955759,0.02153262,0.05576496,-0.030287923,-0.016178563,-0.020032449,-0.019269431,-0.006731368,0.004649235,-0.034788437,0.02510199,-0.00929847,-0.0022777373,-0.010113218,0.018881455,-0.022179244,0.019747933,-0.006802497,-0.013682589,0.014432674,0.006821896,-0.013889509,0.0020514184,-0.014678392,0.0094019305,-0.01916597,0.021054117,-0.006666706,0.016346686,0.010617586,-0.0032121106,-0.017691664,0.012841976,-0.002256722,-0.009317869,-0.014549067,-0.0011388686,-0.0053346576,0.005473682,-0.019385824,-0.003362451,0.0041416343,0.0076366435,-0.014225754,-0.010565856,-0.012880774,-0.0069318223,0.015428477,0.0019140106,-0.004749462,-0.0049596154,-0.019230634,-0.005923087,-0.019256499,-0.007617245,0.032201935,-0.021765403,-0.020679073,0.003947647,-0.009570053,0.023381967,0.023006923,0.010940898,-0.033443455,-0.023330238,0.0018444983,-0.004665401,0.02510199,0.002607516,0.01205956,-0.025839143,0.0018267161,0.007287466,-0.006398356,0.01839002,0.012137155,-0.017678732,0.011658652,0.027960073,-0.017549409,-0.000005364337,0.025709817,-0.016618267,0.02468815,0.00042798504,0.008399662,0.0036598986,0.012072492,-0.008457857,0.0306759,0.00068097713,0.022528421,0.011412934,0.016023371,0.009628249,0.007649576,0.022476692,-0.03176223,0.010552923,-0.012124223,0.014238686,-0.016139764,0.00457164,0.019657405,0.0012867842,0.014005901,-0.0054348847,-0.0052020997,-0.004843223,0.013863645,-0.007947024,0.012350542,-0.008981624,0.0024086789,0.010772776,-0.028529104,0.03124493,-0.016398415,-0.011251278,0.028477373,0.00035241072,0.040401142,0.004979014,-0.03269337,-0.03321067,0.0004801192,-0.01688985,0.0016391949,-0.0031749296,0.009938629,0.0012132305,-0.013967104,0.031425983,0.0042935912,0.0096347155,0.002023937,0.029020539,-0.011400002,0.03615928,0.023407832,0.029408514,0.0032137271,-0.0043711863,0.0019350259,0.013320479,-0.0021290134,-0.02334317,0.005548044,0.011865572,-0.023420764,0.007701306,-0.0018170167,0.040633928,0.035460927,0.0033010216,0.013747252,-0.00472683,-0.016230293,0.00017367948,0.006621442,0.015195692,-0.03678004,-0.014820649,-0.009253207,0.0017022408,-0.02355009,0.0076107783,-0.012816112,0.01076631,-0.0030326722,0.013236417,0.023834605,-0.0077336375,0.0030633868,-0.005703234,-0.012014296,-0.012602725,-0.007623711,0.0046072043,-0.021713674,-0.025968468,0.018519346,0.0039185486,-0.007365061,0.0065244483,-0.0017895352,-0.003721328,0.0030747028,0.0064048227,0.010468862,0.021881796,-0.019088376,0.0030763193,0.02230857,0.0057097003,0.030908683,-0.036909364,-0.018027911,0.039702788,0.023291439,-0.031038009,-0.018881455,-0.0021548783,-0.016954513,-0.0038700518,-0.0039638123,0.006750767,-0.00821214,0.014005901,0.01226648,-0.012460467,0.0033980154,0.02102825,0.011755646,-0.018312426,-0.026718553,-0.0034594447,0.013902442,0.075163715,-0.008444925,0.015260355,0.012751449,-0.029951679,0.00020378797,-0.013113559,-0.040401142,0.029460244,-0.0026010498,0.005625639,-0.00753965,-0.0030569206,0.0017507377,0.015118097,-0.0033204204,0.014005901,0.0034206472,0.0013579129,-0.01875213,0.013307546,0.0041771987,0.025089057,0.018364156,0.029486109,-0.002323001,0.015040502,0.021196375,0.0026430804,-0.026615093,0.0068606935,0.007817699,0.0070870123,-0.008322067,-0.009311403,0.013475669,-0.021972325,0.024985597,-0.00041990224,0.016385483,0.028891213,0.021131711,0.0108374385,-0.02629178,0.00805695,-0.01797618,-0.014962907,0.016657066,-0.013721387,0.00031765463,0.009537722,0.01761407,-0.02292933,0.0055318787,0.01074691,0.011917302,-0.015700059,-0.009337268,-0.013333412,-0.042159963,-0.024442432,0.0091691455,0.002578418,-0.011199548,-0.009046286,-0.045781065,-0.010074421,-0.009046286,-0.003873285,0.014458539,0.020110043,-0.02365355,-0.0055286456,0.004616904,0.006398356,0.010171414,0.007048215,-0.0057646637,-0.015053434,0.024067389,-0.004422916,-0.027597964,0.000091386326,-0.030391384,-0.022192176,-0.010055021,-0.015040502,0.0032347424,-0.013566197,0.0022130748,0.008768237,0.005958651,0.04554828,-0.029046403,-0.0039832112,-0.00030633868,0.0036146347,0.014148159,-0.010908567,-0.006731368,0.022036986,0.00011194699,-0.009738175,-0.018777996,0.013010099,0.020885993,-0.00090204214,0.004616904,-0.014678392,-0.007216337,0.0026705621,0.0055577434,0.009304937,-0.0054057864,0.035823036,0.020329896,0.03165877,0.009983893,0.018002046,-0.018803861,-0.00499518,-0.029330919,0.018364156,-0.0035984693,-0.009628249,-0.0011049208,0.002685111,-0.041953042,-0.022114582,0.014148159,-0.008891096,0.0017749862,-0.004797959,-0.0031393652,-0.028115263,-0.02071787,-0.008613047,0.039418273,-0.000045642646,0.006333694,-0.0031409818,-0.009531255,0.021778336,-0.00072785746,0.012602725,-0.030236194,-0.001028134,0.0068671596,0.005205333,0.017601138,0.0061979024,0.012861375,-0.010902101,-0.002259955,-0.0027643228,-0.017950315,-0.014303349,0.005706467,0.024028592,0.022036986,0.011872038,-0.004539309,0.00499518,-0.019773798,-0.007778901,-0.0020740503,-0.010087353,-0.027546233,-0.0112254135,0.007313331,0.013385141,-0.007216337,0.002925979,-0.014962907,-0.007339196,0.019722069,-0.014445607,0.0038280212,-0.009110949,-0.017756328,-0.02473988,-0.0039379476,-0.02927919,0.0113030085,-0.020743737,0.014368012,-0.013992969,0.008231538,0.010067955,-0.004878787,0.0114388,0.0021354796,0.012046628,0.007203405,0.015118097,-0.031115605,-0.014135227,-0.021894729,-0.008748839,0.036185145,0.026459903,-0.010061488,0.0009052753,0.0031603805,-0.024507094,0.030029275,-0.005292627,-0.017639935,0.006563246,-0.021558484,-0.0043129902,-0.03367624,-0.03108974,-0.0036566656,0.005221498,0.028606698,0.0071969386,0.002966393,-0.008302667,-0.017575273,-0.016773457,-0.0063692583,0.0056870687,0.012098357,0.025528762,-0.0016230292,-0.0064500864,-0.017782193,-0.012001364,0.0065535465,-0.001200298,0.010242543,0.008089282,-0.001564833,-0.017536474,0.030650035,0.017795125,-0.03517641,-0.016100967,0.004907885,0.013411007,0.004878787,-0.015790587,-0.0016206044,-0.032770965,0.02587794,-0.02323971,0.006269031,0.0044035176,-0.017691664,-0.010190813,0.010404199,0.0067636995,0.012719117,0.01709677,-0.0052020997,0.0028597,-0.03486603,0.0030714697,0.003414181,0.020006584,-0.0016262623,-0.0011170451,0.014432674,-0.01782099,0.005570676,0.011775045,-0.021830067,0.003236359,0.02149382,-0.02417085,-0.007959956,0.01487238,-0.0041771987,0.023317304,-0.013553264,-0.0026915774,-0.0032977886,-0.007106411,-0.016915714,0.007119343,-0.002744924,-0.013540331,-0.011238346,-0.002145179,0.008535452,-0.017497677,-0.0062916633,0.008322067,-0.017213162,-0.021118779,-0.0044746464,-0.0018170167,-0.009647648,0.009647648,-0.014199889,0.029149864,0.010630518,-0.012770847,-0.0051730014,0.03207261,0.0039250148,0.0047300635,0.026718553,0.002463642,-0.024675217,-0.013915374,-0.014109362,-0.027934209,0.0027271418,0.012208284,0.0059942156,-0.01564833,0.007028816,-0.0065567796,0.00410607,0.0063724914,-0.047746804,-0.031038009,0.0014775386,-0.0011986814,0.0106046535,0.03238299,0.014975839,-0.018183101,-0.006808963,0.018364156,-0.0049660816,-0.027856613,-0.028270453,-0.016463077,0.01916597,-0.005308793,-0.022955194,-0.016010439,0.0019608908,-0.015415545,0.00499518,-0.009162679,0.0046427688,0.011529327,0.0011752413,0.0061364733,0.006398356,-0.006880092,-0.0005653929,-0.049040053,-0.012505732,-0.027003068,-0.008257404,-0.007235736,0.014962907,0.010688715,-0.03393489,-0.024610555,-0.016450144,-0.03409008,0.0052635293,-0.018816793,0.007753036,0.01673466,-0.004025242,0.010727512,0.035719577,0.006802497,0.020381626,-0.011658652,-0.016566537,-0.009078618,-0.016915714,0.019023713,-0.013721387,-0.013035964,-0.004345321,0.018868523,-0.012447535,0.011270677,0.01699331,-0.023640618,0.000043520908,-0.003218577,-0.0016990077,-0.009427795,0.020187639,-0.0065341475,-0.017394219,-0.007061147,0.01200783,0.012615657,0.015480207,-0.017911518,0.010882702,-0.016902782,0.0075331833,-0.010352469,-0.0013853945,-0.01751061,-0.008600115,0.016333753,-0.019437553,-0.0013425555,0.0014969374,-0.027158258,-0.0071516745,0.0015785737,0.017536474,-0.011270677,0.0020368693,0.01994192,-0.017639935,-0.015738858,0.0050469097,0.021455023,-0.019463418,-0.012738517,0.002974476,-0.019372892,0.003204028,-0.029951679,-0.012544529,-0.03165877,-0.004694499,0.01595871,0.014212822,-0.005793762,-0.0004857772,-0.0012770848,0.026718553,0.00040393867,-0.0014096429,0.0016585937,-0.024985597,0.020730803,0.023640618,-0.0040123095,0.0087423725,0.23278508,0.00712581,-0.009983893,0.033443455,0.0037762912,0.007681907,0.017523542,-0.002811203,-0.008845832,-0.003643733,-0.0071516745,-0.011626321,-0.024752812,-0.0033559848,-0.002093449,-0.008535452,-0.023912199,-0.029382648,-0.03833194,0.012841976,0.012479866,0.00059853244,-0.0020498019,-0.0020514184,0.02819286,-0.010546457,0.0010176264,0.023110384,0.024985597,0.0073779933,-0.016088035,-0.0019625074,0.028736023,-0.0036792974,-0.0055868416,-0.0108374385,0.017420083,0.0009893365,0.013385141,0.025399437,-0.0065309145,0.006210835,0.0044067507,-0.025916738,0.029563705,-0.0009028504,-0.007138742,-0.005628872,0.016243225,-0.009912765,-0.0054090195,0.0029049637,0.024869205,0.009932163,-0.017264893,-0.015260355,-0.014057632,-0.0017863021,-0.008425526,0.027391043,0.0017329556,0.0031005677,-0.006159105,0.03108974,-0.044332623,-0.009136814,-0.019023713,0.03129666,-0.008962225,-0.008845832,-0.01518276,0.020316964,-0.019153038,0.0060394793,-0.024067389,-0.038176753,0.015842317,0.054419976,0.02448123,0.029227458,0.006087976,0.006802497,0.008904029,-0.03000341,-0.012182418,-0.035460927,0.01626909,-0.020381626,-0.013837779,0.0051245047,-0.01792445,-0.008412594,-0.01554487,-0.01668293,-0.0010111602,0.011529327,-0.011994897,0.016812256,0.013863645,0.010973229,-0.018247763,0.03310721,0.020316964,0.0016973912,-0.007035282,-0.010462396,0.010352469,0.024442432,0.027908344,0.013398074,-0.0065341475,-0.03098628,0.003824788,-0.005130971,0.016243225,0.013850711,-0.0106822485,-0.027675558,-0.011471131,-0.004358254,0.0020982989,0.0006793606,0.017859789,-0.009983893,-0.015195692,-0.017174365,-0.0058972216,-0.0036146347,-0.008490189,-0.030546574,0.008619513,-0.0090139555,0.026822014,-0.013695521,-0.0032622241,0.002814436,0.01205956,-0.008949293,0.0014363162,-0.003514408,-0.0058422587,-0.0013086078,0.023472495,-0.00929847,0.02009711,-0.006566479,0.017717531,0.010119684,-0.019696204,0.008697109,-0.012550995,-0.008334999,-0.033495184,-0.02334317,0.04611731,0.013242884,-0.029667163,-0.022179244,0.029874085,0.00004470807,-0.011509929,-0.026847878,0.037918102,-0.0037342606,-0.030029275,-0.020937724,-0.16470838,0.013113559,-0.010585254,-0.024002727,0.017277826,-0.023614751,0.0054219523,-0.0058972216,-0.001912394,-0.009744641,0.020368693,-0.0011049208,-0.009059219,-0.002400596,0.0012374789,0.020536816,-0.0069124233,0.015156895,0.05191107,-0.009621783,0.015609533,-0.013980037,0.0037568924,0.00033179956,0.0024442433,0.011619855,-0.028761888,0.0066925706,-0.006592344,-0.020523883,-0.007597846,-0.003957346,0.034633245,0.0121953515,-0.00007567536,-0.011121953,0.0039056162,-0.017161433,-0.0026269148,0.039547596,-0.0084319925,0.016333753,0.0080052195,-0.003121583,0.014303349,0.016773457,0.019683272,-0.025683952,-0.029563705,-0.03672831,0.0059942156,-0.021144643,-0.00024228237,-0.018002046,-0.0008478873,0.011290076,-0.002023937,0.019411689,0.0005039635,-0.03678004,-0.013029498,-0.024856273,-0.0053249584,0.004057573,-0.028373914,-0.023627685,-0.00903982,0.007061147,-0.010132616,0.022218041,-0.01963154,0.0025913503,0.009188544,0.0046363026,0.00048860617,-0.0006470293,-0.027365178,0.016256157,0.010585254,0.0062754974,0.021209307,0.010261942,-0.0045554745,0.01797618,-0.004057573,0.014005901,0.008334999,-0.005004879,-0.039728653,-0.0013061829,0.023757009,-0.0067830984,0.002271271,-0.0033058713,0.017213162,0.016967446,0.012764381,0.0023682648,0.017808057,-0.028011803,0.019851394,-0.000029780122,-0.006408056,-0.009240274,0.026873743,-0.008871698,0.002411912,-0.0005080049,0.010636984,-0.013527399,-0.035305735,0.016049238,0.022709476,0.014186957,-0.012770847,0.025903806,-0.0092467405,-0.0058422587,0.017277826,-0.012285879,0.05576496,-0.0029130464,0.0062916633,0.018208966,0.01107669,-0.01854521,-0.10387387,-0.043479078,0.009958028,0.013514467,-0.026227118,0.039237216,0.0039896774,0.023757009,-0.009576519,0.012466934,-0.01252513,-0.037943967,-0.022748275,0.0046136705,0.010080887,0.019036645,-0.0109150335,-0.007520251,0.0075784475,0.02199819,-0.007468521,-0.020239368,-0.009175612,0.0064339205,-0.003643733,-0.001418534,-0.009214409,0.0019964552,0.01792445,0.01138707,0.01293897,-0.0088199675,0.028425643,-0.023718212,-0.0070870123,0.00061348564,-0.006699037,-0.0051697684,0.031012144,-0.04045287,-0.01947635,0.0039929105,-0.002171044,-0.03502122,-0.024752812,-0.02256722,0.0068412945,0.008328533,0.038771648,-0.016928647,-0.013889509,-0.0054316516,-0.019463418,-0.027779019,0.016954513,-0.03424527,0.016088035,-0.008115146,0.012298811,-0.007668975,-0.011496996,-0.010009758,-0.001424192,0.0057290993,0.003798923,0.0025994333,-0.011988431,-0.014199889,0.008580716,-0.0098675005,0.006595577,-0.010249009,-0.021739539,0.015919913,-0.02122224,0.009692912,-0.008638913,-0.0020788999,-0.0006248016,-0.015764723,-0.016501876,-0.013954172,0.011471131,0.012395805,0.007856496,-0.0030827855,0.010546457,0.00067895645,-0.006485651,-0.031632904,-0.0017620537,-0.00847079,0.017057972,0.007856496,-0.016320819,-0.00092709885,0.006640841,0.004697732,0.035719577,-0.00043606787,-0.00405434,-0.008878164,-0.032952018,0.015118097,0.0078500295,0.0048884866,-0.003947647,-0.017717531,-0.011994897,-0.023356102,-0.0023019856,-0.00810868,-0.0055900747,0.0055771424,-0.020536816,-0.00056781777,-0.009317869,0.009893365,0.030081004,-0.017549409,0.029511973,0.013811914,0.0039896774,0.0021225472,-0.005784062,0.019773798,0.0031603805,0.031839825,-0.01590698,0.013165289,-0.021726606,-0.03465911,0.014031767,-0.017691664,0.0022648047,-0.005004879,-0.0011073457,-0.02091186,-0.0037601255,0.005470449,0.0021160808,0.0010548073,0.0038344874,-0.0061979024,0.012247081,-0.020847196,-0.013980037,-0.0022825869,-0.009188544,-0.0027934208,0.005441351,0.0011016877,0.042289287,0.020898927,-0.038150888,-0.019553946,0.0041384012,-0.04518617,0.0017749862,0.020627344,-0.012492798,0.0055900747,0.010190813,0.009136814,0.017652867,-0.018713333,0.019566879,0.020381626,-0.023485428,0.006317528,0.048522756,-0.015001705,-0.006424221,-0.016320819,0.026511634,-0.029149864,0.020006584,0.012395805,-0.017484745,-0.004749462,0.000577113,0.03207261,0.024093255,-0.0013280065,-0.016799323,0.03476257,0.025852075,-0.010701647,-0.004772094,0.0068606935,-0.015945777,-0.0176658,-0.024726948,-0.00032169605,-0.017471813,0.025735682,0.014225754,0.008115146,-0.03031379,0.025632223,-0.007824165,0.021209307,-0.012169486,0.009149746,-0.000548419,-0.0012787014,-0.00050113455,0.029124,-0.01128361,-0.0034206472,-0.008787637,-0.01797618,0.005156836,0.0001036621,0.01288724,0.006003915,-0.027649693,0.005215032,-0.0063498593,-0.022580152,-0.027649693,0.013708454,0.023446629,0.011742714,0.0005952993,-0.0015300768,0.039366543,0.0037116285,0.0077982997,-0.038487133,-0.002610749,-0.013423939,-0.016294954,-0.026796147,-0.00966058,-0.02137743,0.0075590485,0.0056094737,-0.008186275,0.016657066,-0.012764381,0.06259332,0.023588886,-0.015363814,-0.0016537439,0.004235395,0.01564833,0.0038118556,0.023575954,0.0004692074,-0.016980378,0.00769484,0.02958957,0.036986962,-0.024416568,-0.009117415,0.0036857636,-0.017368352,0.0058163935,-0.022981059,0.018674536,0.003850653,0.024028592,0.009421329,-0.010139083,-0.044022243,-0.0072422023,0.014238686,0.027158258,-0.024507094,-0.022334434,0.017264893,0.0013320479,-0.010727512,-0.0047914926,0.023640618,0.006983552,0.0007618053,0.0026980436,-0.0013393224,0.005677369,-0.0054025534,0.018777996,-0.010818039,-0.016851053,-0.002885565,0.014587864,-0.01854521,0.0081216125,-0.021610213]},{\"id\":\"39eabce4-0b5d-4e25-9abd-1ccf3f81843e\",\"text\":\"Are there codes for viewers to get a discount?\",\"vector\":[-0.010717814,-0.015835451,0.014190739,-0.041185763,-0.009535252,0.0038331305,-0.012940214,-0.03626522,-0.016052933,-0.008617748,0.019301578,0.012396507,0.005821057,-0.005572991,-0.010914907,0.018105425,0.019777322,0.0048219967,0.022156037,-0.01950547,-0.0033369984,0.023352193,0.0024721653,-0.002936015,-0.0071837218,-0.007163333,0.0031585947,-0.017425792,0.0022648773,-0.018023869,0.047112163,0.0027066388,-0.0054948335,-0.037515745,-0.023732787,0.01320527,-0.005219582,0.009304177,0.017452978,0.002237692,0.021218145,0.009005139,-0.0008210817,-0.017860757,0.0024347855,0.017085975,0.007163333,-0.007985689,-0.014081997,0.0107314065,-0.0032588406,-0.019124875,-0.005440463,-0.026342578,-0.010833351,0.019872472,0.023977455,0.029278593,-0.0031127194,-0.021856999,0.018676316,0.006225439,-0.017969498,0.008196375,-0.016311193,0.018309316,-0.018526798,0.005977373,-0.016311193,-0.025010496,-0.002054191,0.006330782,-0.010208089,-0.017221902,0.013633439,-0.011023648,-0.0073468336,-0.017901536,0.01976373,0.0060249474,0.016610233,-0.007564316,-0.023325007,0.020606475,0.014000441,0.023624046,0.008563377,0.037515745,-0.055838652,-0.019926842,0.022591004,0.026464911,0.00007045884,0.009732346,-0.00089031935,0.017276272,-0.016922863,0.017371422,0.010833351,0.020946292,0.0072244997,0.030692229,-0.00674196,-0.00837308,0.0032384517,0.020130731,-0.00013964337,0.0013227359,0.015740301,0.008848823,-0.015563597,0.020701623,-0.00526036,-0.017969498,0.02318908,0.014802408,-0.00053903396,-0.014951928,-0.035123438,0.0017067286,0.014462592,0.008909989,0.016922863,0.009134268,0.004380235,0.0014960424,-0.020715216,0.005053072,-0.0049341363,0.017548125,0.044529557,-0.0050666644,0.014285888,0.010160514,-0.024113381,0.04499171,-0.01133628,0.014652889,-0.02252304,0.0014144863,0.022686152,0.022563819,0.00009743177,0.0021051634,-0.0039112885,0.01516941,-0.0009888661,-0.011920764,0.009922643,-0.012246988,-0.012525638,-0.009643993,-0.00060444867,0.029224223,0.014313073,0.019029725,0.009385733,-0.008998342,-0.022903634,-0.0066094315,-0.012117858,-0.004957923,0.004665681,-0.02987667,-0.0058278535,0.030637858,0.026614431,-0.0014654588,-0.010167311,0.003887501,-0.0069594425,0.009161454,-0.013157696,0.004359846,0.003986048,0.02017151,-0.011784838,-0.012471267,-0.0119819315,-0.0074283895,-0.008563377,-0.0032163635,0.015482041,0.026111502,-0.01031683,-0.00061506795,0.015183003,-0.0060351416,-0.0030073763,-0.039146867,0.017996684,0.005810863,0.014081997,-0.0018316112,-0.6646268,-0.027701844,0.013048955,0.0034899157,0.009474085,0.020891922,-0.0055424077,0.0058040665,-0.022631781,0.029224223,0.009073102,0.011655707,-0.0066298204,-0.027538732,0.01220621,-0.018146204,0.009331362,-0.0077206315,-0.01294701,0.017031604,-0.0027491157,-0.0009472386,-0.012722732,0.019383136,0.028517405,0.017085975,0.0012658166,-0.021258922,0.0102624595,0.014041219,0.0026029947,0.025527019,0.009406121,-0.007462371,0.040642057,-0.01302177,0.015006298,0.013300419,-0.004641894,0.04336059,-0.041702285,-0.004475384,0.033274837,0.006758951,-0.001787435,0.010106144,0.009304177,0.010833351,0.006208448,-0.0056783343,-0.019165652,0.033573873,-0.010099348,0.0048423856,0.03645552,0.021639517,0.01965499,-0.011635318,-0.0019641395,-0.008991546,-0.008808045,0.009881865,-0.014081997,-0.009847883,0.006762349,0.006986628,-0.014177146,0.015047076,-0.002154437,0.021775443,0.007938114,0.011499392,-0.023284229,0.0042612995,-0.003986048,0.035857443,0.029632002,-0.030637858,-0.050483145,0.00855658,-0.036754556,-0.0021068626,-0.024371643,-0.0106158685,0.0013499212,0.0067759417,-0.006901674,-0.015658746,0.05801348,-0.0018333102,0.015101447,0.0116693,0.020348214,-0.0011706679,-0.0069560446,0.01126152,-0.0039350754,0.012749917,0.008169189,-0.019587025,-0.039445903,-0.01909769,-0.01179843,-0.0007106413,0.0083458945,-0.016990827,-0.032839872,-0.0001622624,0.019138467,-0.007374019,-0.011574151,-0.01767046,-0.013130511,-0.009739142,-0.008318709,-0.02641054,0.022767708,-0.0003519225,-0.03947309,-0.002117057,-0.019858878,0.014163554,-0.015101447,-0.0030430572,0.013626643,0.012580008,-0.010296441,0.0044312077,-0.009732346,0.007027406,0.0051550167,0.0022614792,-0.0030073763,-0.011587744,-0.01726268,0.0009268496,0.027171731,-0.029686373,-0.0047166534,-0.002650569,-0.021693887,0.009045917,0.0018995744,-0.026138688,-0.0001591828,-0.011682892,-0.0107314065,0.028435849,-0.030556303,0.017915128,-0.027661067,-0.002608092,0.017126754,-0.0066773947,-0.013959663,0.005219582,0.022455078,-0.031235937,-0.03273113,-0.026437726,0.00637156,0.0081148185,-0.03936435,-0.016664604,0.0054744445,0.011030445,0.011186761,0.0027661065,-0.0016141286,-0.0027066388,-0.01024207,-0.0073672226,0.010357608,0.035993367,-0.010942092,0.010561498,0.000503778,0.0017075781,-0.0055186204,0.0019692369,0.01598497,0.010602276,-0.009392529,0.016882086,0.031127194,0.023759972,-0.005960382,0.035558403,-0.0032775304,0.01322566,0.02144922,0.026342578,-0.0107314065,0.012362526,0.002054191,0.0063783564,0.024711458,-0.0019709358,-0.011078019,0.0052229804,0.036238037,0.005960382,0.020919107,-0.022128852,0.0015665542,-0.01955984,0.01228097,-0.0134703275,0.0072448887,0.018404463,0.016419936,-0.026682394,0.022156037,0.0020677836,-0.006820118,0.013409161,-0.021761851,0.033573873,-0.0033794756,-0.0033590866,-0.015250966,-0.012369322,0.01818698,-0.01320527,-0.021870593,-0.0006919514,-0.009691568,0.041756656,-0.0066264225,-0.010860536,-0.023365784,-0.011227539,0.016922863,0.017126754,0.011424632,-0.007210907,-0.021326886,0.007374019,0.028571775,0.015509226,-0.009773124,0.03115438,0.020049175,0.0019845285,0.00977992,0.009807105,0.0144082215,-0.0047132554,-0.021721072,0.011295502,-0.0156179685,0.016474307,-0.0070002205,0.01598497,0.0018061249,-0.016107304,0.0055763894,0.014612111,0.022631781,0.013905292,0.007870151,-0.0023753175,0.014109182,-0.022550225,0.0018893799,0.008148801,-0.0073604262,-0.00004300803,0.019886063,-0.025771687,0.0063443747,0.0078089843,-0.0029479084,0.0013218863,0.01516941,0.003267336,-0.016229637,0.0041389656,-0.0006864294,0.040669244,0.0024993506,-0.041185763,0.017357828,0.02313471,-0.012070283,0.008828433,-0.0074487785,-0.011030445,-0.014883964,0.027742622,-0.006843905,0.0007968698,-0.012348933,-0.006245828,-0.012573211,-0.026872693,0.004247707,-0.0126479715,-0.0030056774,-0.0040030386,-0.0019760332,0.00455694,-0.030909711,-0.011676096,0.01274312,0.010004199,-0.0016438625,-0.025676537,-0.003121215,-0.031915568,-0.021299701,-0.0016642514,-0.013368382,-0.0055050277,0.021109404,-0.019410321,-0.017072383,-0.008842026,-0.0016795433,0.0031687892,-0.025350314,0.012172229,-0.012117858,-0.018608354,0.10330423,0.0061132996,0.0012819578,-0.0031127194,0.007441982,-0.009739142,-0.0032112664,-0.015006298,0.006986628,-0.0024109983,-0.008339098,0.0034423415,-0.017167531,-0.010819758,0.041892584,0.01874428,0.031072823,-0.015930599,-0.013409161,-0.023773564,-0.011601336,0.021816222,0.0023260443,0.016841307,0.016338378,-0.00043326608,0.038548786,0.021938555,-0.00051397254,-0.02987667,0.007944911,-0.0021901175,0.0026114902,0.023460934,-0.009433307,0.019668581,-0.015291744,0.0307466,0.035911813,0.03248646,0.017765608,0.018472428,0.007142944,-0.024194937,0.007870151,0.0022529836,-0.013932478,0.023257043,0.011438224,-0.020864736,0.002898635,-0.027402805,0.002134048,-0.0034576333,-0.00748276,0.001994723,-0.031290308,-0.020606475,0.013606254,-0.02496972,-0.02057929,-0.01670538,0.004295281,0.00085421384,-0.010255663,-0.0233386,-0.0024959524,-0.00837308,-0.004135567,-0.019818101,0.036673002,-0.02711736,-0.022183223,0.004247707,0.00062738627,-0.007958503,0.0007624634,-0.0013397267,0.014897557,-0.006449718,-0.0135858655,-0.011037241,0.016555863,-0.041675102,-0.004308874,0.003146701,-0.014639297,0.0059943637,-0.0023532296,0.030773785,0.0034236517,-0.010609073,0.04227318,-0.031725273,0.025336722,0.014870372,-0.009902254,0.020932699,-0.0036462315,-0.010534313,0.019084096,-0.0036122499,-0.012369322,0.004026826,-0.028789258,-0.008006077,0.021055033,0.013714995,-0.0013482221,-0.0038263341,-0.010174107,-0.011091611,0.00087247894,0.007666261,0.01542767,-0.0093653435,0.0051720077,0.011302298,-0.010527517,-0.007190518,0.010235274,-0.043849926,0.012695546,0.012423692,-0.010017792,-0.0036020554,-0.008169189,-0.012926621,0.009392529,-0.00837308,-0.0015903414,0.031942755,-0.018880207,-0.034634102,-0.035259362,0.003226558,0.01965499,0.023936678,-0.027742622,-0.0025435267,-0.0035850646,-0.015889822,-0.000021796046,-0.012185821,-0.0104187755,-0.029795114,-0.0066468115,-0.027239693,-0.016297601,0.021394849,-0.0048967563,-0.00538949,0.0025316332,-0.031045638,0.011445021,-0.02165311,-0.03145342,-0.025119238,0.046921868,0.019546248,0.018105425,0.0024330865,-0.005770085,0.016895678,0.024262901,0.01905691,0.0066672005,0.014014034,-0.014435407,-0.0129606025,0.020647252,-0.003122914,0.012838269,0.008604155,0.0062186425,0.008570173,-0.017765608,-0.01011294,-0.014544148,-0.027742622,-0.0011995523,-0.0006719872,0.00079729455,-0.003347193,-0.020878328,-0.0033285029,0.00021833212,-0.0053758975,-0.013239252,0.007122555,0.022074481,0.013884904,0.048525803,0.004995303,0.015332522,0.014041219,-0.01281788,-0.017996684,0.007727428,0.0064463196,0.030964082,0.037162337,0.008971157,-0.018975355,-0.0018876808,0.020456955,-0.02298519,-0.016419936,-0.024235716,-0.0103032375,-0.025323128,-0.042871255,-0.006041938,-0.019396728,-0.03226898,0.03150779,-0.0040947893,0.0026811524,0.010085755,-0.023787158,-0.00735363,-0.009807105,0.0008474175,-0.004050613,-0.008128411,0.021109404,-0.013660625,-0.011642114,-0.017901536,0.00092345144,-0.01024207,0.036999226,0.042218808,-0.008237153,-0.01052072,-0.011954746,-0.008223561,-0.028707702,-0.020185102,0.01133628,0.0022614792,0.0047812187,-0.00140769,0.0023158498,0.007795391,0.022658966,0.023066746,-0.0066502094,-0.011438224,-0.00018636814,-0.013286826,0.006249226,0.0058074645,0.024493976,0.010507127,-0.01970936,-0.021843407,0.0069356556,0.017928721,0.002200312,0.003802547,0.01005857,-0.028272737,-0.0029716955,0.030420376,0.016324786,0.009977014,-0.015509226,-0.0029937837,0.02507846,0.002013413,-0.011784838,-0.013932478,-0.01079937,-0.011010055,0.00640894,-0.01726268,-0.01817339,0.002879945,-0.0027321249,0.01996762,0.010269255,-0.0075371307,0.016216045,-0.011411039,-0.00067750923,0.00068175694,-0.020620067,0.022414299,-0.009385733,-0.009637197,-0.002258081,0.0035884627,0.032051496,0.016175266,0.028109623,0.035504032,0.01818698,-0.025771687,-0.008481821,0.0027270277,-0.012423692,-0.017534534,0.0001665101,-0.012613989,-0.035069067,0.019179245,0.0025758094,-0.011438224,0.0033879708,-0.014340258,-0.011030445,0.011846004,-0.013069344,-0.0124101,0.017398607,0.017167531,0.0065652556,-0.011010055,-0.000019353614,-0.013850922,0.018350093,0.015155817,-0.0056987233,-0.00694585,-0.00014973166,0.016256822,-0.010051773,-0.01955984,-0.013341197,-0.0004358147,0.0068676923,-0.013912089,-0.029142667,-0.008706099,0.00058151106,-0.007251685,0.027130952,0.0001549351,-0.007210907,0.012267377,0.025567796,0.00911388,0.028762072,0.0029428112,-0.01720831,-0.019423913,-0.010622665,-0.021408442,-0.021014255,-0.032160237,0.029278593,0.006283208,-0.020660846,0.0072177034,-0.021422034,-0.016351972,-0.00320447,0.01328003,0.0048219967,0.01894817,0.0040574092,-0.0060521327,0.03354669,-0.010289645,0.018880207,-0.008529395,-0.005549204,-0.0012437286,-0.008801248,0.019451099,-0.0021867193,-0.0053249253,0.0057870755,0.018608354,0.021530775,0.019043319,0.031045638,-0.02022588,0.004135567,-0.0062968004,0.025445463,0.0028017873,-0.0067895344,0.008814841,-0.0153461145,-0.003289424,-0.004587523,0.021340478,0.0045535415,0.012892639,0.0120227095,-0.008638136,0.011764448,-0.014448999,-0.020348214,0.0060487343,-0.009412918,0.008040059,-0.008522599,-0.040424574,0.036808927,0.012111061,-0.018418057,0.010758592,0.0057259086,-0.005117637,0.0017135249,0.030066967,-0.008848823,-0.009888661,-0.009310973,-0.009018731,0.0065448666,0.026614431,-0.027701844,-0.02487457,-0.0015155817,0.007108962,-0.009745939,-0.02267256,0.0030770388,-0.011390651,0.010377997,-0.008040059,-0.025119238,0.016080119,-0.0007314551,-0.0016047836,0.017507348,-0.013273234,-0.0062356335,0.0027287267,-0.0027780002,0.02042977,0.020157916,0.23031406,0.015753895,-0.01476163,0.05051033,0.014666482,0.016107304,0.032676756,-0.017955907,-0.016433528,0.008196375,-0.0058754277,0.009990606,-0.01874428,-0.0060453364,0.007475964,-0.016460713,0.0006554212,-0.013463532,-0.021775443,0.018567575,0.0053758975,0.022822078,-0.016270416,-0.0086585255,0.027593102,0.006018151,0.026396949,0.020524919,0.024888163,0.002322646,-0.011281909,-0.010398386,-0.010948889,-0.0007900735,-0.002360026,-0.006555061,0.0040981877,0.0009854679,0.029360149,0.019845286,0.012913029,0.00080578995,-0.029360149,-0.020755993,-0.010479942,-0.017330643,-0.010248867,-0.013599458,0.005977373,0.002774602,-0.016474307,-0.0071769254,0.038630344,0.031670902,-0.004767626,-0.038739085,-0.0056341584,0.0003937624,-0.015264559,-0.019940434,0.006303597,0.038086638,-0.022291964,0.0047370424,-0.0032962204,0.014612111,-0.022414299,-0.005997762,-0.0011672698,-0.009739142,-0.0091274725,-0.0046962644,-0.010874129,0.012729527,-0.016161675,-0.003100826,0.021897778,0.018581169,0.008869211,0.018866614,-0.017194716,-0.020823957,0.0026046939,-0.0056579453,0.009997402,-0.04404022,0.01863554,0.007421593,0.0043224664,-0.006758951,0.0064599123,-0.023923084,-0.037651673,-0.011954746,0.0028493616,-0.009270195,0.004730246,0.035857443,-0.019750137,-0.017344236,-0.008080837,0.056926068,-0.008604155,-0.008128411,-0.01665101,0.021055033,0.00783617,0.010711017,0.024915349,0.0063953474,0.013626643,-0.035966184,0.019519063,-0.017833572,-0.0046622828,0.012036302,-0.000735278,-0.030311635,-0.018214166,-0.00909349,-0.018513205,-0.03428069,-0.019981213,-0.0156179685,0.0048389877,-0.009718753,-0.007625483,-0.018105425,-0.018336501,-0.033084538,0.011112001,0.0023549285,0.006881285,-0.03539529,-0.02303956,-0.011023648,0.031018453,-0.027796993,-0.012919825,0.0060725217,0.003969057,0.0037957507,0.00044685876,-0.01822776,0.0062968004,-0.011343076,0.01639275,-0.014435407,0.01746657,-0.028028067,0.015808266,-0.031942755,-0.0078089843,-0.0013847523,0.024262901,-0.016610233,-0.012070283,-0.013259641,0.021422034,-0.007333241,-0.019315172,-0.0061744666,0.045562603,-0.015509226,-0.011859597,-0.011832411,-0.17561719,0.017928721,-0.011574151,-0.02313471,0.011737263,0.0131509,0.021802628,0.021286108,-0.026369764,0.0066468115,0.01961421,-0.01024207,-0.022427892,-0.0025537212,0.008182783,-0.0061982535,-0.021082219,0.014313073,-0.020062769,0.0005381844,0.043523703,0.029387334,0.019954028,0.000846568,0.0012216405,-0.002200312,-0.023651231,0.0057666865,0.009412918,0.008012874,-0.007435186,0.014394629,-0.008339098,-0.001974334,0.017018013,-0.0030056774,-0.005508426,0.015359707,0.0049749142,0.017480163,-0.00076968444,0.016882086,-0.003761769,0.0031993727,-0.00054710463,0.009453696,0.014381036,0.0025995965,0.0059875674,-0.024086196,0.009745939,-0.01126152,0.02859896,-0.013973256,0.014122775,0.0099498285,-0.0056239637,0.0029020333,-0.019858878,-0.04284407,0.009752735,-0.030610673,-0.032676756,-0.000822356,-0.0015223781,0.005817659,-0.016202452,-0.03224179,-0.020375399,-0.0047574313,0.01935595,-0.019491877,0.03569433,-0.015359707,0.020089954,0.015522819,-0.028327107,0.009800309,-0.0003837803,-0.005097248,-0.011023648,0.029169852,-0.027810585,0.040071167,-0.011275113,0.0018944772,-0.003615648,-0.0076390756,0.005117637,-0.0038773066,0.014313073,-0.010411979,-0.005280749,0.009453696,0.020266658,0.017344236,0.0035035084,-0.010656646,-0.0059162057,-0.015930599,-0.010174107,-0.016501492,-0.023012375,0.029441705,0.02859896,0.02042977,-0.024358049,0.041484803,0.00038930232,-0.0020185101,-0.013395568,0.013477124,0.021816222,0.004125373,-0.0007938964,0.037760414,-0.022169631,-0.013252845,-0.021340478,-0.012308155,0.053256046,-0.025730908,-0.017357828,-0.003843325,-0.00028863168,-0.028897999,-0.099933244,-0.02400464,0.018322907,-0.0056341584,-0.020565696,0.029332964,0.00024742892,0.0040608076,0.00225978,0.0068337107,0.017330643,-0.01674616,-0.011805226,0.01618886,0.016460713,-0.015482041,-0.0063171894,-0.020851143,0.008706099,0.008828433,-0.0058958167,-0.007102166,0.013681014,-0.020321028,0.0010287946,-0.017398607,-0.022822078,0.010180904,0.006232235,0.013388772,0.017167531,-0.02042977,0.014476185,-0.025282351,-0.011411039,-0.007734224,-0.0050462754,-0.009555641,0.0055458057,-0.041348875,0.010221682,-0.021313293,-0.013157696,-0.047628686,0.003918085,0.0007730826,-0.013103326,0.025567796,0.015454856,-0.022631781,-0.0018587965,0.002489156,-0.009861476,-0.030719414,0.005902613,-0.015087854,0.012525638,0.008441043,-0.0062662167,-0.005691927,-0.006327384,0.01133628,-0.0037651672,0.004376837,0.020049175,0.0042035305,-0.0069152666,-0.016895678,0.011431429,-0.0043020775,0.008175986,0.032214608,-0.032975797,0.007747817,-0.008909989,-0.0051923967,-0.013477124,-0.006473505,-0.0027593102,-0.009841087,-0.00095488445,0.004669079,0.0020456957,-0.004499171,0.0011222442,0.016528677,-0.016460713,0.0063069947,0.0014034424,-0.01746657,-1.924742e-7,0.008787655,0.019451099,0.0020592883,-0.019886063,0.02155796,-0.013857719,0.00081471016,0.018064648,0.0076730573,-0.0045297546,-0.019287987,-0.06306995,0.011207149,0.014081997,-0.013810144,0.001272613,0.0075099454,0.03319328,-0.022754116,0.01281788,-0.009691568,-0.02007636,0.017847165,-0.0093245655,-0.005158415,0.005481241,-0.002776301,0.0026930461,-0.018309316,0.021014255,-0.0013405762,0.010010995,-0.013959663,0.0073196483,0.004567134,-0.014856779,0.0109284995,-0.01003818,0.013959663,-0.019247208,-0.004624903,0.02104144,-0.016161675,0.0021017652,0.0067453585,-0.008923583,-0.01752094,-0.014258702,0.017303457,0.027185323,-0.019029725,-0.017480163,-0.0011196955,0.0004748936,-0.00637156,-0.013721792,0.009120676,-0.01100326,-0.004621505,0.018037463,-0.001654057,0.016773345,-0.0024177947,-0.027973697,-0.007734224,-0.013388772,-0.045780085,0.004128771,-0.016610233,0.031888384,-0.02246867,0.01915206,-0.0050020996,0.027511546,0.0012012514,0.042680956,-0.0062968004,0.01572671,-0.0014527157,-0.005379296,-0.024942534,-0.0021527377,-0.0035204992,-0.00013316561,-0.0069492483,0.010989667,-0.005100646,0.0034661286,-0.00092600007,-0.008271134,0.037651673,-0.0032418498,-0.025064867,-0.012933417,-0.0020558902,0.03713515,0.020062769,-0.017357828,-0.011947949,0.0060283453,0.0031433029,-0.031100009,-0.012851861,0.008400265,0.00714974,-0.0046520885,-0.0044549946,0.009813902,-0.0038976956,-0.02165311,0.017752016,0.013307216,0.0010202992,0.0150334835,-0.004689468,-0.03243209,0.049450103,-0.01757531,-0.024983311,0.003493314,-0.0023328406,0.0066468115,0.009752735,0.0060453364,0.0049647195,0.018703502,0.008774063,0.017452978,-0.021299701,-0.024765829,0.021068625,-0.0063443747,0.0061370865,0.0075371307,0.007965299,0.03493314,-0.0078089843,-0.0037107966,-0.025132831,0.010887722,0.0015784478,-0.043387774,-0.021870593,-0.017561719,-0.008475024,-0.01133628,0.0009395927,-0.012566416,0.016990827,-0.007856558,0.06421173,-0.0026641616,0.0072380924,0.011023648,-0.01900254,0.027144546,0.011907171,-0.0028170792,-0.013490717,-0.008536192,-0.01863554,-0.007897336,0.017439384,-0.00431567,-0.00488996,-0.02196574,0.0032282572,0.01568593,-0.028734887,-0.010310033,-0.0027830973,-0.014788816,-0.0012233396,-0.0045433473,-0.010765388,-0.00040820462,-0.006062327,-0.016528677,-0.016107304,-0.00018148326,-0.00318578,0.0014178845,0.0044855783,-0.0011477304,-0.0047778203,0.0035204992,-0.01228097,0.017493755,-0.0057666865,0.017452978,0.007374019,0.019247208,-0.016882086,-0.0060895123,0.00091495604,-0.004145762,-0.018051054,-0.0022257983,-0.005610371]},{\"id\":\"80a5c5cb-2a39-42fb-b000-b1982b9721cc\",\"text\":\"Great product worth it\",\"vector\":[0.0023101473,-0.0010410222,0.0000937284,-0.022079054,-0.015129199,0.0009059401,-0.0021742561,-0.041932084,0.0018960031,-0.026220493,-0.01106541,0.02451215,-0.01972361,-0.0058497842,-0.004406751,0.0071763396,0.031992625,-0.010483021,-0.0008468922,-0.013718521,-0.033597436,-0.019387117,-0.005697716,-0.015504517,-0.0034555143,-0.0055262344,0.0082052285,-0.025586335,0.012514915,0.01687637,0.020836622,0.0046364716,-0.022700269,-0.0047691274,-0.013537333,0.0032452068,-0.010424782,-0.0025091304,0.024874525,0.0028585645,0.023903877,0.0075969547,0.028291214,0.0055068214,-0.030905498,-0.012159009,0.0026191375,0.00245898,0.014948011,-0.0034069817,0.009337653,0.015206851,-0.016281037,-0.0035299307,0.0013152309,0.00060099416,0.022363778,-0.016281037,0.030672543,-0.020875448,0.009344124,0.0041802665,-0.032122046,-0.0040637883,-0.010308304,-0.016306922,-0.019969508,0.0031966742,-0.0040832013,0.0031869677,0.034399837,0.028757125,-0.0040314333,0.0070986873,0.0070404485,0.0054744664,-0.027333505,0.01306495,0.015711589,0.002044836,0.028834779,-0.004461755,0.010250065,-0.0008181771,0.0149091855,0.0076034255,0.0071763396,0.028757125,-0.012903175,-0.00912411,0.009357067,0.010748331,-0.0070663327,-0.0020351296,0.0020286588,0.0063707,0.017135208,0.024434498,0.0050667934,-0.026104016,0.0107095055,0.0053191623,0.001437371,-0.0150127215,-0.031293757,-0.0012003706,-0.0065939496,-0.017355224,0.025055714,-0.0031238755,-0.018520003,0.032044396,-0.004426164,-0.023437964,0.020940157,-0.0068916157,0.009130581,0.00046429428,-0.0022519082,-0.030672543,0.020966042,0.0027550284,0.05143151,-0.01034713,0.0074351793,0.00208528,-0.03960252,-0.019451827,0.010243594,0.015323329,0.04164736,0.012728458,0.022337893,0.0016970199,-0.010379485,0.017018732,-0.012171952,0.0067686667,0.012637864,-0.008030511,0.025262786,0.028239446,-0.008024041,0.008535249,-0.011790163,0.012165481,-0.010948933,0.016397515,0.010651267,-0.013796173,0.0096870875,-0.042087387,0.032432653,0.039162494,0.014249143,0.0057397773,0.002996073,0.018196452,-0.0057106577,0.008852328,0.008574076,0.008088751,0.0062445155,-0.009454132,0.008975278,0.024110947,0.027773535,0.00059452315,0.0072539914,0.008787619,-0.0041673244,0.021690793,-0.02710055,0.0155433435,-0.012812581,0.018222338,-0.0006940148,0.002014099,0.0030979915,-0.0010466843,0.0028245917,0.0074934186,-0.0044649905,0.018972974,-0.02051307,-0.014792707,0.016954022,-0.000029852545,0.027462926,-0.0082052285,0.0011575002,0.022726154,0.0037305318,-0.021755503,-0.66635776,-0.0026854652,0.02425331,-0.0052091554,0.028964197,0.011544265,0.028239446,0.0017892317,0.010586557,0.012922588,0.0018701191,0.02231201,-0.0066521885,0.006189512,0.012734929,-0.015815126,0.013783231,-0.040844955,-0.017510528,0.030698426,-0.0150127215,0.024098005,-0.032251466,-0.010832455,0.0032678552,0.008198758,0.04081907,-0.014507983,-0.018520003,0.008392887,-0.001010285,0.0317079,-0.011000701,0.0095447255,0.06450293,-0.029973675,0.008431714,0.026556985,0.004099379,0.01914122,-0.029973675,-0.011828989,-0.010541259,-0.0261299,-0.024952177,-0.006293048,0.022299068,0.024214484,-0.0005981631,-0.011738394,0.008748793,-0.005574767,0.010683622,0.0031675547,0.017575238,-0.015219793,0.036056414,-0.0004938182,0.022493199,0.0123337265,-0.026738174,0.011007172,-0.017989382,-0.018972974,-0.019244755,-0.014404447,-0.021742562,-0.001029698,0.013356145,-0.0070016226,0.008367004,0.008263468,-0.026789943,-0.0036819992,0.0070598614,0.023813281,0.018804727,0.009480015,0.007907563,0.015711589,-0.0026854652,-0.022648502,0.0114860255,0.00069239706,0.03685882,-0.01028889,-0.015685705,-0.016979905,-0.0008598342,-0.01907651,-0.005238275,-0.0022244065,0.0066586593,-0.014676229,0.0073834118,0.006221867,-0.009240589,0.031086687,0.008684083,-0.021626083,-0.0036399378,0.016591646,0.007901091,0.0035072824,0.0023780926,-0.0022939697,-0.0007016991,0.0012666984,0.018714134,-0.013246138,0.0049567865,-0.00028189295,-0.02722997,-0.025094539,-0.02625932,-0.023062646,0.005749484,-0.009842392,-0.008515837,-0.02865359,0.0071245716,-0.00931177,0.019322407,0.021431953,-0.021173114,0.00022446283,0.014313853,-0.008373475,-0.0017536412,0.0013483947,0.026026364,0.002336031,0.018972974,-0.008211699,-0.005296514,0.013168486,-0.0052997493,-0.010314775,0.009738856,-0.026039306,0.0013734698,0.0046591205,0.014715055,0.0001261845,-0.00052900426,-0.036910586,-0.02425331,0.0023926524,-0.014339737,-0.00834759,0.0065615945,-0.030310167,-0.038230672,0.0056912447,0.012760813,-0.0004331526,-0.0037370028,0.005458289,-0.023916818,-0.025340438,-0.0005710658,0.0108518675,-0.0022049935,0.0046397075,-0.0046364716,0.0035558147,-0.0069045573,0.013213783,-0.0084511265,-0.02412389,0.017627005,-0.0020739557,-0.016824601,0.020487187,0.012670219,-0.0036237603,-0.01248256,-0.02373563,-0.0018021737,0.0024622157,0.017419932,0.023502674,-0.014818591,0.01727757,0.023036761,-0.008515837,0.012463147,0.03046547,-0.016332805,0.029663065,-0.012307843,0.00022426061,-0.003914955,-0.010696564,0.0014689171,-0.004397045,-0.016539877,0.017186977,0.017795252,0.0010159471,0.0062121605,-0.0034619852,0.012553741,0.0002812863,0.015672764,-0.0034749273,0.01849412,-0.012922588,0.00879409,0.02671229,-0.009590022,0.004481168,-0.012346669,0.0011874286,0.0037143542,0.022363778,0.011615446,0.013446739,-0.0014931833,-0.0026353148,-0.013291435,-0.017148152,0.0030899027,-0.006118331,-0.001255374,0.009292357,-0.0090594,0.012178423,0.015362155,-0.0045976457,-0.023709746,0.012935529,0.025884002,0.0018814434,0.010942462,0.004468226,0.018455293,-0.022764979,0.023515616,0.018675307,0.023450905,0.009732384,0.0078040264,-0.012236662,-0.004746479,0.019477712,0.037764758,0.0028860662,-0.0151550835,0.019749494,0.0014842857,-0.0049050185,-0.015815126,0.009078814,0.015685705,-0.025327496,0.0049147247,0.02179433,0.021160172,0.01591866,-0.0051476806,0.010243594,0.014326795,-0.008043454,0.0023554442,0.017122267,0.0042579183,-0.029792486,0.002350591,0.00042951264,0.01914122,0.0067492533,0.006506591,-0.025262786,0.018351758,0.0013621456,0.004397045,0.019413002,-0.015271561,0.011492497,-0.01590572,-0.023230892,0.021651968,0.009072343,-0.011951938,-0.0069692675,-0.008166403,-0.026375799,-0.014184433,0.030361934,0.0071439845,0.009648262,-0.013886767,-0.0014818591,0.014559751,-0.011744866,0.03214793,-0.0066198334,0.0017536412,-0.012081358,-0.0073381145,-0.0059015523,-0.0027178202,-0.017251687,0.018985916,-0.015530401,-0.013602043,-0.019930681,0.01894709,-0.00023214714,0.0124049075,-0.030310167,-0.009965341,-0.010806571,0.019413002,-0.0051800357,-0.011091295,0.0008404212,0.027825302,0.022143764,-0.010586557,-0.014262085,0.0066586593,-0.014456215,0.1059691,0.015815126,0.017627005,0.031785555,-0.011828989,-0.0027695883,-0.029896023,-0.013834999,0.011259541,-0.008819974,0.008832916,0.0063415803,0.0009237353,-0.014080897,-0.0038955424,-0.0060277367,0.027281739,-0.002984749,0.011861344,-0.0067298403,0.028575938,0.019154161,0.024732163,0.007901091,0.010567144,0.015608053,0.024538035,0.03144906,0.014016187,0.0060115596,-0.0009310152,-0.02535338,-0.022493199,0.0035266953,-0.006137744,0.012463147,-0.020073043,-0.012159009,0.0030381347,0.0025754583,0.014236201,0.023554442,0.009881218,-0.004193208,0.008748793,-0.021457838,-0.013834999,0.02237672,0.012527857,-0.006293048,0.0004376014,-0.00024306696,-0.017122267,0.0014672993,0.00028492624,-0.008069337,-0.02541809,0.0060309726,-0.020008333,-0.02451215,-0.0051509165,-0.029378342,0.023450905,-0.011725453,-0.009363538,-0.021431953,0.0069045573,-0.011304838,-0.013822057,-0.019930681,0.008755264,-0.0010660973,-0.0014915656,-0.021173114,0.016255153,0.011647801,-0.018972974,-0.000618385,-0.0002533801,0.021224882,0.02968895,-0.01849412,0.0034716919,-0.015931603,-0.0073769405,0.015129199,-0.0049535506,-0.008936452,0.0009318241,-0.0048208954,0.021211939,-0.012100771,0.029585414,-0.027592346,-0.00085417205,-0.014197375,0.017510528,0.012159009,-0.008483482,-0.00079552864,0.0072928173,0.0074804765,0.014870359,-0.013679695,0.02205317,0.00873585,0.00944766,-0.0074351793,-0.0005969498,0.004050846,0.0038405387,-0.01752347,-0.032173816,-0.012663748,-0.0060439142,0.011977822,-0.00030332815,0.01758818,-0.0070533906,-0.005167094,-0.0026870829,-0.031060802,0.04527112,0.0032355003,-0.0026353148,0.00082303036,0.018325873,-0.0049956124,-0.016125733,0.016384574,-0.00872938,0.014042071,-0.0043323347,-0.0110977655,-0.01818351,-0.029792486,-0.028808894,0.018131744,-0.02606519,-0.030750195,-0.023062646,0.014262085,0.002188816,0.0060697985,0.004866192,-0.029663065,-0.008748793,0.013705579,-0.010211239,0.023942702,-0.004416458,-0.005115326,-0.034503374,-0.013330261,-0.010152999,-0.019956565,-0.013084363,-0.015362155,0.017381107,0.027721766,0.014676229,0.0031028448,0.014430331,0.008800561,0.0030284282,-0.015802182,0.012961414,-0.009221176,-0.022091996,0.022428488,0.021988459,0.018157627,-0.0024897174,0.0063545224,-0.012903175,0.0033713912,-0.012547269,-0.025185134,-0.024550976,0.0034361011,0.017859962,-0.019581247,0.003172408,-0.0015587022,-0.02172962,0.0037175897,0.024926294,0.005532705,0.0036334668,0.036962356,0.038385976,-0.0107095055,0.0058303713,0.008438185,-0.0075904834,-0.0071633975,-0.008807031,-0.031034919,-0.012916117,0.021975517,0.014184433,0.010631854,0.0016298832,0.0048629567,-0.024098005,-0.007901091,0.0046267654,-0.015633937,0.0034005106,-0.03144906,-0.01572453,-0.01980126,-0.02839475,-0.042165037,-0.009473545,0.014779765,0.0033649202,-0.003152995,-0.0025172192,-0.0004396236,-0.00022365396,0.021522548,0.026556985,0.00078420434,0.026919361,0.042863905,-0.0072539914,-0.02658287,-0.013149073,-0.022286126,-0.00071059674,0.010275949,0.029119503,0.006234809,0.004354983,0.014430331,-0.0022324952,-0.022104938,-0.011744866,0.0030591656,0.007939918,0.012825523,-0.015323329,-0.0017018731,-0.00879409,0.0046591205,-0.0012739783,0.020215405,0.004908254,-0.013265551,-0.020797795,0.020370709,-0.023010878,0.0067298403,-0.010981288,-0.016009254,-0.01585395,-0.019413002,-0.0059727333,-0.000020777978,0.0007453784,0.02606519,0.016889311,0.013343203,0.024719222,-0.0091564655,0.00019241116,0.0002681421,0.017122267,0.016462225,-0.0039537814,-0.0347881,0.01105894,-0.012023119,0.014158549,-0.024110947,-0.032096162,-0.01998245,-0.011207772,0.0051379744,-0.022389662,-0.024369787,-0.00052900426,0.0048338375,-0.0026353148,0.001255374,-0.009991225,0.0035364018,0.011162476,-0.011039527,-0.022415545,-0.005102384,-0.006409526,0.009984754,0.004846779,-0.0027792947,0.013026124,0.02606519,-0.030569006,-0.004969728,0.009745327,0.030310167,-0.0039505456,0.01855883,0.005736542,-0.024227425,0.00072920084,0.0036399378,-0.0151550835,-0.010871281,-0.0035816988,-0.011498968,-0.019102393,-0.014792707,0.010237123,-0.0021985224,0.014779765,-0.0150127215,-0.0127219865,0.010152999,-0.00039149553,0.011233657,0.018390583,-0.013627927,-0.029481879,0.0013217018,0.0042190924,-0.0038243614,-0.016061023,-0.0039731944,-0.021561373,0.014365621,-0.004232034,-0.03033605,-0.017924672,-0.01047655,-0.013330261,0.020098928,0.0010070495,0.0060762693,0.012599038,-0.005480937,-0.01752347,-0.015750416,-0.013369087,-0.01991774,-0.02761823,0.021237824,-0.021147229,-0.012100771,0.009674146,0.020073043,0.0016776068,-0.034115113,-0.019878913,0.0031999098,-0.03163025,-0.0026336971,-0.0254828,0.007926975,-0.0026660522,0.01656576,0.009221176,0.0367294,0.015116257,0.010101232,-0.008457597,-0.01609985,0.0037078832,0.0012197836,0.010340659,-0.026220493,-0.03577169,-0.0059080236,0.021457838,0.027281739,0.016721066,0.008936452,-0.024330962,-0.0015231117,-0.019451827,0.030879615,0.03287268,0.013627927,0.0022324952,-0.039680175,-0.012540799,0.0050991485,-0.0020496894,-0.0120943,-0.0074157664,0.022881458,0.01067715,-0.0012925824,-0.0131102465,-0.016073965,0.011401903,-0.0070404485,-0.01131778,-0.016138675,-0.013291435,0.019413002,0.017562294,-0.03020663,0.0037758288,0.021639025,0.02515925,-0.029611299,0.00019473667,-0.014831533,-0.017639948,0.0048920764,0.01002358,-0.019697726,-0.01914122,-0.024098005,0.0060568564,-0.015232735,0.004099379,0.012683161,-0.008826445,-0.012631393,0.0066586593,0.014300911,-0.011246599,-0.011033055,0.012489031,-0.008011099,-0.020098928,0.011434258,-0.0053547528,-0.032562073,0.022557907,0.011602504,0.0044746967,0.0155433435,0.24600156,0.013744405,-0.00036156716,0.04237211,0.029119503,0.022868516,0.011388961,-0.0011510293,-0.005704187,-0.013239667,0.041543823,0.010360071,-0.013090834,-0.005503586,0.016643412,-0.009137053,-0.019089451,-0.00031707902,-0.0012788315,0.020797795,0.005911259,-0.0072151655,-0.00656483,-0.023528557,0.014223259,-0.008599959,-0.025120424,0.002484864,0.028368866,0.015077431,-0.017872903,-0.016591646,0.0061539216,-0.0004105041,-0.011181889,-0.005717129,-0.0070533906,-0.014818591,0.0069110286,0.022454372,0.014365621,0.011563678,-0.0114472,-0.02451215,0.014391505,0.0026385505,-0.010334188,0.0151550835,0.010055935,0.0036237603,0.0131814275,-0.009020574,0.0018976209,0.010955404,-0.012236662,-0.011621917,0.00394731,-0.028601822,0.009007633,-0.011712511,-0.019658899,0.008567604,-0.017238745,-0.0035364018,-0.033519782,0.023593267,-0.033985693,0.027048782,0.008528778,-0.010521847,-0.0041673244,-0.005264159,-0.027669998,0.018079976,-0.022739096,-0.0051509165,0.028886545,0.03551285,0.010890693,0.011479555,0.01727757,0.0025091304,-0.0012602273,-0.016061023,-0.01980126,-0.03401158,0.011712511,-0.003081814,0.011764279,0.004571762,0.0007081701,0.017368166,-0.014326795,-0.030698426,-0.0034296303,0.018105859,-0.00540005,0.0027437042,-0.009350596,0.020305999,0.005154152,0.002454127,-0.01092952,0.023256775,-0.015556285,0.01280611,-0.017872903,0.027437042,-0.0012472853,-0.005024732,0.017018732,-0.028575938,0.0021208704,0.014080897,-0.002622373,0.0040734946,0.0023522086,-0.0183647,0.0045426423,-0.02341208,0.015245677,-0.009790624,0.016552819,-0.013602043,-0.009997696,-0.013278493,-0.0060083237,0.02263556,0.011026585,-0.02205317,-0.005995382,0.0177176,0.020836622,-0.015672764,-0.0071245716,-0.022648502,-0.003979665,0.0078169685,-0.027902953,0.004409987,-0.0222473,0.014753881,0.029119503,-0.008185816,0.01086481,0.0019315936,0.018377641,0.015556285,-0.013524391,-0.009454132,-0.021871982,-0.0034425722,-0.023787398,-0.022855574,0.031966742,-0.014210317,-0.056116518,-0.020538956,-0.011007172,-0.012489031,-0.020875448,-0.0067621954,0.036185835,-0.019969508,-0.0141326655,-0.004325864,-0.16462225,0.042087387,0.011673685,-0.023166182,0.017264629,-0.0075193024,0.020098928,-0.0027631172,-0.010961874,0.0038275968,0.013511449,0.009751798,-0.032510307,-0.01824822,0.018261163,-0.0149091855,-0.008321706,0.028342983,0.013174957,0.013026124,0.027048782,-0.00019999436,0.015284503,-0.002336031,0.023955643,-0.009085285,-0.00034902958,0.0010693328,-0.016190443,-0.027566463,-0.0011008789,-0.019413002,0.02069426,0.0120943,0.034270417,0.0035655212,0.013834999,-0.009712972,0.01190017,0.03326094,0.00130148,-0.0031254932,0.015582169,0.0018102623,-0.017885845,0.04089672,0.018274106,-0.0103924265,0.0064677647,-0.016902253,0.023903877,-0.022014344,-0.020357767,0.012437263,0.034296304,0.032587957,-0.0042708605,0.004222328,-0.004765892,-0.012734929,-0.0023036762,0.00066853524,-0.021742562,-0.009415305,0.0072669336,-0.025379265,-0.005684774,-0.0004828984,-0.012126655,0.008587018,0.0008509366,0.0038437743,0.008703495,0.0050279675,0.006532475,0.0052932785,-0.008172873,0.0058141937,0.008011099,-0.0067298403,-0.006098918,0.017769367,0.01267669,-0.0014527396,0.004358219,-0.0070404485,-0.010948933,0.014831533,0.0024039766,-0.008677612,0.018002324,-0.032976218,-0.014262085,-0.0047885403,0.021742562,0.027954722,-0.00023133827,-0.0020124812,-0.010942462,-0.030310167,0.0028342982,0.010547731,-0.026349913,0.01002358,0.044908743,0.03020663,0.034632795,0.021651968,0.010178884,-0.01002358,-0.028498286,0.019827146,0.021496663,0.025133366,0.0036108182,0.033027988,-0.02574164,-0.0036140538,0.003114169,-0.012903175,0.05169035,0.0024719222,-0.019244755,0.010955404,-0.012217249,-0.009143524,-0.109023415,-0.03168202,0.0071828105,0.017329339,-0.027695881,0.00462353,-0.0037952417,0.028731242,0.007868737,0.020383652,-0.0062736347,-0.013602043,-0.021393128,-0.0030866673,0.006474236,0.00017340259,-0.0120166475,-0.012113713,-0.037376497,0.0062315734,0.0019607132,-0.01584101,-0.013718521,-0.023373254,0.0013362616,-0.012450205,-0.032044396,0.008748793,0.018584713,0.008244054,0.0018377642,-0.001126763,0.030232513,-0.020228347,-0.0012480943,-0.022001402,-0.015271561,0.0078881495,0.016966963,-0.013692637,0.009486487,-0.026207551,0.0055488828,-0.04462402,0.000608274,0.0045297,0.019477712,0.016889311,0.020720143,-0.015232735,-0.03253619,0.006357758,-0.025767524,-0.017174035,0.004131734,-0.04056023,-0.0027841479,-0.0072022234,0.0073575275,-0.0037208253,-0.020655433,-0.018338816,-0.011718982,0.011958409,0.016721066,0.011460142,-0.00069199264,-0.027462926,-0.0002802752,-0.0071051586,0.00305593,-0.011602504,-0.026375799,0.010295361,-0.020202463,0.0016808424,-0.03214793,-0.014404447,-0.013149073,0.0072734044,-0.010515376,-0.020784853,-0.0038017128,-0.028472401,0.015375097,0.0041155564,-0.0152974455,0.0077199037,-0.014973895,-0.031086687,-0.0063286386,0.014158549,0.030879615,0.010483021,-0.027126433,0.008929981,0.0036334668,0.00983592,0.031474948,-0.0077522583,-0.018921206,-0.030569006,-0.05285513,0.017432876,0.017769367,0.0085934885,0.008121106,-0.02955953,0.0034425722,-0.012890233,0.016138675,-0.025042772,-0.023826223,0.002167785,-0.014080897,-0.013912651,-0.025379265,-0.015672764,0.02600048,0.009454132,0.026531102,-0.0041996795,0.02082368,0.020370709,-0.00011081588,-0.011363077,-0.016397515,0.018390583,-0.012495502,0.014689171,0.00046429428,-0.016306922,-0.0033260942,-0.012922588,0.00546476,0.03711766,-0.0044746967,-0.023062646,-0.018041149,0.0047594206,0.0047820695,-0.07951565,-0.009389422,-0.01041184,0.007978744,-0.0228944,-0.010541259,-0.011667213,-0.00090755784,-0.020034218,0.0131102465,0.018481178,0.03124199,0.014262085,-0.025961654,-0.03201851,0.001320893,-0.0045879395,0.0065907137,-0.0036334668,-0.0069951513,-0.018869437,0.021716677,-0.0020383652,0.026091075,-0.01118836,0.024952177,0.010385956,-0.023140298,-0.0103212455,0.01668224,-0.0037467093,-0.010942462,-0.010942462,0.030128978,-0.004846779,0.012081358,-0.0012537563,0.009874747,-0.03551285,-0.031785555,0.024395673,-0.0041058497,0.0005116135,-0.05044792,0.0190118,-0.011207772,0.020733086,-0.026531102,-0.003308299,0.01597043,0.020927215,-0.026531102,0.0057624257,-0.0065421816,0.0077263745,-0.003927897,0.009357067,0.0015417158,0.0056427126,0.0058303713,0.0027598818,0.004604117,-0.0048079533,0.010030051,0.01578924,-0.00414144,0.022713212,-0.0063933483,-0.017756425,-0.0183647,0.009913573,0.037014123,-0.019594189,0.0027582638,0.014042071,-0.024680397,0.0007639825,0.016332805,-0.014093839,-0.031293757,0.009745327,0.015776299,0.017484643,0.0046688267,-0.008936452,0.022946168,-0.0016646648,-0.006344816,-0.01609985,0.0070598614,-0.0039214264,-0.018675307,-0.012236662,-0.018817669,-0.0075904834,0.0047205947,0.000514849,-0.00018725457,0.031060802,-0.025405148,0.0567895,0.004940609,0.0030656364,0.000825457,-0.011156005,0.0066004205,0.010334188,0.010256535,-0.015323329,-0.03227735,0.0042514475,-0.009628849,0.005218862,0.021134287,-0.028938314,-0.00014276645,0.010761274,-0.0024670688,-0.02593577,0.010373014,0.035150476,-0.0015684087,-0.0065615945,0.008088751,0.00012345455,-0.03339036,0.009810037,0.021147229,0.0021516078,-0.037868295,0.004222328,0.011990764,-0.020008333,0.0064710006,-0.0067492533,0.0015368626,-0.010761274,-0.004406751,-0.025405148,0.020771911,0.018998858,0.028550055,-0.01933535,-0.010787157,0.027307622,-0.010748331,-0.026634637,-0.00019433223,-0.026168726]},{\"id\":\"f75635e4-8eb0-47a8-ad4b-8ac29dd4be18\",\"text\":\"Have not used yet. Will use soon\",\"vector\":[-0.010149077,-0.016262263,0.0002330776,0.004101836,0.008526808,0.028884312,-0.022593072,-0.023872422,-0.0037358364,-0.013037508,0.013782697,0.0011153104,0.011890049,-0.027407125,0.0023278908,0.012793508,0.012951778,-0.006818808,0.024769288,-0.01969145,0.008368537,0.01969145,-0.011197617,-0.008968645,-0.0056680515,-0.0045601605,-0.004312863,-0.02197318,-0.0034061067,0.0028554583,0.024307666,-0.0044612414,-0.0044876197,-0.02553426,0.0051965383,-0.010149077,0.013492535,0.0013329319,0.004734917,-0.0016948101,0.009318158,0.033052094,0.0078014024,-0.0037457282,-0.016842587,0.024202153,0.013063886,-0.002954377,-0.00488989,0.014600427,0.007432105,-0.011435023,-0.019045182,0.000052344574,-0.019308966,0.002557053,0.006930916,0.02066745,0.018227452,-0.006825403,-0.011837292,0.011942806,-0.01018205,0.012885832,0.019968424,-0.0020245397,-0.02668172,-0.0042765928,-0.01269459,0.0072672404,0.021946803,0.011263563,0.010571131,0.012562698,0.022395235,-0.011131671,-0.01631502,-0.015048859,0.0075705913,0.0028834853,0.0026081612,-0.017502047,-0.010327131,0.03890809,0.010788753,0.013756319,0.03181231,0.022764532,0.012984752,-0.01616994,0.018306587,0.046900738,0.00010525587,0.00052303355,-0.012252752,0.011322915,0.0028538096,0.022474369,-0.004263404,-0.025164962,-0.0040655658,0.007221078,-0.012008752,-0.02166983,-0.020284964,0.0062450785,-0.014323453,-0.031601284,0.01405967,-0.014442156,-0.008671888,0.033579662,-0.01358486,-0.023832856,0.017014047,-0.001765702,0.029992204,-0.030150475,-0.008546591,-0.016908534,-0.020100316,0.021946803,0.035663553,-0.002651026,-0.007788213,0.00051685114,-0.006693511,0.0017360264,0.018253831,-0.0013304589,0.018847344,0.016117183,0.019295776,0.015470913,-0.01729102,0.03458204,-0.028541394,-0.0070694024,-0.009436861,-0.006531943,-0.0017014047,0.02846226,-0.002261945,-0.006963889,-0.017726263,0.015470913,0.030361502,0.0053976737,0.018055992,-0.047270034,0.0015324183,-0.014336643,0.018346155,-0.006475889,0.019506803,0.0022124855,0.0053943763,0.026312422,-0.0024301072,0.024202153,-0.0060208626,0.0047612954,0.0061791325,-0.0074255103,0.021999558,0.006080214,0.031100096,-0.026853178,-0.009370915,0.0003569323,-0.026299233,0.021247774,-0.0053976737,0.0072474563,-0.002374053,-0.009786374,0.011052536,-0.0047514034,-0.011448212,-0.025929935,-0.017014047,0.015550048,0.022751343,0.0057999436,-0.017831776,-0.03489858,0.01730421,-0.0074255103,0.016671129,-0.004500809,0.012747346,0.020772964,-0.001114486,-0.019994803,-0.66937745,-0.008698267,0.010557942,0.0044876197,0.0002940776,0.03004496,0.01471913,0.0011540536,-0.019045182,0.007188105,-0.015536859,-0.02230291,-0.007867348,-0.013822265,0.015972102,-0.022355666,0.020931235,-0.012384644,-0.005958214,-0.0006747092,-0.006231889,0.026048638,-0.016934913,-0.01235167,0.017264642,-0.0020113506,0.02504626,0.019651884,-0.024756098,0.045555443,-0.018372534,0.024940746,-0.0027779718,-0.01285286,0.048114143,-0.018042803,-0.009436861,0.018675884,0.008190483,0.03318399,-0.034344636,-0.011995562,-0.0012851211,-0.0150092915,-0.0073397807,0.016064426,0.025929935,-0.01471913,0.00051231735,-0.0027318096,0.0033187284,-0.007498051,-0.00022854382,0.013663994,0.017040426,0.0075376187,0.0218281,0.020403666,-0.011936211,0.015695129,-0.00090263475,-0.013400211,-0.018926479,-0.027011449,-0.05280949,0.028303988,-0.027275233,-0.017686695,0.028092962,-0.00710897,0.0075705913,-0.00080165506,-0.01566875,0.013175994,0.026536638,0.018504424,0.007847564,0.0042271335,0.006175835,0.0004978917,0.00832897,-0.0052064303,-0.008474051,0.008276213,0.016275452,-0.0038644308,-0.0065912944,-0.0072276727,0.010920644,-0.0049393494,-0.005259187,0.004546971,0.020707019,-0.03004496,-0.0014137157,0.0150092915,-0.0112174,-0.007399132,0.036639553,-0.026325611,-0.00020968741,0.0087312395,0.016407344,-0.0016164994,-0.0006256619,-0.014560859,0.009245618,-0.00011684793,0.0030054853,-0.0072936187,0.023160206,-0.013439778,-0.002167972,0.016433723,-0.00056589843,-0.035478905,0.006799024,0.002533972,-0.0114811845,-0.011118482,0.0030730797,-0.018069182,0.016934913,0.021049937,-0.0006046416,0.019731019,-0.005648268,-0.0135452915,-0.009252212,-0.024136206,0.012516536,0.0076035643,0.0109931845,-0.008915888,-0.003643512,0.03521512,0.015035669,-0.0068583754,0.011514157,0.0046623764,-0.013380427,0.017765831,-0.00005352954,0.005602106,-0.0077486453,-0.036402147,-0.026220098,0.01187686,-0.027116962,0.006251673,-0.020245397,-0.029702041,-0.028857933,-0.008183888,0.005493295,-0.017383344,-0.004945944,-0.025230909,-0.007814592,-0.008005834,0.0024696747,0.036059227,-0.011276752,-0.017277831,0.020403666,-0.0060439436,-0.0119494,0.037430905,0.010452428,-0.026708096,-0.016024858,-0.026919125,0.019994803,0.04249555,-0.009370915,-0.01034032,-0.03534701,0.010979995,0.009825942,0.02132691,-0.012008752,-0.006475889,0.0002557465,0.011395454,0.022606261,0.011738374,-0.006838592,0.04086009,-0.040675443,0.033817068,0.009819347,-0.003910593,-0.021933613,0.021234587,0.007972862,-0.0035445932,-0.009397293,0.0017920804,0.013433184,0.012793508,0.025481503,-0.0023443773,0.017370155,-0.0052295113,0.015576426,-0.013360643,0.021010369,0.010979995,0.024822043,0.005885673,-0.0006264862,-0.033421393,-0.0050316737,-0.0075178347,0.0022322694,0.02148518,-0.010030374,0.013861832,0.006505565,0.0061989166,-0.0061230785,-0.0050514573,0.009364321,-0.03413361,-0.039224632,0.012536319,0.003442377,0.015233507,0.0023872422,-0.01839891,-0.0036138364,-0.0026213503,0.0049228626,0.012470373,0.024835233,0.0005712565,0.006785835,-0.022474369,0.015180751,0.009364321,0.011369077,0.016433723,0.02665534,0.0108612925,0.030625286,0.018649505,0.018293398,0.0029708636,-0.019493613,0.028356746,0.005236106,0.0017261344,-0.011395454,0.011533941,-0.012687995,-0.030836312,0.012931995,0.004626106,0.02052237,0.031047339,-0.0058065383,0.012397833,0.007577186,-0.0053053494,0.039699443,-0.012015346,-0.0053515113,-0.020786153,-0.019440858,-0.009951239,-0.008394916,-0.015365399,0.037035227,-0.00084575644,0.015774263,0.0027878638,0.030282365,0.004619512,-0.00097435096,0.014257507,-0.028515015,-0.011283346,0.019256208,0.005859295,0.0015958912,0.00642643,-0.03218161,0.009502807,-0.01874183,0.042627443,0.0051437817,0.011012969,0.010722807,0.017726263,0.022817288,-0.006799024,0.0032478366,0.005737295,0.016671129,-0.0022998638,0.008421293,-0.020337721,-0.007062808,-0.02922723,0.03410723,0.0022998638,-0.020482803,-0.019335343,0.020535558,0.011942806,0.01969145,0.0135452915,-0.010571131,0.004052377,0.0035149176,0.00791351,-0.00953578,-0.020878477,0.0061461595,0.023173396,-0.02115545,-0.03212885,-0.014336643,0.005104214,0.068900295,-0.0024548369,0.012140644,0.017792208,0.00630443,-0.013413399,-0.019295776,-0.0317068,0.00969405,0.0145872375,0.006192322,0.012648427,-0.009733617,-0.013795886,0.0010180401,0.008269618,0.003213215,-0.010267779,-0.00044101334,-0.03769469,0.015563237,0.024914369,0.019533182,0.0015744588,0.021946803,0.01858356,0.035953715,0.009126916,0.009357726,0.019810153,0.018161505,-0.0020311342,-0.019150695,0.01744929,-0.022316098,0.0352415,-0.012054914,0.034212742,0.007880538,0.027750043,0.015721507,0.010307347,0.0015670399,-0.009324753,-0.008520213,-0.02083891,-0.008104754,0.008896104,-0.0017689993,-0.00440189,0.0184121,0.01809556,0.005513079,0.013182589,-0.025956314,0.016842587,-0.014679561,-0.00082926993,-0.00041999307,0.009093942,-0.025784854,0.01358486,-0.0073068077,-0.0035083229,-0.015101615,-0.028303988,-0.010524969,-0.024149396,-0.014257507,0.0013147967,-0.004734917,-0.006126376,-0.022659019,0.016710697,0.010056753,0.016064426,-0.012674806,-0.0051899436,0.015906155,0.045001496,0.014626805,-0.0038611335,0.013030914,0.0006701754,-0.017594371,0.0054669166,0.0054965923,-0.023292098,0.011428428,0.017897723,0.026628962,-0.01839891,0.022474369,-0.025310043,0.015339021,0.016196318,0.012094482,0.0059318356,-0.004434863,-0.0035116202,0.0019404587,-0.0053614033,0.00057826325,-0.022342477,0.01421794,0.0029296475,-0.02392518,0.00840151,0.007359565,-0.011270158,-0.01519394,-0.011197617,-0.025072638,-0.001618148,-0.010643671,0.009727023,-0.0044612414,0.03278831,-0.015576426,0.00045420253,-0.019163884,-0.014916967,0.013795886,-0.000049201837,-0.0124374,0.009496212,0.010834915,-0.012246157,-0.03178593,0.025310043,-0.004533782,0.013716751,0.003488539,-0.0014087697,-0.0417042,-0.015536859,-0.010162266,-0.0028735935,-0.012529724,-0.031100096,-0.018346155,-0.0072804294,-0.01696129,-0.012404427,-0.00960832,-0.015787452,-0.017475668,0.005681241,-0.011942806,-0.0004607971,-0.021379666,0.009331347,-0.015734697,0.013888211,0.001981675,-0.035320636,-0.010848104,0.0154972905,0.028092962,0.033869825,0.014468535,-0.026536638,0.017699884,0.0034555662,-0.008843347,-0.023094261,-0.018135129,-0.0136112375,-0.012575887,0.02066745,0.024505503,-0.00751124,0.0208521,0.030598907,0.00043647955,0.0062549706,-0.0029098636,-0.015273075,-0.010498591,-0.015127994,0.0024812152,-0.019361721,0.009146699,-0.01324194,-0.007939889,-0.007676105,0.012021941,0.003226404,0.039013606,0.012661616,0.025956314,0.011553725,0.01599848,-0.012272536,-0.016526047,-0.032603662,0.0080651855,-0.012325292,-0.010656861,0.021458803,0.0213401,0.0026872961,0.0008820267,0.0016832696,-0.0106832385,0.012226373,-0.004197458,-0.018504424,0.016882155,-0.02957015,-0.01357167,-0.017172318,-0.00068831054,-0.011375671,0.0055955113,0.00906097,-0.008579564,0.012114265,0.0008037159,0.005526268,-0.007029835,-0.010307347,0.017409723,0.007577186,0.018623127,0.024861611,-0.012496752,-0.033526905,-0.014903777,-0.014692751,-0.011006374,0.015629184,0.030730799,-0.0009619861,-0.010630482,0.019361721,0.0048272414,-0.017317398,-0.018464858,-0.015906155,0.012180211,0.012199995,-0.022184208,0.005526268,-0.030282365,0.017093182,0.0059120515,-0.014771886,-0.002205891,0.0034786472,-0.003076377,0.01907156,-0.022250153,0.012892427,0.0106832385,0.0238988,-0.0033335662,-0.017976858,-0.008995024,-0.0033187284,-0.016987668,0.026048638,0.009357726,-0.0059516192,0.0050844303,-0.0174361,-0.0061329706,-0.0062351865,0.0028587556,0.022065505,-0.0040952414,-0.03864431,-0.0032527824,-0.001002378,-0.0026625665,-0.020733397,-0.01888691,-0.028145717,0.012160428,0.010623887,-0.00080454024,-0.001760756,-0.018227452,-0.010551347,0.0017459182,0.0031868366,-0.012978157,-0.013017724,0.0016981075,-0.025718909,-0.019243019,-0.005513079,-0.01711956,0.01888691,0.00618243,-0.0082432395,0.012516536,-0.0014582291,-0.01486421,0.007906916,0.0013469454,0.03814312,-0.01582702,0.01067005,0.013624427,-0.022698585,-0.004131512,-0.0048832954,-0.037272632,-0.0015019183,0.013769508,-0.016407344,0.0031340797,-0.008474051,0.016987668,-0.0046327007,-0.0015612696,0.0014244318,-0.0036072417,-0.00022277355,-0.008289402,-0.001653594,0.017317398,-0.019902479,0.0062121055,0.0085531855,0.0005205606,-0.017225074,-0.017277831,-0.014996102,-0.008263024,0.019058371,-0.0091071315,-0.03555804,-0.011276752,-0.020931235,-0.009080753,0.023727342,-0.012068103,0.0117054,0.010610699,0.012134049,-0.0036336202,-0.004144701,-0.008751024,-0.0114614,-0.012074698,-0.013354048,-0.039699443,-0.017515237,-0.0011433373,0.0109272385,0.0046294034,-0.025059449,-0.020931235,-0.024914369,0.0028092961,0.0037589173,-0.036085606,0.025125396,0.010782158,-0.011606482,0.0010971752,0.0229228,-0.002735107,-0.012134049,-0.0048206467,0.004296377,0.012668211,0.001699756,-0.00088120234,0.00034539175,-0.04120301,0.004230431,0.029385502,0.008104754,0.010175455,0.021023558,-0.006709997,0.0043326467,-0.023344856,0.027908312,0.008216862,0.009674266,0.0054899976,-0.025652962,-0.021419235,0.011652644,-0.021366477,-0.033052094,0.016275452,0.032260742,0.015246697,-0.0073265918,0.006686916,-0.0022223776,0.0016123777,-0.036296632,0.020561937,-0.0060769166,-0.00578016,0.005278971,-0.015589615,-0.023054693,0.0070166457,0.013202373,-0.0140332915,-0.014574048,0.002159729,-0.0082432395,0.007873943,0.016183129,0.009159888,-0.0018514317,-0.02714334,-0.012378049,0.0024301072,-0.017858155,0.007221078,-0.0027977556,-0.00091005367,0.019005613,0.023094261,0.021867666,0.032260742,-0.02714334,0.053917382,-0.013927778,-0.00025986813,0.002613107,0.008117943,-0.027222475,0.020746587,-0.000976824,0.00896205,0.00012643069,0.23719428,-0.0006095876,0.0035248094,0.017594371,0.0012018643,0.006571511,0.03136388,0.0067792404,0.0026988368,-0.017976858,0.01631502,-0.00034765864,-0.020720208,0.0032379446,-0.00016981074,0.022883235,-0.025441935,-0.033052094,-0.016103994,-0.009318158,0.004144701,-0.0023724043,-0.0046491874,-0.0064692944,0.022368856,-0.011988968,0.0050877277,-0.0063341055,0.012265941,0.006696808,-0.027565394,-0.010063347,0.00710897,0.004075458,0.0051009166,-0.010557942,0.031548526,-0.0025471612,0.009812753,0.018253831,-0.017488858,-0.011303131,0.022342477,-0.0066242674,-0.0057999436,0.0049162684,0.0097731855,-0.0033170797,-0.0023493234,0.0049096737,-0.00050613494,-0.019308966,-0.001144986,0.018702263,-0.0038908091,-0.034318257,-0.0022141342,-0.00079835777,-0.022975558,-0.0072936187,-0.011204212,0.009469834,-0.014138805,0.031469394,-0.036270257,0.01325513,-0.014916967,-0.020904856,0.010241401,0.028515015,-0.024545072,-0.0027202691,-0.010313942,0.0024251612,-0.023635017,0.0037292417,0.020944424,0.00888951,0.011744969,-0.005348214,0.0095951315,0.013624427,-0.023001937,-0.020126695,0.010630482,-0.044368416,-0.0061890245,-0.0076167537,0.0035973499,0.013875022,0.0006541011,0.010782158,-0.015866589,-0.02230291,0.013360643,0.0057570785,0.0055658356,0.019295776,0.015444534,0.018952858,-0.029121717,0.03120561,-0.016103994,-0.0038050795,-0.009232429,0.015286264,-0.013901399,0.025824422,-0.008203672,-0.009034591,0.009192861,-0.03624388,0.0011194319,-0.0059120515,0.0024878099,0.0015175805,0.002042675,-0.018755019,0.010795347,-0.01519394,0.027618151,0.018689074,-0.013373832,0.009192861,0.0076365373,0.009113726,-0.014916967,0.004659079,0.011606482,-0.018926479,0.006396754,0.019150695,0.025626585,-0.030730799,-0.028172096,-0.010795347,0.011039346,-0.013518914,-0.01535221,0.015958913,0.0057537816,0.007148538,0.04721728,-0.030282365,0.00541416,-0.003198377,0.007814592,0.0024614313,-0.016117183,-0.024452746,0.0027466475,0.0007744524,0.000012551621,-0.032498147,0.02988669,-0.012833076,-0.038116742,-0.011652644,-0.004368917,-0.009311563,-0.007148538,-0.03624388,0.023358045,0.0054339436,-0.012674806,0.0028274313,-0.16903257,0.02599588,0.018319776,-0.009265401,0.008467456,0.008678483,0.02648388,0.02165664,-0.032867447,0.00029448976,0.035426147,0.010175455,0.003943566,-0.026259664,0.008216862,-0.0056515653,-0.025323233,-0.0019305667,0.029965825,0.00906097,0.01074259,-0.018174695,-0.0025026477,-0.02035091,0.024439558,0.008876321,-0.0072804294,0.0121934,-0.017079992,-0.03619112,-0.00881697,-0.006977078,0.02649707,0.010076537,0.023516314,0.010973401,0.038406905,0.009951239,0.009377509,0.0042996737,0.010373293,0.022342477,-0.014310264,-0.0014508102,-0.0037358364,0.013914589,0.024136206,-0.013782697,-0.014389399,-0.01067005,0.0035676742,-0.0119032385,0.0020245397,0.0076365373,0.018478047,0.0058230245,-0.003765512,-0.00323135,-0.025019882,0.015906155,-0.01713275,0.0015563237,-0.022804098,0.01888691,0.0016667831,-0.012153833,-0.012655022,-0.007043024,-0.021115884,0.016209507,-0.014811453,0.006205511,0.0023641612,0.003854539,0.023239342,0.010953617,-0.013202373,0.005526268,0.015800642,0.017673505,-0.0193881,0.034054473,-0.0049492414,-0.0045931335,-0.004322755,0.0015678642,-0.023503125,-0.003071431,0.00662097,-0.026721286,0.02538918,-0.001088932,0.0027598366,-0.0076826997,0.0010130942,0.020627884,0.02118183,-0.013888211,0.017040426,-0.020970803,0.008744429,0.025349611,-0.0077486453,0.01309686,0.027380746,0.0135452915,-0.00280435,0.027776422,0.033210363,-0.011665833,-0.015220318,-0.0042930795,0.037457284,0.0040589715,-0.002941188,0.032049716,-0.004603025,0.0025488099,0.0024977017,-0.013663994,0.022091882,-0.0002170033,-0.019796966,0.0018942965,-0.01744929,0.0051998356,-0.101662226,-0.021894045,-0.009469834,0.010432645,-0.024492314,0.00031427352,0.0016033101,0.012404427,-0.026444314,0.026958691,0.000037455222,-0.021102695,-0.040649064,-0.01631502,0.0087971855,-0.019744208,0.008882916,-0.031944204,-0.024043882,-0.0009982564,-0.0050085927,-0.003358296,-0.0042436197,-0.029517394,0.00032581406,-0.005648268,-0.017660318,0.010808536,0.006185727,0.017858155,-0.0013964048,-0.022421613,0.01584021,-0.0039270795,-0.003643512,-0.0072144833,-0.030730799,0.013637616,0.014916967,-0.045133386,0.009126916,0.0047283224,0.007953078,-0.02697188,-0.009469834,0.004302971,0.005391079,0.024004314,0.016064426,-0.0083091855,-0.023305288,-0.00667043,-0.011573508,-0.018504424,0.0014804859,-0.025560638,0.019203452,0.0037622147,-0.009271996,-0.031443015,-0.040912848,-0.015457723,-0.010953617,0.022184208,0.0069177267,0.01566875,0.0043293494,-0.016354589,-0.0030648366,-0.00023802355,-0.004101836,0.025310043,-0.019031992,0.018267019,-0.01582702,0.0033236742,0.007385943,-0.022711774,0.00043606738,0.013518914,-0.023081072,-0.010261185,-0.009126916,-0.018570371,0.0071023754,0.00440189,0.007860754,0.011276752,-0.015048859,-0.012094482,0.0083751315,0.0035511877,0.004579944,-0.025441935,-0.017739452,0.020641072,-0.004088647,0.006719889,-0.0059549166,-0.01260886,-0.020073937,-0.043999117,-0.05882376,0.003432485,0.015470913,-0.03215523,-0.0033665393,-0.017752642,0.013518914,-0.011019563,0.009799563,-0.006904538,-0.011890049,-0.0027796205,-0.021603882,-0.011817508,-0.023305288,-0.0123912385,0.045608196,0.020166261,0.017858155,-0.004190863,-0.001590121,-0.031073717,0.0033797284,0.0017574588,0.011375671,0.021445613,-0.024663774,0.013980535,-0.0008820267,-0.0089752395,0.0086191315,-0.0029247014,0.014257507,0.028040204,-0.0010312293,-0.021564316,-0.012899022,0.009832537,0.0016915129,-0.039699443,-0.0070232404,-0.029781178,0.013663994,0.0020542154,-0.013077076,0.007920105,0.01632821,0.014363022,0.018649505,-0.0087312395,0.024320856,0.03178593,-0.024624206,-0.023384422,0.019097937,-0.004220539,0.0013279859,-0.0158534,-0.0025042964,-0.016196318,0.030282365,-0.007920105,0.012015346,-0.0020542154,0.018293398,0.0006788308,-0.0053614033,-0.00062689837,-0.0026444313,-0.037246253,-0.031443015,0.01970464,0.022764532,0.0025125395,0.006360484,-0.021999558,-0.016275452,0.007240862,-0.025613395,0.010841509,0.011388861,-0.021748964,-0.039620306,0.025613395,-0.0044546467,0.029649286,-0.013063886,0.016354589,0.020707019,0.007531024,-0.036138363,-0.013228752,0.003208269,0.021287343,-0.008546591,0.015734697,0.0036336202,0.019322155,0.007240862,0.018346155,0.00906097,0.01285286,0.0036929715,0.011744969,-0.017528426,0.0053647007,-0.059193056,-0.0062351865,-0.028989825,0.012575887,0.0060670245,-0.02988669,0.008507024,0.019533182,-0.013070481,0.000035935373,0.014982913,-0.021406045,-0.007498051,0.025837611,0.0069506997,0.019440858,0.016011668,-0.0168294,0.023806477,-0.009166483,0.003765512,-0.008790591,0.018016426,-0.004711836,-0.0051207007,-0.012819886,-0.03215523,-0.033975337,-0.003409404,-0.012127454,-0.03315761,0.026549827,-0.008605942,0.059509598,-0.004312863,-0.024294477,-0.026734475,0.0070166457,0.026470691,0.015932534,-0.008843347,-0.016196318,0.0007122159,0.020772964,-0.0054669166,0.0014392696,-0.027380746,-0.03218161,-0.00050283765,-0.014534481,0.011197617,-0.019440858,-0.018926479,0.0077024833,-0.010465617,0.03940928,0.020416856,-0.027670907,0.00069902674,0.017343776,-0.0020327829,0.014837832,-0.037747443,0.024980314,0.0029774583,-0.010102915,-0.009581942,0.010557942,-0.0051075113,-0.023714153,-0.005404268,0.008724645,0.0019981614,-0.011738374,0.010768969,-0.015892966,-0.0014153643,0.013248535,-0.04270658,-0.03020323,0.006047241,-0.0053086467]},{\"id\":\"3de5fb80-d774-41f0-9127-4ad5b4e3b2d0\",\"text\":\"I never got my order I want my refund please or just give me my stuff\\n\",\"vector\":[-0.026141552,-0.009850536,-0.023248572,-0.012573341,-0.02671753,0.007180091,-0.005416158,-0.01841821,-0.01191882,-0.008377864,0.027882578,-0.009660725,0.0055666976,0.0030631565,0.017606605,-0.014621991,0.018994188,0.0045620087,-0.0053147073,-0.001438309,-0.005802325,0.005367069,-0.0071211844,-0.00261481,0.0013000416,-0.024623064,0.015289601,-0.0046372786,0.0234842,-0.0057041473,0.009104381,-0.0028095297,-0.029139258,-0.020997021,-0.020722123,-0.008554584,-0.007585894,-0.0016256656,-0.0024282713,-0.021101745,0.011087579,0.011611195,0.008358228,-0.02382455,-0.024727788,0.018248035,-0.030395936,-0.01717462,-0.025290675,0.012376985,0.03186206,0.013483125,-0.026036829,-0.028877448,0.006469936,0.0115588335,0.0017426611,0.0050005373,-0.004872906,-0.006469936,-0.016022664,0.00082265056,-0.027934939,-0.0046307333,0.010472329,0.0076709813,0.0024560886,-0.028065844,-0.019504715,0.008705124,0.024884874,0.01623211,0.013836565,0.009137108,0.014595809,0.012193719,0.004607825,0.01942617,0.019151272,-0.026403362,0.02445289,-0.009398916,0.023575833,0.010714502,-0.00052566186,0.027934939,0.026036829,0.012462072,-0.0059888638,-0.02091848,0.021167196,0.017331706,-0.010943584,0.026036829,-0.013267132,0.017541151,-0.02093157,0.04416705,-0.002506814,-0.009850536,0.012880965,0.017240074,-0.009320374,-0.014176916,-0.039742492,0.017043717,-0.014242369,-0.035684463,0.015603771,-0.015773946,-0.020054512,0.041810777,0.020538857,-0.026180824,0.00066679285,-0.0030206125,0.0061197677,-0.0011241392,-0.04254384,-0.04644478,-0.00007491193,0.01908582,0.018562205,-0.0018228398,0.022057345,0.000246877,-0.03660079,-0.0010308699,0.021062473,0.024492161,0.023261663,0.019295268,0.008351683,-0.005596151,-0.01653319,0.037360035,-0.026861526,0.013090412,-0.015315782,-0.024243442,0.01714844,0.025526304,0.0013818566,-0.013051141,-0.019282177,0.010891223,0.001768842,-0.019897426,-0.0012517706,-0.029191619,0.022829678,-0.013378401,0.017750598,-0.028458556,0.01813022,0.0006414302,-0.020735214,0.020394862,-0.015996484,-0.042386755,0.014412544,0.0016510282,0.0009809628,-0.01837894,-0.0002540358,0.03306638,0.037648026,-0.006208128,-0.0038551264,-0.0012877693,-0.009287647,0.025028868,-0.024256533,-0.008102966,-0.032935478,0.012651883,-0.0035965908,0.00014286957,-0.0008819665,0.02222752,-0.001318859,-0.005753236,0.013627119,0.03021267,-0.008201143,-0.016009575,0.015341963,-0.009961803,0.03047448,-0.00778225,0.00013499487,0.00531798,0.012959508,-0.011297026,-0.6300154,-0.0060608606,0.0046438235,0.004054755,-0.0046863677,0.022345334,-0.015276511,0.023890002,-0.009254921,0.02508123,-0.007978606,0.01395438,0.006659747,-0.026102282,-0.0035082304,-0.01683427,0.01208245,-0.018627657,0.0022531871,0.020761393,-0.029950863,0.014883799,-0.0016264837,-0.0021419188,0.006404484,0.0036718606,0.01223299,0.0024119085,-0.0016731183,0.01903346,0.0093923705,0.003266058,0.004781273,0.027437504,0.051707126,-0.03330201,-0.008705124,0.014883799,0.016925903,0.03717677,-0.0260761,0.009425097,0.013614029,-0.030081768,-0.0060608606,-0.0035998633,0.01129048,-0.008089875,-0.020277048,0.014347091,0.02606301,0.0036587701,-0.025133591,-0.0025657208,0.022947492,0.0074418993,0.029689055,0.014111464,0.026599718,0.014137645,-0.008515313,-0.016363015,-0.029977044,-0.015917942,-0.017580424,-0.008685488,-0.026036829,0.00024585432,0.01623211,-0.0011421385,0.030579202,0.0292178,-0.03207151,0.022358423,0.02159918,0.011434475,0.011794461,0.015499048,0.0061132223,0.006051043,-0.000051671333,0.00003206128,-0.008233869,-0.038904704,0.024361257,0.016428467,-0.0016150296,0.003684951,0.001731207,0.02950579,-0.010550872,0.029060714,0.015119426,-0.0030255215,-0.0225286,0.013614029,-0.011153031,-0.0022564598,0.0036653155,-0.018928736,0.0072913594,-0.005759781,-0.02322239,0.01191882,0.053723052,-0.00010554145,-0.010262883,-0.002317003,0.009981439,-0.017370977,0.009824354,-0.007978606,-0.0015053974,-0.0068135597,-0.0032464222,-0.026560446,0.010164705,0.005547062,-0.018365849,0.00040764362,-0.0026393544,-0.0015291238,0.02733278,-0.004948176,0.015132517,0.02066976,0.0051870756,0.0013630391,-0.0069117374,0.0005542971,0.031600256,-0.014543448,0.012664974,-0.025932107,-0.010675231,-0.00087133056,0.024544522,-0.013083867,0.028458556,-0.039192695,-0.007697162,-0.010452694,-0.017370977,-0.002811166,0.023654375,-0.013731842,0.010871587,0.0019357447,-0.01942617,-0.00074001733,-0.011094124,-0.021219557,-0.012187174,-0.0012844967,-0.00042462023,-0.009582181,0.001665755,-0.0063619404,-0.021939531,-0.0013974014,0.009182924,0.024609976,-0.024007816,-0.028510917,-0.010053436,-0.008993113,0.004483466,0.023615103,-0.036993504,-0.024492161,-0.0012934963,-0.0038649442,-0.0074157184,-0.025919016,-0.015944121,0.006015044,0.013247497,-0.014765985,0.00076660723,0.005596151,0.011552289,0.016441558,-0.032595128,0.0086527625,0.036365166,0.0037242223,-0.010452694,0.05560807,-0.034218337,0.022633323,-0.019269086,-0.00086151273,-0.014072193,0.008934206,-0.012900601,-0.0019324721,0.017658966,0.015001613,0.018234944,0.03497758,0.017331706,0.0003798265,0.008449861,0.0356321,-0.002855346,-0.008567675,0.014661262,-0.022829678,0.045659356,0.04542373,-0.0032038784,-0.013254043,0.005111806,-0.018064769,0.0039794855,0.03777893,-0.027201876,0.037648026,-0.008639672,0.02255478,-0.03531793,-0.0045391005,-0.017109169,-0.027725494,0.016454648,0.0044965567,-0.00546852,0.013614029,0.009313828,0.0025591755,-0.010413423,0.025866654,0.002892981,-0.0022155521,0.02953197,0.0051248963,0.024675427,0.00022437784,0.00871167,0.005036536,0.017030627,0.028092025,0.026940068,-0.01809095,-0.0107603185,-0.0111595765,0.009320374,0.011421384,-0.011211938,0.014216187,0.015538319,-0.0035573195,-0.019164363,-0.0022810043,0.004270747,-0.04031847,-0.0050070826,0.022279881,0.029977044,0.023942364,0.012043179,0.0047289114,0.031233722,-0.007278269,0.01144102,0.03330201,0.005638695,-0.010151614,0.011211938,0.0017001173,0.011925366,-0.012828604,0.013312949,0.010086163,0.04733493,-0.011421384,0.012835149,0.011774826,-0.003760221,-0.00008769553,-0.0058743223,-0.040554095,0.0059332293,0.020800665,0.009569091,-0.0028798906,-0.013771114,0.022829678,-0.0038714893,0.016611733,-0.013221316,-0.0057074195,0.02352347,0.0011445929,-0.016349925,-0.008868754,0.019399991,0.0007522896,0.008168417,0.01967489,0.023078397,-0.004404924,-0.021245738,-0.012075905,0.012239535,0.022044254,-0.016624823,-0.033014018,0.0150539735,-0.016507009,0.00090651104,-0.0037831292,-0.0042478386,-0.0062997607,0.002241733,0.017685147,-0.051392958,-0.01191882,0.011205393,0.020119963,0.008102966,0.0043885605,-0.02733278,-0.0013098593,0.09618835,0.03050066,-0.01972725,0.010563962,-0.0117421,0.0005232074,0.0052328925,-0.018653838,0.03178352,-0.017266253,0.010524691,-0.00810951,0.0011895912,-0.0025804476,0.036024813,-0.0027686222,-0.0019717433,-0.00373404,-0.0051216236,-0.027856397,-0.016101208,0.011879549,-0.026403362,0.017750598,-0.0007514715,0.02696625,0.0060314075,0.008796757,-0.0004749365,-0.013312949,-0.016912812,-0.01937381,-0.011552289,0.019805793,0.011022127,0.031050457,0.018156402,0.015224149,0.00016240292,0.04476921,0.006505935,0.009837445,0.0022875494,-0.013627119,0.024335075,0.0014448542,-0.0032415134,0.0006467482,-0.0031956967,-0.008940752,0.005442339,-0.025028868,-0.018680017,-0.007343721,-0.0023202756,0.01997597,-0.010878133,-0.025696479,0.00041255253,-0.0038191278,0.004457285,-0.031129,-0.004319836,-0.0017050261,-0.008724759,-0.039140332,-0.023052216,0.009608363,-0.0046045524,-0.02285586,0.00022130978,0.019203635,-0.005226347,0.0057303277,0.019962879,-0.000041597854,-0.0003679633,-0.0051248963,0.019255996,0.020800665,0.014896889,-0.047465835,-0.0005334343,-0.0044212868,0.022829678,0.016101208,0.00952982,0.005026718,-0.004202022,0.017200802,0.0043002004,-0.0027555318,0.023261663,-0.025919016,-0.0082535045,0.016088117,0.007114639,0.022842769,-0.011657012,0.007684072,0.021114836,0.009379281,-0.00095969083,-0.0020797392,0.0065026623,0.012403166,0.013470034,0.007029551,-0.003380599,0.008318957,0.007598984,-0.0017344796,-0.011172667,0.002974796,0.0077298884,-0.00699028,0.008371319,0.015603771,0.015734676,0.015800128,-0.0067415624,-0.045947347,0.035134666,-0.0050234455,-0.022620233,0.0026769892,0.012638793,-0.03872144,0.008744395,-0.008430226,-0.007972061,0.016349925,-0.034480147,0.008299321,-0.007965515,-0.023235481,-0.008908025,0.022934401,0.011827188,-0.025591755,-0.019897426,-0.03149553,-0.015603771,-0.017017536,-0.0030811557,-0.031076638,-0.017737508,-0.021690812,-0.016952084,0.03437542,-0.009340009,0.00030210215,-0.026285548,0.006479754,0.0034918673,-0.022594051,-0.017698238,-0.038669076,0.0146089,0.021860989,0.03657461,-0.0020257414,0.010112343,-0.004519465,-0.013371856,-0.027149515,-0.0127173355,-0.010642505,-0.01841821,-0.0037569483,0.01684736,0.0012403165,0.027149515,0.007219362,-0.00094741856,0.008875299,-0.000006474896,-0.0045129196,-0.011342842,-0.016402286,0.042020224,-0.008993113,0.005458702,0.012200264,0.008449861,-0.0046372786,0.007939335,0.004683095,-0.00242009,-0.00023849095,0.020054512,-0.030710107,0.022973673,0.0003423961,0.0044801934,-0.017213892,-0.015996484,-0.0020093783,-0.027987301,0.013254043,0.008836028,0.024675427,-0.0103087,0.005520881,-0.0071342746,0.009248376,0.005599424,-0.03463723,-0.021127924,-0.014360182,-0.018653838,-0.013430763,0.00075392594,-0.0072979047,-0.008017877,0.011205393,-0.013836565,0.005900503,-0.01617975,-0.024086358,-0.019282177,-0.03335437,-0.0065026623,0.009935623,0.020198505,0.02631173,-0.0140852835,-0.0015233967,-0.002816075,0.0034755045,-0.0060052266,-0.0048532705,0.017632784,0.0021402824,-0.029374884,0.023458019,0.00014286957,-0.010472329,-0.017004445,0.023549652,0.0011495018,0.01684736,-0.022319153,-0.010884678,-0.01748879,0.014425634,-0.013267132,-0.016952084,-0.022489328,-0.00025219496,-0.02442671,0.0012452254,-0.019177454,0.025199043,0.0387738,-0.0034493236,0.002366092,-0.015616861,0.0053965226,0.011637377,-0.023994725,0.032621305,0.0028668002,0.01623211,-0.01066214,0.0012247717,-0.014949251,-0.032621305,-0.0072586336,0.01687354,-0.019609438,-0.0068135597,-0.012108631,0.0022973674,0.026036829,0.0030598838,-0.014569629,-0.0064535732,0.0033773263,-0.002204098,0.0014374909,-0.0049939924,0.0050070826,-0.011074489,-0.026167734,-0.021769356,-0.030422118,-0.00088687544,0.03589391,0.0000923999,-0.01718771,-0.00808333,0.017279344,-0.004130025,-0.0022924584,0.032673668,0.004293655,0.023536561,0.003717677,0.02890363,0.006420847,0.019805793,-0.042491477,0.009281103,0.016205931,-0.02446598,0.013522396,-0.0075531676,-0.023091488,-0.01318859,0.009444732,-0.017685147,-0.014229278,-0.0154728675,0.021651542,0.029793778,0.0026508085,-0.023798369,-0.024361257,0.004542373,0.005416158,0.013404582,0.0047420016,-0.02162536,0.014229278,-0.011565379,0.020263959,0.0058317785,-0.0020159234,0.011074489,0.011153031,0.0111595765,-0.005936502,-0.023575833,-0.01430782,-0.0037209496,-0.021049382,0.012344259,-0.029165437,0.009968349,-0.014713624,0.02696625,0.0027015337,0.015512139,0.000010041522,0.011251209,-0.026298638,0.015407415,-0.010125434,-0.021651542,-0.0011045035,-0.0022924584,-0.00070892763,-0.0031940606,-0.03110282,-0.027149515,-0.022397695,-0.015917942,0.00715391,0.025604846,0.03552738,-0.005144532,-0.021821717,0.027568407,0.0009310556,0.022960583,-0.0050332635,-0.013640209,0.008266595,0.009595272,-0.019491624,-0.020512676,-0.031233722,-0.0059692278,0.02002833,0.04416705,0.0084433155,0.019098911,-0.005069262,0.018837104,-0.010059982,-0.0071931817,0.008148782,-0.014896889,0.014504177,-0.027175695,-0.014386363,-0.00084514974,0.015459777,-0.0041267523,0.00015238058,0.050398085,-0.012789332,0.008404044,-0.025015777,-0.016677186,0.0031007915,-0.0017868412,0.016781908,0.016048845,0.002312094,0.006865921,0.01809095,-0.01586558,0.009372735,0.010583598,0.019557076,0.0073240856,0.019779613,-0.012016999,-0.024858693,0.01936072,0.008718214,0.0076120747,-0.011984272,-0.029008353,0.017894594,-0.03811928,-0.002550994,0.0045391005,-0.014792166,-0.0028209838,0.01429473,-0.014150736,0.01837894,-0.031050457,0.005491428,-0.02636409,-0.010747229,0.0028684365,-0.0107603185,-0.051235873,0.017750598,-0.017960045,-0.0075269868,0.0011061399,0.25238314,0.01193191,-0.0034067798,0.03471577,0.021900259,-0.0008091511,0.013902018,-0.014137645,-0.007088458,0.006519025,0.004139843,-0.01303805,-0.005812143,-0.014896889,-0.010374151,-0.015315782,-0.02381146,-0.01683427,-0.0053245253,-0.0028389832,0.016624823,0.020407952,-0.0018735653,-0.020578127,0.030945735,-0.02191335,-0.014124555,-0.00010119502,0.010275974,0.013640209,-0.01717462,-0.0009965076,0.01193191,-0.027358962,-0.0068397406,0.014451815,-0.0068724663,-0.019897426,0.010439604,0.022175157,-0.01967489,-0.009124017,-0.009235286,0.0027882578,0.0030926098,-0.0034493236,-0.038799983,-0.0023300934,0.0023219117,0.00021067382,-0.019557076,-0.028432375,0.026128463,0.012043179,-0.007873883,-0.0069379183,0.02131119,-0.026036829,-0.04445504,-0.011571924,-0.00024728608,0.021939531,0.01810404,0.004781273,-0.019543985,0.0072651785,-0.018064769,-0.009097836,0.014124555,0.0023759098,0.011873004,-0.0008705124,-0.00052116206,0.030788649,-0.023732917,-0.02191335,-0.016886631,-0.00016782318,0.011336297,0.018994188,-0.0005203439,0.019740341,0.0025280858,-0.013430763,-0.01617975,-0.0349514,0.01871929,0.008744395,-0.012769697,0.00019328811,0.029610513,-0.010995946,-0.010465785,-0.010243247,0.022018073,0.0011216847,0.018156402,0.023497289,-0.0096018175,0.013195136,-0.005661603,0.02415181,0.0010914131,-0.017606605,-0.009791628,-0.030971915,0.0020502857,0.038695257,-0.0076120747,0.0004145979,0.003684951,-0.016245201,0.009837445,0.0016968447,-0.0054128855,-0.005471792,-0.010603234,-0.013862747,0.017436428,0.0058808676,0.007180091,-0.015027793,-0.0038616715,-0.0069313734,-0.0011969545,-0.009778538,-0.005599424,-0.0032431495,0.013168954,-0.032150052,0.017017536,-0.008044058,0.012802423,-0.026102282,-0.02255478,0.0031269721,0.020879207,0.015957212,-0.021900259,0.027201876,-0.023772188,0.022306062,0.019242905,-0.004434377,0.0034165976,-0.021716993,0.013470034,0.0017541152,-0.012102086,-0.00007890041,-0.03437542,-0.013057686,0.0044638305,-0.021442095,0.029060714,-0.003609681,-0.052885264,-0.025552485,0.016061936,0.0060706786,-0.018902555,-0.015525228,0.051052608,-0.0037864016,-0.028222928,0.0032955112,-0.16535808,0.010897768,0.016637914,-0.006486299,0.0101908855,0.012822059,-0.0046372786,-0.005275436,-0.007841157,0.028301472,0.01617975,0.0077429786,-0.043119818,-0.008940752,-0.0069117374,-0.01206936,-0.032987837,0.026809163,0.004725639,0.010164705,0.04031847,-0.008017877,-0.009241831,-0.009333463,0.025866654,-0.0007412446,-0.02701861,0.028641822,-0.017331706,-0.028851269,-0.0100207105,-0.0032955112,0.024793241,0.024060177,0.014530357,-0.0020617398,-0.008214233,-0.0016109388,0.0064273924,0.017632784,-0.0072979047,0.009791628,-0.004139843,0.0019471988,-0.02281659,0.022711866,0.021808626,0.016585551,0.00954291,-0.023196211,0.008541494,-0.036286622,-0.014896889,-0.014360182,0.022986764,0.008312412,0.016664095,0.015708495,-0.025146682,0.013221316,0.0021239193,0.016048845,-0.0016461193,-0.023562742,0.01648083,0.0060215895,-0.017331706,-0.014726713,-0.035736825,0.008116055,-0.009405461,-0.0037045865,0.024439799,0.008960387,0.006892102,0.011715919,-0.021965712,-0.00006386689,-0.0028128023,-0.003544229,-0.007991697,0.019805793,0.0008341047,0.012671519,0.019242905,0.008665853,0.011879549,-0.021468276,0.0062277634,-0.016651005,0.0044900114,-0.014504177,0.014988522,-0.032883115,0.00548161,0.02696625,0.014543448,-0.013417672,0.00016536872,-0.007559713,0.013744933,-0.0033675085,-0.014739804,0.035998635,0.022450056,0.002919162,-0.02351038,0.011624286,0.019884337,-0.007114639,-0.0064437552,0.020512676,0.012625703,0.034165975,-0.009078201,-0.007507351,-0.00714082,-0.026298638,0.018509842,-0.007435354,0.0241649,-0.0121479025,-0.012200264,0.009647634,0.015407415,-0.004660187,-0.09336082,-0.051838033,-0.01972725,0.00012118858,-0.015656132,-0.03233332,-0.003380599,0.03780511,0.012160993,0.029060714,-0.0041496605,-0.03199297,-0.02572266,-0.00531798,0.0070622773,0.0010865042,0.0047452743,0.013967469,-0.004813999,0.009261467,-0.028301472,-0.019151272,0.008718214,-0.009987985,-0.016703365,-0.029689055,-0.04131334,0.0025100866,0.034663413,0.014451815,0.0014563083,0.0036914963,0.016441558,-0.038224004,-0.0034165976,0.0077167978,-0.041758414,-0.0072520883,0.023680555,-0.04065882,-0.0009735994,-0.014163826,0.0015266694,-0.018457482,-0.0064110295,0.01079959,-0.0012493161,0.004028574,0.013902018,-0.008168417,-0.010577053,-0.008606946,-0.02417799,0.004418014,0.047204025,0.0006532934,0.005118351,0.017724417,0.0029420701,-0.0010848679,-0.0043492895,0.017331706,-0.016323743,0.016912812,-0.021507546,-0.019583257,0.008993113,0.00084924046,0.0029600693,-0.00090978364,0.00658775,0.008940752,-0.026442632,-0.0020290138,-0.026207006,-0.007081913,-0.037517123,-0.022502419,0.015355053,-0.015407415,-0.010053436,-0.016742637,-0.012003908,-0.013293314,0.050110098,-0.0008557857,0.0044900114,0.004346017,-0.0070622773,-0.014661262,-0.010531236,0.040109023,0.03885234,-0.007114639,-0.0035867728,0.0024773604,-0.023065306,0.009209105,0.023026034,-0.0128875105,-0.010419968,-0.014909979,-0.054194305,0.035684463,0.0035671373,-0.026351,-0.0027211695,-0.009025839,0.015302692,-0.010995946,-0.006345577,-0.002312094,-0.022004982,0.03366854,0.009470914,-0.0055634254,-0.019949788,-0.0051085334,0.022960583,-0.0015724858,0.034532506,-0.015093246,0.022607142,-0.0039827577,0.0028340742,0.0030435207,-0.019962879,0.019046549,-0.018758561,0.028144386,-0.013182045,-0.017724417,-0.007212817,-0.018797832,0.005612514,0.035501197,0.02322239,-0.031678796,-0.003239877,0.018640747,-0.008908025,-0.016965173,-0.0027064427,-0.02383764,0.0034100523,-0.010989401,0.0037634934,-0.0029060715,0.013810385,0.011585015,0.028720364,-0.018025497,0.028982172,0.023994725,0.0021582816,-0.009156743,-0.026769893,-0.0102105215,0.01748879,-0.018784741,0.001210045,-0.03885234,0.0457379,0.003940214,0.02192644,-0.022594051,0.039140332,0.014006741,-0.013240952,-0.0045652813,-0.0019733796,-0.0119777275,-0.002176281,-0.024099449,0.002279368,-0.0088229375,0.028170567,0.012344259,-0.0037307674,-0.013227861,0.009870171,0.008070239,-0.015721586,-0.0011707738,-0.022122797,0.012455527,0.011539198,0.008620037,-0.01776369,0.007016461,0.004961266,0.008142237,-0.030971915,0.0053539784,-0.016624823,-0.0024544522,0.0241649,0.030134128,0.03623426,-0.004813999,0.0027146242,0.010891223,0.01742334,-0.0022924584,0.0033838716,0.000580887,-0.033223465,-0.010622869,-0.019452352,-0.0206174,-0.02827529,-0.005350706,0.015813218,-0.0117421,0.011310116,0.022607142,-0.016559372,-0.008050604,0.0032431495,-0.005465247,-0.009915987,0.029924681,0.0146350805,0.0045031016,0.002012651,-0.008593855,0.034087434,0.013391492,-0.010518146,0.007625165,-0.0022597325,0.027149515,-0.0076120747,0.0065484787,-0.0013368584,-0.019609438,0.0028029846,-0.019347629,-0.02001524,0.035003763,0.009274557,0.055450987,-0.010891223,0.0072324527,0.00033932802,0.009889807,0.011689738,0.028065844,-0.012822059,-0.0070360964,-0.008993113,-0.0022613688,-0.0069182827,0.0069313734,-0.005275436,-0.019164363,-0.004673277,0.0008173326,0.010053436,-0.017501881,0.007546623,0.016507009,-0.016886631,0.008718214,0.005465247,-0.027201876,-0.0044801934,-0.011074489,-0.013384947,-0.019269086,-0.060477704,0.010289064,-0.008567675,0.004548918,0.0013417673,0.00515435,-0.038459633,-0.0028651638,0.016271383,0.03437542,-0.009274557,0.004493284,0.023719827,-0.011715919,-0.0035605922,-0.016075026,-0.010059982,-0.029636692,0.0041725687,-0.034741953]},{\"id\":\"e8aa92a7-7f49-4546-ba9f-bc9b9985297c\",\"text\":\"I accidentally uploaded the wrong video but wasn't a me to change it to the right one. Allowing us to change it if we have accidentally uploaded the wrong video because I make multiple videos they get uploaded to multiple social media platforms that would make bounty better for sure because this was my first time and I totally screwed up and I emailed but haven't got a response\",\"vector\":[-0.050353598,-0.020870753,-0.011288827,-0.023224207,-0.0011266198,0.0068534687,-0.0047263075,-0.017405225,-0.005957992,-0.010131496,0.018594883,-0.0038728565,-0.00034509803,0.002907875,0.013862111,-0.014288836,0.02131041,0.0070021763,-0.006484933,0.0012615878,-0.038638048,0.017844882,-0.028215602,0.04466393,-0.0066595026,-0.016435394,0.011715553,-0.005188593,-0.0039827707,-0.016732808,-0.011469862,0.006265105,-0.021944031,-0.013978491,-0.03708632,-0.026922494,0.012788831,-0.030129401,-0.0010239794,-0.032431133,0.019694025,0.02229317,0.0029741467,-0.016409531,-0.00957546,0.02940526,-0.0049752304,-0.017172465,-0.0060452768,0.017625052,0.001472526,0.00077061116,-0.011489258,0.013267281,0.005123938,0.008974165,0.0072737285,0.018698333,0.011094861,-0.0049687647,-0.011107792,-0.011793138,0.005466611,0.00812718,-0.006320062,-0.0035495795,0.009219855,-0.016228497,-0.0026702667,-0.008864251,0.024142314,-0.017482812,0.0058998023,-0.0014321164,0.0063556223,-0.0016632593,-0.011379344,0.0045291083,0.0069698486,0.009982789,0.013564696,0.0066724336,0.020883683,0.013926766,0.015944013,-0.0020091655,0.021025926,0.02963802,0.00680821,-0.00951727,0.0050140237,0.02891388,0.025771629,0.007920282,-0.021620754,0.011948312,-0.014844872,0.03806908,-0.002697745,-0.0075000226,0.0053469986,-0.013771593,-0.020793166,-0.016642291,-0.0045679016,-0.010286668,0.007099159,-0.0025845983,0.010706929,-0.0039504427,-0.0039957017,0.017521605,0.0053469986,-0.014030214,-0.015400908,0.008502181,-0.004664885,-0.0139138345,-0.026353527,-0.0043092803,-0.010655205,-0.0065592867,0.0031584147,-0.028034566,0.025629386,0.011799605,-0.029250087,-0.00015052577,0.03250872,0.00478773,0.03589666,-0.010745722,0.0186854,0.022099204,0.002368003,0.0074482984,0.00028791843,0.0035237174,-0.013991421,-0.03540528,0.023689726,0.038741495,-0.014275905,0.024000073,-0.0116185695,0.008521577,0.009795288,-0.0131509015,0.008818992,0.018892298,0.01662936,0.002907875,0.013280212,0.007493557,-0.0032376174,0.0055474304,0.00068009365,0.0036982868,-0.013060384,-0.020586269,0.00009748817,0.024775937,-0.008974165,-0.020288855,0.028655259,0.03155182,0.006905193,-0.028163878,-0.006546356,-0.010448307,-0.001952592,0.030284574,-0.019939715,0.0069181244,0.00069504516,0.012077622,0.0062133805,0.02072851,0.002621775,-0.0014248426,-0.025836285,0.0027817972,0.018840574,0.040008742,-0.027801808,-0.008786664,0.016525911,-0.012756504,0.019344885,-0.01222633,0.009665977,-0.009252183,-0.0009504339,0.0035495795,-0.6268984,-0.010584083,0.03504321,0.045310482,-0.016642291,0.0209742,-0.00024952932,0.0073836427,-0.020456959,0.031422507,-0.02121989,0.01878885,0.008366404,-0.012879349,-0.0072672633,-0.018142296,0.019137988,-0.012135812,-0.0047747986,0.0042090644,-0.016616428,0.006009716,-0.007991403,0.010312531,0.010131496,-0.031189749,-0.0027914955,0.006126096,-0.017844882,0.034189757,-0.0007568719,0.019887991,0.019112127,-0.006640106,0.059741557,-0.00053623546,0.004257556,-0.000067433524,0.0027753315,0.0061163977,-0.047534626,-0.00927158,0.0039827707,-0.01783195,0.017534535,0.007997869,0.027388014,-0.008004335,-0.0052241534,-0.037448388,0.010997877,-0.018232813,-0.01307978,-0.001140359,-0.003021022,0.0017521604,0.02397421,-0.00018689442,0.005725233,-0.000513202,-0.030413885,0.00035823113,-0.031965613,-0.022357825,-0.019784542,-0.001123387,-0.006769417,-0.003811434,0.01829747,-0.00039480184,0.021853514,0.009116407,-0.023948347,0.0041670385,-0.009032355,0.032224234,0.01458625,0.0018329796,-0.014418147,0.0038340632,-0.016952638,-0.011114257,-0.0017198328,-0.012685383,-0.0009876107,0.017314708,-0.01066167,-0.008528043,-0.011288827,0.004031262,0.022797482,0.013306075,-0.0007451531,-0.01794833,0.0015355649,0.020469889,-0.007280194,-0.0077327816,0.047896694,-0.017909536,-0.004406263,0.006161656,0.010538825,-0.009775891,0.036517352,0.016086254,-0.008482784,-0.017392293,0.02420697,-0.022344895,0.023340587,0.0038599253,-0.00092376355,0.008870716,-0.019500058,-0.03579321,0.0052403174,-0.00101024,-0.0037144509,0.014883665,0.008586233,-0.010254341,0.0025199428,0.0068534687,0.009129338,0.040655293,0.0048911786,-0.0368277,0.007984938,0.005796354,0.003543114,-0.03408631,0.017250052,-0.009290976,-0.011760811,0.01458625,0.025112145,-0.0010045827,-0.0074547636,-0.019461265,0.010073306,-0.015142287,0.02578456,0.007771575,-0.005625017,-0.002199899,-0.025500076,-0.016474187,-0.008250025,0.017107809,0.012581934,-0.0018362124,-0.0058804057,0.02229317,0.0017990356,0.0072543323,-0.013758662,-0.013952628,-0.023521623,-0.026314734,0.017107809,0.033801824,-0.014495733,-0.018698333,-0.0045808326,-0.010312531,-0.008631491,-0.008036662,0.000054704502,-0.010668135,0.01054529,0.00025235798,-0.017780226,0.014237111,-0.0021303943,0.011605638,-0.0028302886,0.006879331,-0.0093427,-0.000033918812,0.013222022,0.013280212,-0.02061213,-0.003109923,0.01192245,0.012426761,-0.01554315,0.046474278,-0.018581953,0.021025926,-0.00021073608,-0.011857795,0.001939661,0.004380401,0.0005709877,-0.00024932725,0.002435891,0.018400917,-0.012872883,0.027724221,0.00080495933,-0.005696138,0.024504384,0.0093427,0.00467135,-0.040913917,0.00049340125,-0.03592252,0.024892315,-0.00038025438,0.012814693,-0.009491407,0.0023324424,-0.025771629,0.016590567,0.0026831976,-0.0042672544,0.018232813,-0.014909527,0.017663846,-0.020702649,-0.0215561,-0.012536676,-0.01421125,-0.0026912796,0.023650933,0.012691848,0.004561436,0.035612177,0.0038534598,0.000010954791,0.03879322,-0.013144436,0.0043028146,0.02963802,-0.0023825502,0.014185388,0.003669192,0.024956971,-0.014948321,-0.018219883,0.01893109,0.025163868,-0.009368562,0.045776,0.019202644,0.030827679,-0.01102374,-0.011967708,0.00982115,-0.018336263,-0.000035459427,-0.031629406,-0.024077658,0.010525893,-0.029922504,-0.0116315,0.0033265187,0.030465608,-0.0007746521,0.003202057,0.010021581,-0.0091552,-0.020870753,0.0039989343,0.0021562565,0.0007960692,0.005579758,0.0000023282878,-0.023676796,-0.0010845938,-0.0411984,-0.007972007,0.0048459196,0.013461247,0.0037597097,0.0021611056,-0.0017618587,0.011799605,-0.0021546402,-0.0063556223,-0.008133645,0.030801816,0.011288827,0.012931073,-0.004690747,-0.004855618,0.017211258,-0.011198309,0.016331945,-0.0064073466,0.030775955,-0.016357807,0.0013060383,-0.0042640213,0.012801763,0.032974236,-0.026456976,0.029301813,0.0023292096,-0.008786664,0.0069892453,0.0037985027,-0.00038308304,0.037991494,0.011903053,-0.0019493593,-0.030206988,-0.02398714,-0.017004361,0.024168177,0.0019800705,-0.0016713412,0.008747871,0.00042187626,0.011767277,-0.002978996,-0.034758724,0.017405225,0.008088387,-0.03493976,-0.008631491,-0.033103548,0.010137961,0.11203482,0.016681084,-0.0056347153,0.020250062,0.0022031316,0.015465563,-0.012290985,-0.029793194,0.0073771775,-0.036465626,-0.009730632,0.013060384,0.011644431,0.0050269547,0.025189731,-0.01842678,0.027051805,-0.016887981,0.0021465581,-0.027801808,0.017909536,0.009200458,0.022228515,0.01915092,0.008592698,0.004312513,0.012879349,0.002608844,-0.010693997,-0.013060384,-0.009000027,0.022849206,0.011941846,0.006080837,-0.0038017356,0.015620736,0.005136869,-0.017780226,0.0027413876,-0.0058351466,0.009834081,0.017107809,-0.0010740872,-0.00014587867,0.028060429,-0.019512989,0.006827607,0.016913844,0.0066465717,-0.020094888,0.02411645,-0.0061875186,-0.0215561,-0.010002186,0.007875023,-0.0010579234,0.009510804,0.00024831702,-0.014043146,-0.0034008722,-0.025836285,-0.030051814,0.005023722,-0.015000045,-0.009801754,-0.02374145,-0.021116443,-0.020495752,-0.018530227,0.00023599209,-0.020431096,-0.00520799,-0.024763005,-0.007422436,-0.011120723,0.0044385907,0.0050560497,0.0032747942,0.020676786,-0.00010829774,-0.013952628,-0.040086325,-0.012032364,-0.0026444045,0.0032537812,0.004600229,-0.0008890113,-0.025732836,-0.0291725,0.0064526056,0.0099698575,0.0058998023,0.0040215636,0.015556081,0.007972007,0.0010401432,0.016939705,0.033750102,0.024931109,0.0024455893,0.012569003,0.00006233181,-0.030465608,0.0038663908,0.008262956,-0.0027704823,0.008612094,0.0031228543,0.00927158,-0.008262956,0.022862138,-0.01458625,0.031758714,-0.013241419,0.03796563,0.038224254,0.014521595,0.029482847,0.003740313,0.017185396,-0.038146667,-0.030775955,0.005020489,-0.0019234972,-0.02121989,-0.0074547636,0.021258684,-0.032120787,-0.004784497,-0.012607796,-0.010480635,-0.0000706663,-0.008043127,-0.011812535,-0.025823353,-0.018400917,0.017741432,0.020275922,-0.006168122,0.010086237,-0.00945908,-0.003227919,-0.022176791,-0.025034558,-0.006252174,-0.032844927,-0.022745758,0.006032346,-0.010571152,0.037189767,0.0077263163,-0.007021573,-0.033077687,-0.0051821275,0.010344858,-0.02831905,-0.008431059,-0.006248941,0.0421553,0.036801834,0.017262982,-0.02904319,0.016293153,-0.0006299857,0.011081929,0.0022144462,-0.033931136,-0.041482884,-0.008411664,0.018517297,-0.000105873165,0.008857785,0.038612183,0.01053236,-0.006261872,0.022254378,-0.00059442525,0.02348283,0.0017279147,-0.027077667,-0.013512972,0.0007475777,-0.004978463,-0.014431078,-0.024543177,0.000009849841,0.0048911786,-0.0009302291,0.02131041,0.016370738,0.010435376,-0.0284225,-0.02676732,-0.0037306147,0.021181097,0.00013729163,-0.03675011,0.0021190797,0.026793184,0.006756486,0.01325435,0.00020790742,-0.014741424,-0.0034008722,-0.03178458,0.023948347,-0.021349203,-0.022500068,-0.007312522,-0.020198336,-0.022189721,-0.012743573,0.014418147,0.003682123,0.014741424,-0.005389025,-0.0038017356,0.0075711436,-0.025629386,-0.0051530325,-0.010803912,-0.008883648,0.03411217,0.021116443,0.01337073,0.036982868,0.012788831,-0.02085782,0.02398714,-0.0017958028,0.005582991,0.016112117,0.019487128,-0.022758689,-0.025810422,0.0056832065,-0.0238449,-0.00808192,-0.016887981,-0.0017165999,0.027594911,-0.004412729,0.0081983,-0.0046228585,0.0074676946,0.010060375,-0.015168149,0.01300866,-0.016939705,-0.015025907,-0.01054529,0.0069569172,-0.008107783,0.015931083,0.013344867,-0.010409514,-0.026418183,-0.00545368,-0.02891388,-0.0036756576,0.0028513016,0.011683225,-0.010571152,0.032482855,-0.014987114,-0.0015783991,-0.009905202,-0.032844927,-0.0092327865,0.016875051,-0.01903454,0.012161674,0.009950461,-0.0009682141,0.009549597,0.013202625,-0.013202625,-0.040500123,-0.007493557,0.0070021763,0.014314698,0.025694042,0.016758671,-0.0031826603,-0.0051853606,0.0059353625,-0.0067758826,-0.0027025943,0.03434493,-0.03338803,-0.00077990536,-0.010280203,0.024556108,0.027672498,0.007293125,0.012000036,0.015077631,0.031706993,-0.0024763006,-0.011288827,-0.014107801,-0.0013351333,-0.027155254,0.021762997,0.011230637,-0.011767277,0.016357807,-0.011172447,-0.029715607,-0.025202662,0.015969876,0.017275915,0.009129338,0.016525911,0.027543185,-0.0065948474,0.0031972078,-0.022357825,-0.038379427,0.013551765,-0.005214455,0.0110302055,0.014637975,0.003711218,-0.0058998023,-0.0034655277,0.010946154,-0.0072543323,-0.019202644,-0.016487118,0.026069043,0.018000053,-0.017107809,-0.018232813,-0.002852918,-0.018827643,-0.029224226,0.009859944,-0.012995728,0.00063483487,-0.003572209,0.025125075,0.025138006,0.04243978,0.0033103547,0.0014701014,-0.010674601,-0.010959084,-0.018400917,-0.015336253,-0.036336318,-0.0019267299,0.004978463,-0.020107819,-0.012737107,-0.0051174723,-0.02110351,-0.01518108,-0.00063847174,0.020560406,0.021168167,0.01060348,-0.013234953,0.047172554,-0.00078111765,0.017974192,-0.006462304,-0.031034576,0.0063717864,0.013771593,-0.0196423,-0.011243568,-0.007959075,-0.0017780226,-0.0029385863,0.018245744,0.0029208062,0.008974165,-0.019978508,0.01306685,-0.006976314,0.02914664,0.011773742,0.0045517376,0.019655231,-0.0071185557,-0.016319014,0.0006530192,-0.0015194011,-0.025150938,-0.020069025,0.015155218,0.0085539045,0.030439746,-0.0134741785,0.0139138345,-0.0026993616,-0.022616448,0.018995747,-0.00058593927,-0.012601331,-0.007144418,0.024918178,-0.034525964,-0.009788822,0.027284564,-0.01192245,0.0037144509,0.0053793266,-0.012478486,0.012750038,0.00019659272,0.0003257014,-0.0312932,0.0026702667,-0.0067241583,-0.01041598,-0.020625062,0.011948312,-0.011967708,-0.011004344,-0.03509493,0.009510804,-0.0035398812,-0.00074596127,-0.02831905,-0.002456904,-0.007984938,0.009556063,-0.0027381547,0.012601331,-0.047793247,0.014844872,0.0091552,-0.02119403,0.003614235,0.24413866,-0.0052532484,-0.00009218441,0.03990529,-0.015375046,-0.021762997,0.012549606,0.008806061,-0.00909701,0.004470919,0.011120723,-0.0018055011,0.0011153051,-0.013538834,-0.0005802819,0.007972007,-0.024051797,-0.011049602,0.0045032464,-0.02506042,0.010797447,-0.0046939794,-0.011915984,-0.021956962,0.032379407,-0.012569003,-0.0063653206,0.0065366575,-0.005201524,0.0014038297,-0.031965613,-0.017262982,0.021271616,-0.0014377737,-0.020637993,0.014663837,-0.0075258845,-0.019603508,0.012510814,0.010525893,0.015969876,-0.0077909715,0.03638804,-0.014625044,-0.009252183,0.021956962,-0.016487118,-0.0073901084,0.0015986039,0.006533425,-0.0066659683,-0.014767285,0.01041598,0.015077631,-0.01350004,0.009219855,0.0004788538,0.0064590713,-0.027284564,-0.0012575468,-0.004225228,0.021142304,0.0051045413,0.01313797,-0.028034566,0.0051530325,-0.005431051,-0.0018022683,0.009426752,-0.03000009,0.008521577,-0.017909536,-0.017857812,0.04443117,-0.0047683334,-0.017069018,0.015633667,0.01060348,0.027931118,0.021491444,0.025370765,-0.017663846,-0.022008687,-0.04735359,-0.03201734,-0.04205185,0.02663801,0.012866418,-0.012006502,-0.034758724,-0.023056103,-0.017676776,-0.02976733,0.011890122,-0.023444036,-0.00093507825,0.036077693,0.006905193,-0.01481901,-0.011831932,-0.017741432,0.010092703,-0.0056573446,-0.012847021,-0.0059515266,0.0008987096,0.011948312,0.01854316,-0.00012910868,-0.0070797624,0.0025215594,-0.0134741785,0.016344877,0.011127189,0.006290967,0.019694025,0.014961252,-0.019461265,0.0006231161,-0.011049602,-0.0035883728,-0.003320053,0.02881043,-0.0016891215,0.016706947,-0.0067888135,-0.016978499,0.0063135964,-0.030103538,-0.022202652,0.012394434,0.01845264,0.0062586395,-0.029715607,-0.008689681,-0.0052532484,0.0153879775,-0.022176791,0.0010458005,0.0330001,-0.008230628,0.026056113,0.029431123,-0.0044159614,0.0022839508,-0.032431133,0.029379398,-0.008075455,-0.0013496808,0.022215584,-0.02663801,0.005143334,-0.010480635,0.015439701,0.044638064,0.015685393,-0.0030743626,-0.05937949,-0.009413822,-0.010196151,-0.03783632,-0.0021433253,0.007047435,-0.009265114,-0.023948347,-0.0028626164,-0.16179359,0.00043521143,0.016823327,0.012484951,0.0060194144,-0.018750057,0.022681102,-0.008392267,-0.0061357943,-0.01915092,0.009387959,-0.01746988,-0.028008705,-0.013745731,0.011928915,-0.005621784,-0.021775927,0.009355632,0.0153879775,0.005608853,0.038405288,-0.009750029,-0.0043383753,-0.013002194,0.004897644,0.015879357,-0.017340569,0.050819118,-0.017599192,-0.036051832,-0.0018701565,-0.011722018,0.032198373,0.015284529,0.029844917,0.00659808,-0.00004717821,-0.0022580887,0.0060291127,0.0028141248,0.0045000133,0.025073351,-0.007926748,0.022564722,-0.018892298,0.0163966,0.01662936,0.0049978597,0.0110883955,-0.021375064,-0.00037985027,-0.029663881,0.013900904,0.01174788,0.014883665,0.00404096,0.0053211367,0.011282361,-0.028836293,-0.019202644,-0.003656261,-0.006892262,0.0025522707,-0.010959084,-0.031370785,-0.0045969966,-0.013170298,-0.016771602,-0.0031083068,0.01578884,-0.0029046424,-0.00036065571,-0.0009609404,0.012439692,0.020896614,-0.000050815077,-0.05482775,0.011094861,-0.012762969,0.0028965604,0.018051779,0.02891388,-0.033336308,0.010933222,0.013396592,0.020896614,0.0029337374,0.005608853,0.012142277,-0.01854316,-0.013849179,-0.009478477,-0.008883648,-0.02229317,-0.011211241,0.019293161,0.023831967,0.0050172564,0.01903454,-0.021362133,0.0061584236,0.011308224,-0.019784542,0.06325881,0.026444044,-0.0040862192,-0.020004371,-0.009058217,0.028344912,-0.0261337,-0.0012607797,0.020056095,-0.004606695,0.022836275,0.015258666,-0.014069008,-0.004186435,-0.018956954,0.020004371,-0.029069053,0.059689835,-0.01770264,-0.007842696,-0.011043137,-0.00669183,0.0010207465,-0.10686239,-0.020508682,-0.001981687,-0.019357817,-0.008786664,0.01616384,0.012775901,0.029974228,0.010364255,0.02591387,0.00038570966,-0.042077713,-0.019965578,-0.023780243,0.0031438672,-0.028396636,0.009032355,0.019319024,-0.021944031,0.03918115,-0.0069245896,-0.019732818,0.0050107907,-0.019732818,-0.010254341,-0.018168159,-0.038353562,0.023069035,0.012724176,-0.0075840745,0.0039245808,-0.024801798,0.0036497954,-0.030569058,-0.0087026125,0.01796126,-0.024504384,-0.01325435,0.00808192,-0.03325872,0.011657363,-0.016215567,0.010344858,-0.025551802,-0.0041670385,0.00680821,-0.009924599,0.019732818,-0.008230628,-0.011760811,-0.010681067,-0.0037209163,-0.011489258,-0.011760811,0.009316838,0.026663873,0.013105643,0.032198373,-0.017017292,0.006533425,0.002477917,0.0029402028,-0.042801853,-0.000479662,0.027931118,-0.02181472,-0.0060873027,-0.019254368,0.002432658,-0.00033216694,-0.015258666,0.03915529,0.0016398217,0.007855627,-0.010655205,-0.010887964,-0.021258684,-0.025771629,0.031112162,0.008515112,-0.0150647005,0.0008825458,-0.012375037,-0.019176781,0.0021012994,-0.013267281,0.011586241,0.020909546,0.0019299627,-0.025681112,-0.02397421,-0.009484942,0.003682123,-0.0054342835,-0.017754363,0.029327674,-0.021775927,-0.01628022,0.013163833,-0.011857795,0.02300438,0.0027931118,-0.04267254,0.013849179,-0.005175662,0.003488157,0.013551765,0.012995728,0.021051787,-0.032224234,-0.0039957017,0.017043155,0.0066045457,0.025241455,-0.002743004,-0.012724176,0.012278054,-0.0044967807,0.030051814,-0.000096427415,0.011566845,-0.008521577,-0.007409505,-0.0027074434,0.00010001377,0.0034622948,0.005861009,0.015840564,0.0025199428,0.006113165,-0.0061745876,-0.025758699,-0.006161656,-0.0155948745,0.013655214,0.016732808,0.027982842,-0.016887981,0.011819001,0.013926766,-0.0042931163,0.004380401,-0.0052758777,-0.02723284,-0.0022645541,-0.016474187,-0.023560416,-0.0052112225,-0.022099204,0.0022726362,0.013629351,0.01904747,0.027879395,0.020573337,-0.0312932,-0.025564732,-0.00759054,-0.04890532,0.0073060566,0.00065625197,0.0063814847,-0.04735359,0.023896623,-0.01077805,-0.0042898837,-0.01699143,0.027750082,0.022797482,-0.0004699637,0.0040959176,0.031370785,-0.049448423,-0.0044030305,-0.0063232947,-0.008250025,0.0029305045,0.0024003305,0.037060454,0.011418138,0.012446158,-0.0020948339,-0.0014943471,0.032586306,-0.0018071175,-0.029482847,0.0073901084,0.010409514,0.02385783,0.0066207093,0.024271624,0.01600867,0.0052112225,-0.04494841,0.011838398,-0.005437516,0.0060517425,0.0045679016,0.006976314,0.00644614,0.0030323367,0.010668135,0.03527597,0.016603498,0.0023760847,-0.008463387,-0.020456959,-0.025202662,0.02398714,-0.013073315,-0.039439775,0.022163859,0.007144418,0.010228479,-0.0047812643,-0.018982815,0.021000063,-0.021491444,-0.011359948,0.0047263075,-0.020340579,-0.017172465,0.040913917,0.007092694,-0.0052564815,0.029741468,-0.04603462,0.05097429,0.029250087,-0.0008979014,-0.012517279,0.015155218,-0.0014749506,0.008877181,-0.0072607975,-0.0014789915,-0.010726325,-0.014198318,0.0025555033,-0.0026896633,0.018387986,-0.006210148,0.056586377,-0.003269945,0.004965532,-0.012769435,-0.0009528585,-0.0011815769,0.050534636,-0.0012866418,0.021672478,-0.007771575,-0.005773724,0.017793156,0.007312522,-0.017560398,-0.030413885,-0.005938595,-0.012407364,0.022577655,-0.0044806167,-0.014301767,0.03302596,-0.00005495706,0.050870843,-0.017327638,-0.011107792,0.013629351,-0.0015307158,0.0015711254,-0.03240527,-0.01628022,-0.00026064194,0.0048879455,-0.0025005464,-0.020469889,0.0023663864,-0.01193538,-0.0041379435,0.048620835,0.008353474,0.022396619,0.030905265,0.015362115,-0.023120759,-0.030672505,0.0042898837,-0.025396628,-0.022306101,-0.010635808,-0.026211286]},{\"id\":\"e9e66938-ecac-4600-a1f1-dca9f5ec46ea\",\"text\":\"My Tik tok is not working right. Haven’t been on it in awhile \",\"vector\":[-0.037608314,-0.0003193305,-0.0035103157,-0.0116350725,-0.0028484587,0.0027510358,-0.0072247554,-0.02771139,-0.0021510348,-0.0004457482,0.01915055,-0.017567042,-0.0052886694,-0.016923742,0.019063951,-0.0008250015,0.0068226927,-0.0033989751,0.015612399,-0.033451606,-0.019880448,-0.0056350618,-0.03582687,0.0004782225,0.00026269376,-0.013991778,0.014424768,-0.028280463,0.021426843,-0.012420641,0.01134435,-0.0118206395,-0.026870152,-0.025509324,-0.0325114,-0.027513452,-0.009618574,-0.035158828,-0.00019146297,-0.016082503,0.015290749,0.0042463993,-0.011202082,-0.013991778,-0.019014467,0.020177357,0.0024835097,0.009142284,-0.0023164991,-0.00047474314,-0.014004149,-0.0052422774,-0.03733615,-0.026004171,0.011461876,-0.0071876417,0.019744366,-0.0053288755,-0.009754657,0.011350536,0.011220639,0.02064746,-0.002574747,-0.0068598064,-0.0019933025,0.0042247497,0.003414439,0.01011342,0.020771172,0.014795903,0.025657779,-0.02288664,-0.001411085,-0.007249498,0.023059836,0.0019778386,-0.013249508,0.010410328,0.012191774,0.02449489,0.032140262,-0.0037484604,0.008387644,0.032907277,0.01927426,0.0016793845,0.009476306,0.012804147,0.0064330013,-0.011078371,0.0005381453,0.0061113513,0.00039355742,0.005232999,-0.011597959,0.0028268092,-0.01860622,0.014177345,-0.02857737,-0.011103113,-0.017641269,0.012309301,-0.011690742,-0.011325793,0.00441341,0.015377347,-0.0035257796,-0.007534034,0.013187652,-0.012600022,-0.01913818,0.008016509,-0.01626807,-0.039117597,0.012661879,0.01422683,0.009074243,-0.026400048,-0.041987706,-0.016070131,0.015995905,0.0148701295,0.0050876383,0.006760837,0.018111372,-0.0013237137,-0.008653624,-0.017987661,0.011319608,-0.0022840248,0.046466064,0.023022722,0.006915476,0.027439225,0.011171154,0.0062876404,-0.01691137,-0.014004149,0.002676809,-0.017529929,0.01797529,0.031076346,-0.016280442,-0.006600012,-0.013781468,-0.0032165006,-0.002053612,-0.03127428,0.018160857,-0.012371156,0.011016515,0.001959282,-0.010626824,-0.016997969,-0.011202082,0.021389728,0.004002069,0.0047165034,-0.009742286,-0.028156752,-0.027142316,0.008876305,0.02298561,-0.0041381516,0.008010324,0.007670117,-0.00055244943,-0.022812413,-0.002441757,0.0068165073,-0.005347432,0.011164969,-0.0035319652,0.007125786,-0.022490762,0.013447447,0.000093218594,0.012173218,-0.0117093,0.004898978,-0.042878427,0.022156741,0.020288697,0.023777362,-0.009977338,-0.035158828,0.01913818,0.014783531,0.006334032,-0.023740249,0.0028484587,-0.006847435,-0.012915487,-0.015055697,-0.65003,-0.00046817094,0.036321715,0.021587668,-0.017567042,0.003225779,-0.004401039,0.010342287,-0.03862275,0.026870152,-0.02299798,0.0059134127,0.0024123755,0.00028782268,0.0072185695,-0.021513442,0.014783531,-0.005675268,-0.021921689,-0.00094639347,0.003445367,-0.014362913,-0.010503111,-0.014993842,0.0045494926,-0.007564962,0.029146444,0.022292824,0.0030943356,0.04448668,-0.025410356,0.02214437,-0.004240214,-0.0057804226,0.06710115,-0.0028701082,-0.0022113442,0.024086641,-0.009364965,0.00033034853,-0.045402143,-0.0022623753,0.022762928,-0.020833027,0.004694854,-0.010997958,0.0025221696,-0.012018578,0.008121664,-0.0009301563,0.019113436,-0.014400026,0.0071072294,0.0058330004,-0.0049948543,-0.0070268167,0.014127861,-0.004165987,0.016057761,-0.004243307,-0.015364977,0.0065752696,-0.02481654,0.013521674,-0.043942347,0.006748466,0.015414461,0.013645385,0.011047442,-0.015921678,0.007490735,0.015723739,-0.028626855,0.021389728,-0.012123733,0.03243717,0.021352615,-0.0027649535,0.00732991,-0.008529913,0.0054464014,0.0073979516,0.0017814465,-0.0088144485,0.016725803,-0.012433012,-0.039612442,0.023901073,0.029369125,0.01251961,0.03731141,0.009612389,0.013237137,-0.036989756,0.007317539,-0.009185583,-0.022490762,0.0044072242,0.00540001,-0.0045958846,-0.0047598025,-0.0051835147,-0.0043824823,0.0054031024,0.015364977,0.0057092886,-0.016292812,0.009340223,0.017604155,-0.01475879,-0.009482492,-0.033129957,0.01850725,0.005601041,-0.001905158,-0.033872224,0.04792586,-0.01498147,0.02065983,-0.014511366,0.020090759,-0.012426826,0.012334043,-0.018482508,0.0042278427,0.031150572,-0.0007963932,0.006463929,-0.005811351,-0.0040515536,0.007979396,-0.019435087,0.023171175,-0.013657756,-0.015476316,0.008839191,0.03016088,-0.0066804243,0.017678382,-0.0207588,-0.008369087,-0.020573232,-0.010385586,0.019855706,0.009235068,-0.021043336,-0.0061948565,0.0011033525,-0.0072247554,0.024024786,-0.0001430415,-0.012129919,-0.013385591,0.006300011,-0.002308767,-0.011721671,0.013806211,-0.018457765,-0.007286611,-0.016923742,-0.010676308,0.046614517,-0.0014366006,-0.018160857,-0.0073917657,-0.007954653,-0.031422738,0.021538183,-0.018222714,-0.026301078,-0.023282517,-0.004032997,0.006058774,-0.018903127,-0.0069402186,0.017158793,0.005486608,0.0075278487,-0.008833006,0.0025438191,-0.0014899512,-0.0070268167,-0.0066371253,0.0049979473,0.009519605,0.019509314,-0.0003993564,0.04673823,-0.026127882,0.03990935,-0.0009286099,-0.016292812,-0.026152624,-0.0073917657,0.013756726,-0.0024974272,0.010657751,0.007787643,0.0084000155,0.01937323,0.007701045,-0.019917563,0.028602114,-0.035752643,-0.004898978,-0.025633035,-0.015995905,-0.0052979477,0.025929945,0.011925795,0.008016509,0.0009386615,-0.008579397,0.006878363,-0.0027603141,0.049336173,-0.018160857,-0.0035721713,0.0072309407,0.0010337648,-0.0127299195,-0.012779404,-0.0076763025,-0.024841283,-0.007694859,0.019818593,0.014573222,0.019200034,-0.0068103215,-0.013311364,-0.027612422,0.017443331,0.011263938,0.025459839,-0.023282517,-0.0013028374,-0.014845388,0.004323719,0.029913455,0.0055329995,-0.023183547,0.023975302,0.0025237158,-0.00041443374,0.038251616,-0.004731967,0.03604955,-0.030779436,-0.0234186,0.0035814499,-0.021451585,-0.003210315,-0.033600062,-0.005471144,-0.009408264,-0.030581499,-0.0114062065,0.0065628984,0.040577393,0.03147222,-0.010818576,-0.013101054,-0.0017628898,0.00027197215,-0.0039680484,0.006915476,0.020400036,-0.006624754,-0.016701061,0.01358353,-0.01054641,-0.023344371,0.02494025,-0.0065195994,0.04386812,-0.015389718,0.0024603137,0.013880437,0.004731967,0.0023567053,-0.005152587,-0.03382274,0.015859822,-0.0045958846,-0.0018757766,-0.01348456,-0.022626845,0.019509314,0.010651565,0.027414482,-0.007756715,0.018222714,0.014189716,0.036866046,-0.0037855739,-0.01085569,0.02385159,0.008455685,0.023579424,0.026919637,0.0026396955,0.006494857,-0.012457754,0.004363925,0.009191769,0.019707251,-0.010039194,-0.0112701235,-0.0019391788,-0.0014250026,0.01870519,-0.0036587694,-0.008146406,-0.004209286,-0.024754684,0.02996294,-0.017381474,-0.022169111,0.024136126,0.005570113,-0.011987651,-0.0016391783,-0.033525832,0.0054494943,0.10213627,0.009235068,-0.0018835085,0.026177367,-0.014041263,0.020350553,0.0024618602,-0.03745986,0.009433007,-0.009179398,0.0052546486,-0.029863972,-0.01284126,0.018544363,0.0016871165,-0.008523727,0.018445395,0.0020056737,-0.018321682,-0.03253614,-0.0034329959,-0.0078061996,0.0053628962,0.014066005,0.026053656,0.0008188159,-0.0008520634,0.01530312,0.005678361,-0.0005922691,-0.011826825,0.008771149,-0.011078371,0.0047443383,0.0016561885,0.02716706,0.017641269,0.03733615,0.002967531,0.0123216715,0.0023396949,0.027043348,0.015773224,-0.021661894,-0.0015116007,-0.028379433,-0.041146465,-0.0069711464,-0.009253625,-0.0051958854,0.030185621,0.0075587765,-0.0068165073,-0.025756748,0.025929945,0.030358817,-0.0069773323,-0.004651555,-0.016057761,-0.018371167,-0.0138680665,-0.014610335,-0.009698987,0.013657756,0.016441267,-0.026474275,0.018358797,-0.02064746,-0.009513419,-0.009835069,0.012853632,-0.002206705,-0.046367094,-0.0068969196,-0.018433023,-0.0077257873,0.012853632,-0.015290749,-0.0007689447,0.040626876,0.0010028369,-0.021921689,0.004617534,-0.024742313,-0.0031128922,-0.021315502,0.012358786,0.004314441,-0.009822698,-0.0021695916,0.045600083,-0.008573212,0.033748515,-0.012303115,0.0061670216,0.009958781,0.020622717,0.05725371,-0.020350553,-0.00023505196,0.015884565,-0.014449511,-0.014437139,-0.0091299135,0.0005149494,-0.0050536175,0.00035702385,0.045525856,-0.0168124,-0.018779416,0.01593405,0.011641258,-0.010898989,0.01884127,0.006872177,0.019509314,0.011715485,0.01117734,-0.018160857,-0.008226819,-0.008455685,-0.029245414,0.0070268167,0.0025329944,0.017641269,0.004503101,0.008987645,-0.054729994,-0.025274273,0.027092833,-0.02803304,-0.0040391823,-0.007509292,-0.01913818,-0.040503167,-0.01026806,0.012779404,0.023727877,0.011752599,-0.019237148,-0.011839197,-0.0009409811,0.0032752636,-0.03038356,-0.012717549,-0.03404542,-0.020560862,-0.009123728,0.022292824,0.018272199,-0.018779416,0.014400026,-0.02042478,0.0001845042,0.011338165,-0.0056350618,-0.029443352,0.022651587,-0.008857748,0.012624765,0.019076323,-0.0063309395,0.019051582,-0.011746413,-0.017480444,-0.003457738,-0.01636704,-0.025608294,-0.041690797,0.024346435,0.032041296,-0.00818352,0.020140242,0.019954676,-0.007169085,-0.011548474,-0.0066371253,-0.0050536175,-0.0054309377,-0.02278767,-0.02790933,0.012241259,0.008498984,-0.009865997,0.0073546525,-0.0005346659,-0.025261901,0.016453639,0.0025206232,0.03711347,0.02513819,-0.022602102,0.019459829,-0.007243312,0.023925817,-0.0029226856,-0.029393867,-0.0020938183,-0.024630973,0.005158772,0.002947428,0.008115479,-0.017901063,0.014808274,-0.0130020855,0.042878427,0.009748471,-0.0044938223,0.013707241,-0.014078376,-0.01326188,-0.039290793,-0.008331974,0.016515493,0.02729077,0.010552596,-0.014857759,-0.009105171,-0.015958792,0.001081703,0.002661345,-0.005220628,0.014004149,0.008789707,0.03424336,0.038053676,0.002327324,-0.01054641,0.033550575,0.002081447,-0.01626807,0.014672192,0.005146401,0.001575776,-0.0076886737,0.020956738,-0.013150539,-0.014239201,-0.026548501,0.030680468,0.009581461,-0.01989282,-0.02503922,0.0077505293,-0.03295676,0.02642479,-0.012791776,0.012569095,-0.0051680505,-0.03137325,-0.0094948625,0.014808274,0.0024309321,-0.0072309407,0.008672181,0.010428885,-0.014944357,-0.0032319645,-0.013200024,0.007701045,0.0020134058,0.014041263,-0.034738205,0.0018015497,0.0044783587,-0.004741246,-0.0011373732,-0.0016561885,-0.024457777,0.027736133,-0.03092789,-0.005220628,-0.00094020786,-0.009389708,0.016663948,-0.0102247605,-0.0005176556,-0.02513819,-0.0045525855,-0.006507228,0.01702271,0.032016553,-0.009804142,-0.008752593,-0.0012208784,-0.0058577424,-0.012377342,-0.018668074,0.015859822,-0.048866067,0.0010422699,-0.020313438,0.00754022,0.0032814492,0.0033804185,0.012426826,0.037039243,0.024358807,-0.02460623,0.014610335,-0.0008242283,0.005072174,0.004240214,-0.00674228,-0.010713422,-0.035975322,0.0072371266,-0.016639205,-0.02729077,-0.02298561,0.01688663,0.029270155,-0.010490741,-0.00012342162,0.026127882,0.009810327,-0.022527875,-0.04320008,-0.029146444,0.028255722,0.0007268054,0.014152603,-0.0039680484,0.023270145,0.002018045,-0.03501037,0.03127428,-0.009445378,-0.001650003,0.002160313,-0.0019809315,0.021921689,-0.018457765,-0.0108618755,-0.015921678,-0.014907244,0.0045525855,0.027414482,-0.03092789,0.014944357,-0.0017984569,0.015290749,0.0023288701,0.019447457,0.0011226825,0.0027494894,-0.00037152128,-0.0006216506,-0.023257773,-0.0015046418,-0.023381485,-0.00078595505,0.032041296,-0.009878368,-0.008851563,-0.0059474334,-0.012692806,-0.017987661,-0.016503122,0.0076391893,0.019026838,-0.0072247554,-0.021117564,0.017195906,0.00486805,-0.001481446,-0.015290749,-0.022899011,-0.0029103146,-0.021129934,-0.011418577,-0.024420662,-0.0024587673,0.00807218,0.0148701295,0.030878406,0.013039199,0.016626835,0.0034268103,0.01786395,-0.025905201,0.000053012336,-0.0098598115,0.000627063,0.01593405,-0.0042618634,-0.023950558,0.0034268103,-0.0015162398,-0.013707241,0.013558787,0.009810327,0.0011280949,0.04065162,-0.009228882,0.011369092,-0.029765002,-0.019707251,0.030012425,0.0006239702,-0.013385591,-0.00642063,0.011808269,-0.028305206,0.005427845,0.014696933,-0.02150107,-0.011523732,0.013125797,0.015389718,-0.0017443331,0.033451606,0.018816529,-0.03614852,-0.027117575,0.009531976,-0.04161657,-0.035703156,-0.006717538,0.004237121,-0.009191769,-0.003374233,-0.0007128879,0.006624754,0.02203303,-0.009340223,0.018433023,-0.038226873,0.012853632,0.031299025,0.0151422955,-0.04921246,0.0027139224,0.026152624,0.0084494995,-0.0026644378,0.22070143,0.0034206246,-0.0040577394,0.045699053,-0.003711347,0.028379433,-0.0020134058,0.011981465,-0.009785585,-0.010775277,0.00695259,-0.018049518,-0.011158783,-0.008412386,0.0024015508,-0.011647443,-0.017208278,0.004444338,-0.036247488,-0.02032581,0.0010878886,-0.004005162,0.019620653,-0.012098991,0.03132377,-0.022552619,0.003457738,0.0030108301,0.011888681,0.0043948535,-0.018123744,-0.0076020756,0.017270135,-0.009383522,-0.0050814524,0.0063185683,0.0029845415,-0.0024788706,0.013818582,0.02130313,-0.00168557,-0.016107246,0.017950548,-0.01775261,0.025051592,0.0032938204,-0.010651565,0.008103107,-0.016676318,0.017035082,-0.023913445,-0.011486619,0.01636704,0.028008297,-0.014696933,0.00051147,0.025175303,-0.0017891785,-0.023727877,0.002743304,0.0032597997,0.017529929,0.0036958829,0.022070143,-0.019633025,0.011158783,0.0013461364,-0.013806211,0.011412391,0.007861869,-0.00486805,-0.00023021949,-0.0069773323,0.004286606,-0.026449533,-0.029863972,0.009228882,0.0016979412,0.016725803,0.015426832,0.007496921,0.007800014,0.008901047,-0.033129957,-0.007564962,-0.010385586,0.033896968,-0.011016515,-0.0021541277,-0.009612389,0.0052855765,0.011901053,-0.013212395,0.008022695,-0.0069031054,0.0025762934,0.001936086,-0.0098598115,-0.009136099,-0.013719613,-0.017703125,-0.0039649555,0.029443352,-0.006760837,0.003918564,-0.0070886724,0.007886612,0.0014945903,0.0025561901,-0.022824783,0.0057711443,-0.03337738,-0.0015564461,-0.004060832,0.005072174,0.026400048,0.018630961,-0.019917563,-0.021946432,0.0048804213,-0.009915482,0.0055051646,-0.0034237176,0.0028175309,-0.0138680665,-0.012426826,0.005514443,0.016725803,0.0031391808,-0.03006191,0.019002097,-0.008901047,0.019299004,0.0030804179,-0.01712168,-0.0114062065,0.026177367,-0.016676318,0.0033402122,0.015092811,-0.006872177,0.021674266,0.020437151,0.00095335225,-0.0028546443,-0.03595058,0.011981465,-0.011851568,-0.011888681,-0.010577339,-0.009327852,0.008121664,-0.015352605,0.014734047,0.045723792,-0.002030416,-0.031051602,-0.0115917735,-0.004818565,0.011375278,-0.025435098,-0.014931986,0.037707284,0.00047860912,-0.020795913,-0.02001653,-0.15280852,0.019521685,-0.0056938245,-0.015043326,0.001305157,0.0007631457,0.016416524,-0.01573611,0.016738174,0.0032010367,0.016837144,-0.00003274007,0.001810828,-0.0036958829,-0.0071752705,-0.016057761,-0.013410334,-0.025608294,0.04174028,-0.0052886694,0.009816512,-0.016169101,0.018977353,-0.0015201059,0.0058175363,0.015352605,-0.027958814,0.012927858,0.004852586,-0.013249508,-0.0105897095,-0.015921678,0.026870152,0.0018417559,0.01894024,-0.007738158,0.009816512,-0.00668661,0.0067670224,0.020449521,0.011047442,0.022181483,0.017381474,-0.017134052,0.010298988,0.024358807,0.023876332,-0.011925795,-0.013447447,-0.026078397,-0.0027835101,0.014263943,-0.0017876321,0.020276325,-0.023604166,0.015760854,-0.017950548,0.004697947,-0.014734047,-0.0066061975,-0.00017677223,-0.0015912399,-0.0077196015,-0.008839191,-0.0075464053,0.005347432,-0.025954686,-0.013187652,-0.0145979645,0.044981524,-0.0053598033,0.00028840257,0.017789723,0.015822709,-0.0037175324,-0.007317539,-0.023084577,0.0043020695,0.0061237225,0.0020876327,0.01989282,0.048643388,-0.02116705,0.003943306,-0.0034484598,0.009878368,0.0073855803,-0.005659804,-0.012581466,-0.018717559,0.016329926,-0.0027680462,-0.012241259,-0.0037206253,-0.007905168,0.025101077,0.03966193,0.0058855778,0.017282505,-0.010509297,0.0083567165,0.001999488,-0.02343097,0.010979401,0.017529929,0.016651576,-0.017628897,0.017802093,0.019002097,0.0001854707,-0.022515504,-0.0033866041,0.041022755,0.014239201,0.014424768,0.015797967,0.0010693318,0.01691137,0.018049518,-0.00009239707,0.053641334,0.00096031104,-0.018123744,0.0014041263,-0.019484572,-0.029888714,-0.09659399,-0.033896968,0.0036309343,0.013534045,-0.029666033,0.026400048,0.01678766,0.02941861,-0.015896935,0.0318681,-0.008771149,-0.03501037,-0.029121703,-0.014387655,0.006451558,-0.015030955,0.01807426,-0.0103794,0.0073979516,0.014152603,-0.016057761,-0.02109282,0.00695259,0.0024788706,-0.006909291,-0.013892809,-0.01637941,-0.0048340294,-0.001854127,0.011715485,-0.00263351,-0.0043082554,0.028750567,-0.035777383,-0.012977343,0.0036154704,-0.013818582,0.0017984569,0.019731995,-0.031645417,-0.009884554,0.008931975,-0.0038783576,-0.021414472,-0.020709315,0.0017195907,0.0010639194,0.040156774,-0.0000012217121,-0.02835469,0.0032938204,-0.0051402156,-0.013892809,-0.033129957,0.021958802,-0.009865997,0.018482508,0.032486655,0.009080429,0.010824761,-0.017666012,-0.0017304155,-0.013769097,0.028602114,0.0011891774,-0.01551343,0.01913818,-0.030977376,0.011839197,-0.01807426,-0.018915499,-0.0012007754,-0.02867634,0.030482529,-0.021241276,-0.0012471672,0.008604139,-0.003986605,0.007868055,0.0029768094,-0.012055692,-0.0093154805,0.008245376,0.0022670145,0.01934849,-0.0036092848,-0.0054216594,0.02793407,-0.01668869,0.0029412424,0.012649507,-0.004268049,-0.009865997,-0.0043855747,-0.014647449,0.00085824897,-0.0028206236,0.00006775141,0.0024077364,0.011004143,0.00088763045,-0.022614473,-0.043373276,0.012080434,0.01433817,-0.016676318,0.0065319706,-0.004286606,-0.0003100521,-0.020288697,-0.035381507,0.020313438,0.00019436247,0.006009289,-0.01433817,0.0045649568,-0.02632582,-0.0009425275,0.008171149,-0.024841283,0.002837634,-0.007453622,-0.0043793893,-0.00043453687,-0.017294876,0.029863972,-0.0033866041,0.023369115,0.005100009,0.014771161,0.005232999,-0.004104131,0.013571158,-0.02042478,0.03137325,0.044461936,0.031496964,-0.023579424,0.021117564,0.018952612,-0.014449511,0.01134435,-0.008622696,-0.02494025,0.030408302,-0.025509324,-0.0025855717,-0.0137319835,-0.017517557,0.016181473,0.01668869,0.021117564,0.042086672,0.016218586,-0.014028891,0.011703114,0.0026443347,-0.038795948,0.021142306,-0.018024774,-0.013175282,-0.029666033,0.010583525,0.023740249,0.008461871,-0.01551343,0.0035969138,0.0060618664,-0.03127428,-0.0020257768,0.022861896,-0.020734059,0.015043326,0.005483515,0.027315512,0.0029891806,0.014288685,0.030754695,-0.013298993,0.018272199,-0.00695259,-0.011412391,0.002457221,0.0019422716,-0.013397962,0.021241276,0.018989725,0.018457765,-0.008833006,0.022441277,0.0048896996,-0.0024603137,-0.044684615,-0.0016701061,-0.005158772,0.011919609,0.031175314,0.018866014,-0.02203303,0.010169091,-0.0017226835,0.0070144455,-0.006624754,-0.015228894,-0.0058144433,0.003856708,-0.005174236,0.016280442,-0.041146465,-0.0027232007,0.0071381573,0.024952622,-0.007874241,-0.009940224,-0.0065195994,0.015179409,-0.019336117,-0.010008265,-0.015167038,-0.019076323,-0.018630961,0.038226873,0.013249508,-0.014288685,0.026870152,-0.005498979,0.03132377,0.0038226873,0.00021746173,-0.021760864,-0.009160841,-0.005972176,-0.00085515616,-0.014090747,-0.009562904,-0.025162932,0.013150539,0.0058422787,-0.028329948,0.028329948,-0.009865997,0.035901096,0.0050381534,-0.0015664977,-0.008319602,-0.000046585137,0.03859801,0.027859844,0.02171138,-0.018853642,0.010416513,-0.0038474295,-0.006228877,0.017158793,-0.019645397,-0.018927868,-0.0025376335,-0.002352066,0.00540001,0.026028913,0.001936086,0.0062969187,0.012241259,0.041789766,-0.0045402143,-0.011103113,-0.011381464,0.022230968,-0.011672186,-0.036618624,-0.035752643,0.020437151,-0.0013739716,0.008925789,-0.0048000086,0.022812413,-0.018037146,-0.009513419,0.0107257925,0.024358807,0.019261891,0.0042278427,0.006556713,-0.012705178,-0.008802078,-0.00012438811,-0.0043082554,-0.012451569,0.02322066,-0.0349114]},{\"id\":\"f381c944-432b-4ae7-99ec-e60fc9b53d99\",\"text\":\"I am very pleased with my BlendJet! It blends great sauces, salad dressings and particularly great drinks! \",\"vector\":[-0.03464187,-0.0020800177,-0.024665639,-0.027781574,0.009563826,-0.0009999141,0.030190531,-0.0013345826,-0.010617746,-0.021274768,0.002631525,0.007082861,-0.02738881,-0.009498365,0.009432904,0.026564002,0.022387601,0.0079862205,0.008915764,-0.012856506,-0.01366822,0.0012445739,0.007946944,-0.024508532,-0.025110772,0.024783468,-0.0023500435,-0.011180709,-0.007390527,0.019520417,0.016247377,0.006087857,-0.018617058,-0.009629287,-0.0038000008,0.001945823,-0.025110772,-0.002809906,0.0076851007,-0.0071221376,0.020790357,-0.009099054,0.00642498,0.012738677,-0.0289075,0.017491132,0.002973558,0.009694748,-0.01124617,-0.00937399,0.022413787,0.015108358,-0.0056689074,-0.010473732,0.008562276,-0.009812578,-0.007403619,0.0018590874,0.016378298,-0.020764174,0.007776746,0.025870118,-0.028540919,0.008843757,-0.012496471,-0.034091998,-0.018289754,-0.006127133,0.018224293,0.010814128,0.024364518,0.0020832906,0.025136957,-0.002901551,0.0010670114,0.010853404,-0.027022228,-0.0013411286,0.0015047807,-0.006919209,0.020908186,-0.02950974,0.011200347,0.015527307,0.031368826,0.015762966,0.0059700273,0.016129548,-0.012372096,-0.00414367,0.006169683,0.012149529,0.009989322,0.0014540486,-0.04032387,0.016561588,0.013282001,0.022989841,0.017451856,-0.018617058,-0.019625155,0.005089579,-0.021274768,-0.014231183,-0.03430147,-0.0048931967,0.015566584,-0.021117661,0.032442383,0.009557281,-0.027048413,0.004880104,0.0029375544,-0.025752287,0.014964344,-0.026943674,0.008234971,-0.017203104,-0.012686308,-0.023094578,0.014257368,0.04286375,0.021942468,-0.0070239464,0.017347118,0.022518523,-0.017988635,-0.016810339,-0.01004169,-0.0066999155,0.026105776,0.030138163,0.0046477183,-0.0007454351,-0.012738677,0.023421884,-0.026629463,-0.016469942,0.007377435,0.015435662,0.0121233445,0.028043417,-0.027231703,-0.0055969004,-0.008483723,0.008928857,0.017320935,0.007730923,0.0077112853,-0.010951595,0.0037050827,-0.0310808,0.020319039,0.009720933,0.01729475,0.012640485,0.0045757117,0.012974335,0.0014761416,0.008797934,-0.016613957,-0.02576538,0.021026017,-0.008627737,0.007226875,0.021850822,0.0005768735,-0.031944882,-0.010990872,0.007999313,0.018014818,0.032311462,-0.019795353,0.009171061,-0.021026017,0.0013272183,0.018538505,-0.010290441,-0.0070370384,0.0041207587,0.009779847,0.012679761,0.02551663,0.018433768,0.0060256687,-0.039407417,0.027205518,-0.014990529,-0.011357453,-0.01626047,-0.0060682185,0.011809133,-0.016037902,-0.017910082,-0.65775037,-0.015383294,0.020908186,-0.0049684765,0.023736095,0.031971067,0.02751973,-6.840145e-7,0.005400518,0.002338588,-0.0017805344,0.019559694,-0.015920073,0.01254884,0.008228426,-0.004467701,0.021392597,-0.030688034,-0.021026017,0.0060976758,-0.039328862,0.031159353,-0.02569992,0.012607754,0.006906117,-0.025791565,0.025438076,0.00030316543,0.004192766,-0.0041796737,-0.0112134395,0.016587773,-0.0135503905,0.00045127055,0.052525766,0.02200793,-0.0098322155,0.014545395,0.01463704,0.024783468,-0.026040316,-0.009321622,0.0006689278,-0.003228855,0.005580535,0.007855299,0.042182956,-0.0037247208,0.01296779,-0.021300953,0.0039538336,0.011239624,0.025241693,0.009727478,0.006690096,-0.017608961,0.045246523,0.0036298027,0.009419813,0.0120316995,-0.009963137,0.023997938,-0.016718695,-0.00686684,-0.008968133,0.0046673566,-0.018289754,-0.021484243,0.0076523703,0.0066115432,-0.013419469,-0.003970199,-0.011010511,0.0036101644,0.0077571077,0.023212409,0.011331269,0.022885105,0.019009823,0.010205342,0.0073708887,-0.018695612,0.019022916,0.0063889762,0.03550595,0.006277693,-0.0153047405,-0.005619812,0.018905086,-0.0120775215,0.022269772,0.030504744,0.00171671,-0.026380712,-0.018473044,0.0063922494,-0.019101469,0.0069453935,0.018119557,-0.02661637,-0.017216196,0.00716796,0.045220338,0.022295957,-0.023408791,0.029902505,0.003130664,0.019180022,0.010152974,-0.022335233,0.024443071,0.0025333338,-0.015645137,-0.009884585,-0.02364445,-0.032311462,-0.0009139968,-0.00541361,0.013930064,-0.02086891,-0.00046313534,-0.013498022,0.008300432,0.007999313,-0.011926962,0.031421196,0.018237386,-0.015697505,-0.027912496,-0.014506118,0.022309048,0.020724896,-0.0015375111,0.00470336,-0.01736021,0.009910769,0.020724896,-0.011573474,-0.0021274767,-0.03372542,0.008948495,0.006912663,-0.0059274775,0.0041796737,-0.008123688,-0.008928857,0.01609027,0.009930407,-0.003980018,-0.017229289,0.009825669,-0.0002448644,-0.034275286,-0.0056689074,0.019140745,0.0067882873,-0.033830155,-0.005878382,-0.0031503022,-0.0112592615,0.018551597,0.029038422,-0.024115767,-0.0039178305,0.001568605,0.007567271,-0.019193113,-0.014060985,-0.024508532,-0.023749188,0.013098711,0.0019261847,-0.003737813,0.006506806,-0.01602481,-0.010801036,-0.027022228,-0.016299745,0.0029588293,-0.001134927,-0.004621534,0.011049787,0.008693198,0.022780366,0.049802594,-0.00046599924,0.01662705,0.020109566,-0.034615684,0.018656334,0.009845308,0.004919381,-0.008837211,0.0020865637,-0.023683727,-0.012221536,-0.016050994,0.006303877,0.013079072,0.003970199,0.026380712,0.011488374,0.011920416,-0.010028598,0.0009442724,-0.011200347,0.021484243,-0.007527995,0.019114561,0.031787775,0.00013399012,-0.023487344,-0.016901985,-0.016247377,0.03173541,-0.011710942,0.009806031,-0.009393628,-0.016901985,-0.0028344537,0.001710164,0.0016430666,-0.004906289,-0.022151943,-0.01239828,0.01475487,0.00380982,0.010296987,0.0071155913,-0.0060060304,-0.007213783,0.019297851,0.0014065894,-0.005495436,0.0035119732,0.013111803,0.021248583,-0.007704739,0.024325242,0.006287512,0.014519211,0.008876488,0.01505599,-0.004398967,0.027126966,0.0021994836,0.038674254,-0.03102843,-0.0056983647,0.011436006,0.0020096472,-0.013864603,-0.013930064,-0.011776403,0.016496127,-0.031840146,-0.00526305,-0.010251165,0.023186224,0.029431187,-0.006195867,0.021235492,-0.0016823432,-0.012228082,-0.005482344,0.005096125,-0.01000896,-0.046346262,-0.0013116712,0.0070304926,0.008045135,-0.008352801,0.03163067,-0.018473044,0.01445375,-0.0067948336,0.019206205,0.026655648,-0.0119466,0.0017968996,-0.0016258832,-0.035270292,0.018250478,0.025071496,-0.0075607253,0.015082174,-0.022531616,-0.007632732,-0.015435662,0.039093204,0.03223291,0.011933508,0.019389495,0.024678731,0.021628257,0.006690096,0.02370991,-0.020175027,0.01766133,-0.014087169,0.0076981927,-0.0155404,-0.019965552,-0.039590705,0.016888892,-0.008503361,-0.0021307499,-0.02454781,-0.0033745056,-0.014113354,0.011769856,-0.017163828,-0.019703709,-0.018276662,0.004140397,0.0013869512,0.010781398,-0.006539536,0.01976917,-0.0029228257,-0.0068602944,-0.014820331,-0.021026017,0.017085275,0.08274248,0.029221712,0.0011954783,0.0070501305,-0.0048211897,0.0005347331,-0.015226187,-0.023395699,-0.006251509,0.002225668,-0.017268565,0.011337815,-0.004002929,-0.010840313,-0.0009017229,-0.015802244,-0.0039341957,-0.02909079,-0.005246685,-0.02225668,0.029823951,0.01881344,-0.0036068915,0.011102156,0.037312668,0.025424983,0.033673048,0.015592768,-0.0004083119,-0.007148322,0.005407064,-0.012175714,-0.018198108,-0.0021929375,-0.021759178,-0.011959692,0.005236866,-0.021706808,0.0021078386,0.008071319,0.02738881,0.01644376,-0.008123688,-0.022819644,0.011632388,-0.017203104,-0.0050568487,-0.00049463834,-0.014571579,-0.015003621,-0.008693198,-0.0070959534,0.0017739884,0.006434799,0.011658573,0.028252892,-0.028409997,-0.013759865,-0.0063660652,-0.020148842,-0.01839449,-0.028279075,0.011331269,-0.005495436,0.0035087,-0.020672528,-0.023814648,-0.004356418,0.00057441875,-0.003482516,-0.009171061,-0.033830155,-0.01923239,-0.013602759,0.027676836,0.0075934557,0.0016046085,0.008693198,0.002030922,0.005017572,0.003970199,0.0112789,0.00011854546,-0.024037214,-0.022374509,-0.007292336,0.014623948,0.011547289,0.013943155,0.002454781,0.023094578,0.004124032,0.03314936,-0.009688202,-0.013079072,-0.008274248,0.019926274,0.020004828,-0.017648239,0.0098322155,-0.011724033,0.0019343673,-0.002263308,-0.02285892,0.028619472,0.006663912,-0.015736783,0.008640829,-0.017923174,0.0021078386,0.01475487,0.0019212752,-0.0009279072,-0.0064871674,-0.003973472,0.026996044,0.0052074087,-0.011966239,-0.01881344,0.008699743,-0.018014818,-0.025752287,0.024155043,-0.0048768315,0.0052990536,0.007279244,0.01445375,-0.010565377,-0.024403796,0.020711804,-0.001986736,0.012345911,-0.013203448,0.0014286825,-0.05503946,-0.012463741,-0.023212409,0.017923174,-0.018852716,-0.041580714,-0.01849923,-0.0054332484,-0.0012552113,0.022806551,-0.01699363,-0.024076492,-0.00079575815,0.004578985,-0.022112666,0.01565823,-0.0004124032,0.0039276495,-0.031159353,-0.010473732,-0.014767962,0.00075648166,-0.027100781,-0.010696298,0.013511114,0.023160039,0.02872421,0.0051321285,0.016483035,-0.023369513,-0.009485274,-0.009635833,-0.01254884,-0.013655128,-0.011003965,0.024168136,0.027414992,0.0029441006,0.011455644,0.001553058,-0.01657468,0.009046686,0.01898364,-0.032075804,-0.01385151,-0.046110604,0.015946256,-0.0026200695,0.011874594,0.0027837215,0.00076220947,-0.006356246,0.013347462,0.02678657,0.009007409,0.009059778,0.024024121,-0.010414817,-0.012228082,0.008706289,-0.012444102,-0.0102773495,-0.022165036,-0.028436182,-0.030164348,0.012411372,0.019310944,0.024272874,0.005731095,-0.003816366,-0.015095266,0.015461846,-0.0041076667,-0.01826357,0.0103231715,0.0020669254,-0.004428425,-0.028750394,-0.016456852,-0.011285446,-0.0073381583,-0.020541606,-0.03168304,0.011972785,0.004592077,0.0064511644,-0.004153489,0.010094059,0.01626047,-0.0083593475,0.009936953,0.05535367,-0.003564342,-0.0075934557,-0.0047197253,-0.00190491,-0.01300052,-0.021248583,0.035087,0.0034301472,-0.027126966,-0.010598107,0.0057474603,-0.011056333,0.0012028427,0.014702501,0.019389495,0.002269854,-0.03657951,0.0013804052,-0.013282001,0.02551663,-0.0023549532,-0.015488031,0.011436006,0.0060125766,-0.022649445,0.024888204,-0.006372611,0.008248064,0.0036265296,0.008745566,-0.011200347,-0.021091478,-0.02243997,-0.007462534,0.004991388,0.025686827,0.0070370384,0.011841863,0.007816022,0.006444618,-0.016496127,-0.0012723948,-0.0044906125,0.023421884,-0.016116455,-0.008503361,-0.006899571,-0.013890787,0.03597727,-0.023382606,-0.022374509,-0.0012224809,0.02200793,0.013079072,-0.0063136965,0.015618953,-0.02516314,-0.0023156765,-0.0045004315,-0.01019225,-0.007076315,-0.015448755,0.004448063,-0.017648239,-0.0069846697,-0.017425671,0.00795349,-0.001220026,0.016548496,-0.0029277354,0.0024351426,0.024652546,-0.00021070203,0.010761759,-0.0030701126,0.010689752,-0.020253578,0.0077440157,-0.011363999,-0.0018689065,0.019991735,-0.01584152,-0.0042516803,-0.03744359,0.007226875,0.006045307,0.04032387,-0.0056099924,0.0075345407,-0.016312838,0.027205518,-0.029719215,-0.007606548,0.0042156773,-0.014401381,0.011134886,0.0132230865,-0.013471837,-0.0106112,0.026092684,-0.0020472873,-0.007253059,-0.0071941447,0.004137124,-0.031159353,0.006840656,0.016901985,-0.008306978,-0.0008166238,0.013772957,0.00325013,0.01303325,-0.006519898,-0.021026017,0.009328167,0.0059994846,-0.009184154,0.016915077,-0.0025006034,-0.014047893,-0.019494234,-0.021170031,-0.012647031,-0.013458746,0.00042795014,0.020345224,0.02147115,0.009792939,-0.032128174,-0.039224125,-0.016181916,-0.021680625,-0.014794146,0.0041600354,0.0029244623,-0.0099500455,-0.008450992,0.024888204,0.009184154,0.0015538763,0.0019507325,-0.03385634,0.011318176,-0.003489062,-0.0007478899,-0.008392078,-0.033699233,-0.017674422,0.0004124032,0.003052111,0.027938679,0.0058423784,-0.005348149,-0.009432904,0.008202241,0.021850822,0.022151943,0.0019507325,0.0054397946,-0.01844686,-0.043465987,0.0034301472,0.0024105948,-0.016679417,-0.007128684,0.005649269,-0.0014262277,-0.012561932,-0.014074077,-0.02140569,-0.016417574,0.0055314396,-0.010676661,-0.004614988,-0.00515504,0.0054234294,0.017281657,-0.0044218786,0.009884585,-0.00031318914,0.0015563311,-0.005184497,0.01415263,-0.0068013794,0.0016455215,-0.023762278,0.005701638,-0.007966583,-0.016744878,-0.012182259,-0.00056214485,-0.017844621,0.004660811,0.020345224,-0.022898195,0.0026691651,0.0014057712,-0.015042897,0.00500448,-0.002027649,0.026760384,-0.0499597,0.0018656335,0.020764174,-0.011848409,-0.051556945,0.017347118,0.0072988817,0.015278556,0.025726104,0.22727998,-0.008595007,-0.0035447036,0.050928522,0.014008616,0.014296644,0.004614988,0.004690268,0.0032730412,0.0064053414,0.012954697,0.0046378993,-0.007076315,-0.0037476323,-0.0012895783,0.0019212752,-0.034196734,-0.027624467,0.015959349,-0.008261156,-0.0075934557,0.0030602936,0.016352113,-0.009969683,0.03796728,0.008974679,-0.014283552,0.024233596,0.01669251,-0.000990095,-0.008902672,0.008994318,0.029483555,-0.0076785544,0.023317145,-0.010545739,0.0025218783,-0.024141952,0.0081956955,0.010067875,-0.013511114,0.003564342,0.03330647,-0.01224772,0.012136437,-0.00380982,-0.014231183,-0.0037901816,0.017373303,0.005492163,-0.019337127,-0.012575024,-0.00686684,0.012149529,0.0045560733,0.0058063753,0.011442552,-0.018067187,0.018695612,-0.011115248,0.017098367,0.03422292,-0.02182464,0.01863015,-0.020659436,0.005894747,-0.0024384158,-0.0013345826,0.035532136,-0.023199316,-0.000109033186,-0.030321453,-0.025150048,0.019062191,-0.031840146,-0.008883034,0.0056852726,0.026996044,0.016168823,0.01826357,-0.00013327415,0.016181916,-0.01796245,-0.015082174,-0.013039796,-0.048100613,-0.008490269,-0.016286653,0.013642035,-0.014309736,0.006539536,0.0069323014,-0.012588116,-0.005989665,0.023002934,0.004991388,-0.009413267,0.013432561,0.0027231702,0.0183814,-0.019101469,0.007776746,0.008948495,0.006375884,-0.009511458,0.012561932,-0.011737126,0.006513352,0.004235315,-0.003420328,-0.013052888,-0.030583296,0.011350906,-0.014309736,-0.0052270466,-0.0021552977,0.01197933,-0.0099500455,0.03665806,-0.022034112,0.019310944,0.0006026487,0.008261156,0.008320071,0.011508013,0.005560897,-0.019494234,0.007442896,-0.009511458,-0.0253988,0.009216884,0.008071319,0.019258574,-0.036684245,-0.016116455,-0.019140745,-0.015553492,0.020004828,-0.0053579686,-0.015226187,-0.011835317,0.007233421,0.018852716,-0.011632388,0.025791565,-0.01831594,0.014925068,-0.0025267878,-0.011737126,-0.006749011,-0.0056558154,0.011933508,-0.033489756,-0.0066835503,0.025883209,-0.01644376,-0.04380638,-0.014087169,0.006670458,-0.001706891,-0.013046342,0.009360897,0.0359249,0.0065460824,-0.015697505,0.014047893,-0.16663708,0.024678731,-0.0035185192,-0.016731787,0.013681312,-0.013969339,0.027991049,0.009734024,-0.009878038,0.0071352297,0.019127652,0.008791389,-0.022047205,-0.029719215,0.019062191,-0.008627737,-0.020175027,-0.0030193804,0.03102843,0.013177264,0.039171755,-0.0001944391,0.023434974,-0.001414772,0.035348844,0.0033237734,0.0027051684,-0.0052270466,-0.015370201,-0.01366822,-0.00094918197,-0.011671665,0.04364928,-0.003646168,0.037836358,0.0020783811,0.020240488,0.013098711,0.019507326,0.028750394,0.025254786,0.002908097,0.0023402243,0.012254266,-0.0031421196,0.031473566,0.013288547,-0.005246685,-0.005727822,0.011743672,0.019900091,-0.041475978,-0.0056001735,0.01291542,0.019036008,-0.0035152463,-0.018106464,0.027598284,-0.00024854657,-0.0062973313,0.0029031876,-0.007128684,0.0032468569,-0.01856469,-0.017910082,-0.016836524,-0.014859607,0.012921967,0.0016905258,0.008058228,-0.018198108,-0.0069584856,0.008745566,0.017923174,0.013118349,0.0043236874,-0.022387601,0.004317141,0.017386395,-0.040690448,-0.013930064,0.008320071,-0.00997623,0.0085688215,-0.008398624,0.012784499,0.0011422914,0.0024842382,-0.0031568483,-0.011822225,0.011331269,-0.008483723,-0.0055347127,-0.008156419,-0.0009459089,0.015213096,0.006127133,0.0044611553,0.0037869087,-0.0058489246,0.01366822,0.022361418,-0.03121172,0.039145574,0.026943674,0.0009606376,-0.00373454,0.011265808,0.0009467272,-0.01385151,-0.011678211,0.011056333,0.033411205,0.022295957,-0.009020502,0.040638078,-0.0055248933,-0.01717692,0.045220338,-0.0020521968,0.02666874,0.0043531447,-0.0034105089,0.013354008,-0.02872421,-0.01445375,-0.09169752,-0.035401214,0.0066246353,0.020515421,-0.016365206,0.014519211,0.0023467706,0.025503537,-0.021300953,0.021026017,0.010251165,-0.023618266,-0.01112834,-0.004847374,0.039773997,0.0125684785,0.017883897,-0.027493546,-0.019127652,-0.0005200044,-0.016967446,-0.003564342,-0.027048413,0.003420328,-0.0076589165,-0.0019000004,-0.020358317,0.009347806,0.018459952,0.010899227,0.025267879,-0.016404482,0.017674422,-0.031525932,-0.011953146,-0.008280794,-0.013039796,0.010892681,0.013799142,-0.0275721,-0.0071875984,-0.015160726,-0.014728685,-0.048598114,-0.012961243,0.02491439,0.0046542645,0.0122411745,-0.00051918614,-0.003407236,-0.028881315,-0.0006975669,-0.024207413,0.0020194664,0.017320935,0.00080148596,0.013380192,-0.01433592,-0.038517147,0.007233421,-0.043413617,0.004880104,-0.026524726,0.015985534,-0.0218901,-0.005416883,-0.0074298037,-0.005001207,0.017595869,-0.013327824,-0.013956248,0.002744445,-0.025084587,0.028802762,-0.012686308,-0.00683411,-0.023408791,-0.008830665,0.00989113,-0.004621534,-0.023683727,-0.01000896,0.012588116,-0.0135503905,0.042654272,0.0007830751,-0.009066324,0.008817573,-0.009806031,-0.024992943,-0.022649445,0.0045069777,0.02334333,-0.0015628772,-0.048859958,0.002372955,-0.008843757,-0.014401381,0.060433432,-0.0028884588,-0.020633252,-0.012267359,-0.061218962,0.014244275,-0.0033614133,-0.010172612,0.015514215,-0.029247897,0.0026233424,-0.014623948,0.008693198,-0.011265808,0.008182603,-0.0014965981,-0.00045086144,-0.018839626,-0.001452412,-0.0076523703,0.044618096,0.008804481,0.015474939,-0.006058399,-0.004768821,-0.00033671412,0.011115248,0.013072526,-0.03089751,0.0203845,-0.013190356,0.030216716,-0.012175714,-0.0071155913,-0.0082415175,-0.023513528,0.0139955245,0.025909394,-0.014833422,-0.023814648,-0.015186911,0.023539713,0.00012151166,-0.052578133,-0.005632904,-0.033044625,-0.0016365206,-0.008922311,0.001332946,0.0020898369,-0.01644376,0.0073381583,-0.0037443591,0.020593975,0.017098367,0.016561588,0.012359004,-0.043256514,-0.00071352295,0.001788717,0.018276662,-0.0013632217,-0.0021454785,-0.035715427,0.029116975,-0.015029805,0.0105261,-0.023997938,0.009603103,0.009544188,-0.031368826,0.0067359186,0.026092684,-0.015893888,-0.009380536,-0.011305084,0.013746773,0.01560586,0.015959349,-0.029247897,-0.0024367792,-0.0017461674,-0.008765204,0.010958142,0.02812197,0.0040258407,-0.018459952,0.018944362,0.0069323014,0.015501123,-0.035113186,0.00067915604,-0.008274248,0.012751768,-0.011187254,-0.0051092175,0.0005212318,0.01657468,-0.0008559003,0.046058234,0.0135503905,-0.0014826877,-0.003921103,0.03385634,-0.0028180885,0.019546602,-0.009904223,-0.011514558,-0.02636762,0.01378605,-0.038805176,-0.014479934,0.0050404835,-0.0008428081,0.038019646,-0.0051746783,0.012791045,0.02050233,-0.0050437567,-0.014479934,-0.011291992,-0.016823431,-0.0032059439,0.0098584,0.021274768,0.009943499,0.01983463,-0.0004950475,-0.0006582904,0.021274768,0.0012093887,0.004847374,-0.009099054,0.02183773,0.00010964688,-0.006729373,-0.0026675286,-0.01602481,-0.010172612,0.0010711027,0.008621191,0.03417055,-0.0112592615,0.06519898,-0.01085995,-0.016849617,-0.013930064,0.010918865,0.022426879,0.012516109,0.0012388461,-0.029012237,-0.015959349,-0.012692854,-0.0032304917,-0.011357453,0.0030848414,-0.0043531447,-0.021497335,0.00019484824,0.002194574,-0.023984846,-0.008791389,0.019638248,-0.003181396,0.004742637,0.011010511,-0.024181228,-0.017608961,0.021602072,-0.010905773,-0.013085619,-0.0345895,0.008699743,-0.0077571077,-0.05776263,-0.0064053414,-0.0010449184,-0.011619296,-0.009099054,0.0065329904,0.0021929375,0.02746736,0.00097209326,0.0337516,-0.028383814,0.00816951,0.016365206,-0.01330164,-0.032023434,-0.002687167,-0.021981744]},{\"id\":\"e47cb43c-0e8f-4abb-96e1-4e5dc8454cc2\",\"text\":\"I’m not big on posting on social media. But I’m definitely repurchasing! I had a great evening with my man! He asked me what was in the chocolate lol…I made him roll his eye back ! \",\"vector\":[-0.019712469,0.014226151,0.006446424,-0.017492423,-0.007910505,-0.00535235,0.00990089,-0.035597272,0.027839875,-0.017887948,0.009945546,0.019482808,-0.0018293044,-0.02561983,0.012771638,-0.00019497162,0.03156547,0.0016554646,0.004089221,-0.028018499,-0.029217834,-0.033887584,0.0014305894,-0.009358638,-0.002709667,-0.009026907,0.0188959,-0.017951744,0.024790503,0.010506937,0.021434918,-0.007572395,-0.013141646,-0.011712652,-0.034678634,-0.012120935,-0.030136473,0.021473194,0.005945638,-0.0028324712,0.0073491144,0.013843385,0.007036522,0.023208402,0.012605773,-0.0026394932,-0.0050620856,0.0035948143,-0.016356884,-0.013020436,0.01377959,0.007585154,-0.029243352,0.0055724406,-0.008376204,0.0013955025,0.029906813,0.0017479665,0.01809209,-0.004567679,0.009862614,0.005885033,-0.030927524,0.011712652,-0.014277186,-0.0029999316,-0.011559545,0.0025677246,0.021549746,0.01024538,0.0034448975,-0.009773302,-0.004191292,-0.016522748,0.019521086,-0.0074767033,-0.00047566698,-0.007240664,0.01263767,-0.00001662143,0.025300859,-0.036133148,0.0036905059,0.03756214,0.008535691,0.0471313,0.010181585,0.008184821,-0.022162173,-0.017811395,-0.013639242,0.010787632,-0.00751498,0.00910346,-0.034117244,0.018360028,-0.01741587,0.027099859,-0.0067813443,0.0097350245,0.012586635,-0.012050762,-0.0010581895,-0.02491809,0.008229477,0.0074065295,-0.0027160465,-0.006133831,0.029804742,0.0051960535,-0.0075213592,0.026972272,-0.003256704,-0.024752226,-0.04011392,0.027150895,0.0015478116,-0.028886102,-0.0021658198,-0.00921829,0.013077851,-0.0012320293,0.0047048368,0.009894511,0.02503292,0.034321386,-0.01537445,-0.0055150255,0.008612243,-0.007833952,0.025798455,0.010934359,0.00489303,0.0005211205,0.014813059,0.023501856,-0.009645713,-0.00010944726,-0.0071449727,-0.021013875,0.008535691,0.04417124,-0.019967645,0.0034289488,0.010762115,0.026819164,0.01502996,0.0047303545,0.009505365,-0.024969127,0.016816203,-0.04705475,0.017798636,0.008452757,-0.00073881884,0.014315463,0.012248524,0.026181221,0.0010326718,-0.028835068,-0.009020528,0.014379257,0.018270716,-0.006998245,-0.00944795,0.04110911,0.035903487,-0.00421043,0.004870702,0.011170399,-0.0156041095,0.0076234303,0.012803536,0.017122416,-0.04151739,0.029855778,0.013766831,-0.01649723,-0.020873526,-0.009996582,-0.024012212,0.011144881,0.030468203,0.015680663,0.0016235674,-0.021115946,0.01629309,-0.022978742,0.0070301425,-0.012892848,0.0033045497,0.030417169,-0.033300675,-0.022123897,-0.6271244,0.0056649423,0.031055113,0.012082659,0.009626575,0.020388689,0.0064591826,0.014417534,0.0035948143,0.0012216627,-0.0064623724,0.02356565,-0.013218199,-0.002779841,0.015387208,-0.0063603013,0.022978742,0.0059583965,-0.030697864,-0.006424096,-0.025262581,0.0037064545,0.0007986261,-0.020554556,0.021945274,-0.004861133,0.0002236791,-0.0085675875,-0.025415687,-0.0028835067,0.0076234303,0.015833769,-0.004586817,0.022366315,0.071194544,-0.019980405,-0.013958214,-0.001007154,0.008363445,0.02436946,-0.044043653,0.013792349,0.009951926,0.012593014,0.0071322136,0.016548267,0.011540406,0.0148003,0.0074703237,0.014838576,-0.0052662273,-0.0024736277,-0.020286618,-0.023310473,0.008554828,-0.015782734,0.028299194,0.003894648,0.0106217675,-0.0010007746,-0.015208584,-0.020554556,-0.031718574,-0.0059041716,-0.004341209,0.02288943,0.012152833,0.013754072,0.013192682,0.001116402,0.002264701,0.0044369004,-0.009160875,0.011482991,0.0143920155,-0.009167255,0.025670866,0.02778884,-0.008012576,0.002459274,-0.01104919,-0.013307511,-0.015361691,-0.022851152,0.026819164,0.004347588,-0.014481328,-0.01617826,0.008778109,0.0115978215,0.017938985,0.008363445,-0.005521405,0.001491194,0.012171971,0.0141113205,0.011482991,0.024650155,0.021843202,0.0037192134,-0.011750928,-0.0031051922,0.017466906,0.032968946,-0.011591442,0.024343941,-0.0045006946,0.008299651,0.0053555397,-0.014149597,0.021894237,-0.0068387594,-0.01514479,-0.0018516324,-0.0042487066,-0.020567313,0.0034193797,0.016382402,0.012599394,-0.017505182,0.005668132,-0.0033332573,-0.012152833,-0.0016618441,0.0063698706,0.029804742,0.01229318,-0.006465562,-0.0016793875,0.0022678908,0.009996582,0.000035410874,0.01924039,-0.013805107,-0.016433436,0.004656991,0.013333029,-0.028758515,0.0012958237,-0.02972819,-0.008956733,-0.0051322593,-0.012018864,0.010768495,-0.0065389257,-0.03480622,-0.0022168553,-0.019061767,-0.020337654,-0.000671436,0.017033104,-0.000102968144,-0.012465425,0.020273859,0.01377959,-0.007329976,-0.017938985,-0.009728646,-0.013677519,-0.002719236,-0.010283656,0.0067558265,-0.026028113,-0.020771455,0.0023508235,-0.019635916,0.0068387594,0.015910322,-0.011636098,-0.023425303,0.01104281,0.0021753889,0.000489622,-0.001901073,-0.0045644892,0.018985212,0.0013388849,-0.023476338,0.0022455628,0.017122416,0.01217835,0.007368253,-0.015961358,0.012688706,0.02232804,0.01649723,-0.012541979,0.03700075,-0.028962657,-0.006296507,0.0014409559,-0.017160693,0.018168645,0.0045006946,-0.015502038,-0.016675856,0.008739833,-0.0010286847,0.009479848,0.0074958415,0.0018612015,0.003846802,0.02343806,-0.006191246,-0.00267458,-0.025594313,-0.0106217675,-0.018041056,0.051545873,0.015208584,0.0184621,-0.0057797725,-0.013817866,-0.014468569,-0.0025884577,0.014034768,-0.007904125,0.023859104,-0.0188959,0.01399649,-0.0010948713,-0.020082476,-0.0067941034,-0.018551411,-0.012471804,0.033759996,0.00398396,0.0047782003,-0.010353831,-0.0017240436,-0.01843658,0.040853932,0.017441388,0.019942129,-0.0061178827,-0.027355038,0.014698229,-0.030008884,0.023029778,0.021039393,0.009652092,0.060068805,0.02037593,0.028656444,0.0103857275,0.006991866,0.00013895216,-0.016344124,0.01423891,-0.011304367,0.00978606,0.010353831,-0.031488914,-0.013116128,-0.00923105,-0.0040956005,-0.022251485,0.011629718,0.027380556,0.04608507,-0.008663279,0.018615205,-0.0036809368,-0.021562506,0.0008811601,-0.00036901073,0.01820692,-0.03973115,0.010411246,-0.010577111,0.034219313,0.00978606,-0.0045198333,-0.011419197,0.015285137,-0.009403294,0.016152741,-0.013486136,-0.0002964446,0.007776537,0.012165591,-0.020554556,0.011648857,0.020924563,0.012101797,-0.005725547,0.033275157,-0.0020876715,0.008822765,0.017709324,0.017517941,0.027278485,-0.010679182,-0.009939167,-0.013600965,-0.010136929,0.058333598,-0.009460709,0.026308808,-0.00592331,0.033836547,-0.0062231435,-0.019533845,-0.0024401357,0.030442687,0.0058212387,-0.0033970517,-0.0016650337,-0.019419014,-0.025658106,0.039246313,0.010187965,-0.015859287,-0.000040245293,0.027763322,-0.0006156159,-0.015106513,-0.027916428,0.01457064,-0.010794012,-0.009849855,-0.01685448,-0.02379531,-0.0043667266,0.123403884,0.025505,-0.0074065295,0.018691758,-0.011259711,0.016867239,-0.028401265,0.0035023123,-0.006979107,0.004050944,-0.0036841265,-0.0063092657,-0.02036317,0.020439725,0.017122416,-0.015068237,-0.008401722,-0.009709507,0.0049249274,-0.017862432,-0.0031801506,0.0031673918,-0.017581737,0.02926887,0.033734478,0.009607436,0.031437878,0.005141828,-0.006615479,-0.01389442,-0.016867239,0.018015537,-0.029906813,0.008912077,-0.024292907,0.020707661,0.0085229315,0.004347588,0.0084782755,0.00057574443,0.00819758,0.014213392,0.018117609,-0.013218199,0.012242145,-0.035826933,0.0012519651,0.0134606175,0.0024321615,-0.012994919,0.024994645,0.010494178,-0.027227448,-0.004918548,-0.0005402588,0.026155703,-0.008797247,-0.050295502,-0.043456744,0.006953589,-0.009932787,-0.02061835,-0.016803443,-0.0033236882,-0.037102822,-0.02743159,-0.012127315,-0.015183067,-0.0026793648,-0.014749264,0.0024879815,-0.016803443,-0.021039393,-0.0047782003,-0.00012310325,-0.00478139,0.012280421,0.012593014,-0.024522565,-0.00489303,0.007751019,-0.011948691,0.008108268,-0.029319905,-0.013817866,-0.010130551,0.007374632,-0.0029409218,-0.022978742,-0.009141737,0.029498529,0.00034389168,0.011017293,-0.012286801,0.0021769837,-0.011565925,-0.03873596,0.037306964,-0.012841812,-0.013715795,-0.005326832,0.001201727,-0.017964503,-0.030315097,0.003677747,-0.0005837187,0.016191019,0.024076005,-0.018053815,0.004803718,0.016879998,0.012848192,-0.018985212,0.00021032215,0.021434918,0.024203595,-0.0007683238,0.022812877,-0.012369733,-0.013652001,-0.0053013144,-0.01684172,0.0428188,-0.0076106717,-0.029166799,0.014787541,0.00061880564,-0.030672345,-0.013128887,0.0124845635,-0.005074844,0.019725228,-0.045702305,-0.0037638694,-0.019189354,-0.012261283,-0.0012527625,0.008810006,-0.010762115,-0.023272196,-0.0200442,-0.024688432,0.0085229315,-0.02061835,0.001047823,-0.032739285,-0.0019983596,-0.023731515,-0.019036248,0.044885736,0.0028962656,-0.005259848,-0.027916428,0.006672894,0.0012990134,-0.024178077,-0.004529402,-0.013562689,0.020784214,0.025568794,0.038302157,-0.0036522292,0.015616869,-0.009173634,-0.00614659,-0.003062131,0.009856234,0.011948691,-0.028784031,0.023489097,0.0037606796,0.009805199,-0.0072151464,0.029983366,-0.006114693,-0.0057797725,-0.013192682,-0.017900707,-0.016012393,-0.0031370895,0.0042040506,-0.016931033,0.016420677,0.00978606,0.012216627,0.01206352,0.0311827,0.02220045,0.026308808,0.012165591,0.013945455,-0.02516051,0.007483083,-0.018155886,0.0056872703,0.0043348293,-0.025670866,-0.013281994,0.0036362805,0.023055295,0.038200084,0.033300675,0.0030908384,0.009983823,-0.017198969,0.0060540885,0.0030653207,-0.000409879,0.018474858,-0.02380807,0.0005486318,-0.021919755,-0.032611694,-0.01902349,-0.017977262,0.014085803,-0.025556035,-0.005307694,0.013307511,-0.018615205,-0.028886102,0.028605407,0.001075733,-0.013345788,0.0063284044,0.026538469,-0.021715613,0.012465425,0.018819347,-0.018844865,0.0067303088,0.014940647,0.0184621,0.014659952,-0.017849673,0.003722403,0.01777312,-0.0148003,-0.03133581,0.024292907,-0.02083525,-0.013919937,-0.016790686,-0.011170399,-0.051750015,0.013728554,-0.018500375,0.015221343,0.016471714,-0.014200632,-0.025938801,0.014532364,0.0059615863,-0.003633091,0.0027702716,-0.014659952,-0.0015828984,-0.018972455,-0.009199152,-0.0014888018,0.01264405,0.022595976,-0.04154291,0.0034512768,0.024292907,-0.011986967,-0.025505,-0.0011929552,-0.0055182152,0.014736506,-0.03666902,0.010685561,0.009390535,-0.012561116,0.0060955547,-0.022532182,-0.018946936,-0.0296006,-0.008254995,0.009588297,0.02264701,0.010908842,-0.03199927,0.015017201,-0.000927411,-0.00888656,-0.01685448,-0.0029473011,0.010596249,-0.003381103,0.015336173,-0.038991135,0.013256475,0.04233396,0.011361782,0.008267754,0.008223098,0.006274179,-0.025785696,0.02061835,-0.006704791,0.0011682349,-0.018360028,-0.0024433255,0.0091289785,-0.02607915,-0.0110364305,0.00083650404,-0.018997971,-0.011112984,0.001224055,-0.0035980039,0.0028197123,0.00854207,0.023297714,0.017926225,0.0008715909,-0.021702854,-0.02037593,-0.011431956,-0.007789296,0.025900526,0.008733453,-0.029855778,-0.007910505,-0.009983823,0.007604292,-0.01058987,-0.00842724,0.006197626,-0.021154221,0.048687883,0.0038308536,-0.02357841,-0.025364652,0.010494178,0.005250279,0.036566947,-0.026487434,-0.013626483,-0.0030653207,0.0005263038,0.021320088,0.004510264,0.0044337106,0.028044017,-0.022736324,-0.0020701282,-0.021562506,-0.018130368,-0.031106148,0.023157366,0.013141646,-0.010857807,-0.018245198,0.0046187146,-0.025237063,-0.0026937183,-0.02824816,-0.0045836275,0.020069716,-0.04067531,-0.04154291,0.01832175,0.0039297347,0.01389442,-0.011821101,-0.032279965,-0.00020812922,-0.0153234145,0.005964776,-0.024420496,-0.020899044,0.01251646,-0.017160693,0.007572395,0.017147934,-0.00990727,0.0017862432,0.0070301425,-0.009097081,0.01913832,0.023782551,0.015680663,0.015629627,-0.000047347403,-0.0048675123,-0.0049600145,0.00671755,0.014213392,-0.027176414,0.0070301425,-0.00075197645,-0.007999818,-0.015961358,0.013907178,-0.011731789,0.009097081,-0.0007631405,-0.0015278758,-0.016369643,0.0137413135,0.010041238,-0.0015525961,0.0110364305,0.025083957,-0.0067494474,-0.0148003,-0.0007404137,-0.007719122,0.0063156453,0.0008604269,-0.012229386,0.017186211,-0.0016682235,0.0045836275,-0.022225969,-0.016765168,0.008727074,-0.007329976,-0.0020541796,-0.0045134537,-0.018487616,0.0073044584,-0.023744274,-0.01754346,-0.0002264701,-0.029753707,-0.0121592125,0.0049791527,-0.017594494,-0.00569365,0.009537262,0.0042072404,0.016331365,0.004363537,0.24374563,0.0046952674,-0.012835433,0.02847782,-0.011068328,0.02504568,0.027814357,0.010372969,0.017122416,-0.015336173,-0.00079742994,0.023374267,-0.039118726,-0.008414481,0.010009341,-0.0017718894,-0.0153234145,0.009180014,0.0022280193,-0.03141236,0.0048898407,-0.0094096735,0.0047303545,-0.005081224,0.031948235,-0.00796792,0.021013875,-0.009154496,0.015986877,-0.0027925998,-0.024637396,-0.028171606,0.005145018,-0.021702854,-0.0011706272,-0.00042503016,0.0030142854,-0.0022264244,0.014723747,0.017824154,0.0002129138,0.009766922,0.010232621,-0.024343941,0.00478139,0.009160875,-0.007999818,-0.0010398487,-0.007183249,0.0019249959,-0.0053364015,-0.030008884,0.022174932,0.024994645,-0.009741404,-0.016637579,0.033606887,-0.00017902303,-0.013243717,-0.01423891,-0.014940647,0.011636098,0.009671231,-0.019521086,-0.029396458,0.021741131,-0.01980178,-0.013243717,-0.00074479956,-0.017696565,0.009333121,-0.00762981,-0.009690369,0.010047617,-0.0076617072,-0.016127223,0.010264519,0.002982388,0.028171606,0.0109917745,0.0051099313,0.0007412112,-0.0013994896,-0.0062709893,-0.0069408305,-0.023310473,0.027227448,0.014621676,-0.0126185315,-0.01286733,0.011489371,0.015667904,-0.001468866,-0.013868902,0.010379348,-0.025658106,-0.013396824,-0.0003935317,-0.0146727115,0.0063794395,0.006851518,-0.014659952,0.02185596,0.021358363,-0.006114693,-0.028426783,-0.020222824,0.02584949,0.013970973,-0.008369825,0.031948235,-0.019852817,-0.01650999,0.005033378,-0.038123533,0.02720193,-0.01925315,0.0026889339,-0.0028819118,-0.018806588,0.015246861,-0.011789205,-0.0012049166,0.011897655,0.024816021,-0.024637396,-0.0034544666,-0.02857989,0.015642386,-0.026691576,0.034474492,0.022340799,0.021843202,-0.009377777,-0.030672345,0.004676129,0.009077943,0.025198787,0.0012208653,0.000091804126,-0.006044519,0.02287667,0.0012479778,-0.021128705,0.020656627,-0.049402382,-0.023935657,0.009154496,-0.014927889,0.0029744138,-0.021715613,0.007648948,-0.002641088,-0.007987059,0.018270716,-0.008133786,-0.025492242,-0.0079615405,-0.012274042,0.01741587,-0.007948782,-0.009154496,0.048994098,-0.0004338019,-0.008841904,0.010009341,-0.1579039,0.029932331,0.022277003,-0.01821968,0.010047617,-0.004848374,0.0017240436,-0.0052311406,-0.009741404,0.0033779133,0.018347269,0.006239092,-0.010742976,-0.038225602,-0.0135499295,0.002961655,-0.01740311,-0.0003175765,0.014966166,0.031590987,0.045600235,-0.016331365,0.011030051,-0.002869153,0.001719259,0.012120935,0.013511653,0.020261101,-0.03187168,-0.0080061965,-0.022672528,0.00016795869,0.055832855,0.024790503,0.03243307,0.006596341,-0.0010262923,-0.009920029,-0.0033779133,0.018168645,0.0068387594,0.0031035973,-0.0029010503,0.00034149937,-0.019776262,0.031106148,0.023859104,0.00978606,-0.023080813,-0.0079743,-0.010239,-0.021001115,0.017352076,0.0062295226,-0.005224761,0.01629309,-0.019291425,0.016931033,-0.01252284,-0.03393862,0.0056521837,-0.0049025994,0.021741131,-0.015667904,0.013230958,-0.01297578,-0.008810006,-0.005135449,-0.0042742244,0.027839875,-0.014430293,-0.012669567,0.0103410715,0.013805107,0.0021993117,0.0257219,-0.008121027,0.012089038,0.029498529,-0.0116424775,-0.001042241,0.019546604,-0.018245198,0.018002778,-0.005715978,0.0043220706,-0.01149575,0.011770066,0.00831241,-0.009824337,0.005160967,-0.0073618735,-0.010258139,-0.008095509,0.023667721,0.015234102,-0.0011451094,0.007036522,0.014851335,-0.031131666,-0.012829053,0.023017019,0.0044815564,0.015055478,-0.0023125468,-0.0046282834,-0.0070110043,0.021358363,0.018155886,-0.01787519,-0.05101,-0.0022248295,0.018538652,0.024943609,0.017505182,0.05455697,0.0057191676,-0.0076999837,0.00854207,-0.011521268,0.05111207,0.0022631062,-0.0051163104,-0.014264427,-0.013077851,-0.021664577,-0.1184024,-0.03633729,-0.010730217,-0.01036021,-0.0131799225,0.006526167,0.013983732,0.0031338998,-0.0019505137,0.022825636,-0.0159486,0.002082887,-0.012057141,-0.0077701574,0.029345423,0.0040030982,-0.014443051,-0.0035469686,-0.027278485,-0.0001031675,-0.023399785,0.006570823,-0.01423891,-0.013409582,0.020669384,-0.010321934,-0.008286892,0.018946936,0.015527557,0.0200442,-0.016433436,0.0016259596,0.02847782,-0.012356975,-0.022417352,-0.024624636,-0.008439999,0.0023348748,0.016752409,-0.018742794,-0.004928117,0.020018682,-0.009658472,-0.025760178,-0.0027032876,0.025415687,-0.020643868,0.011017293,0.010092273,0.015923081,-0.0140220085,0.005058896,-0.032611694,-0.015234102,0.031744093,-0.02356565,0.0029345423,-0.005145018,-0.012401631,-0.0054033855,0.0070110043,-0.0127525,-0.026487434,0.026844682,-0.011125742,0.004593197,-0.0007527739,-0.010691941,0.0042518964,0.000558201,0.011750928,0.019431774,-0.016203776,0.00095930824,-0.037383515,0.0046665603,-0.005955207,-0.0005980725,0.017849673,-0.0073937704,-0.012127315,0.0010382538,0.024203595,-0.019852817,0.0073618735,0.018155886,0.014226151,0.0019441342,-0.044783667,-0.017696565,-0.020937322,0.0049376865,0.024726707,-0.031514432,-0.029804742,-0.000011076801,-0.019406255,0.003846802,0.020707661,-0.0023954797,-0.030238545,-0.0008596295,-0.041160144,0.031590987,0.021983549,-0.019533845,-0.016765168,-0.01810485,0.005546923,-0.029575082,-0.0039775805,-0.016816203,-0.00039871497,0.012114556,-0.0009712697,0.0010502152,-0.042869836,-0.029319905,0.023859104,-0.02220045,0.01764553,-0.0032168324,-0.019789021,0.014302704,-0.00501105,0.0045134537,0.00740015,0.022736324,-0.017135175,0.018985212,-0.022455627,-0.013817866,0.013141646,-0.024816021,0.010564352,0.041849125,-0.006615479,-0.012663187,-0.0049376865,0.014009249,0.0013859333,-0.04710578,-0.013409582,-0.030340616,0.001081315,-0.00031857326,0.009945546,0.01217835,-0.024331182,0.012242145,0.021588024,0.017237246,0.011897655,0.018793829,-0.026308808,-0.023144607,-0.0046442323,-0.03756214,0.0059360685,0.03748559,-0.018640723,-0.0069408305,0.009256567,-0.008203959,0.022583216,-0.030953042,0.0022056913,-0.01104281,-0.012746121,0.005856326,0.04315053,-0.024969127,-0.015999636,-0.003086054,0.0020541796,0.010953498,0.018066574,-0.0048579434,-0.009352258,-0.01537445,-0.011017293,0.027227448,-0.011667995,-0.00012868526,-0.013792349,0.025122233,0.009511745,0.03416828,0.015489279,0.00073523045,-0.0021753889,0.01833451,-0.026793648,0.008969492,0.025823971,-0.0023556082,0.02355289,0.02050352,-0.013218199,0.010813151,-0.006159349,0.014698229,0.009588297,0.012267662,-0.007814813,-0.018360028,0.00808913,0.007208767,-0.020439725,-0.0069408305,0.011144881,0.041287735,0.03028958,-0.013600965,-0.004156205,0.02333599,-0.000087268745,-0.026308808,0.0014959786,-0.011259711,-0.019227631,0.034474492,0.011616959,-0.0004656991,0.0052407095,-0.02596432,0.007559636,0.00796792,0.01457064,-0.019533845,0.006991866,0.0025964319,0.0008145747,-0.0021945273,-0.014213392,-0.014545122,-0.014175115,0.013690278,-0.040496685,0.029779224,0.015565833,0.04725889,-0.00042263788,-0.0034640357,-0.002516689,0.015553074,0.001531863,0.012816294,0.009160875,-0.016305847,0.02847782,0.009135358,-0.007183249,0.012580255,-0.016918274,-0.045345057,-0.0008073978,-0.0015294707,0.007789296,-0.02676813,-0.0076106717,-0.017033104,-0.00029744138,0.0037192134,0.015565833,-0.0038659405,-0.021549746,0.01593584,0.009160875,-0.016267572,-0.03187168,0.019559363,0.017913466,-0.04815201,0.011189537,0.0016411109,-0.01856417,0.01229956,0.010009341,-0.03460208,0.014545122,-0.007821193,0.018117609,-0.012191109,-0.0014999658,0.019712469,0.0021578455,-0.018730035,0.028452301,-0.057363924]},{\"id\":\"eadf3418-0615-4e57-98c2-30bae1a41f1a\",\"text\":\"The only issue is video tracking. I have no issues EXCEPT with Chomps. Both times I kept getting message that video could not be found. Video is live. https://www.tiktok.com/t/ZT8JY8w2S/. Please fix issue 😭\",\"vector\":[-0.03977325,-0.006942897,-0.008097895,-0.032520633,0.017641153,0.0038779564,-0.0039069927,-0.024751816,0.015550541,0.011543535,0.000879154,0.004952299,-0.009046414,-0.008943174,0.021331986,-0.0028181323,-0.0030359044,0.00090335094,0.01459557,-0.020789977,-0.044496484,-0.005591097,0.001337282,0.0049490724,-0.0045167548,-0.01902199,0.015821546,-0.02077707,-0.03143661,-0.016802328,-0.009749738,-0.023590364,-0.03876666,-0.013808364,-0.00042747858,-0.012698533,0.0093174195,-0.013859984,0.014995625,0.0051265163,0.0014356828,0.03636633,-0.006800942,0.00019619653,-0.027074717,0.03866342,0.0060556773,-0.0005831453,-0.02344841,0.005436237,0.0027116658,-0.0074139303,-0.025384162,-0.044264194,0.010304653,-0.0016889436,-0.012621103,-0.004765176,0.01034982,-0.031230131,0.0077752704,0.0037360014,-0.021951428,0.0068202997,-0.02512606,0.004384478,-0.008975437,0.027900638,0.008278566,0.008975437,0.002968153,-0.009414207,0.010659541,-0.017821824,0.023074163,0.009659402,-0.010646636,-0.008859292,0.020867407,0.012982443,0.038250457,-0.014195515,0.016737802,0.061995685,0.021383608,0.023900084,0.019835005,0.011220909,0.009181917,-0.006678344,0.026894048,0.016079646,0.011020881,0.011549987,-0.029346,0.0043877047,-0.0144149,0.018596124,-0.025668072,0.0059008175,0.009478732,-0.020802882,-0.01521501,-0.00014729863,0.010595016,-0.01266627,0.01454395,-0.0070525897,0.027229577,0.0056427172,-0.006097619,0.010988619,0.00086705555,-0.00983362,-0.032933593,0.010995071,0.018802604,-0.01886713,-0.043928664,0.0042199395,0.024855055,-0.00044481969,0.014892385,-0.024416285,0.006178275,-0.019641431,-0.02810712,-0.00718164,0.022790253,-0.002432595,0.033553034,-0.003223027,0.026764998,0.0301203,-0.017124953,0.016570037,-0.020002771,-0.0023567781,0.005397522,-0.03969582,0.01227912,0.03843113,-0.012498505,-0.0025390612,-0.014014845,0.022841873,-0.01946076,-0.018544504,0.016221602,0.012272667,0.02815874,0.0015534409,-0.014505235,0.008297924,0.0013792233,-0.0050168238,0.0130018005,-0.0029649269,-0.016750706,-0.034637056,0.0037392275,0.013034063,-0.0071880925,-0.015460206,0.022803158,0.027384438,0.0016970092,-0.022377294,-0.020273777,0.0063879816,-0.0066912496,0.024390476,-0.016002217,0.011950042,-0.028571699,0.012879203,0.0007533301,0.009749738,-0.021873998,0.0012138778,-0.026119746,-0.004103794,0.024700195,0.013188924,-0.037914928,-0.013924509,0.0101756025,-0.0027778042,-0.0031343051,-0.030765552,0.021783663,-0.02950086,0.02901047,-0.005871781,-0.6087037,-0.014737525,0.030584881,0.018338025,0.008607644,0.045812797,-0.0017841181,0.023151593,-0.011827445,0.03750197,-0.016415177,-0.034611244,0.006646082,-0.006929992,0.010995071,-0.0035295212,0.043412466,-0.004661936,-0.000060290608,0.011220909,-0.022674108,-0.022403102,0.006639629,0.02396461,-0.02077707,-0.017757298,0.0030278387,-0.023332264,-0.017512104,0.04052174,-0.022390198,0.031772144,0.008072086,-0.008568929,0.0406766,-0.0053652595,-0.026584327,0.016802328,0.013182471,0.013092136,-0.035153255,0.0018728401,0.026816618,0.00019670062,-0.0010654702,0.0048071174,-0.0016970092,0.011820992,-0.017589534,-0.011137026,0.0025180907,-0.024338854,-0.0019583357,0.027023098,-0.01462138,-0.01233074,0.025100252,0.000027196307,0.021538466,-0.0066202716,-0.027539298,0.003387566,-0.019564,-0.011046692,0.0020970646,0.02983639,0.016363557,0.025913266,0.018325118,-0.03135918,0.023151593,0.0038779564,-0.015253725,0.011304792,-0.0033714348,0.020157631,0.043335035,-0.017563723,-0.021744948,-0.012659818,-0.01995115,-0.0007178414,0.0005234596,-0.004649031,0.005791125,0.015240821,-0.03246901,0.0043102745,-0.018092828,-0.0038360152,0.0015711854,0.010143341,0.0118597075,-0.00364244,-0.010433704,0.028055498,-0.009743285,-0.00006790255,0.031023651,-0.008143064,-0.015369871,0.009336777,0.007897868,0.011511272,0.027384438,0.028003879,-0.008872197,0.000079648125,0.03827627,-0.0006496868,0.00026213308,-0.026997287,-0.009994932,-0.008504404,-0.006410565,-0.03128175,0.022441817,-0.010769233,0.00965295,-0.011679037,0.015098865,-0.034249905,-0.0031810857,0.009420659,0.008239851,0.021770757,0.018750984,-0.009762643,0.0034424122,0.0008093863,0.010556301,-0.018983275,0.017925063,-0.0118597075,-0.019202659,0.007401025,0.022519248,0.003606951,0.010072363,-0.018673554,0.01984791,-0.008491498,0.013924509,0.02041573,0.0013405082,-0.0068332045,0.0056846584,0.0012050056,-0.012033924,0.0065621994,-0.0017292717,-0.008478594,0.005845971,0.0306365,-0.012033924,-0.00058153213,0.004519981,-0.0071429247,-0.010833759,-0.011904875,0.032417394,0.0090657715,-0.013485739,-0.034508005,0.0007279234,-0.008014013,0.006342814,0.0047071036,-0.00036900272,-0.015227916,0.0034811273,-0.014582665,0.0016518417,0.028287789,0.0231645,0.03683091,-0.006520258,0.00949809,-0.010343368,-0.016105456,0.016492607,0.018234784,-0.035540406,-0.0062847417,0.012027472,0.011485462,0.0025245433,0.01925428,-0.021151317,0.013330879,0.0015324703,-0.00743974,-0.026971478,-0.004690972,-0.0073300474,0.013563169,-0.0019341388,0.031384993,0.0075365277,0.0042973696,0.024648575,0.00944647,0.017370148,-0.005704016,0.012053282,-0.02054478,-0.013079231,-0.024467906,0.009039962,0.035308115,0.00036174365,-0.007342953,0.010949904,-0.005797577,0.015821546,0.01495691,0.008323734,0.0058104824,0.0012937275,0.015989311,-0.005310413,-0.033630464,0.0068848245,-0.022196623,0.0151117705,0.033320744,0.0190478,0.025268016,0.015537636,-0.0149311,-0.022015953,0.022119192,0.0012372681,0.01951238,0.005578192,-0.012214595,0.03943772,-0.01186616,0.03894733,0.00041296042,-0.000115943476,0.022596678,0.027358629,-0.011795182,0.030223541,0.007981751,0.02875237,-0.005042634,-0.015408586,-0.005516893,-0.004652257,-0.0014340696,-0.03050745,-0.010833759,0.021744948,-0.009356135,-0.011188647,-0.0020583495,0.021628803,0.034404766,-0.013008254,-0.0074590975,0.008252756,0.010917641,-0.017408863,-0.007375215,0.0060814875,-0.011485462,-0.00038936845,-0.017512104,-0.003948934,-0.021757852,0.013240543,-0.01899618,0.04800665,-0.0069364444,-0.0007795435,-0.0027600597,0.002498733,0.005474952,-0.020764166,-0.021383608,0.037037387,0.0004444164,0.001516339,-0.004823249,-0.023745224,0.013330879,-0.00947228,0.022364387,-0.010704708,0.0056362646,0.0140406545,0.005910496,-0.002061576,-0.002037379,0.012769511,0.0044941707,0.041192804,-0.011195099,-0.009904598,0.01454395,0.004100568,0.0024180769,0.034791917,-0.009330325,-0.007375215,0.0043489896,-0.013434119,-0.003948934,0.04052174,-0.022674108,-0.012614651,-0.013447024,-0.022106288,0.025461592,-0.033011023,-0.027616728,0.013434119,0.0008759278,-0.036056608,-0.024106564,-0.012156523,0.0035004849,0.07175187,0.012272667,0.027487678,0.016311936,-0.0017341111,0.023022544,-0.002279348,-0.051336143,-0.011162836,-0.0045877323,-0.011098311,-0.005129743,-0.021022266,0.014247134,0.032985214,-0.01480205,0.021719137,-0.005000693,0.0007299398,0.02823617,-0.00603632,0.017925063,0.009452922,0.02950086,0.01449233,0.013640599,0.008549571,0.037269678,0.004152188,-0.0024213032,-0.024932485,-0.0050103716,0.010149793,0.000040428986,-0.025448686,0.03765683,0.0111047635,0.014814955,-0.0009832007,0.017099142,-0.006558973,0.0566272,0.01220169,-0.021977238,0.01204683,0.0035521048,-0.019280089,-0.00095093815,0.000042445394,-0.001317118,0.024726005,0.04188967,0.0040070065,0.003629535,0.0044038356,-0.001974467,-0.029655721,-0.008214041,0.0024277556,-0.0380956,0.002061576,-0.035411358,-0.026248798,-0.0026051996,-0.00031375315,-0.026506897,-0.020402826,-0.043360844,-0.02880399,0.0094271125,-0.012879203,0.014130989,-0.032288343,-0.011343507,-0.027255388,-0.013795459,-0.001209845,-0.0032181877,-0.005120064,0.018750984,-0.008246304,-0.01974467,-0.0021196485,-0.007433288,0.00063678174,-0.016324842,0.007820438,-0.0066525345,-0.0011453199,0.017241098,0.006333135,0.010924093,0.027023098,0.008046276,0.011014429,0.015782831,0.011820992,0.043205984,-0.005091028,0.0045651486,0.021602992,-0.032752924,-0.041218612,-0.009169012,-0.00045409516,0.0040683053,-0.0035553311,0.044264194,-0.014298755,-0.0008485046,0.026313322,0.013459929,-0.00067146396,-0.008104349,0.034585435,0.030894602,0.021899808,0.01186616,-0.011169289,-0.0011485462,-0.026919859,-0.01897037,0.015331156,-0.008885101,0.00720745,0.0151117705,0.007652673,-0.040418502,-0.015886072,0.0077365553,-0.012911466,0.008827029,-0.012517863,-0.008349543,-0.023383884,-0.010143341,0.0051781368,0.026119746,-0.0014631059,-0.0004379639,-0.012517863,0.008297924,-0.001228396,-0.027023098,-0.0022454723,-0.034224097,-0.018054113,-0.0035488787,0.017434673,0.0072913324,0.023190308,0.032752924,-0.014143894,0.0033165885,-0.00893027,-0.035256498,-0.012466243,0.015782831,0.01974467,0.012988896,0.02901047,-0.0027519942,-0.0032198008,-0.0016663598,0.0239388,0.0008025305,-0.0024535656,-0.0066202716,-0.043670565,0.019422045,0.020880312,-0.027539298,0.020222155,0.0013719642,0.00003669863,-0.021809472,-0.014531045,0.009788453,0.019654335,-0.017137857,0.009543258,-0.0061266553,0.005484631,-0.0026971477,-0.0032262532,-0.0029568612,-0.009556162,-0.0073365,0.007246165,0.0029358906,0.019551095,-0.0021744948,0.0027794172,-0.014505235,0.022803158,-0.023383884,-0.020764166,-0.020480257,-0.0024696968,0.0038811828,0.0025648715,0.025306731,0.004826475,-0.010317558,-0.019989865,0.05941468,-0.0064266967,-0.02916533,0.0020986777,-0.02373232,-0.028210359,-0.03894733,0.004594185,0.0016631336,-0.0074203825,0.011466105,-0.0012792094,-0.0039521605,0.0015453753,-0.012195238,-0.017666964,0.0049393936,0.00006422261,0.013924509,0.02520349,0.017589534,0.0009896532,-0.018260594,0.013027611,0.018776795,0.0132534485,0.009343229,0.017099142,0.00608794,0.0039618392,0.006104071,0.00006336563,-0.03143661,-0.01611836,0.012272667,0.034740295,-0.010549848,-0.013343784,-0.009085129,-0.036882527,0.023280645,-0.037347108,0.020557687,-0.016324842,-0.003171407,-0.03151404,-0.0007896255,-0.014982721,0.013782554,0.0011896809,0.027926449,-0.016453892,0.026390752,-0.008723789,0.023977514,0.023667794,0.022235338,-0.023461314,-0.005358807,-0.000109995075,0.026971478,-0.026919859,-0.025874551,-0.0036327613,0.015189201,-0.03874085,-0.0035262948,0.0027310234,-0.0024213032,0.023990419,-0.013279258,-0.008749599,-0.029939631,0.0035198424,-0.009452922,0.022003047,0.027410248,-0.003234319,-0.0306365,0.009775547,-0.023461314,-0.020170536,-0.02098355,0.0057395045,-0.03644376,-0.013653504,0.000035438377,0.0018889713,0.0065912353,0.0033327197,0.0075494326,0.02010601,0.04999402,-0.032185104,-0.004023138,0.0074074776,0.002484215,-0.020648021,-0.0045651486,0.0064912215,-0.044135146,-0.00616537,-0.006410565,-0.022661204,-0.03794074,0.032520633,0.0070009697,0.016286127,0.0117500145,0.0290879,0.0037779426,0.00911094,-0.03765683,-0.0035392,0.032778732,-0.018647743,0.0041296044,0.008343091,-0.013447024,0.03556622,-0.006678344,0.020170536,0.006981612,-0.0013477673,-0.015047246,-0.013156661,-0.008046276,-0.030171921,-0.03925705,-0.02950086,-0.012769511,-0.002572937,-0.0033940184,-0.031178512,0.016311936,0.018105734,0.0005674173,-0.0048845476,0.021964332,-0.023203215,-0.013169566,-0.032804545,-0.012085545,-0.019189755,-0.027048908,-0.023990419,0.011195099,0.009840073,-0.004290917,-0.021370701,-0.007768818,-0.008297924,-0.015937692,-0.0126081975,0.0045038494,0.0011009589,0.003542426,-0.0203383,0.044238385,-0.010930547,0.016737802,-0.019396234,-0.023745224,0.004419967,-0.019202659,0.015486016,-0.011007977,-0.014479425,0.00003324553,0.0048071174,0.023667794,0.019809196,0.0050103716,-0.013124399,0.0114983665,-0.017460482,-0.019267185,0.01477624,-0.00694935,-0.0047458187,-0.00929161,0.002877818,0.020235062,0.0094593745,-0.00039642586,0.008949626,0.009246442,0.0013711577,0.037114818,-0.046122517,-0.0096400445,-0.019473664,-0.020802882,0.033501413,0.004429646,-0.012259763,-0.0049716565,0.035875935,-0.017124953,-0.015202106,0.0296041,0.016131267,-0.009633592,0.024622764,-0.020906122,-0.019680146,-0.009601329,0.00020607693,-0.03004287,-0.028287789,0.0032133483,-0.007891416,-0.026158461,0.020067295,-0.014221325,0.008898007,-0.036134038,0.0029052412,-0.009349682,0.0101046255,0.005923401,-0.02978477,-0.03794074,0.0019018763,0.009020604,-0.01001429,-0.053633235,0.0027197315,0.0039166715,-0.02489377,0.0019018763,0.2221727,0.004407062,-0.017060427,0.028055498,-0.0016437761,-0.0041425093,0.017628249,0.020751262,-0.014995625,0.009336777,0.013279258,-0.01977048,-0.0019664015,-0.013330879,-0.008375353,-0.017112048,-0.015589256,-0.03050745,-0.0043264055,-0.02062221,-0.018170258,-0.023061259,0.018247688,-0.02957829,0.0046135425,-0.026481086,-0.0037489063,0.013021158,-0.032339964,-0.005742731,-0.025951982,-0.022390198,0.022132097,-0.0041747717,-0.022532154,0.002011569,0.0011937137,0.00050127914,0.018325118,0.023461314,-0.00756879,-0.012479148,0.019138135,-0.034404766,0.009891693,0.0144149,0.002305158,-0.027926449,-0.014272945,0.010375631,-0.012627555,-0.01837674,0.034637056,0.017460482,-0.03006868,-0.04147671,-0.0025906814,-0.009272252,-0.020828692,-0.014479425,-0.0075107175,0.03125594,0.0055620605,-0.0047845338,-0.029888012,-0.0056814323,0.00050127914,0.005297508,0.0060911663,-0.033062644,-0.0059040436,-0.024958296,-0.00023813783,-0.008981889,-0.019215565,-0.040005542,0.009220632,-0.0024164638,0.033140074,0.03004287,-0.0017905706,-0.008956079,0.013782554,-0.021732042,-0.020480257,-0.013240543,0.03917962,0.0040328167,0.003119787,0.0049781087,-0.00007128003,-0.014105179,-0.021899808,0.0059814737,0.0012453338,0.013292164,-0.0039941017,0.016169982,0.017654058,0.0005714501,-0.011988757,0.026532708,0.012388812,0.0011057983,-0.00013721659,-0.008949626,0.004645805,0.018183164,0.0031004294,0.003910219,0.017654058,-0.019835005,0.0024374344,0.000353678,0.013117946,0.051723294,0.016105456,-0.021525562,0.018208973,0.014208419,0.011182194,-0.0031004294,-0.010698256,0.012091997,0.0052297567,-0.031307563,-0.018312214,0.018041208,-0.022080477,-0.054097816,0.005513667,0.004278012,0.004161867,-0.0031730202,-0.02517768,-0.036701858,0.040392693,-0.009278704,0.0006775132,-0.0023245155,0.0027552203,-0.0020809334,0.013156661,-0.016750706,0.026145557,-0.033888564,-0.015950596,0.0010428864,-0.041760623,-0.011756467,-0.008233398,0.008691526,-0.00034480583,0.025732597,0.034327336,-0.031797953,-0.042302635,-0.047180727,-0.034043424,0.016711991,-0.005210399,-0.021125507,0.017124953,-0.002701987,-0.027384438,0.000681546,-0.15971245,0.022661204,0.0070590423,-0.011459651,-0.017963778,-0.0046328995,0.014169704,-0.014130989,-0.011066048,0.0019212338,0.007813985,-0.0050878013,-0.016982997,-0.021383608,-0.0098207155,-0.011691942,-0.027745778,-0.01979629,0.035333928,-0.018776795,0.025138967,-0.019564,0.0057717673,-0.0050523127,0.0017421768,0.021590088,-0.014673,0.023332264,0.021048076,-0.02895885,-0.0306365,-0.020351205,0.036056608,0.028339408,0.02484215,0.007988203,0.025306731,-0.004723235,0.0047587235,0.031230131,-0.010975714,0.017099142,0.0010114304,-0.008220494,-0.009362587,0.006633177,0.0088528395,-0.0010646636,0.020196347,-0.0007779303,0.0056459433,-0.034688674,0.010253033,0.012363003,-0.009401302,0.0094593745,-0.023345169,0.012730796,-0.011975852,-0.014660095,0.010233675,-0.01431166,-0.015602161,-0.021577181,-0.027616728,0.006588009,-0.016711991,0.00016222005,-0.0063105514,0.034533817,-0.018041208,0.014376185,-0.0026164914,0.027152147,0.00066743116,-0.00007183455,-0.0383537,0.026584327,0.008878649,0.0004508689,0.009665855,0.009975575,-0.02751349,0.026687568,0.013143756,0.010511133,0.019473664,0.008375353,0.01150482,-0.009904598,0.00702678,0.0024890543,0.011904875,-0.012711438,0.026558517,0.01850579,0.021964332,0.00756879,0.01503434,-0.013156661,0.0014598796,0.007897868,-0.026610138,0.04689682,0.007071947,0.016208697,0.013511549,0.028287789,0.027642539,-0.021590088,-0.021990143,0.017847633,0.02528092,0.024467906,0.02329355,0.018363833,-0.0024777625,0.009891693,0.028003879,-0.008375353,0.044212576,-0.019680146,-0.042483304,0.006826752,-0.018880034,-0.017705679,-0.090438336,-0.030920412,0.006149239,-0.010459513,-0.01915104,-0.011433842,-0.0043070484,0.013279258,-0.0093174195,0.0239388,-0.009046414,-0.01845417,-0.009543258,0.011904875,0.03151404,-0.015085961,-0.0070654945,0.012421075,-0.017060427,0.023422599,-0.020144725,-0.01943495,0.022003047,-0.03822465,-0.01227912,-0.0083172815,-0.022983829,-0.0190478,0.010549848,0.013382499,0.008336638,-0.009782,0.021680422,-0.032907784,-0.0040457216,0.013679314,-0.027745778,-0.02422271,0.021319082,-0.020712547,0.004355442,0.00037686672,-0.0055491556,-0.03677929,-0.016995903,-0.019809196,0.014247134,0.034301527,-0.0059427586,-0.008207588,-0.009298062,0.0003556944,-0.025951982,-0.016066741,0.03905057,-0.022506343,0.0072784275,0.0074590975,-0.010394989,0.0027745778,-0.017421767,-0.011717752,-0.013240543,0.021022266,-0.009246442,0.00998848,-0.02839103,-0.005258793,-0.0018889713,-0.010549848,-0.019783385,0.01444071,-0.0029084673,0.004991014,-0.043618944,0.0031681808,-0.009059319,-0.008330186,0.035746887,0.008201136,0.0068977294,-0.017163668,0.021512657,-0.011633869,0.022183718,-0.00009935852,0.0010880539,0.023061259,-0.021499753,-0.025384162,0.01842836,0.006381529,-0.0053200917,-0.0057653147,-0.014169704,0.012956633,-0.020764166,-0.0036327613,0.021138411,0.01987372,-0.008504404,-0.01899618,-0.06158272,0.01917685,0.0021857866,-0.012014567,-0.008194683,-0.0025390612,-0.010646636,-0.04728397,-0.008956079,-0.003784395,0.018467074,0.02564226,0.0034198286,0.008220494,-0.011117669,-0.022854779,0.021215841,-0.03143661,0.008291471,-0.012337193,0.017886348,0.0026261702,0.00936904,0.046767768,0.030455831,0.035772696,0.020931931,0.02308707,-0.0059137223,-0.019835005,0.017163668,-0.020157631,0.023048354,0.018079923,0.012750153,-0.01987372,0.011808087,0.006917087,-0.0010025583,0.0066202716,0.0019034895,-0.005452368,-0.001758308,-0.003871504,0.0074203825,-0.018363833,-0.032081865,0.0070590423,0.03866342,0.034456387,0.024596956,0.0040973416,-0.010562753,0.009872335,-0.00015899379,-0.021602992,0.030223541,-0.0004992627,0.007859153,-0.018183164,0.033294935,-0.0055717393,0.013834174,-0.011511272,0.031152703,0.0024406607,-0.007988203,0.0055104406,0.0011751627,-0.043180175,0.01611836,0.014453615,0.011033786,-0.004061853,0.002929438,0.044031907,-0.011717752,0.027745778,-0.008859292,-0.0023003186,0.0033423984,0.024080755,-0.02903628,0.012801773,0.011414484,0.026377847,-0.002277735,0.015163391,-0.010001386,-0.010859569,-0.07557176,0.008523761,-0.0065363892,0.008297924,0.0014058399,0.0193059,-0.020351205,0.020738356,0.022274053,0.008588286,0.007794628,0.006917087,-0.017925063,-0.017279813,-0.0029471824,0.016711991,-0.036082417,-0.016492607,0.019860815,0.006016962,0.008239851,-0.0031004294,0.006152465,0.0055878707,-0.0054297843,-0.011820992,-0.0063976604,-0.0031778596,-0.0141826095,0.035979178,0.003097203,0.00022462789,0.00023410501,-0.01915104,0.025242206,0.009085129,-0.017176572,-0.008304376,0.006571878,-0.0038005265,-0.0042263917,0.006317004,-0.004739366,-0.004636126,-0.002955248,-0.006988065,-0.01485367,0.010872474,-0.020557687,0.06406049,-0.0038682777,0.018467074,-0.002088999,0.0062234425,0.027668348,0.022906398,0.02383556,-0.017705679,0.014905291,-0.021964332,-0.019318804,0.0070784,-0.003971518,-0.009136749,0.0045812796,-0.005513667,0.013627694,-0.0063234563,-0.0003185925,0.013485739,0.010524038,0.03006868,0.017447578,0.020944836,0.016570037,0.012040378,-0.002330968,-0.025680976,-0.015640875,0.028261978,0.0020680283,-0.015718305,-0.008401164,0.012033924,-0.0018099281,-0.015692497,0.023396788,0.021719137,-0.00504586,0.042509113,0.010801496,-0.005442689,0.0034585434,0.009930408,-0.016040932,-0.0077365553,-0.00249712,-0.031617284]},{\"id\":\"2e1438aa-eb03-413c-a9d9-55a581477c3f\",\"text\":\"Include glue and adhesive in every package\",\"vector\":[-0.002076943,0.023318635,-0.017021792,0.00588044,-0.010291616,-0.004153886,-0.020610316,-0.00092929235,0.015694715,-0.0046515395,0.006202053,0.026731119,-0.005795805,0.026026957,-0.02943944,0.009208288,0.014949927,0.03623732,-0.02131448,0.008605687,-0.0007418258,0.005135652,0.022749888,-0.014570762,-0.022817597,0.01887699,0.017698871,-0.017820746,0.0035817532,0.00871402,0.016534293,-0.0057924194,-0.028139446,-0.006523666,-0.0045567486,0.0038864394,-0.022655098,0.0073056933,-0.0153832575,-0.005914294,0.017333249,0.0059007523,0.013683788,0.006405177,-0.02174781,0.011408798,-0.02664987,0.011246299,-0.02698841,-0.009411412,0.024578005,0.008267147,-0.036751904,-0.016344711,-0.0038458144,0.01557284,0.0059718457,0.0045872172,0.007082257,-0.042710207,-0.0062122094,0.0011188748,-0.028247777,0.0097093275,-0.03469358,-0.006296844,-0.011977546,0.019215532,0.009743181,0.0066726236,0.013839516,0.03480191,0.019025948,-0.01438118,0.010142659,-0.0002386707,-0.01100255,-0.0027743354,0.004688779,-0.0056840866,0.028951941,-0.007292152,0.0062325215,0.030008186,0.0126613965,0.0074681924,0.012377023,0.0071567358,-0.0042588334,-0.016453044,0.019323863,0.017387414,-0.018159285,0.016371794,-0.006100491,0.013907224,-0.0014345633,0.053001825,0.016683253,-0.024510296,0.019703029,0.01726554,-0.030089436,-0.012214524,-0.015464508,-0.0010977159,-0.004830966,-0.010880676,0.02479467,-0.00007045864,-0.002630456,0.024713421,0.028329028,-0.024158215,-0.0039541475,-0.0132910805,0.020122819,-0.004729404,-0.0077999616,-0.010934842,0.0040286263,0.010684323,0.014733261,-0.008124961,-0.00532862,0.037212316,-0.03696857,-0.003080714,-0.011625464,0.01319629,0.040001888,-0.0014328706,0.0032990724,0.012837437,-0.010603073,0.018619701,-0.021368645,0.015017635,-0.016019713,-0.013365559,0.011219216,0.021950934,-0.022384265,0.00075959915,0.004648154,0.02547175,0.01818637,-0.00058482785,0.004715862,-0.008016627,0.0041945106,-0.011557756,0.012925457,-0.0073395474,0.000328807,0.012390564,-0.013805661,0.01379212,-0.031768594,0.008869749,-0.018904073,-0.009194747,0.025580082,-0.0101968255,0.014949927,0.022072809,-0.010799427,-0.022018641,0.023494676,-0.00010283153,0.01971657,0.01887699,-0.018443659,0.018511368,-0.0010367788,0.0117541095,-0.0027337105,0.020258235,-0.01234994,-0.028274862,0.006425489,-0.016425962,0.02664987,0.022763431,-0.024726963,-0.023575926,0.013318164,0.012045253,0.029493606,-0.020014485,-0.00053785543,0.027868614,-0.017441582,-0.0059244502,-0.66429675,-0.023345718,0.019865528,-0.049887255,0.010487969,0.03241859,0.027895696,-0.00072574517,-0.00786767,0.017441582,-0.028329028,0.045174778,0.008233293,-0.017075958,0.031226931,-0.010772343,0.012458272,-0.017901996,-0.00039545706,0.014773886,-0.029141525,-0.0036765444,0.004451801,0.017184291,0.032147758,0.013324935,0.004773414,-0.025160294,-0.024347797,0.026040498,-0.026257163,0.025593625,-0.01353483,0.009201517,0.04165396,0.020623857,-0.011368173,0.019025948,0.042764373,0.018633243,-0.027787363,-0.018836366,-0.034720663,-0.011239529,-0.00829423,-0.003097641,0.021273853,0.019851986,-0.0077390247,0.0018873606,0.007522359,-0.014922843,-0.015627006,0.005392942,0.00077652617,-0.0035275868,0.019201988,0.013162436,0.010108804,-0.011158278,-0.0035580555,0.006293459,-0.012878062,-0.008036939,-0.008890061,-0.019513447,-0.032797758,0.004035397,0.03317692,-0.01742804,-0.0049460693,0.008991622,-0.008978081,0.009011935,0.00079049094,0.029656105,0.016398879,0.0068926746,-0.020840524,0.011232757,0.008497355,-0.01396139,-0.012133274,-0.013670245,0.0049866945,0.025512375,-0.0010249299,-0.007244756,0.0104067195,0.0101562,0.018078037,0.0340165,-0.00427576,-0.019987402,0.0054335673,0.009959847,-0.00027887232,-0.0074749636,0.033285253,0.02131448,-0.024076965,-0.004079407,-0.0050374754,0.0074614217,0.037456065,0.006879133,-0.0094994325,0.03377275,0.037022736,-0.010386407,0.0017688716,0.007420797,-0.0018179598,-0.008856206,-0.011110883,-0.035560243,-0.0037916482,-0.0014743417,0.0009089799,-0.009526515,0.010772343,0.0010384715,0.0030604017,0.0027895696,-0.0014819589,0.0070619443,-0.00638825,-0.012939,-0.0132436855,-0.0059955437,0.022993637,-0.00020672099,0.02182906,-0.0075697545,0.012532751,0.019025948,0.00795569,-0.014069723,0.018795742,-0.017143667,-0.012377023,0.016710335,-0.015464508,-0.001806111,0.004069251,-0.003991387,-0.014123889,-0.0085921455,0.014909302,-0.0126613965,0.016899917,-0.0013067644,-0.019594695,-0.00085396715,0.0056976285,-0.0024967326,-0.009797348,-0.002357931,-0.0076916288,0.0025255084,0.012939,0.039893556,-0.018430118,-0.0055859103,-0.014056182,-0.0117541095,0.018809283,0.003960918,0.013771808,-0.0444977,-0.008030169,-0.045716442,-0.024388421,0.015884297,0.015762422,0.024090506,-0.010792656,0.0063510104,0.025742583,-0.00086750876,0.016764501,0.021219688,-0.010129117,0.008152043,0.01658846,-0.021504061,0.01947282,0.016927,-0.002889439,0.014421805,-0.005362474,0.0046413834,-0.005101798,-0.011720255,-0.012329627,-0.015004093,-0.0058601275,0.0017417884,0.0035648262,-0.0032939943,0.020244693,-0.018145744,-0.0005403945,-0.013737953,0.033285253,-0.006195282,0.0016546143,-0.026026957,0.022885304,0.025607167,0.00863277,-0.027543616,-0.009810889,-0.022519682,0.0067572584,0.007948919,-0.00063814793,0.02995402,-0.026893618,-0.008409333,-0.006279917,-0.043983117,0.036345657,-0.0034666497,0.004830966,0.01396139,-0.011232757,0.030360268,0.013426497,-0.021219688,-0.015721798,0.0044991965,0.012830666,0.008267147,0.035993572,-0.011923379,0.005088256,-0.0059379917,0.020542609,0.02437488,0.04568936,0.021395728,0.030658184,0.027096743,0.0148009695,0.0083145425,0.023481134,0.024347797,-0.021612395,0.008402563,0.02029886,0.007962461,-0.0015852136,0.01752283,-0.0016216066,-0.015261384,0.02859986,0.016764501,0.020745732,0.027530074,0.0011933536,0.004915601,-0.0063340836,0.014679095,0.022154057,-0.022316556,-0.021856142,0.0018365795,-0.01531555,0.0040150844,0.0016165285,-0.0061241887,-0.012200982,-0.024171757,0.023007179,0.020935314,-0.0020244692,0.039053977,-0.0038390437,0.020000944,-0.009181205,-0.005054402,-0.010799427,0.016453044,-0.0075291297,-0.0019415269,-0.026094664,0.0155457575,-0.0189447,-0.007292152,0.0017274003,0.025349876,0.005514817,0.00871402,0.0009919222,-0.020935314,0.010427033,-0.033041503,-0.004671852,-0.012539522,-0.01023745,0.012004629,-0.026297787,-0.024889462,0.020204067,0.009641619,-0.000735055,-0.008084335,0.017712412,0.006676009,0.002737096,0.013974931,-0.0030654797,-0.011029634,0.008260376,0.014435346,-0.021869684,-0.0065642907,0.016073879,0.005101798,-0.016764501,-0.002478113,0.0012221294,0.02319676,0.054464318,0.007962461,-0.005196589,0.00030743665,0.000026845164,0.009810889,-0.0076442333,-0.0035682116,-0.015924921,-0.020095736,0.019405114,-0.012431189,-0.015640547,-0.020840524,0.025187377,0.013893682,-0.00888329,-0.017807204,0.011537444,-0.010846822,-0.01429993,-0.00604971,-0.012898374,-0.011943691,0.008064023,-0.0014176363,-0.0047632577,0.039568555,0.008185897,0.016344711,0.010840051,0.0027743354,0.0048208097,0.015261384,-0.034422748,-0.022519682,0.0072718393,-0.0009623,-0.0040150844,0.021896768,-0.00024417197,0.0064322604,0.0061478866,-0.025999872,0.00571117,-0.006286688,-0.012261919,-0.0019330635,-0.017319707,-0.018931158,0.0512685,-0.005548671,-0.001912751,-0.005690858,0.0238603,0.005304922,-0.007183819,0.008226522,0.020393651,-0.0404623,-0.018551992,-0.0059176795,0.008124961,-0.04460603,-0.028789442,-0.019391572,-0.034368582,0.004147115,-0.01489576,-0.011727026,-0.00786767,-0.024266548,-0.021869684,0.0040049283,0.004502582,0.00871402,0.002742174,-0.015044718,0.017604081,-0.001332155,0.009614537,-0.0069129867,-0.004428103,-0.018809283,-0.009309851,0.012119732,-0.012817125,0.0007887982,-0.013446809,-0.008978081,0.0012940692,0.009201517,0.022587389,-0.035912324,0.0036867007,-0.0125462925,0.00021613664,0.010704635,0.008361938,0.006577832,-0.0051796623,-0.004431489,-0.008348397,-0.03504566,-0.0065879887,0.0027692572,-0.018998865,0.019526988,-0.012702021,-0.013358789,0.016845752,-0.020366566,-0.021192605,0.005406484,-0.004966382,0.010250991,-0.023169678,0.02266864,-0.018145744,-0.008355168,0.0074681924,-0.034124833,0.01717075,0.025620708,-0.022587389,-0.008531208,0.0015818282,-0.021625936,-0.00727861,0.0037747212,-0.021788435,0.033204004,0.002105719,0.0075697545,-0.00024099817,-0.01252598,-0.027137367,0.011584839,-0.032554008,0.0013770115,-0.016453044,0.013920765,-0.012024941,0.0016469972,-0.010210367,-0.025674874,0.0032161302,-0.0006267222,-0.015491591,0.020529065,0.00020386456,0.0048106536,-0.015952006,-0.012580147,-0.015410341,0.0033549315,-0.016954083,-0.013798891,0.026595702,0.013839516,0.04915601,-0.022546764,0.0011781192,-0.006709863,0.017116582,0.012688479,-0.008781727,-0.013230143,-0.02698841,0.017387414,0.012343168,0.016263463,0.004830966,0.0017536372,0.0091744345,0.0103593245,-0.012261919,-0.01641242,0.002048167,-0.011659318,-0.002550899,-0.007840587,0.0061648134,0.025065502,-0.020190526,-0.0005556288,-0.023156136,0.04287271,0.004407791,-0.017157208,0.036426906,-0.0060226265,0.03157901,0.019838445,0.014408262,0.013142123,-0.014096806,-0.013379101,-0.0009775342,0.024415506,0.02445613,0.011666088,-0.0044145617,0.00035356273,-0.03943314,0.0044348743,-0.006489812,0.000030283461,0.023278011,-0.023142595,-0.019703029,-0.0306311,-0.025255084,-0.03501858,-0.0016529215,0.009878597,-0.008490584,0.023156136,0.018971782,-0.010515053,-0.01100255,-0.024984252,0.03537066,-0.0153968,0.0022343642,0.030414434,-0.011219216,-0.007860899,-0.009973389,-0.0055859103,-0.006973924,0.0015166593,0.020745732,0.0045973733,-0.011124425,-0.01608742,0.003283838,-0.0057585654,-0.015518674,0.021300938,0.015166593,0.00059202185,-0.012553063,0.0015987551,0.007596838,0.0014819589,0.002161578,-0.0027624865,0.011862442,-0.023494676,-0.012004629,0.040733133,-0.007183819,0.038268562,0.025119668,-0.01903949,0.00786767,-0.0022428276,0.019919693,-0.0064525725,0.010704635,0.017874913,0.018078037,0.007684858,-0.008598916,-0.00694007,-0.0077728787,-0.0184572,0.020190526,0.031551927,-0.010501511,-0.0049122158,0.019743653,0.00081884366,0.021273853,0.0018585847,-0.004834351,-0.01066401,-0.010027555,-0.04579769,-0.00030701348,0.0043908637,0.016317628,0.004316385,-0.00888329,0.0028572776,-0.029331107,-0.0073056933,0.011645776,-0.004130188,-0.03596649,0.020935314,0.014489512,-0.0031061047,0.015613466,0.0058059613,-0.016249921,0.016182212,-0.0056299204,0.008693707,0.027733197,0.0062426776,-0.025959248,-0.014462429,-0.018375952,-0.028437361,0.008856206,0.001518352,-0.016263463,0.012031712,0.000021185198,0.0047632577,-0.00617497,-0.017712412,0.002246213,-0.0057484093,0.018240536,-0.0038796684,0.0015056566,0.007414026,-0.01912074,0.007921836,0.022194684,-0.01828116,-0.0065642907,0.023603009,-0.011198903,0.002466264,-0.019933235,-0.004868205,-0.0022411349,0.030739432,0.009032248,-0.0475581,0.018267618,-0.009330163,0.0018890533,0.004516124,-0.0009673781,-0.006327313,0.0018704336,-0.0052033598,0.009858285,0.025580082,-0.010027555,0.013974931,-0.02487592,-0.013514517,-0.010880676,-0.0016639242,-0.010217138,0.02403634,-0.008443188,-0.031660262,0.00087512593,-0.029493606,-0.006699707,-0.013947848,-0.014164514,-0.018335328,-0.011022863,0.017319707,0.017306166,0.041518547,0.0043705516,0.02266864,0.0032686037,-0.011225986,0.013575454,-0.033204004,0.025742583,0.019689487,-0.021219688,-0.003825502,0.010955155,0.031416513,-0.0015750574,0.025417583,0.004461957,-0.00073928677,-0.006303615,0.03003527,0.009397871,-0.0035986803,0.03732065,-0.007657775,-0.008727562,-0.011666088,0.0044044056,-0.0011468043,-0.028383194,0.0010266226,-0.005914294,0.013832745,-0.003927064,-0.0027912625,-0.021273853,-0.017495748,-0.0004993465,-0.015532215,-0.014652012,0.010697864,0.0074072555,-0.0032178229,-0.01750929,-0.010968696,-0.035803992,-0.007014549,0.016344711,-0.014706178,-0.02884361,0.001828116,-0.0052507557,0.006439031,-0.01362285,0.024808211,-0.011828588,0.021165522,0.010711405,-0.011679631,-0.007827045,0.0029893082,-0.008531208,-0.0021361874,0.0049833087,0.0046989354,-0.0012517517,-0.005745024,0.013846287,-0.019025948,-0.025783207,-0.0056163785,-0.014123889,0.022194684,0.014733261,0.0031467294,0.22944887,0.00004520038,0.0024899617,0.0609372,-0.019350946,-0.018890532,0.009919222,0.0032601403,0.0014514903,0.010088492,0.0055723684,-0.007048403,-0.017157208,-0.0009800734,0.0071635065,-0.0015158129,-0.03182276,-0.032364424,-0.022221766,0.015247842,0.030901931,0.0018839751,0.0046109147,-0.02445613,0.008212981,-0.011903067,0.00012980893,-0.0046853935,0.012566605,0.01905303,0.0033159994,0.009485891,0.020461358,0.0003842429,0.015207217,0.011483277,-0.004847893,-0.0003387516,0.026379038,0.02344051,0.012363481,-0.015775964,0.01151036,-0.0035106598,-0.033095673,0.00028670108,-0.0060700225,-0.006523666,0.008334855,0.021368645,0.0006660775,-0.011964004,0.00024290246,0.0084635,-0.009438495,0.01633117,0.0019110583,-0.016046796,0.011909838,0.014056182,0.00031611172,0.035993572,-0.014530137,0.006361167,-0.017576998,0.008111418,-0.039893556,-0.0056840866,0.00854475,-0.033474836,0.020461358,-0.0011721947,-0.007258298,0.037347734,-0.0027455594,-0.0027861842,-0.013480663,0.02411759,0.015884297,0.026216539,-0.023887383,-0.009350475,-0.0017756424,-0.002466264,-0.016128046,-0.026162371,0.012119732,0.005646847,-0.027083201,-0.020244693,0.028545693,-0.032445673,-0.010169742,0.0043705516,0.0074817343,0.02479467,-0.011043175,-0.018606158,-0.017996786,0.023345718,-0.034910247,0.05552056,0.0069129867,0.010528594,-0.016277004,0.00989891,-0.0077119414,0.0018856678,0.0035851386,-0.03975814,-0.026785286,-0.048126847,0.01903949,-0.005501275,0.0056637744,0.013636392,0.013318164,-0.028058195,0.019689487,0.010724948,0.006303615,-0.0030180842,0.024821753,0.019215532,-0.011144737,0.0045398213,-0.017698871,0.01574888,0.01936449,-0.05153933,-0.006818196,0.0026710806,-0.022167599,-0.03147068,-0.010785884,0.0030993337,-0.02166656,-0.010298387,-0.0117541095,0.023657177,-0.00423175,-0.01252598,0.023657177,-0.016019713,0.01396139,-0.0052338284,0.0036426906,0.012837437,0.00084761955,-0.024022799,-0.025404042,0.0032550623,-0.015410341,-0.00579919,-0.00012356711,-0.021680102,-0.027394658,-0.0374019,-0.014584304,-0.0045465925,-0.041166466,-0.024740504,0.013013478,-0.031037347,-0.02419884,-0.0003963034,-0.17463247,0.0068655913,0.009377558,-0.026907159,0.0029046733,0.0016893146,0.01209942,0.015640547,-0.009722869,0.0030688653,0.021978017,-0.000490883,-0.053705987,-0.00727861,0.0055892956,0.0021920465,-0.010487969,0.015369716,0.0012246685,0.0038221166,-0.0017053953,-0.025918623,-0.02766549,-0.03409775,0.0071431943,-0.019080115,-0.0016800048,-0.016182212,0.00053235417,-0.026419662,0.0020837137,-0.013060873,0.034991495,0.0069671534,0.0006042939,-0.0020667866,-0.02979152,-0.005321849,0.0062122094,0.0005907523,0.008016627,0.027218617,-0.011198903,0.014584304,-0.003910137,0.012668167,0.009858285,-0.01591138,0.0060361684,-0.015180134,0.03696857,-0.038133148,-0.01209942,0.022722805,0.02437488,0.005514817,0.01971657,0.0037679502,0.0019990788,0.011462965,0.00042507928,-0.002730325,0.00989891,-0.018050954,-0.016046796,-0.036860235,0.0061918967,-0.010941613,-0.0043773223,0.013724412,0.00047988046,0.009133809,-0.014706178,-0.02927694,0.0132436855,0.036670655,-0.002268218,0.03258109,0.0021598854,-0.010007243,-0.025580082,0.021097813,0.020204067,-0.0070957984,-0.005304922,0.0118962955,0.0065033534,0.012939,-0.013798891,0.0019923078,0.018985324,-0.013514517,-0.016629085,-0.03512691,-0.0035072744,0.011557756,-0.002251291,0.004417947,0.011225986,-0.0048377365,-0.00266431,-0.009032248,-0.0014159436,0.008172356,0.021856142,-0.002703242,0.0070348615,0.004180969,0.021476978,-0.029764438,-0.023156136,-0.0016656169,0.014706178,0.025349876,0.021815518,0.053787235,0.0134535795,0.0044991965,0.0253905,0.009668702,0.0189447,-0.016304087,-0.015329092,0.023007179,-0.0187822,-0.004925757,-0.09349121,-0.003622378,-0.0034801913,0.011943691,-0.016737418,0.01134109,-0.0042249793,0.030441517,0.0017705642,0.024862379,-0.0047260183,0.0000135416,-0.023670718,-0.0018331942,0.005196589,0.007346318,-0.024848837,-0.0015657475,-0.04736852,-0.0012407491,-0.012573376,0.008416105,0.003612222,-0.009756723,-0.018904073,0.007217673,-0.011307236,0.0144759705,0.019147823,-0.015302008,0.0040421677,0.0014997323,-0.027354032,-0.0019567613,-0.016778043,-0.003244906,-0.026081122,0.00060852565,0.012417647,-0.017414497,0.00041619263,-0.039947722,0.0028572776,-0.007833816,0.011611923,-0.016696794,-0.00093183137,0.009099956,-0.0060463245,-0.023278011,-0.016629085,-0.0048208097,-0.008747874,-0.013142123,0.016967624,-0.01515305,-0.011022863,-0.00034658035,0.016764501,-0.005897367,-0.0022022028,-0.0041268026,-0.013920765,0.018660326,-0.007651004,-0.014367638,-0.025024878,-0.013494205,-0.0014201753,0.0002488269,0.011286924,0.010088492,-0.0049460693,-0.008842665,-0.020745732,0.007116111,-0.00087597227,-0.009113497,0.0040286263,-0.006293459,-0.013798891,-0.03054985,-0.019269697,-0.00064068695,0.00389321,0.026880076,-0.015071801,0.0076103793,0.001656307,-0.014096806,-0.0026761587,0.017536372,0.0253905,-0.0016046796,-0.023237387,0.033231087,-0.021964476,0.000093521674,0.03217484,0.008517667,-0.040299803,-0.036589403,-0.042114377,0.023751967,0.016723877,0.0039135227,-0.015952006,-0.023061346,-0.004637998,-0.014110347,0.0026439975,-0.006235907,-0.032960255,-0.004956226,0.005264297,-0.0020329328,-0.005907523,-0.00778642,0.023697801,0.014516596,0.0023054574,-0.0055554416,0.009756723,0.00051034905,-0.0053455466,0.013521288,-0.012925457,-0.0038492,-0.012857749,0.023562385,-0.0063984063,-0.004976538,0.01278327,-0.024862379,-0.0092218295,-0.00033473142,0.009519745,-0.00855152,-0.00981766,0.004211438,0.0060869493,-0.018294701,-0.010819739,-0.00033769367,0.007136423,-0.008070794,-0.01362285,-0.014963469,0.0012619079,-0.016940542,0.01557284,-0.007251527,0.037699815,0.01151036,0.004922372,-0.023738425,-0.017441582,-0.028870692,0.0025932165,0.012952541,0.01337233,-0.04441645,0.034043584,-0.015329092,0.012722334,-0.013250456,0.015965547,0.0031416512,-0.01396139,0.003957533,0.019093657,-0.011361402,-0.030387351,-0.012282232,0.0021700414,-0.0070957984,0.0069129867,-0.011997858,-0.0109213,0.011666088,-0.027692573,0.019161364,-0.0016063723,0.004299458,-0.004147115,-0.001980459,0.015721798,-0.0012779885,-0.010366095,0.018497827,-0.00068638986,0.0040523238,-0.031768594,-0.00829423,-0.028464444,-0.00066269207,-0.0068926746,0.044443533,-0.002115875,0.009837973,0.00914058,-0.010142659,-0.002065094,-0.00027675644,0.0022479056,-0.0187822,-0.02547175,0.035478994,-0.022614472,-0.024713421,-0.0009216752,0.02716445,0.018971782,-0.016845752,0.034883164,0.006455958,-0.009215059,0.0021294167,0.0040760217,-0.026216539,-0.0118489005,0.024442589,0.01683221,0.0054301815,0.025580082,-0.011679631,0.032879006,0.013385872,0.002916522,0.004682008,0.028139446,-0.0075494424,-0.0056570037,0.0025458208,0.0024002485,-0.011611923,-0.016182212,0.015302008,-0.007989544,0.021680102,0.003092563,0.062724695,0.022519682,-0.0132910805,0.016913459,0.007901524,0.014123889,0.0042960728,0.024957169,-0.015261384,0.00051754306,0.002274989,0.002550899,0.041978963,-0.013737953,-0.0036833154,-0.016899917,-0.0019246,0.012160357,-0.034368582,-0.0023562384,0.045499776,-0.008124961,0.0115239015,0.0008408487,-0.012769729,-0.011869213,0.0019144438,-0.0076780873,-0.017143667,-0.011070258,-0.009892139,0.009492662,-0.016439503,-0.024713421,0.0060260124,0.014936385,-0.019919693,-0.014882219,0.0057145553,-0.0042249793,-0.024320714,0.011016092,-0.026541537,-0.018687408,-0.031524844,0.029574854,-0.029060274,-0.009208288,-0.025404042]},{\"id\":\"44104b6e-bda9-4c95-8975-76963da8cc30\",\"text\":\"I like the way it is already . You gave me an opportunity to make cash. Maybe by adding more known products \",\"vector\":[-0.00819438,-0.0042541185,-0.010698408,-0.014505622,-0.014000723,0.013345718,-0.03231356,-0.015133335,0.0052570943,-0.018572109,0.015065106,-0.001482289,-0.009981997,-0.006048558,0.0016119253,-0.00045628575,0.025449658,0.0027240685,-0.010752992,-0.0063146534,-0.014396455,0.009163241,-0.012424618,-0.01947274,-0.0007095883,-0.0018984899,0.023621103,-0.0129909245,-0.008378601,0.012376858,0.005243448,0.010398198,-0.01578834,-0.0029065828,-0.016839076,-0.00062558055,0.003314255,-0.0020605354,0.018885966,-0.006154314,-0.007982869,0.006635333,-0.0030856857,-0.02808332,-0.024248816,-0.004956884,0.0063965293,-0.0042609414,-0.0031641498,0.021069314,-0.014737603,0.014519269,-0.040282782,0.0022294037,-0.0041347165,0.021615151,0.03277752,0.012854465,0.011523987,-0.0020110689,0.0036025252,0.026172891,-0.02805603,0.0052673286,-0.015201565,-0.011032733,0.008242141,-0.019704722,0.006133845,0.0057415245,0.016497929,0.004182477,-0.010405021,0.026623208,0.023307247,0.019227114,-0.008105682,0.020605352,0.003491652,-0.0016127782,0.019827535,-0.020564415,-0.013796034,-0.01300457,0.034305867,0.0036980468,0.0025978438,0.0489343,-0.0135367615,-0.0116058625,0.017603248,0.016416052,0.005772228,0.019363573,-0.030894384,0.039136525,-0.0148740625,0.022720471,0.008876677,-0.014846771,-0.0029867527,-0.0036707548,-0.023839438,-0.016170425,-0.029666249,-0.0009415691,0.012383681,-0.0117559675,-0.00046182942,0.022734117,-0.009054074,0.020264205,0.009415691,-0.009306524,0.009422514,0.0009773896,-0.012827173,0.000655431,-0.022529429,-0.019759305,0.0045816205,0.013216082,0.02292516,0.021737965,0.008351308,0.00031215063,-0.0144783305,-0.0023317481,0.006321477,-0.00081918214,0.03493358,0.017507726,0.001119819,-0.0029492264,-0.019827535,0.018845027,-0.020687228,0.0123973265,-0.030430421,-0.003295492,0.026705083,0.03294127,-0.0020912385,0.009995643,-0.008897145,0.023989543,-0.0012758943,0.001963308,-0.0040357835,-0.023470998,-0.009095011,-0.018490234,0.02952979,0.017671477,0.011735499,-0.018080857,-0.0074370313,-0.0021048845,0.00782594,0.0055573047,0.016675325,-0.018026272,0.01565188,-0.013543584,0.011858312,0.031904183,0.047078453,-0.004230238,0.009026782,0.006423821,-0.0014387927,0.018149085,-0.026582269,0.01127836,-0.011687738,0.0040698983,0.012254044,0.011128255,0.0063965293,0.003385896,0.014778541,-0.00616796,0.028001446,0.015256149,0.004223415,-0.024317045,0.0044246926,-0.017248454,0.023839438,-0.006778615,-0.01622501,0.021778902,-0.014464685,-0.0135777,-0.665048,-0.014805833,-0.00092195306,-0.025408719,-0.000031476255,0.0110122645,0.0051888647,-0.00029168173,-0.016538866,0.03397836,-0.04306655,-0.0008375189,0.006457936,0.008289902,-0.00023624515,-0.028547283,0.035643168,-0.030130211,-0.029884584,0.0069560125,-0.013270666,0.015065106,-0.009477098,-0.010411844,0.029420624,0.01387791,0.0018080856,-0.012260867,-0.017234808,-0.0038993242,-0.0012613955,0.036789425,0.011619508,-0.016347824,0.062334605,-0.004049429,0.0051888647,0.014000723,0.008569643,0.020223267,-0.04847034,-0.026923418,-0.01850388,-0.015160627,-0.018326482,-0.0046566734,0.025818098,0.031986058,-0.0036673434,-0.020550769,0.016074903,-0.017848875,-0.008740217,-0.024098711,0.010555126,-0.012827173,0.012274513,-0.008358131,0.0023539227,0.024112357,0.01005705,-0.008801624,-0.034824412,-0.04082862,-0.03730797,-0.00014040382,-0.0010362377,-0.0023368653,0.0052741515,0.0030259846,-0.024753716,0.011053203,-0.02600914,0.016334176,-0.016907306,0.031385638,0.017780645,0.004018726,-0.0014694959,0.041674666,0.008842562,-0.03367815,0.004724903,-0.009402045,0.01652522,-0.005601654,0.011128255,-0.014287287,-0.014096244,0.0027564776,0.006805907,0.012915872,0.023020683,-0.0032119106,0.009074543,0.016975535,-0.0063521797,0.0041858885,0.004987587,-0.016702617,-0.0061645485,-0.013550407,-0.008480945,0.007866878,0.032859396,0.005700587,-0.0013765331,0.0006336828,0.015378962,-0.019090654,0.01454656,0.0010959386,-0.0045031565,-0.0028963485,-0.0063521797,-0.038836315,0.009047251,-0.01866763,-0.016579803,-0.026841542,0.0077508874,0.033132315,0.022420261,-0.011633154,-0.0029270519,-0.0007897581,-0.00044562487,-0.013973431,0.01337301,0.01622501,0.015187919,-0.01924076,0.008774333,-0.0067376774,-0.0044826875,0.0039300276,0.0056903525,-0.000981654,0.01258837,-0.045877613,-0.00043240536,-0.02483559,0.0034745946,-0.005008056,0.0057790508,-0.019923056,0.0067820265,0.0022242863,0.008433184,0.005935979,-0.009961528,-0.020264205,-0.037444428,-0.006154314,0.00042856747,0.0075120837,-0.003208499,-0.01054148,-0.005072874,-0.006601218,-0.0040221377,0.015883861,-0.010343614,-0.030648757,-0.015433545,0.010343614,-0.01454656,-0.0055982424,0.007218696,-0.021860778,0.005717644,-0.00391297,-0.0124996705,-0.0030720397,0.0013202436,0.0077440646,-0.018954195,-0.0063351225,0.004472453,-0.0063897064,0.0075393757,0.004687377,-0.0035308842,0.0017756765,0.03406024,-0.007948753,0.005205922,0.03526108,-0.02660956,0.023825793,0.015256149,0.013222905,-0.0011752556,0.00856282,-0.012158522,-0.012915872,0.014491976,0.010848514,0.02078275,-0.0027172456,0.0043701087,0.029120412,0.025463304,-0.02701894,0.01282035,-0.025026634,0.009374754,-0.015529067,0.0094293365,0.026855187,-0.012642954,-0.007491615,0.015378962,-0.0103709055,0.028547283,0.024003189,-0.016934598,-0.0011812258,0.0075461986,0.014273642,-0.020318788,-0.030648757,0.015488129,-0.030948967,-0.014587498,0.0043394053,0.011496695,0.011080494,0.006938955,-0.018244607,-0.013666398,0.0061986633,0.017316684,0.007280103,0.022938807,-0.00038656357,0.02269318,0.008569643,0.024658194,0.0006264334,0.0008123592,0.0067206197,0.0151742725,-0.016416052,0.023948604,0.012608838,0.016252302,-0.0052877977,-0.01498323,-0.0043530515,0.0042711757,-0.0060383235,-0.00858329,-0.005137692,0.018476587,-0.040610284,0.004796544,0.017343976,0.014096244,0.02547695,0.0046669077,-0.0018592578,-0.010800753,-0.015433545,0.010254916,0.018613048,0.01505146,-0.02151963,0.005710821,0.0012946575,0.0070003616,-0.009968351,-0.00076203985,0.0060042087,0.02731915,0.0076280744,0.0020264206,-0.002379509,-0.02580445,0.001192313,-0.01712564,-0.0015291969,0.0016920952,0.00018230108,-0.0042063575,-0.002575669,-0.0035308842,-0.018162731,0.009838714,0.03160397,0.0033483698,0.025968203,-0.00554707,0.018176377,0.00069679524,0.0005040465,0.022406615,-0.03728068,0.010889451,-0.017221162,0.014369163,0.009722725,0.002260107,-0.017958043,0.023989543,0.0038140372,0.0018097913,-0.010200332,-0.015501775,-0.020032223,0.018885966,-0.012076647,0.0016596861,-0.00061875756,0.028574575,-0.0030873914,0.0016503045,-0.013720982,0.0117559675,0.01682543,0.015378962,-0.016184071,-0.028711034,0.021778902,0.09683151,0.010582418,-0.013864264,0.025326844,-0.013202436,0.00042217094,-0.0018200257,-0.01104638,0.021697028,-0.004677142,-0.00015309027,-0.0104186665,0.0075393757,0.005151338,0.0092314705,-0.022038175,-0.0032187335,-0.026937064,-0.0031982646,-0.010500542,0.01944545,0.015829278,0.011510341,0.020523477,0.02909312,0.05321912,0.028656451,0.02142411,0.0053014434,-0.015529067,-0.0052093333,0.006185017,-0.02517674,0.00034541258,-0.00727328,0.023334539,-0.014028015,0.021778902,-0.011435288,-0.0020178917,0.009941059,0.0047931327,0.0062020747,-0.01666168,-0.009238293,-0.012254044,-0.008890322,0.0063999407,-0.0038549749,-0.006140668,0.010091164,-0.0047726636,-0.021997238,0.003295492,-0.00038741645,0.0041790656,-0.016538866,0.00037547626,-0.029447915,0.011121432,-0.016648034,-0.016375115,0.005171807,-0.0072596343,-0.0073619788,-0.038126726,-0.03321419,-0.018763153,-0.018121794,-0.0039573195,0.0021577624,-0.0033057262,-0.012915872,-0.0074302084,0.021997238,-0.0031368579,0.011448935,-0.012410972,0.016497929,0.021178482,-0.0016699205,-0.034114823,0.015242502,-0.0271554,-0.010705231,-0.02007316,-0.019063363,-0.015392608,-0.015460838,0.0062430124,0.002227698,-0.006976481,0.04142904,-0.016006675,-0.0013876203,-0.0017006239,0.008992667,-0.0018507291,-0.003742396,0.00036225677,0.008528706,0.015624588,-0.0067206197,-0.016061258,0.01079393,0.024071418,0.023075266,0.0014976407,-0.01005705,-0.009135949,0.01689366,0.01608855,-0.0012852759,0.012281336,0.0077918256,0.031194594,-0.000040458046,0.010459605,-0.002478442,0.015297086,0.00017622438,-0.0388909,0.023743916,-0.009511213,-0.013700512,-0.0125474315,0.021328587,-0.019090654,-0.017876167,-0.002649016,-0.00899949,0.034851704,-0.033132315,-0.027523838,-0.016811784,-0.014710312,-0.008665165,-0.006509108,-0.030157503,-0.02446715,-0.031112717,-0.017412206,0.0012102233,-0.012881757,0.0032664943,-0.038754437,-0.013823326,0.014996876,-0.010589241,0.0016503045,-0.0017202399,-0.0045816205,-0.012922695,0.010411844,0.015092397,-0.013106914,-0.0041142474,0.0061577256,0.03850881,0.035424832,0.020755459,-0.011523987,0.028711034,-0.025517887,0.004922769,-0.0029935755,0.0044246926,0.0018694922,-0.017071057,0.029611666,0.020523477,0.016839076,0.031658556,0.0009330404,-0.0010268561,-0.0051888647,-0.014915001,-0.0024204466,-0.029611666,-0.015774693,0.002101473,0.0033313124,-0.011701384,0.0077781794,-0.015078751,-0.0015462543,0.019554617,-0.0034319512,0.024480795,0.004138128,0.031194594,-0.023252662,0.0032664943,0.008126151,-0.0015360198,-0.024262462,-0.0021799372,-0.025981849,-0.017889813,0.0209465,0.015406254,0.0050421706,-0.0008626786,0.0028639394,-0.01185149,0.025899973,-0.00948392,-0.031822305,-0.019650137,-0.017726062,0.0101730395,-0.017357621,-0.02775582,0.010875805,0.0148740625,0.01896784,-0.014764895,0.008378601,0.0071845814,-0.019650137,0.00801016,-0.0026797194,0.03231356,0.009286054,0.012677068,0.035179205,0.016620742,-0.017807936,0.010063873,0.0030873914,-0.0016255713,-0.0023726858,0.017753353,-0.017207516,-0.028738325,0.009695432,0.00752573,-0.020032223,-0.0013475355,0.0066319215,0.00007116139,0.018408358,-0.028356241,-0.0025449658,0.0036741663,-0.005403788,-0.006205486,0.02205182,-0.002787181,-0.008706103,-0.02048254,0.03264106,-0.011694561,0.018053563,-0.0016989182,0.0050694626,-0.018708568,-0.0057790508,-0.010664294,0.018981487,0.0038822668,0.018340128,-0.029420624,0.023129849,0.00554707,0.004895477,-0.007327864,-0.015092397,-0.012683891,0.018026272,-0.0045031565,0.0018933726,-0.011244246,0.0077440646,0.006522754,-0.00948392,-0.0108143985,-0.018353775,-0.002214052,0.001416618,0.0031061545,0.009149595,-0.04303926,0.00063624146,-0.010077518,-0.009859184,0.0094293365,0.01749408,0.04789721,-0.012909049,-0.01866763,-0.004329171,0.03436045,0.015774693,0.020004932,-0.0010822928,0.012486025,0.024958404,0.004803367,0.018462941,0.01763054,0.006232778,-0.022461198,-0.0012110762,-0.012247222,-0.017412206,0.003650286,-0.0073824474,-0.032804813,-0.0006810171,0.0123018045,-0.010875805,0.0001957338,0.0034353626,0.016757201,0.008555997,0.019036071,-0.022352032,-0.02547695,0.00057824625,-0.0058950414,-0.0003660947,0.020045869,-0.020100454,-0.041701958,-0.011646801,-0.004837482,0.0042268266,-0.046587203,-0.0035888792,-0.028902078,0.017876167,0.009586265,-0.009954705,0.016811784,0.002985047,-0.017903458,0.023211725,-0.0006754735,-0.006127022,0.0036468746,0.015938444,0.0144783305,0.020346079,-0.012779413,-0.0007232342,-0.0014515857,-0.0119538335,-0.034005653,-0.005151338,-0.02071452,0.017726062,0.014805833,-0.026486749,-0.01829919,-0.008897145,-0.03831777,-0.009511213,0.000025066398,0.016429698,0.005137692,0.006294185,-0.00208271,0.030594172,0.011394351,0.0015232268,-0.015297086,-0.0037594533,-0.026800605,-0.005192276,0.0020758868,-0.005495898,-0.029693542,0.0025603175,0.01060971,0.02322537,0.023907667,0.004857951,0.0022089346,0.0041006017,-0.003466066,0.047951795,0.022461198,0.0012468968,0.026213828,-0.029311456,-0.013366187,0.018776799,0.011810551,0.014028015,-0.0022498725,-0.0071436437,0.019390864,0.0028571163,0.008760686,-0.00014360208,-0.00844683,-0.006860491,0.00644429,0.003807214,-0.013543584,0.030539589,0.01505146,-0.018585755,-0.0028690565,0.024617257,0.0075530214,-0.0063897064,0.01926805,-0.020223267,0.01176279,0.014751249,0.023825793,-0.0058745723,-0.005448137,-0.0017688535,-0.015433545,-0.00752573,0.0058950414,0.013168321,-0.021710673,-0.008242141,0.002292516,-0.0052468595,-0.013632283,-0.020496186,0.005850692,-0.008692456,-0.008699279,0.00226693,0.008917615,-0.04306655,0.013454886,0.010234446,0.0011496695,0.014969584,0.23536499,0.00998882,-0.005325324,0.03378732,0.019963995,0.005881395,0.009900121,0.00948392,0.008426361,0.031767722,0.028137906,0.014259996,-0.025163094,-0.015078751,0.0052400366,-0.017289393,-0.028601866,-0.015774693,-0.020659937,0.0057858736,0.015310733,0.0042268266,-0.020318788,0.0033603099,0.030757925,0.013311604,0.019036071,-0.012670245,0.008139797,-0.011005442,-0.017398559,0.004451984,0.0013586228,-0.011216953,-0.028274365,-0.008760686,0.004540683,-0.02048254,0.0077440646,0.02154692,0.0034728888,-0.0015752519,0.004571386,-0.041101538,-0.002990164,0.026773313,-0.0121994605,-0.0012400738,0.01645699,0.022488492,-0.011264714,-0.014996876,0.039682362,0.018613048,-0.007696304,-0.007293749,0.0013270666,-0.015747402,-0.014137182,-0.0044485726,-0.015897507,0.03245002,-0.003762865,0.0042268266,-0.028165197,-0.0069662468,-0.00702083,0.0039811996,0.02306162,0.0022908102,0.022215573,-0.026978001,-0.00019488092,0.003841329,-0.018763153,-0.01337301,0.014205412,0.015460838,0.03144022,0.015310733,-0.01252014,0.015638234,-0.0052468595,-0.03026667,-0.012172168,-0.024808299,0.012779413,-0.023771208,-0.012772589,0.006754735,-0.008508237,-0.00874704,-0.01565188,-0.024999341,-0.017207516,0.013987077,-0.007218696,0.018708568,-0.0029236402,0.0025944323,-0.012240398,0.013284312,0.01079393,-0.004513391,0.0076007824,-0.010650648,-0.01615678,0.01189925,-0.0030396306,-0.022038175,0.03302315,-0.025818098,0.014764895,-0.0036298172,-0.011619508,-0.0034745946,0.010166217,0.00987283,0.0063487682,0.002701894,-0.004881831,-0.024685485,0.005226391,0.015993029,-0.0056801178,0.015146981,-0.0034029535,-0.007307395,-0.00029317426,-0.044049058,0.0047726636,0.007218696,-0.008521883,-0.009374754,-0.0063078306,0.009361107,-0.009695432,-0.0078054713,-0.009408868,0.008371777,-0.030293962,0.040692158,0.0046566734,-0.009538504,0.017644186,-0.02071452,-0.009729547,0.002662662,0.0057142326,0.009668141,-0.022775056,-0.001304039,0.0051240465,-0.009340638,0.017603248,0.00029445355,-0.018858673,-0.01035726,0.026541332,-0.02547695,-0.039109234,0.0065773376,0.024439858,-0.0024136237,-0.01947274,-0.024071418,-0.17608707,0.020523477,0.0068161413,0.0111623695,0.013789211,-0.015801985,0.028902078,0.000045761837,-0.032531895,-0.008187558,0.021847133,0.01836742,-0.016129488,-0.023293601,0.009613557,-0.021997238,-0.033841904,0.0121516995,0.029366039,0.019854827,0.019022426,0.005008056,0.0101730395,-0.019500032,0.011824197,0.017862521,-0.002087827,0.014068953,-0.020223267,-0.010254916,-0.014955938,0.00076843635,0.01930899,0.01263613,0.010957681,-0.010889451,-0.011442112,-0.00087589805,0.005315089,0.011271537,0.030676048,0.013570876,0.009961528,0.027769465,-0.00035564703,0.009354284,0.025695285,-0.0032357909,-0.0061816056,-0.018585755,0.012097116,-0.015092397,0.007621251,0.017657831,0.009695432,0.017562311,-0.0049602953,-0.004264353,-0.009695432,-0.013652752,0.0022225806,-0.0020707697,-0.0137346275,-0.0029628724,-0.0049909987,-0.03395107,-0.007914639,-0.0011692855,-0.008255787,0.010575595,-0.012861288,-0.0004049003,0.005021702,-0.005072874,0.0005825106,0.0019462506,-0.027660297,0.0029526378,-0.010268562,0.016716262,-0.007839587,0.012479202,-0.026636854,0.004083544,-0.012042533,-0.008876677,0.020373372,0.010350437,-0.023034329,-0.011155547,0.0034694774,-0.0059939744,-0.02403048,-0.026336642,-0.007450677,0.044840522,0.009047251,0.018012626,0.0017535018,-0.017644186,0.006706974,0.00591551,-0.01102591,0.028601866,0.015801985,-0.0064067636,0.015378962,0.010657471,0.024071418,-0.010166217,0.0017944396,0.019622846,0.016293239,0.037226096,0.0047351373,0.025053926,0.00536285,-0.007662189,0.0056152996,0.009040428,0.031522095,-0.012383681,0.00048997416,0.0038379175,-0.007703127,-0.0048204246,-0.12499671,-0.027946861,0.008092036,-0.012526963,-0.026227476,0.027291859,0.009968351,0.020236913,-0.006949189,0.010070696,-0.016743554,-0.020523477,-0.016375115,0.0020503008,0.022447553,-0.019117946,-0.015228856,0.004264353,-0.025517887,0.014901354,-0.01362546,-0.018585755,-0.007443854,-0.036025252,-0.012915872,-0.008419538,-0.022215573,0.016770847,0.00444175,-0.011496695,-0.009538504,-0.024508089,0.024194231,-0.031958766,-0.02128765,-0.01028903,-0.014259996,-0.0035274727,0.022120051,-0.01940451,-0.00070532394,0.0024016835,-0.017371267,-0.014410101,0.015392608,-0.018531172,-0.006410175,0.05581185,0.0070003616,-0.016757201,-0.0256407,0.012758943,-0.0131410295,-0.010070696,0.0010950858,-0.0056971754,-0.0017893225,0.029502498,-0.0042336495,0.011571747,-0.018462941,-0.021601506,-0.03627088,-0.0047010225,-0.0043701087,0.0017466788,0.011005442,0.010405021,0.008132974,0.001172697,-0.0024289754,0.01528344,-0.016593449,-0.0048988885,-0.02577716,0.005533424,-0.037253387,-0.030212086,0.036461923,-0.0069082514,-0.026200183,-0.010077518,-0.00037824808,-0.046778243,0.033432525,-0.008173912,-0.001317685,0.02151963,-0.0012213106,-0.01703012,-0.0035820564,0.0058745723,0.031467512,0.015378962,-0.015979383,0.0015257854,-0.011216953,-0.022502137,0.04699658,-0.011496695,-0.021819841,-0.029802708,-0.019036071,0.007129998,-0.013106914,-0.001712564,-0.0027547718,-0.02299339,-0.016743554,-0.004400812,0.010787107,-0.010084341,-0.0035274727,0.034442324,-0.024494443,-0.016511574,0.006635333,-0.037526306,0.019759305,0.032586478,0.019895764,-0.008992667,0.013973431,-0.012718006,0.023266308,-0.009797777,0.0116058625,0.03174043,-0.009518036,0.020018578,-0.004677142,-0.019868473,0.0039197933,-0.0077713565,-0.0019001956,0.02343006,-0.0007970075,-0.010596064,-0.02520403,0.02115119,0.007614428,-0.037417136,-0.038563397,-0.019158885,0.008440007,-0.014287287,-0.022870576,-0.016061258,-0.021137543,-0.019022426,-0.0016878308,-0.018271899,0.0048988885,0.015583651,-0.008057921,-0.025163094,-0.019036071,-0.0071845814,0.0172621,-0.008576467,0.0021355879,-0.018326482,0.032122515,-0.0037287502,-0.0038106255,-0.041401748,0.022979744,0.009279232,-0.0023556284,-0.0027701235,0.04732408,-0.023771208,0.0027291859,0.009941059,0.009456629,0.008037452,0.034851704,-0.005850692,0.013427594,-0.017535018,-0.022106405,0.020018578,0.023320893,-0.006642156,-0.0005415728,0.010507366,0.0053662616,0.020741811,0.0061440794,0.009381576,-0.024508089,0.011878781,-0.018708568,-0.005298032,-0.014191766,0.0053799073,0.010350437,0.0025142625,-0.010425489,0.00425753,-0.0025296141,0.021478692,0.023293601,0.014928646,-0.007696304,-0.011776437,-0.003749219,0.016839076,-0.011810551,-0.010200332,-0.008344485,0.035834208,0.03245002,0.00681273,0.013618637,0.007355156,-0.01102591,0.009142772,-0.0015761048,-0.024385275,-0.014669374,0.015924798,0.036189005,0.00054413144,0.013379834,-0.024221525,0.023443706,0.02087827,0.0011112903,-0.025449658,0.035643168,0.011844667,-0.011592217,-0.0016306886,-0.015215211,-0.037990265,-0.008617404,-0.013052331,-0.001298069,0.033487108,0.0011744028,0.059332497,0.004868185,-0.01454656,0.014764895,0.0038003912,0.011066848,0.008187558,0.016743554,-0.03291398,0.0048715966,0.0077372417,0.0039300276,0.021942653,-0.0321771,-0.0046157353,-0.009197356,0.0021697027,0.021642443,-0.018913258,0.008678811,0.00678885,-0.019963995,0.0073892707,-0.00027227894,-0.013611814,-0.025354136,0.023279954,0.004837482,-0.019950349,-0.042548005,-0.0038379175,0.030212086,-0.020796396,-0.0011709912,-0.026991647,-0.011551279,-0.00538673,0.027851341,-0.02403048,0.015433545,-0.015870215,0.011380705,-0.020004932,-0.024044126,0.004322348,0.0011394351,-0.014191766,-0.004823836,-0.020223267]},{\"id\":\"46a0e134-1ebb-4698-86bb-5eebf1440f56\",\"text\":\"I used the wrong handle from my TikTok. Tryin to earn some cash.   And i messed up \",\"vector\":[-0.033023134,-0.006310009,0.0024734975,-0.037063614,0.000787537,0.006183744,-0.0069542835,-0.0019571064,0.026573911,-0.0027972537,0.011247291,-0.004487261,-0.0017628527,0.0060153906,0.015540299,-0.020059936,0.0056916345,-0.011046562,-0.012820747,-0.021044154,-0.05423564,0.008527739,-0.012341587,0.007957928,-0.019205218,-0.015022289,0.023167996,-0.0016114966,0.01664107,-0.008721992,-0.01460788,-0.0090651745,-0.013053851,-0.017534636,-0.031572707,-0.0082816845,-0.0027308837,-0.013047376,0.00097045925,-0.002544724,0.036623303,0.0048336806,0.0030789217,-0.017327433,-0.020461394,0.021432662,-0.041285392,0.0018405541,-0.008838545,0.011940129,-0.010308398,0.0015823585,-0.024631374,-0.0000757286,0.0036616828,0.009524908,0.039291054,-0.0019133992,0.00076163653,0.008780269,-0.01921817,0.015151791,-0.017288582,-0.015410796,-0.0053355023,-0.019451274,0.001382439,0.004105229,-0.014685582,0.0008919484,0.010839358,-0.029241662,0.00860544,0.012587641,0.02864595,0.003966014,-0.017275631,0.0025916686,0.040715583,0.025071682,0.021989523,-0.019852731,-0.0015532204,0.0059506395,0.016796473,-0.0137013635,0.007932028,0.026910616,-0.0022646748,-0.015553249,0.00031424587,0.014789185,-0.009460157,0.0024945417,-0.0017029577,0.024747925,-0.03372245,0.022313278,-0.021031205,-0.014672632,-0.022261478,-0.013325806,-0.010463801,-0.0070060845,-0.020008134,-0.011318518,0.02025419,-0.010968861,0.012982625,-0.019477174,-0.008501838,0.0075370446,0.0045261118,-0.02244278,0.032323822,0.0051962873,0.008372336,-0.0027681156,-0.013429408,-0.011169589,0.0065107374,0.016019458,-0.00083367224,0.010198321,0.0116681745,-0.020474343,-0.021134807,-0.0006349669,0.0011388125,-0.011305567,0.01670582,0.00884502,0.018946214,0.019490125,-0.0034059153,0.016187811,-0.0051671495,-0.010994761,-0.02183412,-0.016265513,0.011564572,0.024709074,-0.006264683,0.011583998,-0.013008525,0.010696906,-0.009932841,-0.024553671,-0.0018211288,-0.012555266,0.013377607,0.0068895323,-0.0041214167,-0.0056398334,-0.0006859585,0.024216965,0.0005329837,0.01355891,0.000100920886,-0.019956334,-0.020487294,0.036882307,0.012250936,-0.022170827,0.0044775484,0.018039696,0.0041343668,0.009945791,0.0043286206,-0.026807016,-0.00885797,0.0041214167,-0.011324992,0.02129021,-0.009019848,0.0063391468,0.007122637,0.0039983895,-0.0007381642,-0.015397846,-0.021277258,0.031572707,0.014957537,0.023323398,-0.0025398675,-0.025952298,0.004956708,0.011350893,-0.0106321545,-0.025615592,0.0042088307,-0.0005487668,-0.0055653695,-0.0004362615,-0.64813405,-0.025227085,0.013830866,0.018233951,-0.02495513,0.015514398,-0.0049372823,-0.01352006,-0.02817974,0.045481272,-0.0029040934,0.0012545553,-0.007083786,0.0059668273,-0.004089041,-0.027014218,0.036571503,-0.0074010673,-0.006779455,0.007608271,-0.016822373,0.0022517245,-0.0068830573,0.011046562,0.0113767935,-0.028930856,0.00935008,-0.008508313,-0.0018389353,0.016563369,-0.0029785573,0.025421338,0.028335145,-0.0065431134,0.07474884,-0.000011382054,-0.0009672217,0.009952266,-0.0017644714,0.007601796,-0.05667029,-0.013753165,0.011927179,-0.021730518,0.0031112973,-0.0312878,0.029060358,-0.0045746756,0.0037652848,0.0054455795,0.00835291,0.0007179294,0.0152683435,0.0008211267,0.0062290695,-0.015954707,0.005095923,-0.0064686495,0.021497414,0.00080898585,-0.025783945,0.004040478,-0.015436697,0.004963183,-0.024307616,0.016252562,0.005746673,0.015216542,0.013507109,-0.01095591,-0.0004459742,0.013429408,-0.009272378,0.025175283,-0.010599779,0.033541143,0.0059635895,-0.026224254,-0.011253766,-0.008540689,-0.0024443595,0.010658055,-0.008093906,0.008346436,0.010599779,-0.005872938,-0.020824,0.015566199,-0.0046005757,0.02140676,0.026651612,0.015346045,0.009142876,-0.015151791,0.03281593,0.00007942145,-0.0074593434,0.013688413,0.008242833,0.005937689,0.009259428,0.010774607,0.020772198,0.0043804217,0.0207981,-0.011603422,0.012568217,0.016317314,0.031598605,-0.016395016,-0.0014148147,-0.026431458,0.013325806,0.003541893,-0.0056398334,-0.036701005,0.016861225,-0.004746266,0.02237803,-0.044600658,0.02957837,-0.01983978,0.026483258,-0.0028344856,0.009473107,0.017016627,0.0033670648,-0.0129049225,0.0047948295,0.00079967786,-0.005927976,-0.029422965,0.018505905,-0.008825595,-0.010334299,0.011694075,0.0017240018,0.0064880745,0.00074949564,-0.010288972,-0.0043286206,-0.028956756,0.004244444,0.0024297903,0.006818306,-0.027843036,0.01877786,-0.002004051,0.021626916,0.011687599,-0.0077766245,-0.028050238,-0.019477174,-0.013688413,-0.011117789,-0.012833697,-0.0019117804,0.0032764128,-0.023258647,-0.035561383,-0.028257443,0.041855205,-0.029448865,-0.007284515,-0.023284547,0.0016527754,-0.005406729,0.010845833,-0.011344418,-0.028982656,-0.0063779973,-0.0006762458,-0.023038493,-0.01094296,0.014840985,0.01766414,-0.00572401,-0.0037555723,-0.009149351,0.009414831,0.003061115,0.009019848,0.0036713956,0.011933655,0.013999219,0.015151791,-0.017379234,0.044497054,-0.014102821,0.036804605,0.0030530212,-0.013125077,-0.0056171706,0.009647936,-0.0014755189,0.0061707934,0.03183171,0.011324992,-0.011389744,0.013377607,0.0077766245,0.003512755,0.01666697,-0.02132906,-0.0016511567,-0.029811474,-0.0013095939,-0.02755813,0.010042918,0.022792438,-0.0051865745,-0.008877396,0.003910975,-0.018298702,-0.0006612721,0.022740636,-0.010522077,0.02400976,-0.0070125596,0.021665767,-0.010742231,-0.01614896,-0.008417661,-0.0208758,-0.0065690135,0.019671427,0.01070338,-0.014815085,-0.0024945417,-0.017081378,-0.0056754467,0.028309245,0.011655224,0.014361826,0.012768946,-0.007705398,0.002439503,0.010968861,0.026146552,-0.021717567,-0.014258224,-0.007349266,0.012289786,-0.008372336,0.02596525,0.01713318,0.040275272,-0.027791234,-0.003321739,0.0068442067,-0.018259851,0.009796863,-0.02442417,-0.015812254,0.0044257473,-0.048822436,-0.004548775,0.014711482,0.02504578,0.026858816,-0.007925552,0.009634985,-0.004046953,-0.026120652,0.03804783,0.007608271,0.01148687,-0.0052966517,0.00093484606,-0.0019101617,-0.013947418,-0.011881853,-0.011564572,0.0053031268,0.017728891,0.0011849478,0.0066240523,-0.030536687,0.010204796,-0.0064168484,-0.006300296,-0.02753223,0.028283343,-0.0043383334,0.002114128,-0.0024200778,-0.0009672217,0.011940129,-0.0051898123,0.007044935,-0.0012966436,0.034628965,0.008721992,0.012814271,0.006831256,0.000490086,0.03019998,-0.013986269,0.023051443,0.010152995,0.025006931,-0.0181951,-0.018933265,0.0043966095,0.0047980673,0.04436755,-0.005345215,-0.0014366682,-0.001856742,-0.009499008,0.018622458,0.0025155859,-0.012361012,-0.0037555723,-0.014335926,-0.013105651,-0.02758403,-0.014491328,0.023530602,0.012212085,-0.0101011945,0.0066305273,-0.04566258,0.015734551,0.09028914,0.011577522,-0.013390557,0.025745094,0.01723678,0.0072715646,-0.010386099,-0.027661731,0.0026871767,-0.0057790484,0.020888751,-0.015902905,0.0060445284,0.030355383,0.017884294,-0.01976208,0.0073622162,-0.014348876,0.005827612,-0.02913806,0.025304787,-0.0021578353,0.0062258323,0.008398237,0.017728891,0.03222022,0.015346045,0.019101618,-0.0042703445,-0.0156698,-0.030329483,-0.0057596234,-0.015255393,0.014853936,-0.0044645984,0.037581623,0.015708651,0.022170827,0.021497414,0.0060995673,0.009563759,0.0018794049,0.011104838,-0.019036865,-0.0031825237,-0.016731722,0.006980184,-0.001386486,-0.012697719,-0.009356555,0.020772198,0.010586828,-0.0076794974,-0.012030781,0.04061198,0.0058340873,-0.009524908,-0.014931637,-0.018583607,-0.0044581234,0.0025301548,-0.03846224,0.0075370446,-0.007388117,0.006057479,-0.0040275273,-0.009790388,-0.020616796,-0.011201966,-0.006986659,-0.00076649286,0.002632138,-0.02704012,0.026703414,-0.018169198,-0.00020841806,0.026211303,-0.008462988,0.01983978,0.02704012,0.016343214,-0.04263222,-0.025201185,-0.028438747,-0.013299906,0.028231543,0.031676307,0.012095532,-0.015074089,0.002638613,0.03592399,0.011532197,0.0363643,0.0016754385,0.022960791,-0.002831248,0.024100414,0.02758403,-0.006837731,0.007245664,-0.0074593434,-0.019464225,-0.018894413,-0.0065431134,0.012937299,-0.009434257,0.008955097,0.01977503,-0.021575114,0.0020947028,0.016796473,0.01880376,0.00676003,0.011855952,0.019049816,0.008223408,-0.017249731,0.025356587,0.01195308,0.0015985463,-0.033437543,-0.033074934,0.02135496,0.00059571146,-0.004111704,0.0047980673,0.018363453,-0.041777503,-0.02025419,-0.00988104,-0.012963199,0.008093906,-0.014374776,-0.0013541104,-0.04431575,-0.015656851,-0.0071938634,-0.0036131195,0.007880227,-0.020215338,-0.027299125,-0.03488797,0.005937689,-0.023582403,-0.0046556145,-0.033126738,-0.02496808,0.025227085,0.022520483,0.027169622,0.006578726,0.0011299092,-0.026703414,-0.016809423,-0.0042865323,-0.015397846,-0.0016624882,0.012076107,0.0312878,0.023310447,0.028335145,-0.019632578,0.022701787,-0.009790388,-0.009997592,-0.008676667,-0.01147392,-0.009712687,-0.04050838,0.028879054,0.02182117,0.010405525,0.029889174,0.016252562,-0.02856825,-0.004548775,0.0016106872,0.0074528684,-0.023815507,-0.020124687,-0.019179318,-0.0071032112,-0.0048757684,-0.007977353,-0.015475547,-0.002847436,0.012458139,0.018130349,0.0031760486,0.026677512,0.0032764128,-0.01923112,0.0032553687,0.0024524534,0.017599389,-0.006656428,-0.030458985,-0.0075823707,0.010696906,0.0068053557,-0.013468259,0.008955097,-0.020552045,0.0069348584,-0.031080598,0.0363902,0.014322975,-0.019438323,-0.003907738,-0.0208758,-0.018078547,-0.03240152,0.0085212635,-0.0039530634,0.019567827,0.025822796,-0.019917483,0.007129112,-0.021186607,-0.021950671,-0.018415254,-0.009291803,0.01302795,0.006264683,0.026832916,0.013779065,-0.001834079,-0.018402303,0.038332738,0.020953503,-0.006960759,0.017249731,0.02758403,-0.016537467,-0.016356165,-0.002321332,-0.0033444017,-0.02596525,-0.002144885,0.013973318,0.010567403,-0.00990694,-0.019800931,-0.010049393,-0.022624085,0.037244916,-0.0066758534,0.012801321,0.015320145,-0.032505125,-0.021147756,0.040896885,0.016420916,0.02029304,0.002640232,0.0021837356,-0.01713318,-0.004348046,-0.017638238,0.01274952,0.0038915498,0.008016204,-0.03284183,0.03607939,-0.0036325448,-0.02186002,-0.010774607,-0.028853154,-0.01353301,0.017327433,-0.03395555,0.016019458,0.00081384217,0.013053851,0.009622035,0.002219349,0.001042495,-0.041777503,-0.012607067,-0.004691228,0.010871734,0.033204436,-0.015851105,0.0013063564,-0.019593727,0.0058340873,-0.003172811,-0.020862851,0.033023134,-0.034706667,-0.017832493,-0.0036066442,0.019166369,0.014996388,0.02647031,0.005176862,0.019127518,0.025032831,-0.021601016,0.018221,-0.028386945,0.008624866,-0.013688413,0.018000847,-0.004607051,-0.027635831,0.004691228,-0.041388996,-0.023854358,-0.035509583,0.013610711,0.0182728,-0.0018454104,0.0026450884,0.023802558,0.008113331,0.003852699,-0.02817974,-0.011558097,0.011933655,-0.008864446,-0.00887092,0.0065042623,0.016356165,-0.0075111445,-0.014491328,0.009194677,-0.021510363,-0.0234788,-0.0098486645,0.028930856,0.021070056,-0.020085836,-0.00020315703,-0.028024338,0.013882667,-0.0039465884,0.0045228745,-0.004564963,0.015022289,0.014892786,0.013338756,0.015061139,0.028801354,0.010470276,0.011273191,-0.0043318584,0.0035677936,-0.010327823,-0.006708229,-0.030484885,-0.009071649,0.0034480037,-0.041311294,-0.023802558,-0.008139231,-0.042943023,-0.032531027,0.003548368,0.015294244,0.030821592,0.0065075,-0.023051443,0.029034458,-0.0043221456,0.0038915498,-0.033178538,-0.016796473,0.0048013045,-0.017534636,-0.032064818,-0.009738587,-0.026807016,-0.0071485373,0.01403807,0.049366347,0.014866886,0.009142876,0.0071096867,0.008424137,-0.00937598,0.026781114,0.014944587,-0.009032799,0.035146974,-0.01974913,-0.0076341718,0.0053128395,0.017832493,-0.010968861,-0.001796847,0.017858393,-0.008462988,0.021510363,0.00391745,0.0095831845,-0.01820805,0.0036325448,0.02862005,-0.0055783195,-0.012581167,0.02028009,0.03175401,-0.030122278,0.015540299,0.012652393,-0.01815625,0.0048466306,0.013882667,-0.018233951,0.017482836,0.006643478,0.03019998,-0.0045002117,-0.010165946,0.0038656492,-0.014335926,-0.009045749,0.003622832,0.00036483278,-0.015915856,-0.0010513983,0.021575114,-0.018169198,0.00026325427,-0.029293463,-0.00071550126,-0.039731365,0.0036098817,0.009874565,0.015294244,-0.055427063,0.0047138906,0.019800931,0.0156698,0.0071420623,0.23041083,0.0062225945,0.005999203,0.03323034,0.0075888457,0.030536687,0.009945791,0.0041505545,-0.009252952,-0.005131536,0.020733349,-0.01352006,-0.015786353,-0.014102821,0.005668971,0.010560928,-0.02817974,-0.0152424425,-0.023349298,-0.015889956,0.015579149,0.0030109328,0.0065495884,-0.019101618,0.020513194,0.006779455,-0.0019182556,0.016304363,-0.00031161535,-0.005413204,-0.026483258,-0.014789185,0.025783945,-0.00991989,-0.007083786,0.013779065,0.020046985,-0.024760876,0.028982656,0.016770571,0.034136854,-0.014439527,0.017197931,-0.018894413,-0.019114567,0.0018648359,-0.01148687,0.01983978,0.002544724,0.0035224676,-0.006594914,-0.00028935712,0.017068427,0.025848696,-0.026107702,0.007342791,0.019826831,0.013209254,-0.012328637,0.0075823707,0.011558097,0.01868721,0.012225035,0.030355383,-0.04017167,-0.015618,-0.007841376,-0.017055478,-0.00039194737,-0.020189438,-0.009214102,-0.00048968126,-0.0055491817,0.016990727,-0.02186002,-0.028930856,0.01221856,-0.011875378,0.025058731,0.014905737,0.014374776,0.0012407957,-0.006824781,-0.049236845,-0.0037264342,-0.025395438,0.03281593,-0.016485667,0.009770962,-0.012574691,-0.004636189,-0.020176487,-0.021704618,-0.0036260698,-0.01042495,0.01199193,0.0048628184,0.010535028,-0.0060251034,-0.009479582,-0.03750392,-0.0018842611,0.02232623,-0.022209676,-0.023297498,-0.004360996,0.016369114,0.009544333,0.015579149,-0.02711782,0.0137143135,-0.03229792,0.011409169,0.0038267984,-0.006779455,0.006277633,0.024553671,-0.009861615,-0.0055783195,0.009609085,-0.0068571568,-0.020616796,0.0038041356,-0.0061481306,0.0072780396,-0.007925552,-0.000039356615,-0.019295871,-0.0029121873,-0.017249731,0.015915856,0.019464225,0.022533434,-0.014297075,-0.031365503,0.00064670306,0.013843816,-0.038358636,-0.013766115,0.01458198,-0.0074075423,0.03183171,0.023297498,-0.01195308,0.0062743956,-0.024553671,0.017379234,-0.011590472,-0.0037911853,0.00086928543,-0.02343995,0.01820805,0.0027940162,0.0011193871,0.019580776,0.0114026945,-0.030277682,-0.028827254,-0.0052998895,-0.0029040934,-0.014374776,0.0003976131,0.0014447621,-0.0008320535,-0.006824781,-0.031987116,-0.16348395,0.014983438,0.024786776,0.0065107374,0.02343995,-0.006271158,0.010599779,0.007349266,-0.0072521395,-0.008806169,0.016511567,-0.002654801,0.0033152637,-0.017923145,-0.0043739467,-0.013429408,-0.01095591,-0.020733349,0.036675103,0.008106856,0.020642696,-0.004636189,0.007757199,0.0038721245,-0.0057272473,0.033152636,-0.022960791,0.0018373166,-0.0035062798,-0.014517229,-0.013610711,0.0019473936,0.02026714,0.019516025,0.011059512,0.0019700567,0.005141249,0.00070578855,-0.0016471097,0.01924407,0.0014552842,0.019671427,-0.0008490507,0.011875378,-0.017418085,0.03019998,0.026172454,0.011020661,-0.01666697,0.0067341295,0.016718771,-0.0016252563,0.00097531563,0.022624085,-0.011843002,0.018609507,0.001423718,0.0010481607,-0.015346045,-0.023556503,-0.00008948824,-0.00677298,-0.0019295871,-0.015475547,-0.011428595,0.00861839,-0.015760453,0.0037167214,-0.015812254,0.022585234,0.009142876,-0.010094719,0.008126281,0.021484463,0.0037911853,-0.0021918295,-0.026340807,0.0028409609,0.0034641915,-0.0085342135,-0.00365197,0.055634268,-0.03064029,0.009835714,-0.00054350577,0.012432239,0.0147503335,-0.007802525,0.015980607,-0.029241662,0.0035516056,0.00067219883,-0.024294667,-0.017431036,-0.0012715525,0.024061562,0.037244916,-0.004318908,0.01665402,-0.022585234,-0.0035095175,0.007944978,-0.038125534,0.046102885,0.043098427,0.010049393,-0.007167963,0.0057013473,0.013138027,-0.00007593095,-0.020409591,0.021134807,0.016576318,0.024709074,0.012037256,0.010243647,-0.009913416,-0.00043383334,0.018544756,-0.030510787,0.036571503,0.004956708,-0.016006507,0.0088126445,-0.01667992,0.00041521736,-0.09676426,-0.033644747,-0.003622832,-0.0047300784,-0.028050238,0.017534636,0.004111704,0.018596558,-0.018130349,0.048822436,-0.014452478,-0.016977776,-0.020008134,-0.0016284938,0.0035095175,-0.013740214,0.006714704,0.0029089497,0.010748707,0.024411218,-0.010282498,-0.00988104,-0.018648358,-0.020409591,-0.010392575,-0.04330563,-0.02758403,0.0142064225,0.011033612,0.012341587,-0.005782286,-0.006426561,0.018674258,-0.011137214,-0.012030781,-0.007951452,-0.008961572,-0.01014652,0.030407185,-0.0363125,0.003127485,-0.0013856767,-0.005011746,-0.016563369,-0.0064297984,0.01512589,-0.0035062798,0.02290899,0.007090261,-0.023323398,-0.0058405623,-0.006190219,-0.022144925,-0.007019035,0.021743467,0.009311229,0.012464615,0.028412845,0.0064200857,-0.0035775062,0.005027934,-0.002314857,-0.018026747,0.004441935,0.0058535123,-0.029112158,-0.006397423,-0.02711782,-0.001983007,-0.012568217,-0.008288159,0.039187454,-0.021005303,0.014115771,-0.013934468,-0.007446393,-0.015954707,-0.021031205,0.010023492,0.0028409609,-0.021937722,-0.01120844,-0.010910585,-0.03294543,-0.007180913,-0.009693261,0.0012375582,0.03170221,-0.014698532,-0.01771594,-0.012399863,-0.013753165,0.0023909397,0.0041505545,-0.012399863,0.012652393,-0.008721992,-0.002698508,-0.002675845,-0.007828426,0.01120844,-0.0037814726,-0.03696001,0.018855562,0.004173218,-0.006649953,0.015954707,-0.01274952,0.006196694,-0.017625289,-0.0312101,-0.010871734,-0.014400677,0.021070056,-0.010418476,-0.010515602,-0.015941756,-0.019671427,0.02241688,-0.004299483,0.015022289,0.010768132,-0.008909771,-0.034059156,0.004089041,0.0035062798,0.038125534,0.007867276,0.010360199,0.013299906,0.010709856,-0.020163538,0.002692033,-0.014530179,0.007601796,0.03607939,0.04123359,-0.020357791,0.016511567,0.005403491,0.007122637,-0.025032831,-0.006708229,-0.026677512,0.007828426,0.0049664206,-0.011985456,-0.01252289,-0.004577913,-0.0058988384,0.028490547,0.00077215856,0.020396642,0.022403931,-0.026573911,0.008236358,0.0053937784,-0.022611134,-0.0007114543,0.0021303159,0.0037976603,-0.04063788,0.017573487,-0.01039905,-0.014452478,-0.027661731,0.01976208,0.020189438,-0.03025178,-0.0024443595,0.012458139,-0.053147823,0.006313246,0.019528976,0.00085066946,-0.0025528178,0.01223151,0.013455308,0.008210458,0.021031205,-0.013753165,-0.00069769466,-0.005034409,0.00029461816,-0.027661731,0.0024216964,0.021186607,0.021432662,-0.010360199,0.025913447,0.0032505125,-0.00047996858,-0.023167996,0.008333485,-0.004228256,0.0011800914,0.018350502,-0.00470094,-0.017858393,0.021070056,0.011810627,0.02807614,0.025149383,0.0023569453,0.0048466306,-0.013312856,-0.009764488,0.018233951,-0.013008525,-0.019360622,0.022999642,0.021639865,0.008191032,-0.001164713,-0.011758826,0.022585234,-0.0052448506,-0.0021319347,0.007763674,-0.042891223,-0.02028009,0.036467902,0.007562945,-0.0022080175,0.017780691,-0.021678716,0.030407185,0.015553249,0.0024896853,-0.031365503,0.0025414864,0.0048919567,0.010224221,-0.015009338,-0.03330804,-0.03227202,0.0026208067,0.011454495,-0.019334722,0.0047948295,-0.0021060342,0.039135654,-0.0055265184,0.013377607,-0.025874598,0.00064791716,0.012296261,0.012561741,0.006530163,-0.021782318,-0.0077895746,0.0038980248,0.004163505,0.023232747,-0.020772198,-0.0074075423,0.0041958806,0.012354537,0.013753165,-0.007944978,-0.0011501439,0.014439527,-0.0036584453,0.03962776,-0.0019425374,-0.0018923552,-0.0121602835,-0.005552419,-0.0010837739,-0.016187811,-0.027195523,0.004221781,-0.013202779,-0.0137013635,-0.0047074156,0.013766115,-0.033696547,-0.012956724,0.03426636,0.011169589,0.015138841,0.0060930923,0.019153418,-0.020046985,-0.02026714,0.0021966859,-0.0023698956,-0.019852731,0.018648358,-0.032142516]},{\"id\":\"8dd51f4a-5bb8-4a60-b27a-20032a92db24\",\"text\":\"I wanna get paid for posting\",\"vector\":[-0.036151364,-0.002448943,-0.018126637,-0.021018237,-0.03103056,-0.004948839,-0.027209062,0.005643078,0.0059965663,-0.02896695,0.008757599,0.009190701,0.0044456753,-0.0095919585,0.0076621026,-0.02396079,0.04030406,0.011031389,-0.013821082,0.0029154841,-0.012865708,-0.0028183544,-0.020648824,0.015948383,0.0005035619,-0.017273169,0.01908201,-0.0038692662,0.016547084,-0.0016448362,0.014457999,0.0077767475,-0.010840314,-0.02250862,-0.036253273,-0.000057521498,-0.0028406465,0.015222298,0.00638827,-0.0076238876,0.0023581823,0.007133462,-0.007133462,-0.03003697,-0.01551528,0.0032291654,-0.0048246407,-0.03663542,-0.0008367487,-0.0016973818,0.0060666273,-0.020317629,-0.05436717,-0.02380793,-0.0033247028,0.008674799,0.030928653,0.021655152,-0.014712765,-0.00631184,0.0047927946,-0.005573017,-0.026521193,0.012642788,-0.014203232,-0.025272837,-0.011566399,0.011757473,-0.005869183,-0.012050455,0.016852804,-0.0067576813,0.019540591,-0.0080697285,0.017133048,-0.0065666065,0.0027132633,0.003604946,-0.0037896517,0.01710757,0.031387232,-0.0075410884,-0.00028462196,0.013604531,0.042673387,0.008044252,0.0101205995,0.030775793,-0.014330615,-0.020177506,0.01787187,0.012534511,0.009980477,0.013986681,-0.002093862,0.028304558,-0.012821124,0.028839568,0.009483683,-0.020699779,0.0061908257,0.011088712,-0.038495217,-0.0036144997,-0.015273252,-0.0035444389,-0.0038119438,-0.010770254,0.035539925,-0.0057035848,-0.000030427678,0.012795648,0.003974357,-0.023387564,0.006897803,-0.015948383,-0.023909835,0.0012889593,-0.021400386,-0.033297982,0.034546338,0.0043915375,0.021731582,0.019043796,0.019566067,-0.013196904,-0.00013415048,-0.017234953,0.01163646,0.0065411297,-0.015184083,0.01816485,0.017273169,0.0041813552,-0.011528184,0.01064924,-0.012719218,0.013375241,-0.035565402,-0.011451754,0.02411365,0.039743572,-0.0007435997,-0.0043915375,-0.0047864257,0.015145868,0.005458372,-0.008037883,0.012789278,-0.018585216,0.0033629178,-0.016203148,0.0039425115,0.00019226909,-0.011649198,0.012572726,0.010706562,0.023642331,0.013706437,-0.038902845,-0.0006436835,0.001692605,0.005238636,-0.015770046,0.004471152,0.04114479,0.011948548,-0.004401091,-0.012712848,0.013260596,-0.0020652008,-0.007420074,-0.014916578,0.01833045,-0.0050061615,0.033450842,-0.0034934855,0.0043023694,-0.009833987,-0.021043712,-0.0013295626,0.017591627,-0.011324371,0.030750316,0.015400635,-0.00068150036,0.02419008,-0.030011494,-0.0075856727,-0.016470654,-0.0041558784,0.0016209518,0.015540756,0.0010732039,-0.6591319,-0.015120392,0.03885189,0.0123052215,-0.004069895,0.020470489,-0.015413373,-0.0012642788,-0.012604573,0.016865542,-0.021858966,0.0031256664,-0.011897596,0.013579055,0.03041912,-0.01635601,0.018457832,-0.031489138,-0.020623349,0.010579179,-0.037374247,-0.010591917,0.0015843292,0.035157777,0.007802224,-0.005872368,0.008884981,-0.008260803,-0.008273542,0.030903175,-0.012260637,0.019960955,-0.0024234664,0.01543885,0.063589714,0.00813979,-0.0025683648,0.0010747962,-0.007802224,0.02904338,-0.0358966,-0.014776457,-0.012349806,-0.013037675,0.00079375686,-0.008935935,0.024151864,0.015757307,0.023973528,0.009311715,-0.0036558993,0.026623098,-0.010732039,-0.001966479,-0.002619318,-0.0058532604,-0.008158897,-0.003923404,0.003375656,0.010407211,-0.016980186,0.0019043796,-0.024508538,-0.024088172,-0.024928901,-0.0027148556,-0.00012977168,0.02234302,0.0068850648,-0.006706728,0.007770378,-0.009286239,0.003936142,0.024457583,0.008254435,0.006572976,-0.00535965,-0.030291736,-0.012216054,0.0030699363,-0.0039520655,-0.00031368126,-0.030852223,-0.0060252277,0.021196572,-0.0011193804,-0.0045666895,-0.007834069,0.026775958,0.020648824,0.012298852,0.03467372,0.005397865,0.0018820874,-0.005139914,-0.007171677,-0.009381777,0.010604655,0.00905058,0.0069551254,-0.010776623,0.0032578267,-0.018916413,0.002055647,0.029858634,-0.0019362253,-0.02091633,-0.004436122,0.009394514,-0.032227963,0.014649074,-0.0037673595,-0.012725586,-0.0059296903,-0.004069895,-0.0366609,0.020253936,-0.011126927,-0.008388187,-0.015757307,0.009776664,0.028686708,0.02113288,-0.0053946804,-0.010247982,0.015324205,0.00024461566,-0.011884857,0.025221882,-0.005452003,0.0018215805,-0.024164602,0.007133462,-0.007719425,-0.010604655,-0.019744404,0.017961038,0.0119931325,0.027896931,-0.03245725,-0.02106919,-0.009311715,-0.015477065,0.0035890231,-0.014840148,-0.027005248,0.0055156946,0.00035209526,0.0007674841,0.018572478,-0.013986681,-0.022062778,-0.011967656,0.0013223974,-0.0153114665,-0.013337026,0.01520956,-0.0019027872,-0.048023485,-0.0063532395,-0.0062672556,-0.009031473,-0.009604697,-0.008088836,-0.019502375,-0.008910459,-0.0076175183,0.0066557745,-0.0104709035,-0.01459812,0.015540756,0.010254351,-0.016903756,-0.006184457,0.008725752,0.014470737,0.020317629,-0.010349889,-0.01064287,0.007999668,-0.00604752,-0.00387882,-0.0076684714,-0.011687413,0.023030892,-0.0022610526,-0.027667642,0.052074272,-0.0010771846,-0.01125431,0.0069296486,-0.0046526734,-0.0007893781,0.018496048,0.01436883,0.011184249,0.034699198,-0.0006838888,0.008120682,0.011216095,-0.022801602,0.01102502,0.0048182714,-0.011655567,-0.0020636087,-0.038800936,0.00070657895,-0.019871786,0.026521193,0.018992843,0.010738408,0.0034138712,0.01056644,-0.0022212453,0.00760478,0.038062114,-0.023871621,-0.007910499,-0.0073181675,0.023463994,-0.0040890025,-0.011961287,0.012177839,-0.01687828,0.019476898,0.022686956,-0.014789195,0.007636626,-0.0099040475,-0.028049791,-0.038724508,0.01748972,-0.0049615777,0.02434294,0.0071207234,-0.019069273,0.015846476,0.0010055315,0.036304224,-0.0034489015,-0.004432937,0.022241116,0.027183585,-0.0008240104,0.0072289994,0.025132716,0.0065156533,-0.012267007,-0.017617103,0.008541047,-0.008642954,0.0039648036,-0.016916495,-0.0021193388,0.010400842,-0.03202415,-0.008267173,-0.002262645,0.023132797,0.014330615,0.031234372,0.016254103,-0.014661812,-0.016152196,0.02038132,0.017744487,-0.00044026834,0.003506224,0.0021034158,-0.026164519,-0.015680877,-0.02850837,-0.007961453,-0.009853094,0.00095696666,0.0018996027,0.004174986,-0.013400718,0.0070888777,0.008572892,0.0024855656,-0.0015843292,0.000019368723,0.035310637,-0.015731832,-0.02145134,0.004722734,-0.014547167,0.008241696,-0.010993174,0.00084072945,0.012279745,-0.0021575538,-0.0030826747,-0.0050666686,-0.011356217,0.04700442,-0.0011321186,-0.006897803,-0.0011528184,0.018903675,0.030521026,-0.014878363,-0.01726043,-0.0012642788,0.019489637,0.005840522,-0.024826996,-0.009165225,0.009598328,0.03658447,0.0054328954,0.013757391,0.0129102925,0.018674385,-0.0089677805,0.00057561306,0.009031473,0.04083907,0.008814921,-0.022024564,0.015387896,-0.030317213,0.02038132,0.11709068,0.008700276,0.0031129282,0.0132223815,-0.031591047,-0.0048915166,-0.007636626,-0.010897637,0.004700442,0.0019250794,0.03322155,0.0023629593,-0.019820834,0.0049838694,0.020495964,-0.013324288,0.009318084,-0.034368,0.027744072,-0.021387648,0.0028804536,-0.009400884,0.00026093662,0.035310637,0.034164187,0.025795108,0.01726043,0.023489472,-0.012451713,0.0008168451,-0.019820834,-0.0027435168,-0.0077066864,0.0013916619,0.009712973,0.0060793655,0.007369121,0.015719093,0.012553619,0.020967282,0.004971131,0.030062446,0.009107903,-0.028330034,0.0014489845,-0.01833045,-0.010814838,0.027540259,0.012464451,-0.0050602998,0.015770046,0.010260721,-0.02486521,-0.02038132,-0.007209892,0.0055539096,-0.013324288,-0.00302376,-0.00942636,-0.0049615777,-0.0114453845,-0.024839733,0.026317379,-0.0020142477,-0.017285908,-0.015400635,-0.00046017198,0.0024664581,0.007974192,0.013973942,-0.000038911603,-0.014534429,-0.028763138,-0.017375074,0.015706355,-0.010324412,0.019897263,-0.000937063,0.012005871,0.011152403,-0.01689102,-0.040176675,-0.009521898,-0.019540591,-0.015731832,0.008904089,-0.008846766,-0.005461557,-0.0080506215,0.009732081,0.021833489,0.0068914336,0.045272008,-0.021948135,0.01992274,-0.002269014,0.020445012,0.020674301,-0.013196904,0.027896931,0.0070315553,-0.0024282432,-0.009738449,-0.027209062,0.0073818592,0.026852388,0.03931047,0.027005248,-0.014942055,-0.013133213,0.017986516,0.01689102,0.02896695,0.0077066864,0.021489553,0.035488974,-0.010502749,0.013973942,0.0033438103,-0.0068786955,-0.01094859,-0.016075766,0.029858634,0.0054424494,-0.013604531,-0.016305055,-0.0031829888,-0.024839733,-0.0041049253,0.002816762,-0.0045284745,0.012687371,-0.030164354,-0.022419453,-0.013082259,-0.006859588,0.008146158,-0.011165142,-0.008935935,-0.0064742537,0.003936142,-0.013821082,-0.020024646,-0.0030205753,0.029400054,-0.045144625,-0.003824682,-0.009986847,-0.015324205,0.02889052,0.009114271,0.005232267,-0.0063373167,0.0005083388,0.009318084,-0.027361922,-0.016190412,-0.013604531,0.019820834,-0.0039807265,0.002350221,0.0030874514,0.016598037,0.018228542,0.006910541,-0.020559656,0.010012323,-0.0250945,-0.0056016785,0.0200756,-0.0016464285,0.027591212,0.0141013255,0.013528101,0.0025683648,-0.007649364,-0.004773687,-0.0068532187,-0.025425697,-0.0039138505,0.017884608,0.010916744,-0.0068150037,-0.0101779215,-0.009419992,-0.004069895,0.01992274,-0.010591917,0.024470322,0.01269374,0.0024362046,-0.0008470986,0.02159146,-0.01712031,0.031743906,0.00085506006,-0.0071780463,-0.0048182714,0.0011424685,0.02129848,0.017973777,0.013630007,-0.0074773966,0.01908201,-0.027795024,0.022865294,-0.0073181675,-0.011776581,-0.023553163,-0.0008980519,-0.013400718,-0.024062695,-0.03261011,-0.019298563,0.004458414,0.006534761,-0.015578971,0.010859422,-0.0025349266,-0.035004918,-0.01689102,-0.0030651593,-0.00460172,-0.00426097,0.009152486,0.034877535,0.021158358,-0.008279911,0.02561677,-0.016865542,0.0025651802,0.00722263,0.03383299,-0.01528599,-0.011362586,0.021553246,0.017986516,-0.024317462,-0.001753112,0.01094859,0.006385085,-0.018814506,-0.0043087383,0.009432729,-0.005178129,0.015502541,-0.021464078,-0.0030842668,-0.001813619,-0.013922989,-0.0014569459,0.019591544,0.0032801186,0.009649281,0.0026766404,-0.009483683,-0.022292068,-0.029068857,0.005923321,0.027744072,-0.008999626,0.03276297,-0.015731832,0.016113982,0.009662019,-0.017833656,-0.020050123,-0.013477148,-0.027922409,0.017285908,-0.013337026,0.0017133047,-0.016012074,-0.0036845605,-0.006668513,0.002417097,-0.0011249533,-0.020890852,0.0072417376,-0.006324578,0.005187683,-0.00524819,-0.02996054,0.0066111907,-0.012897554,0.015744569,-0.0016416516,0.0020827162,0.004700442,-0.0068850648,0.0141395405,-0.0011623722,0.012802017,0.016343271,0.012833863,0.022075517,0.008719384,0.021680629,-0.0059679053,0.023234705,-0.0027260014,-0.0017260431,-0.017515197,0.0037960208,0.00038533434,-0.033654653,0.016929233,-0.012432605,-0.007878654,-0.009980477,-0.0057067694,0.011540922,-0.0092225475,-0.009158855,0.016916495,0.03617684,0.0025397036,0.0014951609,-0.01201861,-0.0054551875,0.006461515,-0.0014450037,0.02873766,-0.0044552293,-0.022559574,-0.032890353,0.009814879,-0.012744694,-0.008394556,-0.008197112,-0.0033883944,0.027998839,-0.011146034,-0.035259683,-0.01186575,-0.017540673,-0.004881963,0.040737163,-0.026444763,0.0026607176,-0.010400842,0.025209146,0.020712515,0.0114453845,-0.0011687413,-0.0053055123,-0.009872202,0.0080697285,0.003786467,-0.015094915,-0.023565901,0.018559739,0.016317794,-0.042495053,-0.0063691624,-0.013413456,-0.062978275,-0.01816485,-0.013999419,0.007955084,0.011349848,-0.0065920833,-0.010445426,0.015426111,0.007324537,0.0021559615,-0.010381735,-0.01635601,-0.0008693907,-0.015668139,-0.0073117986,0.0023088213,-0.0401512,0.010630132,0.04425294,0.014177755,0.006213118,-0.00024123203,-0.0032833032,0.022546835,-0.009076056,-0.024075434,0.0001786351,0.0008049029,0.029705774,-0.040431444,-0.008687537,0.009216178,-0.000975278,-0.005681293,-0.010088753,0.01831771,0.0069614947,0.027336445,-0.0058500757,-0.006461515,-0.013464409,-0.0013080668,0.018050207,0.01117788,-0.008986888,0.020126553,0.028839568,-0.0293491,0.0004486279,0.01643244,-0.0141013255,-0.01833045,0.0136937,-0.014738242,-0.0054392647,0.012451713,0.007967822,0.0017722194,0.0044042757,-0.015069438,-0.004423383,0.016113982,-0.014024896,0.003528516,-0.03018983,-0.010228875,-0.02417734,0.009432729,-0.018152112,-0.012311591,-0.035565402,-0.005719508,0.0002016238,0.016419701,0.011311633,-0.028865045,0.013910251,0.010585548,-0.00074758043,0.0028947843,0.23825763,-0.0131841665,0.0031320357,0.040202152,0.021018237,0.017846392,0.0009768703,0.007859547,0.003550808,-0.01011423,0.026444763,-0.009942262,-0.026291903,-0.00075394963,0.023056367,-0.034801103,-0.005999751,-0.012795648,-0.017476982,-0.02122205,0.029145287,0.009490052,0.0018566109,-0.0029728066,0.03352727,-0.0015445219,-0.0089486735,-0.0026559408,0.0150566995,0.011056866,-0.01817759,-0.0062768096,0.0054265265,-0.02411365,-0.008916828,-0.0070761396,0.010681085,-0.019897263,0.035922077,0.031234372,0.043361258,-0.001210937,-0.0014107695,-0.022941723,0.0101588145,0.009916786,-0.004487075,0.0022021378,-0.006493361,0.02434294,-0.028049791,-0.006022043,0.025731416,-0.0029059304,-0.025871538,-0.013037675,-0.0032705648,0.010228875,-0.025667725,0.021922657,0.012388021,0.008986888,-0.00018012787,0.00038772277,-0.014266924,-0.013579055,-0.0005282424,0.0018359111,0.029986016,-0.0072035226,0.013986681,-0.008980519,-0.01559171,0.003041275,-0.009693866,-0.010954959,0.026928818,0.044838905,0.031208895,0.010203398,0.009528267,0.00019246813,-0.0042768926,-0.030673886,0.0055793864,-0.030215306,0.0037673595,0.007107985,0.00066995627,-0.016394224,-0.00418454,-0.005681293,-0.026852388,-0.030164354,-0.016547084,-0.00950279,0.015120392,0.029552914,-0.011381693,-0.0022960831,0.0061175805,0.019897263,0.008783075,-0.011617352,-0.0009736857,-0.012948507,-0.015069438,0.01833045,0.011572768,-0.007770378,0.008107943,-0.035769217,0.013821082,0.002749886,-0.02151503,0.0023088213,-0.0012419866,-0.023897097,0.02584606,-0.002843831,-0.017094832,-0.029451007,0.006085735,-0.00965565,0.01452169,-0.01178932,-0.0071207234,0.0032960416,-0.0010851461,-0.022330284,0.02205004,0.017005663,0.004748211,-0.010025062,-0.022954462,0.020241199,0.0045921663,0.011311633,-0.009528267,0.016152196,-0.033196073,0.0076748407,0.0008486909,-0.0021018237,0.031132465,-0.027565734,0.020355843,-0.004885148,-0.0068404805,0.016559822,-0.0048915166,-0.016992925,0.011082343,-0.016088504,0.040940978,-0.004608089,-0.030164354,-0.03765449,0.0041399556,-0.011203357,-0.015668139,-0.009318084,0.030215306,-0.023030892,-0.027514782,-0.016037552,-0.16029908,0.015298728,0.00022272165,0.017578889,0.0022817524,0.017617103,0.008617477,-0.013973942,-0.01695471,-0.014419784,0.028151698,-0.019438684,-0.0036399763,-0.00904421,-0.011553661,0.0031495509,-0.028915998,0.041323125,-0.012190577,-0.0004104129,0.035794694,0.0058309683,-0.017349599,-0.031769384,0.011286156,0.025030809,-0.0120313475,0.024381153,-0.033450842,-0.01102502,-0.0147637185,-0.0060952883,0.023858882,0.011464492,0.019132964,0.017935561,-0.0068914336,-0.016776374,0.004569874,0.006289548,0.017706271,0.0243302,-0.0047800564,0.0010978844,-0.027361922,0.0024155048,0.019884525,0.0023104136,0.0022546835,-0.018750815,0.019489637,-0.017693533,0.021336693,0.01436883,-0.0033469948,0.0285848,-0.0104517955,0.01704388,-0.010445426,0.008846766,-0.010311674,-0.030444596,-0.0016639436,-0.022610527,-0.015999336,-0.018725337,-0.017999252,0.0018868644,-0.022967199,0.016139457,-0.010171552,-0.01354084,0.027591212,-0.003286488,-0.000022441345,0.0019027872,-0.03248273,0.006420116,0.01513313,0.024903426,0.017082093,0.03286488,-0.02319649,0.030673886,-0.0010875345,0.0010015508,0.02145134,0.010878529,-0.018814506,-0.03215153,-0.0016973818,-0.012362544,-0.0077894856,-0.011082343,0.00069622905,0.0024186894,0.00821622,0.026266426,-0.0053723883,-0.02584606,0.009107903,0.009496422,-0.049934234,0.013171428,0.010967698,0.0025683648,0.0043023694,0.023858882,0.0136937,-0.0027100786,-0.023909835,0.032533683,0.017438767,0.027183585,0.0339349,0.007846808,-0.0015071031,-0.010789361,0.015196822,-0.0009919971,0.052583806,-0.012209685,-0.020292152,-0.007107985,-0.010910375,-0.010598286,-0.10399568,-0.019094748,0.019680712,0.010502749,0.004735472,0.024584968,0.014241447,0.026342856,-0.0036176844,0.020126553,-0.011814796,-0.018687123,-0.008859505,-0.007420074,0.010789361,0.0038820044,0.0014473922,-0.00027845183,-0.00604752,0.02122205,-0.008388187,0.009012365,-0.006149426,-0.022419453,-0.015897429,-0.0023486286,-0.027947884,0.021158358,0.015426111,-0.00649973,-0.021731582,-0.014012157,0.0064646997,-0.01444526,-0.012120516,-0.026266426,-0.029017905,-0.020279413,0.01436883,-0.026801435,0.009948632,-0.00813979,0.0034552705,-0.004834194,0.0048087174,0.017451504,-0.009585589,-0.0034106865,0.04045692,-0.004082633,-0.015069438,-0.007840439,-0.02129848,-0.0108020995,0.03824045,0.00421957,-0.017897347,0.04241862,-0.02411365,0.008432771,-0.004760949,0.011088712,-0.014063111,0.015553495,0.016699944,0.00015355652,0.0050985147,-0.01992274,0.019362254,-0.0034998548,-0.021030974,0.0058150454,-0.023158275,-0.0022514989,-0.013706437,-0.010184291,-0.016827326,-0.01421597,0.0064742537,-0.008751229,-0.014700027,-0.01862343,-0.019183917,-0.025591295,0.012298852,-0.020929068,0.011292525,0.011470862,0.0011623722,-0.032126054,0.0015309874,0.020419534,0.014037634,0.01877629,-0.014037634,-0.008235327,-0.02166789,0.0052354517,0.00566537,0.006318209,-0.03049555,0.00084152556,-0.044584136,0.0022817524,-0.021425862,0.0071462,0.0128720775,-0.0064041927,0.000057023906,-0.010146076,-0.021183833,-0.024992593,0.004662227,0.0070506628,-0.010107861,-0.020699779,0.001468092,-0.00076350337,0.013821082,0.0058914754,0.021693368,-0.020661563,-0.0062385947,0.0028533847,0.014165017,-0.017349599,0.031310804,0.038291406,0.0043182923,0.015820999,-0.017362338,-0.0046813344,-0.008642954,-0.016789112,-0.012916662,0.013680961,-0.005499772,-0.028380988,-0.012687371,0.018903675,-0.022788864,0.00092114013,-0.02843194,-0.027260015,0.008299018,-0.017884608,-0.008228958,-0.020559656,-0.013158689,-0.0025556264,0.017540673,-0.006420116,0.02904338,0.0308777,-0.0013032899,-0.0013932543,-0.0036909296,-0.019935478,0.0011981986,-0.013935727,-0.010477272,-0.041017406,0.011483599,0.020445012,0.010693824,-0.01269374,0.004987054,0.0101588145,-0.018661646,-0.013158689,0.023718761,-0.03202415,0.0060411505,0.0026113566,0.015477065,0.008859505,0.03398585,0.021247527,0.0092735,-0.031641997,-0.028482893,0.025654987,0.0142924,-0.009878571,-0.0110759735,0.009470944,0.025642248,0.023094583,-0.017973777,0.019540591,-0.011655567,0.008413663,-0.03452086,-0.008642954,-0.0031049666,-0.016572561,0.014967532,0.017018402,0.0077385325,-0.00882129,-0.007999668,0.021247527,0.034801103,-0.004299185,-0.006219487,0.018190328,-0.0044297525,0.023616854,-0.026495716,-0.031947717,0.010254351,0.010693824,0.010808469,-0.00040185434,0.0076748407,0.010031431,-0.011477231,0.013731915,0.014177755,-0.019196656,-0.027693119,0.018355926,0.0058277836,-0.019540591,-0.0110950805,-0.023094583,0.024139125,0.0057895686,0.0029234455,-0.011165142,0.008560155,0.0030492365,-0.032788448,-0.007420074,-0.013719176,-0.01208867,0.023591377,0.0018645723,-0.04127217,0.021922657,0.009923155,0.04919541,0.017833656,-0.017184,0.006022043,-0.007012448,-0.01976988,0.0074009667,0.009719342,0.008865874,0.0070060785,-0.011986764,-0.0058755525,0.020737993,-0.012744694,0.0036558993,-0.00049241586,0.010101492,0.01254725,-0.012267007,-0.017680794,0.03184581,0.01810116,-0.0049520237,0.0021209312,-0.01808842,-0.022419453,-0.010630132,0.007611149,-0.0073181675,-0.028304558,0.0040348643,0.008254435,0.020139292,-0.008120682,0.0036558993,-0.00011613769,-0.0038724507,0.0034775627,-0.011292525,0.02965482,0.006872326,0.02866123,-0.0101588145,-0.012585465,-0.0046940725,0.0023104136,-0.019413207,0.017222214,-0.029451007]},{\"id\":\"15a39ebd-856b-4872-a87b-868c0c9c32ba\",\"text\":\"It was hard or I didn’t know if I should # or mention bounty when I make and upload the video. it is too fast the  tutorial \",\"vector\":[-0.022089712,-0.0034304974,-0.00524328,-0.01960092,0.026609898,0.005878931,0.0003064746,-0.030726494,-0.0015689482,-0.040950723,0.028627837,0.006591936,-0.008542611,-0.026381198,0.022668188,-0.0023475366,0.013560555,0.0053677196,0.008576244,-0.016627824,-0.026367744,0.001087165,-0.016210781,0.012141271,-0.013910331,-0.009114361,0.03570408,-0.028708555,-0.013156967,-0.0065313983,0.025452945,-0.0054518003,0.001109026,0.0016513473,-0.047757905,-0.012134544,0.017596435,-0.0064103217,-0.005730949,0.00092993386,0.026556086,0.010177143,-0.0056300517,-0.0033733225,-0.032932777,0.0021978726,-0.004177135,-0.009975349,-0.013641273,0.01360764,-0.00391144,0.0011174341,-0.029192861,-0.009618846,-0.008219741,0.018390156,0.03484309,0.033659235,0.02276236,-0.00051751744,0.001324273,0.008973105,0.00579485,-0.0023677158,0.009686111,-0.010062792,0.0015428831,-0.004819513,0.003585206,0.0049607684,-0.002924331,0.0010720305,0.016560558,0.0045370013,0.014865489,0.006427138,0.015497777,-0.0047623375,0.021766843,0.015134548,0.012181629,0.029596448,0.016035894,0.027067298,0.03161439,-0.014542619,0.0061042677,0.00390135,-0.014287013,0.0017169303,0.001928814,0.018390156,0.030538155,0.03126461,0.0006470019,0.03024219,0.0012427146,0.014287013,-0.010937233,-0.016318405,-0.014354277,0.009127814,-0.027430527,-0.013688358,-0.030807212,-0.016143518,0.019708544,0.013869972,0.015982082,-0.015847553,0.0009887904,0.0162915,-0.02019285,-0.001762334,-0.011663691,0.0035818429,-0.0069551654,-0.007567274,-0.014394636,-0.0034288159,0.019856527,-0.0012982079,0.005260096,0.0032825153,0.031156989,0.0016547105,-0.00945741,0.009511222,0.0059293793,-0.024403617,0.03973996,0.018148005,0.012551585,-0.008515705,0.004318391,0.017152488,-0.0023593078,-0.000121601886,-0.008428262,-0.017287016,0.04089691,0.0399283,-0.013419299,0.01579374,-0.008670414,-0.017125582,0.0057410384,0.0011493848,0.00480606,0.0046950732,0.010520192,-0.0087780375,0.033874482,0.026825145,-0.00240303,0.010654721,-0.0005709088,-0.010917054,-0.014973112,0.00657512,0.025775816,0.03408973,-0.006672654,-0.0071636857,0.010136784,0.03185654,0.022977607,-0.037614398,-0.003358188,0.0021154734,-0.0047488846,0.033713046,-0.0032152506,0.015349794,-0.0026519091,-0.017435,0.026959674,0.008461894,0.013843066,0.0018750023,-0.023919312,-0.011899117,0.032421563,0.025547117,-0.01305607,-0.0029730978,0.02143052,-0.012295979,-0.0042208573,0.00052970916,0.0040224264,0.014784772,-0.0014545982,-0.0038509015,-0.64444923,0.0069148066,0.03629601,0.00524328,-0.0040863277,0.01126683,0.00090723205,0.016869975,-0.012403603,0.040681664,-0.01716594,-0.0054618903,0.004056059,-0.0112264715,-0.00782288,-0.015497777,0.03516596,-0.028412592,-0.036403634,0.007237677,-0.0018665942,0.009524675,0.010466381,0.027578508,-0.008865482,-0.026932769,0.004432741,0.00982064,0.00077438436,0.028197344,-0.030861024,0.020340832,0.0156054,0.006948439,0.05994626,-0.036134575,0.007923776,-0.00411996,0.026609898,0.014448448,-0.04883414,-0.023475366,-0.004597539,-0.012094186,-0.008865482,-0.008596423,0.025681647,0.00013169159,-0.006702923,-0.009598667,-0.0059495587,0.005488796,-0.000306895,-0.0017707421,0.0028755642,-0.013560555,0.025627835,-0.0076009063,-0.0039652516,0.0018464149,-0.01069508,0.002305496,-0.030000037,-0.019574014,-0.052439526,0.002468613,-0.021645766,0.0038946236,0.03298659,-0.0056704106,0.009195078,-0.004392382,-0.036000043,0.006571757,0.01661437,0.00725113,0.03435879,0.0056300517,0.031049365,0.015739929,0.0040661483,-0.0005612395,-0.020488814,-0.013843066,0.009343061,-0.003958525,-0.008670414,0.008845302,-0.018551592,-0.021713031,-0.008845302,0.015430512,0.016304953,-0.0038677177,0.020273568,0.00890584,0.0053542666,0.0027696223,0.031130083,-0.019802716,-0.0042847586,0.01071526,0.00042544896,-0.0010787569,0.043722026,0.012141271,-0.0065381248,0.005983191,0.015941724,-0.023017965,-0.0022130073,-0.017219752,-0.006154716,-0.008011221,0.001967491,-0.037614398,0.028574025,0.0011905844,0.025708552,0.013802707,0.0061042677,-0.00890584,0.027524697,-0.0045571807,0.0046883468,0.021228725,0.014300466,-0.013002258,-0.013459657,0.01794621,0.00926907,-0.008044853,0.031399142,0.00569059,-0.00087612215,-0.010230954,0.023973124,-0.009787007,-0.017757868,-0.04929154,-0.004927136,-0.010587457,0.017784774,-0.0067130127,-0.009309429,-0.023515724,0.0022466395,-0.0115493415,-0.014878942,-0.0030655868,0.015941724,-0.0038912604,-0.0152421715,0.009450684,0.013587461,-0.008892387,-0.015713023,-0.0046984362,-0.028278062,-0.008098665,-0.008744406,0.009000011,-0.018524686,-0.0034254526,0.0062051644,-0.006353147,-0.0254664,-0.0029546001,-0.012820643,-0.014636789,0.021174913,-0.016641276,-0.007970862,0.0010535327,-0.00038551056,0.020663703,-0.0039080763,-0.005825119,-0.018511234,-0.007378933,0.00814575,0.003612112,-0.0067130127,-0.008576244,0.018739933,-0.00003872973,-0.013204052,0.04259198,-0.022574019,0.0112331975,0.023905858,-0.012692841,0.0076009063,0.010816157,-0.014219749,-0.008192835,0.007150233,0.03667269,-0.014381183,0.016412577,0.03263681,0.019130068,0.020623343,0.012040374,0.00768835,-0.018726481,-0.00033253964,-0.021807201,0.025076265,-0.0012755061,0.026461916,-0.008360997,0.014071766,-0.011798221,0.044017993,0.014865489,0.003511215,0.011993288,-0.028923802,0.027659226,0.0026720886,-0.019022444,-0.0018161457,-0.0066793803,0.022843078,0.003945072,0.027820662,0.005983191,0.038475383,-0.025695099,0.009585214,0.04689692,-0.0032976498,-0.018107645,0.010641268,-0.010035886,0.0043284805,-0.00091648096,0.018349798,-0.009403599,-0.0028082994,0.012551585,0.020488814,0.0039921575,0.05281621,0.020354286,0.010836336,-0.0162915,-0.025358776,-0.009807187,0.009464137,-0.0013486564,-0.027605414,0.012363244,0.012316159,-0.03188345,-0.007150233,0.00082735525,0.023475366,0.010647995,0.01395069,0.020502267,-0.005458527,0.006380053,0.003025228,-0.020179396,-0.0037903634,-0.004143503,0.0059899176,-0.028600931,-0.001972536,-0.03575789,0.0031463043,-0.006934986,0.032152507,0.009955169,0.03056506,-0.0045403643,0.008192835,0.00022113256,-0.02822425,-0.021928279,0.020502267,0.011697324,-0.0009837456,-0.010849789,0.011778042,-0.0045370013,0.0064775865,0.017408093,0.0013772439,0.0020482088,-0.0015420422,0.012887908,-0.022789266,-0.005878931,0.038071796,-0.035354305,0.019533657,-0.02289689,-0.006020187,-0.01126683,-0.01610316,0.0033632328,0.014744413,0.0162915,0.0039820676,-0.010890148,-0.0029478737,-0.012558311,-0.001324273,-0.03955162,-0.014098672,0.0103251245,0.010701807,0.006588573,-0.008482073,-0.0045908126,0.02533187,0.010701807,0.005273549,-0.002739353,-0.021578502,-0.0016193966,0.08556064,0.008508979,0.007500009,0.023609895,-0.023515724,0.0063733263,-0.00782288,-0.03478928,0.021632314,-0.016560558,0.014340824,-0.008394629,-0.007035883,-0.013634546,0.0064506806,-0.023233213,0.008347544,-0.027605414,0.011730956,-0.014582978,0.0022230968,-0.0007033361,0.026327386,0.0049910373,0.001967491,0.008885661,0.020448456,0.02198209,0.004769064,0.00557624,0.0055930563,0.015941724,-0.0023492181,0.008387903,-0.008401356,0.009881178,0.028062815,0.01665473,-0.01071526,-0.017825134,0.0019204059,0.004362113,-0.0050751185,-0.00002714234,0.014744413,-0.034681655,0.008091938,0.017219752,-0.0100089805,-0.019237692,0.038071796,0.019304957,-0.0017421546,0.0019405853,0.00323543,0.024659224,-0.003003367,-0.01138118,0.003961888,-0.0015554952,-0.0376413,-0.020435004,-0.014300466,-0.0033161475,-0.014852036,-0.011865485,-0.031748917,-0.02685205,-0.013439478,-0.0074192914,-0.0112331975,-0.012491046,-0.05639469,-0.024013482,0.00042292653,0.02496864,0.013500016,0.0037163722,0.013109881,-0.029112143,-0.016399123,-0.008872208,0.0025728731,-0.013049344,-0.018551592,-0.0010922098,0.007977588,-0.0047589745,0.019103162,-0.0033312822,-0.024995547,0.006312788,0.044125613,-0.022910342,0.020771326,0.011394633,0.007674897,0.021591954,0.007062789,-0.011596426,0.02243949,-0.0051827417,-0.014771319,-0.0005406397,-0.00013358341,-0.00004335417,0.008670414,0.015699571,-0.0043822923,-0.009484316,0.027605414,-0.00033485188,0.006353147,0.002905833,0.026650257,0.04506732,-0.0023071778,0.02083859,0.0020061685,0.0316682,-0.020730967,-0.03414354,0.02873546,-0.0025896893,-0.03322874,0.011287009,0.0032287035,-0.05580276,-0.0010148555,-0.014381183,-0.012006741,0.007062789,-0.004056059,-0.00904037,-0.04033189,-0.020636797,0.006269066,0.0024299356,-0.02005832,-0.030134566,-0.026421556,-0.00024194256,0.013937237,-0.04350678,-0.012612123,-0.025399134,-0.025964158,0.015067283,0.0005229827,0.029219767,0.01826908,-0.00078027,-0.02854712,-0.04765028,-0.0034910357,-0.015538136,-0.017044865,0.0044966424,0.025574023,0.018349798,0.032421563,-0.012363244,0.011798221,0.0024585233,0.009235437,-0.0075067356,-0.006830726,-0.024497788,-0.01758298,0.02165922,0.03037672,-0.0006768506,0.008804943,-0.0052668224,0.020690609,0.0036020223,-0.0052096476,0.027174922,-0.012511226,-0.020677155,-0.03341708,-0.0030891295,0.0035482107,-0.006380053,-0.0040358794,-0.0035280313,0.009625573,0.022950701,0.0312108,0.017609887,0.0072040446,0.0027376716,0.020946214,0.0008096983,0.006716376,-0.015874458,-0.0065078554,0.007984315,0.019654732,0.018040381,-0.0021591955,0.0056098723,0.000556615,-0.012766832,-0.044394672,0.029623354,0.0074596503,-0.023071777,0.009013464,-0.0055964193,-0.022695094,-0.051659256,0.009242164,0.0057242224,0.00028923803,0.0053374507,-0.024121106,-0.0009845864,0.013843066,-0.024470882,-0.002034756,-0.018578498,0.04111216,0.02708075,0.03158748,0.045901403,-0.018013475,-0.036887936,-0.0043822923,0.024955187,-0.0005864637,-0.004264579,0.013856519,-0.01271302,-0.0013040935,-0.002416483,0.005956285,-0.03511215,-0.04649333,0.0367265,0.004012337,-0.012295979,-0.037103184,-0.014717507,-0.036269102,0.020488814,0.0036322915,0.015753383,0.0063968687,-0.0137018105,0.007903597,0.0074932827,-0.019856527,0.0029495552,0.002971416,-0.0015630624,-0.019412579,-0.013762348,-0.0062152543,-0.0042208573,0.0023811688,0.012605397,-0.022479849,0.002858748,0.0143273715,0.018134551,-0.02413456,-0.022372225,-0.016318405,0.02087895,-0.02217043,-0.02106729,-0.0017505627,-0.0058015767,0.009719742,0.001863231,-0.0160628,-0.03217941,0.010977592,0.0062387967,0.020219756,0.021645766,0.010890148,-0.0019691729,-0.010634542,0.0055426075,-0.003625565,0.023165947,0.03804489,-0.031829637,-0.03505834,-0.0181211,-0.0081726555,-0.006511219,-0.0031009007,0.0118520325,0.012141271,0.037426054,-0.013567281,-0.0043116645,-0.0054080784,0.0160628,-0.014381183,0.020771326,-0.004318391,-0.030322907,0.021820655,-0.0047589745,-0.013560555,-0.044798262,0.007863238,0.016910335,0.00043637946,0.01037221,0.01661437,0.0012940038,0.011434992,-0.012282526,-0.01647984,-0.005414805,0.0081659295,-0.0027982097,0.020017961,-0.003142941,-0.02643501,-0.014139031,0.02913905,0.0030084117,-0.0334978,0.0149462065,-0.0021692852,0.031748917,-0.013896878,-0.016358765,-0.000034604513,-0.019143522,-0.01781168,-0.00379709,-0.0036793768,-0.015443965,0.017865492,0.025183888,0.006867721,0.011818401,-0.010641268,-0.0001433578,-0.000017092054,-0.001849778,-0.0093901465,-0.023085231,-0.018309439,0.010271313,0.016668182,-0.023986576,-0.04052023,-0.002897425,-0.01826908,-0.010795977,-0.0006074839,0.01619733,0.02110765,-0.0087713115,-0.006063909,0.038744442,-0.01528253,0.009908084,-0.002187783,-0.024390165,-0.017287016,-0.015941724,-0.014246655,-0.01986998,-0.031103177,-0.008495526,-0.023287024,0.019695092,0.019977603,0.027470885,-0.024121106,0.009955169,-0.02873546,0.018215269,0.022789266,0.0009131177,0.010150237,-0.029354297,-0.008764585,0.0074461973,0.0005646027,-0.015390153,-0.027955191,0.000034919816,-0.0003766821,-0.0018245538,-0.002125563,-0.008246647,-0.00012969467,-0.023488818,0.009168172,0.006988798,-0.026044875,0.012504499,-0.0036322915,0.0023256755,-0.010567278,0.0020885675,-0.030215284,-0.0024332989,0.0044730995,-0.015161454,0.008892387,-0.003975341,0.02451124,-0.02725564,-0.017556075,-0.012571764,-0.01170405,-0.016022442,0.0096995635,-0.0055560605,0.019789262,-0.013459657,0.018282535,-0.023192853,0.0015807194,-0.021322897,-0.0052903653,-0.010903601,0.018807199,-0.023704065,0.017609887,-0.021928279,0.0056805,-0.006733192,-0.005650231,0.004624445,0.21782987,-0.011502257,-0.0245516,0.030699588,0.0076681706,0.0136950845,0.024632318,0.02032738,0.006776914,0.016991053,0.010392389,-0.0054383473,-0.017354282,-0.012410329,0.00379709,0.0015428831,-0.025923798,-0.020946214,0.0052802754,-0.01826908,0.018322892,-0.0022230968,0.0015689482,-0.015874458,0.019399127,0.0055560605,0.0035650267,-0.020139039,-0.013843066,-0.0062522497,-0.019291503,-0.03298659,0.02382514,-0.00042776117,-0.02496864,0.017878946,-0.0017337465,-0.015121095,0.0133856665,0.021134555,-0.002086886,0.017542623,0.010614363,-0.0137219895,-0.0066087525,0.018739933,-0.0064473175,-0.0037769105,-0.02327357,0.0115426155,-0.016869975,-0.025547117,0.0060605453,0.014071766,-0.014112125,0.0070157037,0.008852029,0.0072040446,-0.0033296004,0.023811689,-0.004251126,0.0152421715,-0.012625576,-0.0074731032,-0.05182069,0.012854276,-0.0034775827,-0.015861006,0.010136784,-0.008071759,0.012242167,-0.0032757889,-0.000011843572,0.021026932,-0.027484339,-0.029623354,0.010244407,-0.0030941742,0.029112143,0.042242203,0.0022987695,-0.016641276,-0.016170423,-0.032502282,-0.0112264715,-0.024847563,0.01996415,-0.019076256,-0.013230958,-0.022977607,-0.0011939476,0.008932746,-0.023058325,-0.007352027,-0.023636801,-0.015336341,-0.0003888738,0.00635651,-0.019843074,-0.025130076,-0.018376704,-0.018968632,0.013035891,-0.005808303,-0.007769068,-0.006723102,0.009914811,-0.0024955187,0.030026942,-0.022008996,-0.0005738516,-0.024349805,0.01395069,0.0023963035,0.0019204059,0.019103162,-0.005256733,-0.008912567,-0.0048430553,-0.01505383,0.003025228,-0.0010064475,0.01904935,-0.0050078537,-0.011656965,-0.003726462,-0.009807187,0.0023206307,-0.025210794,-0.030134566,0.014892395,0.0025022451,0.008576244,-0.011024677,-0.0109237805,0.00013505481,0.0051961946,-0.020582985,-0.0022600924,-0.00512893,-0.022668188,0.0069013536,0.014704054,-0.0012965263,0.01060091,-0.026260123,0.019829622,-0.020125585,-0.006343057,0.031399142,-0.0037163722,0.009497769,-0.008206288,0.004042606,0.021847561,-0.022883436,-0.0041804984,-0.011071762,-0.019291503,-0.015457418,-0.015739929,0.0056165988,0.01551123,0.0067264657,-0.020071773,-0.030457437,-0.17165941,0.030780306,0.017730964,-0.012867729,0.01895518,-0.011926023,0.0121681765,0.009881178,-0.032663718,-0.0040493323,-0.0062623397,-0.0010089698,-0.012995532,-0.01863231,-0.0074461973,-0.008872208,-0.011697324,0.006844179,0.035354305,0.021645766,0.031479858,-0.013244411,0.010197322,-0.0100224335,0.0074327444,-0.004530275,-0.0065818466,0.025251152,-0.00814575,-0.016937241,0.0031160351,-0.0035347578,0.013587461,-0.00057006796,0.031183895,0.0019170427,0.0072174976,-0.006655838,-0.0009879497,0.0051928316,0.021242179,0.008959652,0.007674897,0.023435006,0.0056300517,0.014757866,-0.013896878,-0.009921537,0.007580727,-0.009208531,0.009975349,-0.024632318,0.012874455,-0.0019153612,0.0018817288,0.008461894,0.0032472012,-0.00446301,-0.0121749025,-0.0021423793,0.003129488,-0.002831842,0.001271302,0.004742158,-0.0330404,-0.006948439,-0.028574025,-0.000013341261,0.010500013,-0.0042713056,-0.0093901465,0.015013471,0.010540372,0.011919297,0.0032841968,0.00016017396,-0.02946192,-0.011845306,0.0038239958,0.024040388,0.011044856,0.015941724,-0.008798217,0.02694622,0.015040377,0.018484328,-0.009538128,-0.011098668,0.0004309142,-0.026623351,0.008226467,0.0024047114,-0.027605414,-0.012887908,-0.011260103,0.026905863,-0.003524668,0.007304942,-0.0006024391,-0.038313948,-0.0069013536,0.0073856595,-0.024403617,0.042753417,0.032583,0.0033262372,-0.018645763,0.014475354,0.048914857,0.009739922,-0.011556068,0.017435,0.00030163996,0.015578494,-0.0027124472,0.017044865,0.0075201886,-0.01048656,0.023085231,-0.012020194,0.03519287,-0.0010510102,-0.014784772,0.0003384253,-0.01647984,-0.020488814,-0.10633197,-0.008878934,0.034547128,-0.018134551,-0.002130608,0.010015707,-0.010426022,0.018645763,-0.009443957,0.024632318,0.0022113256,-0.032663718,-0.0064103217,-0.005808303,0.010506739,0.012585217,0.027148016,0.0017421546,-0.014354277,0.036968656,-0.018901369,-0.004422651,0.00004193531,-0.025762364,-0.009834093,-0.009955169,-0.022843078,0.021417066,-0.0011771314,0.0034086364,-0.010136784,0.0028368868,0.0112264715,-0.031722013,-0.00835427,0.02413456,-0.004103144,-0.02005832,0.006682744,-0.024914829,-0.006255613,0.012289253,-0.015874458,0.006053819,-0.031452954,0.017435,-0.006921533,0.018874463,0.009154719,-0.028843084,0.010769071,-0.009255617,-0.008179382,-0.03680722,0.014300466,-0.012766832,0.009524675,0.0013965825,-0.024699582,0.02643501,-0.008071759,-0.012699567,-0.0050650286,0.018591952,0.0062051644,0.004204041,-0.00913454,-0.01931841,0.010035886,0.02083859,-0.0121614495,0.02763232,-0.016493294,0.025964158,-0.020165944,-0.014031407,-0.03185654,-0.024201823,0.029542638,-0.004177135,-0.02473994,-0.016452935,-0.014246655,-0.026260123,0.012417056,-0.008502252,-0.009491043,0.015686117,-0.017004505,-0.024726488,-0.016937241,0.000005632758,0.01037221,-0.020125585,-0.0046412614,0.027739944,-0.009739922,-0.0071098744,-0.0008286165,0.0017959663,0.020771326,-0.008562791,-0.032583,0.013479837,-0.0063228775,-0.0061311736,0.018417062,-0.0033766858,-0.0056065093,-0.01895518,-0.012060553,-0.0015756746,0.0060571823,0.013991049,-0.0078027,-0.0012612123,0.0024787027,-0.017421545,0.009867725,-0.017488811,0.018565046,0.010130057,-0.009443957,0.0070426096,-0.00068988313,0.0158341,0.004261216,0.021336349,-0.008609876,0.017112128,0.00028650538,-0.02028702,0.0133923935,-0.028600931,0.014650242,0.03543502,0.0118587585,-0.027739944,0.013802707,0.0031547125,0.012114365,0.007412565,-0.005428258,-0.03400901,-0.015026924,-0.049695127,-0.023784783,-0.039632335,-0.008132297,0.015618853,0.025991064,0.0037735472,0.023556083,0.01427356,-0.014582978,0.0084551675,-0.013022438,-0.035677172,0.0040997807,0.0078027,0.015955176,-0.03433188,0.019022444,-0.005589693,-0.0032186138,0.004621082,0.040466417,-0.0048464183,-0.03024219,0.01592827,0.02437671,-0.039094217,-0.012437235,-0.008529158,-0.013412572,-0.02032738,0.0005301296,0.010520192,0.0023828505,0.013896878,0.0023727608,0.01362782,0.01688343,0.012006741,-0.023475366,0.024026936,0.03185654,0.028627837,0.01771751,0.01360764,0.016816163,-0.0053038183,-0.0075874534,-0.0027729855,-0.0026670436,0.007197318,0.027417075,0.0042275838,-0.019035898,0.0042679426,-0.014408089,0.0038509015,0.0115291625,-0.0056401417,-0.00029512367,-0.011730956,-0.016991053,0.004029153,-0.042645793,-0.016183876,0.021269085,-0.00982064,-0.011118848,0.00690808,-0.020031415,0.013910331,-0.023206307,0.0016925469,-0.0149462065,-0.014771319,-0.028170438,0.042565074,0.009356514,0.0008109595,0.04708526,-0.03341708,0.045605436,0.0013528604,0.01670854,-0.010661448,0.03295968,-0.011966382,0.012356518,0.0005498886,-0.011132301,-0.011287009,0.015713023,-0.015699571,-0.026139045,0.014865489,-0.018336345,0.061237745,0.009242164,-0.034950715,0.009585214,0.004610992,0.0036457444,0.033632327,-0.012995532,-0.014798224,0.008071759,0.020542625,0.017058317,0.013843066,-0.03446641,-0.03869063,0.015470871,0.0066356584,0.022869984,-0.022520207,-0.010210775,0.02913905,0.012349791,0.017112128,-0.0033447351,0.016775806,0.012033647,0.03102246,0.01103813,-0.021040384,-0.012901361,0.00036428016,0.022291508,-0.03134533,-0.004994401,0.032233223,-0.020690609,-0.011710777,0.046089742,0.0018565045,0.010668174,0.009975349,-0.0026687253,-0.02303142,-0.004836329,0.007352027,-0.010775798,-0.034251165,0.017905852,-0.022008996]},{\"id\":\"e980d7ba-2a43-4ad0-b7bb-fc99bab65820\",\"text\":\"I wish there was a bounty app and everything I buy from GFuel I was able to make a review for\",\"vector\":[-0.008260926,0.01098202,-0.0156886,-0.039631616,-0.004940932,-0.019386161,0.0014443601,-0.016443735,0.03635068,-0.025179876,0.020727178,-0.006457714,-0.031116806,-0.012576918,0.0154802855,-0.0024525642,0.031481355,0.0084432,-0.014959502,0.0006371459,-0.023370154,0.018071184,-0.021091728,-0.0003503082,0.006952458,-0.014139269,0.03512684,-0.011991037,0.0026380932,0.007987515,0.010044609,0.007857319,-0.021677608,0.008553867,-0.03007524,0.011450725,-0.0070305755,0.02227651,0.0061159497,-0.0023305055,0.0066920663,0.027783792,-0.0057839504,-0.019763729,-0.021794785,-0.007362575,-0.008729631,0.0032207198,0.0022198393,0.012615977,-0.016704127,0.005038579,-0.029241987,-0.005048344,0.0020538394,0.0128047615,-0.010187825,0.0125118205,-0.0059922636,-0.011860841,-0.009491277,0.0125183305,-0.011873861,0.0018113496,-0.0008100623,-0.008091671,-0.019190867,0.015922952,-0.00044592077,-0.011431195,0.007453712,0.006666027,0.0007343859,0.011854332,0.009732139,-0.004820501,-0.012199351,0.009126728,0.015857853,0.006464224,0.019034632,0.0057286173,0.019646553,0.027705675,0.03348637,0.022966547,0.01191292,0.021130785,-0.0074667316,-0.024802309,0.011808763,-0.0064284196,0.0016990558,0.017498322,-0.0072519085,0.006828772,-0.01472515,0.044370744,0.014152288,-0.0010488903,0.0111903325,0.0144387195,-0.016430715,-0.013839819,-0.018422712,0.008501789,-0.0010920176,0.0022426234,0.025388189,-0.005647245,0.0064674783,0.014634013,0.005074383,-0.010259433,-0.0169515,0.010617471,0.01788891,-0.030517906,0.0026218188,-0.020089218,0.01003159,0.0023842114,0.038459852,-0.009419669,0.013423191,0.024489839,-0.01377472,-0.001659997,0.032496884,-0.008273946,0.035881974,-0.0034599546,0.0061257146,-0.0084432,-0.0206751,-0.001559909,-0.01253135,0.001126194,0.006135479,0.010376609,0.034684174,0.044084314,-0.0021938,0.018435732,-0.029606534,0.021508353,-0.005015795,-0.02195102,0.030543946,-0.015154797,0.0015444482,-0.030856416,0.0069068894,0.011867351,-0.012492292,-0.0016510461,0.008905396,0.02258898,-0.001058655,0.009243905,0.0027601519,-0.02006318,0.012987035,-0.025440268,0.00036678612,0.04200118,0.036142368,-0.037652638,-0.019503338,0.009172297,0.010877863,0.03379884,-0.03168967,0.015922952,-0.019464279,-0.0045275604,0.023943016,0.037678678,0.0010244786,-0.005575637,0.010116217,-0.0019171338,0.038407773,0.026026148,0.01722491,-0.012414174,0.02443776,-0.02002412,-0.006643243,-0.018748201,0.0016860362,0.010135747,0.008612455,-0.018461771,-0.6274398,-0.030752258,0.027028657,0.019672591,0.003420896,0.048927598,-0.0011335176,0.0064674783,-0.02227651,0.02689846,-0.015831815,0.01626146,-0.0023109762,0.000008073668,-0.009198336,-0.011385626,0.02976277,-0.019125769,-0.0004434796,-0.0005325824,-0.042704236,0.004879089,-0.004397365,0.0042671687,0.0015704874,0.017055655,0.013761701,0.012394644,0.00908116,0.010428688,-0.00006906482,0.03234065,0.019464279,0.014152288,0.049891047,-0.009953472,-0.0000908828,0.027966067,-0.012127743,0.0028903477,-0.052833475,-0.0015501443,0.0043062274,0.0027666616,-0.010923431,0.007238889,0.03947538,0.030023161,0.0051199514,-0.015558403,0.01191292,0.013540368,-0.016092205,0.029971084,-0.0036780327,-0.0058848523,0.0120756645,0.018370634,-0.009478257,-0.00009235767,-0.012355586,0.02225047,-0.030153358,-0.041115846,-0.03254896,0.021703647,-0.019867886,0.00040971005,-0.0014451739,0.005110187,-0.0055170488,-0.008898886,-0.031168886,0.010194334,0.0079289265,0.030413749,0.031038688,-0.0038993654,-0.014165307,0.014074171,-0.008553867,-0.009419669,-0.012967506,-0.014191347,0.017771732,0.004449443,-0.0070826537,-0.0060899104,0.020492826,0.01348829,0.016704127,0.03135116,0.0012897525,-0.0024379173,0.005481245,0.010838804,-0.014269465,0.009627983,0.022445764,-0.030648101,-0.029241987,-0.006425165,0.000855224,0.0022686627,0.0029180143,0.030283554,-0.018279497,-0.01221888,0.03195006,-0.050880536,-0.022484822,-0.004953952,-0.01752436,-0.017003577,-0.009224376,-0.04382392,0.012928448,0.0005028814,-0.012114723,-0.0022572705,0.009575904,0.0014866738,0.012479272,0.014347582,-0.020453768,0.016873382,0.015753698,-0.027367167,-0.011372607,0.0048400303,0.028591007,-0.0032028179,0.01693848,0.009920923,0.0069199093,0.010487275,0.005953205,-0.032132335,-0.0042216,-0.036298603,0.0045894035,-0.0038733264,-0.007486261,-0.00439411,-0.015610482,0.016105225,0.0030498377,-0.0072909673,0.007642496,-0.020245453,0.006174538,-0.0021677609,-0.013026094,0.012987035,-0.0022979567,-0.014620993,0.0032858176,-0.0016225657,-0.03640276,-0.008716612,-0.012889389,-0.0021254472,-0.01033104,-0.016248442,0.0054063825,-0.007421163,-0.006177793,-0.004013287,-0.0005871019,-0.027367167,0.002865936,-0.024945524,-0.016417695,0.022471802,-0.013566407,0.009667042,-0.01001857,0.013345074,-0.00022133293,0.00019661606,0.0023044664,0.023005605,-0.0046219523,0.02443776,0.015011581,-0.023565447,-0.01380076,0.032158375,0.000019313231,0.008046103,-0.010910411,0.006392616,-0.003385092,0.014126249,-0.024984583,0.0064935177,0.0065879095,-0.0056309705,0.0041011693,0.0011595568,0.0018520359,0.006636733,0.03351241,-0.03444982,0.016417695,-0.008111201,0.012882879,-0.01788891,0.03543931,0.020831335,0.0031686414,-0.003691052,-0.0070696343,-0.0006802733,0.0010700471,-0.0007612388,-0.009966492,0.0345019,-0.014881385,-0.008801239,0.004042581,-0.015141777,0.0232009,-0.018631026,0.009595433,0.02159949,-0.011867351,0.03155947,0.025257993,-0.019841846,-0.0020538394,0.015532364,0.0101422565,0.0018731927,0.029684652,0.0005594353,0.0037821892,0.0077466527,0.038954597,-0.0059076366,0.0168864,-0.00032833766,0.024190389,0.016027108,0.019763729,0.016183343,0.014972522,-0.011405156,-0.026768265,0.002636466,-0.011717626,-0.008391122,-0.031429276,-0.003697562,0.006135479,-0.03536119,-0.0012628997,0.015493305,0.012414174,0.020935493,0.011860841,0.020766238,-0.007434183,-0.02381282,0.003476229,0.017303027,-0.009784218,-0.017680595,-0.0047749327,-0.0250627,-0.002804093,-0.015766717,-0.006841792,-0.018448751,0.030309593,0.00091299834,0.026039168,0.020544903,-0.0020570944,0.0033265038,-0.0023435252,0.008631985,0.012908918,0.011561391,0.0014622621,0.0091071995,-0.018904436,-0.003417641,-0.018995574,0.038251538,0.02068812,-0.010929941,0.005709088,-0.0057839504,-0.010532844,-0.005045089,0.02760152,-0.036897503,0.000048798014,0.028877439,0.008111201,0.0095563745,-0.027210932,-0.0077466527,0.03322598,0.003912385,-0.012902408,-0.016235422,-0.001819487,-0.019633533,-0.008384612,0.012179821,0.0011017823,-0.008872847,0.018930476,-0.009003042,-0.013266956,-0.013123741,0.020076199,0.0043876,-0.023018625,-0.015571423,-0.0032744254,0.014868366,0.118009515,0.00088207686,-0.012550879,0.021469295,-0.0076620253,0.015167816,-0.024385681,-0.014035112,0.016704127,-0.008866337,-0.0030091514,-0.007675045,-0.014894404,0.008807749,0.00879473,-0.017719654,-0.01127496,0.004042581,-0.01001206,0.00813724,0.0016022226,0.006464224,0.011945468,0.0122123705,0.030283554,0.024320584,0.018852359,0.016704127,-0.020245453,-0.006360067,-0.010890882,0.014048131,0.0038342676,-0.0034859937,-0.013878877,0.028044185,0.012863349,-0.0025632307,0.008645004,0.0105979415,-0.011717626,0.013000055,0.009621473,-0.008534337,0.021274,0.0029538183,-0.011405156,-0.00088207686,-0.0008129103,-0.0028577987,0.018748201,-0.008645004,0.0041857962,-0.02475023,-0.017784752,-0.012101703,-0.012095194,-0.005103677,-0.02131306,-0.043693725,-0.015089698,-0.007902888,-0.0009569395,0.006128969,-0.02567462,-0.03252292,-0.026195403,-0.04200118,0.013000055,-0.0015574677,-0.01758946,0.003087269,-0.01161347,-0.0043387767,0.023669604,0.00096751784,-0.006145244,0.010845314,0.022081215,-0.0064284196,-0.0139960535,-0.009543356,0.01378774,-0.0067832037,-0.003149112,0.0019513102,0.004937677,-0.024047172,-0.013253937,0.0034111312,-0.0027210931,0.004667521,0.027783792,0.01756342,-0.012101703,-0.014477778,0.020479806,-0.002309349,-0.004989756,0.0067050857,0.019841846,-0.01000555,-0.008658024,-0.018214399,0.014620993,0.008352064,-0.0016339578,0.004016542,-0.013540368,0.0067506544,0.0065260665,0.011776214,0.017381145,0.0042216,0.014282485,0.019880906,-0.007974495,-0.0065390863,-0.01566256,-0.02662505,-0.024073211,-0.035569504,0.02728905,0.0039937575,-0.0024623289,-0.011737156,-0.014061151,-0.023591487,0.009042101,-0.0015346835,-0.017107734,0.01598805,-0.012349076,-0.004006777,-0.021104746,-0.023760742,-0.029736731,0.017133772,-0.008898886,-0.017927967,-0.030361671,-0.0014402915,-0.00018766511,-0.009211356,0.023435252,-0.038772322,-0.01031802,-0.00470007,-0.014829307,0.037574522,-0.017810792,-0.010057629,-0.027210932,0.001954565,0.009654022,-0.006353557,-0.03359053,-0.024646074,0.04166267,0.02227651,0.005598421,-0.016378637,0.0001534887,-0.006304734,0.01788891,-0.004661011,-0.012772213,-0.021078708,-0.025544425,0.016990557,0.03418943,-0.0023777017,0.0055593625,-0.026117286,-0.021573452,0.012576918,-0.0044038743,0.0015664188,-0.013670564,-0.002367937,0.00045894034,0.0058164992,-0.012557389,0.014165307,-0.018618006,-0.010116217,0.009654022,0.031481355,0.017758714,0.010252923,0.020870393,-0.013078173,0.033069745,0.015076679,0.02757548,-0.008586416,-0.029476339,-0.0010464491,-0.003069367,0.026468815,0.025570463,0.0060313223,-0.02286239,-0.0076620253,-0.012895898,0.019099731,0.011073156,-0.021807805,-0.007642496,-0.035934053,-0.019438239,-0.015740678,-0.025231954,0.0033248763,-0.005321755,0.0011750174,0.0017983301,0.010161785,-0.014894404,-0.02726301,-0.013397153,0.025492346,0.01971165,0.006236381,0.020531885,0.025414228,0.0113270385,-0.031194923,0.0058490485,-0.00086173374,0.0032369941,0.00046463643,0.039527457,-0.0105849225,-0.018006084,0.025453288,0.017927967,-0.033382215,-0.021807805,0.026091248,0.010187825,0.013956995,-0.02031055,0.0062591652,-0.009966492,0.013631505,-0.0043876,0.00039933505,-0.006802733,-0.010526334,-0.018604986,0.036246523,0.0087752,0.008117711,0.016378637,0.0068157525,-0.001983859,-0.020219415,-0.027679637,0.021690628,-0.0038407773,0.024359642,-0.010890882,0.019321064,-0.013345074,-0.0014411053,-0.01535009,-0.013709622,0.009823277,0.021417215,-0.007714104,0.0035738759,-0.007492771,-0.016092205,0.020766238,-0.0072909673,-0.015597462,-0.03293955,0.0028415243,-0.0052436376,-0.009562884,0.006347047,-0.019867886,0.009881864,-0.012121233,-0.002037565,-0.022602,-0.0006306361,0.027809832,-0.018422712,-0.020570943,0.0009382238,0.007675045,-0.0015664188,0.009673552,-0.010558883,0.017706634,0.028356655,-0.018422712,-0.003827758,0.021456275,-0.0010179688,-0.024515877,0.014035112,-0.01032453,-0.020883413,0.027184892,-0.008299985,-0.043381255,-0.030439788,-0.0056830486,0.015154797,0.0079289265,0.012427193,0.0075057903,0.016027108,0.011261941,-0.019932983,-0.03944934,-0.018396672,0.0004442933,0.03129908,0.046167444,-0.018904436,0.0003319994,-0.015493305,0.01630052,0.0035478368,0.0015533991,-0.00848226,-0.037939068,0.024073211,-0.01564954,-0.010767196,-0.00039465615,-0.008098181,-0.017641537,0.004413639,0.0010936451,-0.019854866,0.024034154,0.02227651,0.0047554034,0.020935493,-0.01503762,-0.007948456,-0.032028176,0.00656838,-0.024737211,-0.014686091,-0.019151809,0.026182385,0.004631717,-0.039501417,-0.022055175,-0.0042085806,-0.039683692,-0.00690038,-0.024515877,0.017368125,-0.007447202,-0.016105225,-0.021443255,0.039267067,-0.0012279096,0.017498322,0.012062645,-0.02536215,0.008801239,-0.0151808355,0.011834802,-0.021247962,-0.019477298,-0.0064154,0.023252977,0.022953527,0.010187825,0.010272452,-0.0018438987,0.0018520359,-0.03478833,0.0027634068,0.013501309,0.017198872,0.023943016,-0.0043029725,-0.012479272,-0.0008169789,0.02159949,0.0014199484,-0.017368125,0.026442776,-0.010519824,0.018045144,-0.015441227,-0.019112749,-0.016873382,0.0077466527,0.009139748,0.0031133082,-0.027002618,-0.011157784,-0.006620459,-0.03262708,-0.003954699,0.029971084,0.004322502,0.012238409,0.010942961,-0.0022133293,-0.016560912,0.021247962,0.008918416,0.012576918,-0.012765703,-0.016053148,-0.037209973,0.015597462,0.010623981,0.008013554,-0.018136282,-0.030778298,0.0068743406,0.007616457,-0.004260659,-0.021091728,-0.016443735,-0.013000055,0.0046479916,-0.00006911568,0.005481245,-0.036246523,0.009953472,-0.0022914468,-0.020570943,0.012687585,0.21091726,-0.01594899,-0.026559953,0.05358861,0.016795265,-0.011659038,0.01535009,0.0060020285,-0.0077271233,-0.015376129,0.034293585,-0.016079187,-0.03601217,-0.0037561501,-0.009055121,-0.007043595,-0.05582798,-0.0073104966,-0.0040946594,-0.016066168,0.010916921,0.019490318,0.0044266586,-0.0042476393,0.03168967,-0.011450725,-0.01033104,-0.00140937,0.013839819,0.03666315,-0.027002618,-0.016196363,0.027210932,-0.020753218,-0.017303027,0.0134101715,0.017107734,-0.0035510915,0.030543946,0.019490318,0.012772213,0.010806255,0.0053477944,-0.009439198,0.023057684,-0.004019797,-0.0156886,-0.0028577987,-0.001943173,-0.005139481,-0.027419245,-0.024047172,0.018787261,0.022680117,-0.019386161,-0.009250415,-0.0028708184,-0.009341552,-0.01661299,0.008645004,-0.011711116,0.017706634,-0.010910411,0.03155947,-0.05447394,-0.010838804,-0.006138734,-0.006304734,0.010233393,-0.0039384244,-0.009217866,0.0068157525,-0.018709144,0.026559953,-0.006952458,-0.021755725,0.006288459,0.0351008,0.015922952,0.010213864,0.013273466,0.0269245,-0.0015533991,-0.01756342,-0.023018625,-0.028486852,0.0013605466,0.009465238,-0.018969534,-0.009055121,-0.014946483,0.013644525,-0.023695644,-0.019321064,-0.018787261,-0.011711116,0.0028789556,-0.0011123607,0.007941946,-0.024060192,-0.017329067,0.014126249,-0.011958488,0.00013955367,-0.017810792,-0.0032695432,0.0013784484,0.02598709,0.012108213,0.0076229665,-0.0041565024,-0.037209973,0.008026574,0.0039319145,0.0012775467,0.009035592,-0.028877439,-0.0033427782,0.0139960535,0.0024037408,0.0061517535,-0.02290145,0.030127319,-0.01441268,0.014165307,0.0032727981,-0.005601676,-0.014855346,0.0039839926,-0.027158853,0.015284992,0.02817438,0.008671043,-0.026156345,-0.009927433,-0.011873861,-0.0151808355,-0.0049734814,-0.013631505,-0.011151274,-0.023591487,0.033408254,0.016652048,-0.012082174,0.014217386,-0.023786781,0.0064707333,-0.014464758,-0.0068222624,0.009959982,0.0055268137,0.006737635,-0.03322598,0.0033427782,0.047859993,-0.0034892487,-0.032757275,-0.020896433,0.03155947,-0.01693848,-0.03387696,-0.02094851,0.04674031,-0.002556721,-0.04358957,-0.009315513,-0.16342182,0.027028657,0.008931435,0.005862068,0.013253937,-0.008859827,0.038798362,-0.0064446945,-0.0048432853,-0.003476229,0.03853797,-0.03007524,-0.026872423,-0.026429756,-0.011672057,-0.008599436,-0.059160993,0.0117827235,0.01722491,0.018956514,0.01346225,-0.003276053,-0.0017934478,0.0013434583,0.026416738,-0.013345074,-0.005041834,0.024880426,-0.029502379,-0.0020424472,-0.026442776,-0.025817836,0.032444805,0.012895898,0.02192498,-0.006011793,-0.009992531,-0.008723121,0.02132608,0.039241027,0.008111201,0.024984583,0.002957073,0.00580348,-0.011860841,0.008228377,0.0065423413,-0.01696452,0.004127208,-0.038616087,0.02757548,-0.012609468,-0.017511342,0.005155755,0.013371113,0.01696452,-0.005230618,0.01472515,-0.022302547,-0.018344594,-0.018409692,-0.02382584,-0.036715228,-0.026247483,-0.01348829,-0.026221443,-0.030882454,-0.015909933,-0.010168295,-0.018761221,-0.0156886,0.004176032,0.028747242,0.024515877,0.024138309,0.010148766,-0.03291351,0.001739742,0.02225047,0.005699323,-0.00029558525,0.002096153,-0.021794785,0.013696603,-0.0056277155,0.03221045,0.018396672,-0.011743665,-0.022302547,-0.002161251,0.0071282224,0.014048131,-0.0067571644,-0.005513794,0.011815273,0.024919484,0.0135533875,0.010226884,0.023383174,-0.029580496,0.00007216715,0.0074732415,-0.025453288,0.030622063,0.02689846,-0.028382694,0.0046447366,0.013501309,0.018995574,-0.038616087,-0.029033674,0.024398701,0.0057806955,0.035960093,-0.011014569,0.034397744,-0.004569874,-0.02321392,0.02570066,-0.015441227,0.04702674,-0.0006892242,0.010487275,0.008553867,-0.017758714,0.00075269473,-0.08467938,-0.034606054,0.007759672,-0.010838804,-0.0067115957,0.02697658,0.0007819888,0.0154802855,0.009322022,0.022966547,0.003043328,-0.03700166,-0.015298012,0.0022865646,0.029033674,0.010571903,-0.0019301533,-0.003912385,-0.008280456,0.026091248,-0.008417161,0.007642496,-0.03234065,0.0101422565,-0.012485782,-0.011151274,-0.019282004,0.024034154,0.02101361,-0.014607973,0.014516837,0.0017429969,0.016990557,-0.030049201,-0.03038771,0.0008430181,-0.00053827843,-0.01721189,0.0068222624,-0.03543931,-0.0024688386,0.00076530746,0.014230406,-0.018305536,-0.008540847,0.016873382,-0.002800838,0.004019797,0.042417806,-0.021938,0.012681075,-0.03478833,-0.0012254684,-0.031090768,0.023148822,-0.015141777,0.0023418977,0.002494878,-0.004283443,0.014894404,-0.019164829,0.016704127,-0.021521373,0.008911906,-0.012010567,0.0043615606,-0.024580976,-0.009165787,-0.016730165,0.00088044937,0.009413159,0.022094235,-0.025153836,0.008417161,-0.03007524,-0.02322694,-0.0114767635,-0.01972467,0.027028657,-0.015376129,-0.016222402,-0.010780216,0.0065586157,-0.022745214,0.036506914,-0.012902408,0.003505523,0.012576918,-0.0021042903,-0.04733921,-0.008391122,0.010038099,0.022497842,-0.0111903325,-0.038798362,-0.003538072,0.0055658724,-0.00053420983,0.04158455,-0.019451259,0.01160045,-0.0051166965,-0.040282596,0.032757275,0.0016990558,0.000113819646,-0.0007657143,-0.0065032826,0.007616457,-0.024086231,0.016027108,-0.019633533,0.01032453,0.02036263,-0.018071184,-0.03132512,-0.004602423,-0.036532953,0.027523402,-0.013696603,0.019685611,0.01159394,0.0045275604,0.031142846,-0.0010016942,-0.00033688176,0.005917401,0.050229557,-0.0010757431,0.022432745,-0.011392136,-0.049604617,-0.009172297,-0.0075057903,0.022120275,-0.014829307,-0.015792755,-0.015714638,-0.011203352,-0.00422811,0.01632656,-0.0032402491,0.009074651,0.014620993,-0.013514329,-0.021703647,-0.032366686,-0.013631505,-0.029528417,-0.0006631851,0.0225369,0.010552373,0.021885922,0.022602,-0.013761701,-0.022758234,-0.01252484,-0.017615497,0.0018748201,0.015011581,-0.013722642,-0.020727178,0.020232433,-0.011672057,0.021742705,-0.019568436,0.04572478,0.010825785,-0.027471323,0.021195883,0.039553497,-0.021352118,-0.009881864,-0.012446723,0.0063730865,-0.0054975194,0.0074992804,0.011854332,-0.01285033,-0.012550879,-0.015324051,0.031247003,0.008898886,-0.0016494186,-0.020922473,0.017172832,0.0288514,0.021208903,-0.0045243055,0.0034664643,0.018305536,0.0027650343,-0.039501417,-0.0102919815,0.010168295,0.009191827,0.023422232,0.019815808,-0.014308523,0.008651514,0.023122782,0.02913783,-0.000119414,0.0025974072,0.014555896,0.02658599,-0.0007152634,0.024463799,-0.013501309,-0.017094715,-0.008234887,-0.016391657,0.017316047,0.00020119327,-0.0035120328,0.00392215,-0.015206874,0.011385626,-0.004517796,-0.01503762,-0.023409212,0.025935013,0.03387696,0.0072453986,-0.0026462306,-0.01128147,0.042157415,0.0116329985,0.006506537,-0.0009829786,0.0061224597,-0.012446723,-0.017133772,-0.024880426,-0.010545864,-0.0110340975,0.0045275604,0.0029684652,-0.02317486,0.025166856,-0.018279497,0.08155467,0.021521373,-0.011372607,-0.011248921,0.013618485,0.010070649,0.01160045,0.0105914315,-0.013983034,0.0022019371,0.011314019,0.010487275,0.037808873,-0.0147381695,-0.03666315,0.0078117508,0.0052794414,-0.0070240656,-0.01696452,-0.0016656931,0.021807805,0.012889389,0.014998561,0.004823756,-0.029059712,0.002309349,0.01032453,0.007707594,-0.002335388,-0.028122302,0.017745694,0.0027780537,-0.008234887,-0.00027829362,0.02916387,0.0063795964,-0.010754176,0.019998081,0.0038896007,0.012466252,0.007043595,0.019112749,-0.010715118,-0.0064056357,0.020102238,-0.0029228968,-0.037965108,0.024021134,-0.04265216]}]\n"
  },
  {
    "path": "src/types.ts",
    "content": "export interface DataPoint {\n  id: number | string;\n  text: string;\n  vector: number[];\n}\n\nexport type ClusteringArgument = {\n  records: DataPoint[];\n  n: number;\n  pcaDimensions: number;\n  // we will add more in the future\n  clusteringAlgorithm: 'kmeans';\n};\n\nexport type ClusterRankingGroup = {\n  silhouetteScores: number[];\n  avgSilhouetteScore: number;\n  clusterId: number;\n  records: DataPoint[];\n  count: number;\n  customDensity: number;\n};\n\nexport type ClusteringResult = {\n  rankings: ClusterRankingGroup[];\n};\n\nexport type ClassificationRequest = {\n  clusteringResult: ClusteringResult;\n  openAiApiKey: string;\n\n  nTopics?: number; // defaults to 10\n  elementsPerGroup?: number; // defaults to 10\n  temperature?: number; // defaults to 0.1\n};\n\nexport type ClassifiedClusterResponse = {\n  // this is the density score\n  score: number;\n\n  // these are the same as from the cluster ranking result\n  clusterId: number;\n  count: number;\n  records: DataPoint[];\n\n  // generated from GPT\n  name: string;\n};\n"
  },
  {
    "path": "src/utils.ts",
    "content": "import { KMeansResult } from 'ml-kmeans/lib/KMeansResult';\nimport { ClusterRankingGroup, DataPoint } from './types';\nimport { orderBy } from 'lodash';\n\nexport function euclideanDistance(point1: number[], point2: number[]): number {\n  if (point1.length !== point2.length)\n    throw new Error('Both points must have the same dimension!');\n\n  let sum = 0;\n  for (let i = 0; i < point1.length; i++) {\n    sum += Math.pow(point1[i] - point2[i], 2);\n  }\n\n  return Math.sqrt(sum);\n}\n\nexport function averageDistance(point: number[], points: number[][]): number {\n  let sum = 0;\n  for (let i = 0; i < points.length; i++) {\n    sum += euclideanDistance(point, points[i]);\n  }\n  return sum / points.length;\n}\n\n/**\n * Returns the silhouette score for each embedding in the dataset\n */\nexport function silhouetteScore(\n  embeddings: number[][],\n  labels: number[],\n): number[] {\n  // Number of clusters\n  const n_clusters = Math.max(...labels) + 1;\n\n  // Separate embeddings into clusters\n  const clusters: number[][][] = [];\n  for (let i = 0; i < n_clusters; i++) {\n    clusters.push([]); // Correctly initialize each cluster as a separate array\n  }\n\n  for (let i = 0; i < embeddings.length; i++) {\n    clusters[labels[i]].push(embeddings[i]);\n  }\n\n  // Compute silhouette scores\n  const scores: number[] = [];\n  for (let i = 0; i < embeddings.length; i++) {\n    // Calculate a\n    const a = averageDistance(embeddings[i], clusters[labels[i]]);\n\n    // Calculate b for all other clusters and find the minimum\n    let b = Number.POSITIVE_INFINITY;\n    for (let j = 0; j < n_clusters; j++) {\n      if (j != labels[i] && clusters[j].length > 0) {\n        const tmp_b = averageDistance(embeddings[i], clusters[j]);\n        if (tmp_b < b) {\n          b = tmp_b;\n        }\n      }\n    }\n\n    // Calculate silhouette score\n    let s = 0;\n    if (a < b) {\n      s = 1 - a / b;\n    } else if (a > b) {\n      s = b / a - 1;\n    }\n    scores.push(s);\n  }\n\n  return scores;\n}\n\nexport function createCustomClusterRankings(\n  kmeansResult: KMeansResult,\n  silhouetteScores: number[],\n  data: DataPoint[],\n): ClusterRankingGroup[] {\n  const clusterRankings: ClusterRankingGroup[] = [];\n\n  for (let i = 0; i < kmeansResult.clusters.length; i++) {\n    const clusterId = kmeansResult.clusters[i];\n    const silhouetteScore = silhouetteScores[i];\n    const record = data[i];\n    const existingCluster = clusterRankings.find(\n      (c) => c.clusterId === clusterId,\n    );\n\n    if (existingCluster) {\n      existingCluster.records.push(record);\n      existingCluster.count++;\n      existingCluster.silhouetteScores.push(silhouetteScore);\n    } else {\n      clusterRankings.push({\n        clusterId,\n        records: [record],\n        count: 1,\n        silhouetteScores: [silhouetteScore],\n        customDensity: 0,\n        avgSilhouetteScore: 0,\n      });\n    }\n  }\n\n  for (const cluster of clusterRankings) {\n    cluster.avgSilhouetteScore =\n      cluster.silhouetteScores.reduce((a, b) => a + b, 0) /\n      cluster.silhouetteScores.length;\n\n    const customDensityScore =\n      cluster.avgSilhouetteScore * Math.log(cluster.count);\n    cluster.customDensity = customDensityScore;\n  }\n\n  const sortedClusters = orderBy(\n    clusterRankings,\n    (c) => c.customDensity,\n    'desc',\n  );\n  return sortedClusters;\n}\n"
  },
  {
    "path": "src/vector2Trend.ts",
    "content": "import {\n  ClassificationRequest,\n  ClassifiedClusterResponse,\n  ClusteringArgument,\n  ClusteringResult,\n  DataPoint,\n} from './types';\nimport { first, trim } from 'lodash';\nimport {\n  Configuration,\n  CreateChatCompletionResponseChoicesInner,\n  OpenAIApi,\n} from 'openai';\nimport { kmeans } from 'ml-kmeans';\nimport { PCA } from 'ml-pca';\nimport { createCustomClusterRankings, silhouetteScore } from './utils';\nimport { Logger } from 'tslog';\n\nconst debugLogging = () => {\n  return new Logger({\n    name: 'vector2trend',\n    minLevel: 2,\n    type: 'pretty',\n  });\n};\n\nconst defaultLogging = () => {\n  return new Logger({\n    name: 'vector2trend',\n    minLevel: 5,\n    type: 'pretty',\n  });\n};\n\nlet log = defaultLogging();\n\nexport const cleanClassification = <T>(\n  classification: CreateChatCompletionResponseChoicesInner[],\n): T | null => {\n  try {\n    const textResponse = first(classification)?.message?.content;\n    if (!textResponse) {\n      log.debug('No text response from classification', classification);\n      return null;\n    }\n    const trimmedString = trim(\n      textResponse.substring(textResponse.indexOf('{')),\n    );\n\n    log.debug('Parsing classification...', trimmedString);\n    const parsed = JSON.parse(trimmedString);\n\n    log.debug('Parsed classification', parsed);\n    log.debug('Parsed formatted', JSON.stringify(parsed, null, 2));\n    return parsed;\n  } catch (error) {\n    log.debug('Error parsing classification', error);\n    return null;\n  }\n};\n\nexport const callCompletion = async ({\n  apiKey,\n  promptText,\n  temperature,\n}: {\n  apiKey: string;\n  promptText: string;\n  temperature?: number;\n}) => {\n  const configuration = new Configuration({\n    apiKey: apiKey,\n  });\n  const openai = new OpenAIApi(configuration);\n  const response = await openai.createChatCompletion({\n    model: 'gpt-3.5-turbo',\n    messages: [{ role: 'user', content: promptText }],\n    max_tokens: 1000,\n    temperature: temperature ?? 0.5,\n  });\n\n  return response.data.choices;\n};\n\n/**\n * This will always sort the clusters by size and order by the top 10\n *\n * This is not necessarily the best way to do this you might want the\n * tightest clusters but this is a good starting point\n */\nexport const classifyClusters = async (\n  args: ClassificationRequest,\n): Promise<ClassifiedClusterResponse[]> => {\n  const nTopics = args.nTopics ?? 10;\n  if (nTopics > args.clusteringResult.rankings.length) {\n    throw new Error(\n      `Number of topics cannot exceed number of clustering results. nTopics=${nTopics}`,\n    );\n  }\n\n  /**\n   * Assume these are sorted descending by score\n   */\n  // Only get the top n groups\n  const topnGroups = args.clusteringResult.rankings.slice(0, nTopics);\n\n  // this is here for sanity so you don't burn a TON of tokens\n  const maxElementsPerGroup = args.elementsPerGroup ?? 10;\n\n  const topNGroupsTruncatedMembers = topnGroups.map((group) => {\n    return {\n      ...group,\n      records: group.records.slice(0, maxElementsPerGroup),\n    };\n  });\n\n  const prompt = `You will be asked to summarize the topics of the following groups text. Please provide a short name for each of groups between 1-6 words based on the content.\n  You must return a single JSON formatted list of strings (Array<string>) with the same length as the number of groups. There are ${\n    topNGroupsTruncatedMembers.length\n  } groups.\n  ${topNGroupsTruncatedMembers\n    .map((cluster, i) => {\n      return `Group ${i + 1}:\n  ${cluster.records\n    .map((record, i) => `Feedback ${i + 1}: ${record.text}`)\n    .join('\\n')}\n  `;\n    })\n    .join('\\n')})\n  }\n  JSON Response:`;\n  const completion = await callCompletion({\n    apiKey: args.openAiApiKey,\n    promptText: prompt,\n    temperature: args.temperature ?? 0.1,\n  });\n  const resultClassification = cleanClassification<string[]>(completion);\n\n  if (resultClassification) {\n    return topnGroups.map((cluster, i) => {\n      return {\n        ...cluster,\n        score: cluster.customDensity,\n        name: resultClassification[i] ?? 'N/A',\n      };\n    });\n  }\n\n  return topnGroups.map((cluster) => {\n    return {\n      ...cluster,\n      score: cluster.customDensity,\n      name: 'N/A',\n    };\n  });\n};\n\nexport class Vector2Trend {\n  static cluster(args: ClusteringArgument): ClusteringResult {\n    if (args.records.length < args.pcaDimensions) {\n      log.debug(\n        'Not enough valid vectors to run kmeans',\n        args.records.length,\n        args.pcaDimensions,\n      );\n      throw new Error('Not enough valid vectors to run kmeans');\n    }\n\n    const originalDatapoints = args.records;\n    /**\n     * Do PCA to reduce dimensionality\n     */\n    const pca = new PCA(originalDatapoints.map((row) => row.vector));\n    const reducedDimensions = pca.predict(\n      originalDatapoints.map((row) => row.vector),\n      {\n        // You cannot have more components and the number of the records\n        nComponents: args.pcaDimensions,\n      },\n    );\n\n    const dataPointsReduced: DataPoint[] = [];\n    for (let i = 0; i < originalDatapoints.length; i++) {\n      dataPointsReduced.push({\n        id: originalDatapoints[i].id,\n        text: originalDatapoints[i].text,\n        vector: reducedDimensions.getRow(i),\n      });\n    }\n\n    // Convert embeddings back into a list format\n    const embeddings = dataPointsReduced.map((row) => row.vector);\n\n    // Decide on the number of clusters (you may need to adjust this)\n    // this algo feels about correct\n    const num_clusters = Math.ceil(originalDatapoints.length / 4) + 1;\n\n    // Perform k-means clustering\n    const kmeansResult = kmeans(embeddings, num_clusters, {\n      // TODO ??\n      initialization: 'kmeans++',\n      seed: 42,\n    });\n\n    const silhouetteScores = silhouetteScore(\n      dataPointsReduced.map((x) => x.vector),\n      kmeansResult.clusters,\n    );\n\n    const rankings = createCustomClusterRankings(\n      kmeansResult,\n      silhouetteScores,\n      dataPointsReduced,\n    );\n\n    return {\n      rankings: rankings,\n    };\n  }\n\n  static async classify(\n    args: ClassificationRequest,\n  ): Promise<ClassifiedClusterResponse[]> {\n    return classifyClusters(args);\n  }\n\n  static enableLogging() {\n    log = debugLogging();\n  }\n}\n"
  },
  {
    "path": "src/vector2trends.test.ts",
    "content": "import { ClusteringArgument, DataPoint } from './types';\nimport { Vector2Trend } from './vector2Trend';\nimport fs from 'fs';\n\nconst testData = fs.readFileSync('./src/sample-data.json', 'utf8');\n\nconst testDataPoints = JSON.parse(testData) as DataPoint[];\n\ndescribe('Vector2Trend', () => {\n  beforeEach(() => {\n    jest.clearAllMocks();\n  });\n\n  it('should perform clustering', () => {\n    // Setup\n    const clusteringArgs: ClusteringArgument = {\n      records: testDataPoints,\n      n: 1536,\n      pcaDimensions: 20,\n      clusteringAlgorithm: 'kmeans',\n    };\n\n    const clusterResult = Vector2Trend.cluster(clusteringArgs);\n\n    expect(clusterResult.rankings.length).toBeLessThan(100);\n    expect(clusterResult.rankings[0]).toEqual({\n      avgSilhouetteScore: expect.any(Number),\n      clusterId: expect.any(Number),\n      count: expect.any(Number),\n      customDensity: expect.any(Number),\n      records: expect.any(Array),\n      silhouetteScores: expect.any(Array),\n    });\n\n    /**\n     * The strongest cluster in this group is \n     * people complaining they did not get their order\n     */\n    const allTextFirstCluster = clusterResult.rankings[0].records.map(r => r.text);\n    expect(allTextFirstCluster).toContain(`i didn’t receive my order`);\n  });\n});\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"target\": \"es6\" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES6'/'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', 'ESNext'. */,\n    \"module\": \"commonjs\" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es6', 'ES2015', 'ES2020' or 'ESNext'. */,\n    \"declaration\": true /* Generates corresponding '.d.ts' file. */,\n    \"outDir\": \"./dist\" /* Redirect output structure to the directory. */,\n    \"strict\": true /* Enable all strict type-checking options. */,\n    \"noImplicitAny\": true /* Raise error on expressions and declarations with an implied 'any' type. */,\n    \"moduleResolution\": \"node\" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,\n    \"esModuleInterop\": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. */,\n    \"skipLibCheck\": true /* Skip type checking of declaration files. */,\n    \"forceConsistentCasingInFileNames\": true /* Disallow inconsistently-cased references to the same file. */\n  },\n  \"include\": [\n    \"src/**/*.ts\"\n  ] /* Specify files to be included in the compilation. */,\n  \"exclude\": [\n    \"node_modules\"\n  ] /* Specify files to be excluded from the compilation. */\n}\n"
  }
]