{"id":3886,"date":"2025-05-14T14:23:48","date_gmt":"2025-05-14T19:23:48","guid":{"rendered":"https:\/\/dumpflashedit.com\/?page_id=3886"},"modified":"2025-05-29T12:37:33","modified_gmt":"2025-05-29T17:37:33","slug":"convertidor-hexbin","status":"publish","type":"page","link":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/","title":{"rendered":"Convertidor hexbin"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"3886\" class=\"elementor elementor-3886\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6d7ed08 e-flex e-con-boxed e-con e-parent\" data-id=\"6d7ed08\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-caaf273 elementor-widget elementor-widget-html\" data-id=\"caaf273\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<!DOCTYPE html>\r\n<html lang=\"es\">\r\n<head>\r\n  <meta charset=\"UTF-8\">\r\n  <title>Convertidor HEX \u21c4 BIN<\/title>\r\n<\/head>\r\n<body style=\"font-family: sans-serif; padding: 20px;\">\r\n  <h2>Convertidor HEX \u21c4 BIN<\/h2>\r\n  <input type=\"file\" id=\"fileInput\" \/>\r\n  <br><br>\r\n  <button id=\"convertBtn\" disabled>Sube tu archivo HEX\/BIN<\/button>\r\n\r\n  <script>\r\n    let fileData = null;\r\n    let fileName = '';\r\n\r\ndocument.getElementById('fileInput').addEventListener('change', async (event) => {\r\n  const file = event.target.files[0];\r\n  const convertBtn = document.getElementById('convertBtn');\r\n  if (!file) return;\r\n\r\n  fileName = file.name;\r\n  const reader = new FileReader();\r\n  reader.onload = () => {\r\n    fileData = reader.result;\r\n    convertBtn.disabled = false;\r\n  };\r\n\r\n  if (file.name.endsWith('.hex')) {\r\n    reader.readAsText(file);\r\n    convertBtn.textContent = 'Convertir a BIN';\r\n  } else if (file.name.endsWith('.bin')) {\r\n    reader.readAsArrayBuffer(file);\r\n    convertBtn.textContent = 'Convertir a HEX';\r\n  } else {\r\n    alert('Solo se permiten archivos .hex o .bin');\r\n    convertBtn.disabled = true;\r\n  }\r\n});\r\n\r\n\r\n    document.getElementById('convertBtn').addEventListener('click', () => {\r\n      if (fileName.endsWith('.hex')) {\r\n        const binData = hexToBin(fileData);\r\n        downloadFile(new Uint8Array(binData), fileName.replace('.hex', '_converted.bin'), 'application\/octet-stream');\r\n      } else if (fileName.endsWith('.bin')) {\r\n        const hexText = binToHex(new Uint8Array(fileData));\r\n        downloadFile(hexText, fileName.replace('.bin', '_converted.hex'), 'text\/plain');\r\n      }\r\n    });\r\n\r\nfunction hexToBin(hexText) {\r\n  const lines = hexText.trim().split(\/\\r?\\n\/);\r\n  const memory = new Map();\r\n  let extAddr = 0;\r\n\r\n  for (let line of lines) {\r\n    if (!line.startsWith(':')) continue;\r\n\r\n    const byteCount = parseInt(line.slice(1, 3), 16);\r\n    const address = parseInt(line.slice(3, 7), 16);\r\n    const recordType = parseInt(line.slice(7, 9), 16);\r\n\r\n    if (recordType === 4) {\r\n      extAddr = parseInt(line.slice(9, 13), 16) << 16;\r\n      continue;\r\n    }\r\n    if (recordType !== 0) continue;\r\n\r\n    const fullAddr = extAddr + address;\r\n    const data = line.slice(9, 9 + byteCount * 2);\r\n\r\n    for (let i = 0; i < byteCount; i++) {\r\n      const byte = parseInt(data.slice(i * 2, i * 2 + 2), 16);\r\n      memory.set(fullAddr + i, byte);\r\n    }\r\n  }\r\n\r\n  const addresses = [...memory.keys()];\r\n  const maxAddr = Math.max(...addresses);\r\n  const fullArray = new Uint8Array(maxAddr + 1); \/\/ Desde 0 hasta maxAddr\r\n\r\n  for (let [addr, value] of memory.entries()) {\r\n    fullArray[addr] = value;\r\n  }\r\n\r\n  return fullArray.buffer;\r\n}\r\n\r\n\r\n\r\n    function binToHex(binArray) {\r\n      const lines = [];\r\n      const chunkSize = 16;\r\n      let upperAddress = -1;\r\n\r\n      for (let addr = 0; addr < binArray.length; addr += chunkSize) {\r\n        const chunk = binArray.slice(addr, addr + chunkSize);\r\n        const len = chunk.length;\r\n        const lowAddr = addr & 0xFFFF;\r\n        const highAddr = addr >> 16;\r\n\r\n        if (highAddr !== upperAddress) {\r\n          upperAddress = highAddr;\r\n          const extAddrLine = `02000004${highAddr.toString(16).padStart(4, '0').toUpperCase()}`;\r\n          const checksum = calculateChecksum([0x02, 0x00, 0x00, 0x04, highAddr >> 8, highAddr & 0xFF]);\r\n          lines.push(`:${extAddrLine}${checksum}`);\r\n        }\r\n\r\n        let line = `:${len.toString(16).padStart(2, '0').toUpperCase()}`;\r\n        line += lowAddr.toString(16).padStart(4, '0').toUpperCase();\r\n        line += '00'; \/\/ Record type\r\n\r\n        let checksum = len + (lowAddr >> 8) + (lowAddr & 0xFF);\r\n        let dataStr = '';\r\n        for (let byte of chunk) {\r\n          dataStr += byte.toString(16).padStart(2, '0').toUpperCase();\r\n          checksum += byte;\r\n        }\r\n\r\n        checksum = ((~checksum + 1) & 0xFF).toString(16).padStart(2, '0').toUpperCase();\r\n        lines.push(`${line}${dataStr}${checksum}`);\r\n      }\r\n\r\n      lines.push(':00000001FF'); \/\/ End Of File\r\n      return lines.join('\\n');\r\n    }\r\n\r\n    function calculateChecksum(bytes) {\r\n      const sum = bytes.reduce((acc, b) => acc + b, 0);\r\n      return ((~sum + 1) & 0xFF).toString(16).padStart(2, '0').toUpperCase();\r\n    }\r\n\r\n    function downloadFile(content, name, type) {\r\n      const blob = content instanceof Uint8Array\r\n        ? new Blob([content], { type })\r\n        : new Blob([content], { type });\r\n\r\n      const a = document.createElement('a');\r\n      a.href = URL.createObjectURL(blob);\r\n      a.download = name;\r\n      a.click();\r\n      URL.revokeObjectURL(a.href);\r\n    }\r\n  <\/script>\r\n<\/body>\r\n<\/html>\r\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>Convertidor HEX \u21c4 BIN Convertidor HEX \u21c4 BIN Sube tu archivo HEX\/BIN<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-3886","page","type-page","status-publish","hentry"],"acf":[],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Convertidor HEX \u21c4 BIN Convertidor HEX \u21c4 BIN Sube tu archivo HEX\/BIN\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"es_ES\" \/>\n\t\t<meta property=\"og:site_name\" content=\"DumpFlashEdit | **DumpFlashEdit** es una herramienta online para editar dumps de memoria, modificar valores como kilometraje y analizar archivos binarios f\u00e1cilmente.\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"DumpFlashEdit\" \/>\n\t\t<meta property=\"og:description\" content=\"Convertidor HEX \u21c4 BIN Convertidor HEX \u21c4 BIN Sube tu archivo HEX\/BIN\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/dumpflashedit.com\/wp-content\/uploads\/2026\/01\/logo-dumpflash.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/dumpflashedit.com\/wp-content\/uploads\/2026\/01\/logo-dumpflash.png\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2025-05-14T19:23:48+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-05-29T17:37:33+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"DumpFlashEdit\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Convertidor HEX \u21c4 BIN Convertidor HEX \u21c4 BIN Sube tu archivo HEX\/BIN\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/dumpflashedit.com\/wp-content\/uploads\/2026\/01\/logo-dumpflash.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/index.php\\\/convertidor-hexbin\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dumpflashedit.com#listItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\\\/\\\/dumpflashedit.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/index.php\\\/convertidor-hexbin\\\/#listItem\",\"name\":\"Convertidor hexbin\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/index.php\\\/convertidor-hexbin\\\/#listItem\",\"position\":2,\"name\":\"Convertidor hexbin\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dumpflashedit.com#listItem\",\"name\":\"Inicio\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/#organization\",\"name\":\"dumpflash\",\"description\":\"**DumpFlashEdit** es una herramienta online para editar dumps de memoria, modificar valores como kilometraje y analizar archivos binarios f\\u00e1cilmente.\",\"url\":\"https:\\\/\\\/dumpflashedit.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/dumpflashedit.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/logo-dumpflash.png\",\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/index.php\\\/convertidor-hexbin\\\/#organizationLogo\",\"width\":1500,\"height\":720},\"image\":{\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/index.php\\\/convertidor-hexbin\\\/#organizationLogo\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/index.php\\\/convertidor-hexbin\\\/#webpage\",\"url\":\"https:\\\/\\\/dumpflashedit.com\\\/index.php\\\/convertidor-hexbin\\\/\",\"name\":\"DumpFlashEdit\",\"description\":\"Convertidor HEX \\u21c4 BIN Convertidor HEX \\u21c4 BIN Sube tu archivo HEX\\\/BIN\",\"inLanguage\":\"es-CO\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/index.php\\\/convertidor-hexbin\\\/#breadcrumblist\"},\"datePublished\":\"2025-05-14T14:23:48-05:00\",\"dateModified\":\"2025-05-29T12:37:33-05:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/#website\",\"url\":\"https:\\\/\\\/dumpflashedit.com\\\/\",\"name\":\"DumpFlash\",\"alternateName\":\"DumpFlash\",\"description\":\"**DumpFlashEdit** es una herramienta online para editar dumps de memoria, modificar valores como kilometraje y analizar archivos binarios f\\u00e1cilmente.\",\"inLanguage\":\"es-CO\",\"publisher\":{\"@id\":\"https:\\\/\\\/dumpflashedit.com\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"DumpFlashEdit","description":"Convertidor HEX \u21c4 BIN Convertidor HEX \u21c4 BIN Sube tu archivo HEX\/BIN","canonical_url":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/dumpflashedit.com#listItem","position":1,"name":"Inicio","item":"https:\/\/dumpflashedit.com","nextItem":{"@type":"ListItem","@id":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/#listItem","name":"Convertidor hexbin"}},{"@type":"ListItem","@id":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/#listItem","position":2,"name":"Convertidor hexbin","previousItem":{"@type":"ListItem","@id":"https:\/\/dumpflashedit.com#listItem","name":"Inicio"}}]},{"@type":"Organization","@id":"https:\/\/dumpflashedit.com\/#organization","name":"dumpflash","description":"**DumpFlashEdit** es una herramienta online para editar dumps de memoria, modificar valores como kilometraje y analizar archivos binarios f\u00e1cilmente.","url":"https:\/\/dumpflashedit.com\/","logo":{"@type":"ImageObject","url":"https:\/\/dumpflashedit.com\/wp-content\/uploads\/2026\/01\/logo-dumpflash.png","@id":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/#organizationLogo","width":1500,"height":720},"image":{"@id":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/#organizationLogo"}},{"@type":"WebPage","@id":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/#webpage","url":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/","name":"DumpFlashEdit","description":"Convertidor HEX \u21c4 BIN Convertidor HEX \u21c4 BIN Sube tu archivo HEX\/BIN","inLanguage":"es-CO","isPartOf":{"@id":"https:\/\/dumpflashedit.com\/#website"},"breadcrumb":{"@id":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/#breadcrumblist"},"datePublished":"2025-05-14T14:23:48-05:00","dateModified":"2025-05-29T12:37:33-05:00"},{"@type":"WebSite","@id":"https:\/\/dumpflashedit.com\/#website","url":"https:\/\/dumpflashedit.com\/","name":"DumpFlash","alternateName":"DumpFlash","description":"**DumpFlashEdit** es una herramienta online para editar dumps de memoria, modificar valores como kilometraje y analizar archivos binarios f\u00e1cilmente.","inLanguage":"es-CO","publisher":{"@id":"https:\/\/dumpflashedit.com\/#organization"}}]},"og:locale":"es_ES","og:site_name":"DumpFlashEdit | **DumpFlashEdit** es una herramienta online para editar dumps de memoria, modificar valores como kilometraje y analizar archivos binarios f\u00e1cilmente.","og:type":"article","og:title":"DumpFlashEdit","og:description":"Convertidor HEX \u21c4 BIN Convertidor HEX \u21c4 BIN Sube tu archivo HEX\/BIN","og:url":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/","og:image":"https:\/\/dumpflashedit.com\/wp-content\/uploads\/2026\/01\/logo-dumpflash.png","og:image:secure_url":"https:\/\/dumpflashedit.com\/wp-content\/uploads\/2026\/01\/logo-dumpflash.png","article:published_time":"2025-05-14T19:23:48+00:00","article:modified_time":"2025-05-29T17:37:33+00:00","twitter:card":"summary_large_image","twitter:title":"DumpFlashEdit","twitter:description":"Convertidor HEX \u21c4 BIN Convertidor HEX \u21c4 BIN Sube tu archivo HEX\/BIN","twitter:image":"https:\/\/dumpflashedit.com\/wp-content\/uploads\/2026\/01\/logo-dumpflash.png"},"aioseo_meta_data":{"post_id":"3886","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"WebPage","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2025-05-14 19:23:48","updated":"2025-06-03 23:37:47","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/dumpflashedit.com\" title=\"Inicio\">Inicio<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tConvertidor hexbin\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Inicio","link":"https:\/\/dumpflashedit.com"},{"label":"Convertidor hexbin","link":"https:\/\/dumpflashedit.com\/index.php\/convertidor-hexbin\/"}],"_links":{"self":[{"href":"https:\/\/dumpflashedit.com\/index.php\/wp-json\/wp\/v2\/pages\/3886","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dumpflashedit.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/dumpflashedit.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/dumpflashedit.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dumpflashedit.com\/index.php\/wp-json\/wp\/v2\/comments?post=3886"}],"version-history":[{"count":19,"href":"https:\/\/dumpflashedit.com\/index.php\/wp-json\/wp\/v2\/pages\/3886\/revisions"}],"predecessor-version":[{"id":3964,"href":"https:\/\/dumpflashedit.com\/index.php\/wp-json\/wp\/v2\/pages\/3886\/revisions\/3964"}],"wp:attachment":[{"href":"https:\/\/dumpflashedit.com\/index.php\/wp-json\/wp\/v2\/media?parent=3886"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}